perf_matop.cpp 5.69 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

43 44 45 46
#include "perf_precomp.hpp"

using namespace std;
using namespace testing;
47
using namespace perf;
48 49 50 51

//////////////////////////////////////////////////////////////////////
// SetTo

52 53 54 55
PERF_TEST_P(Sz_Depth_Cn, MatOp_SetTo,
            Combine(GPU_TYPICAL_MAT_SIZES,
                    Values(CV_8U, CV_16U, CV_32F, CV_64F),
                    GPU_CHANNELS_1_3_4))
56
{
57 58 59
    const cv::Size size = GET_PARAM(0);
    const int depth = GET_PARAM(1);
    const int channels = GET_PARAM(2);
60

61
    const int type = CV_MAKE_TYPE(depth, channels);
62

63
    const cv::Scalar val(1, 2, 3, 4);
64 65 66

    if (PERF_RUN_GPU())
    {
67
        cv::gpu::GpuMat dst(size, type);
68

69
        TEST_CYCLE() dst.setTo(val);
70

71
        GPU_SANITY_CHECK(dst);
72 73 74
    }
    else
    {
75
        cv::Mat dst(size, type);
76

77
        TEST_CYCLE() dst.setTo(val);
78

79
        CPU_SANITY_CHECK(dst);
80 81 82 83 84 85
    }
}

//////////////////////////////////////////////////////////////////////
// SetToMasked

86 87 88 89
PERF_TEST_P(Sz_Depth_Cn, MatOp_SetToMasked,
            Combine(GPU_TYPICAL_MAT_SIZES,
                    Values(CV_8U, CV_16U, CV_32F, CV_64F),
                    GPU_CHANNELS_1_3_4))
90
{
91 92 93
    const cv::Size size = GET_PARAM(0);
    const int depth = GET_PARAM(1);
    const int channels = GET_PARAM(2);
94

95
    const int type = CV_MAKE_TYPE(depth, channels);
96 97 98

    cv::Mat src(size, type);
    cv::Mat mask(size, CV_8UC1);
99
    declare.in(src, mask, WARMUP_RNG);
100

101
    const cv::Scalar val(1, 2, 3, 4);
102 103 104

    if (PERF_RUN_GPU())
    {
105 106
        cv::gpu::GpuMat dst(src);
        const cv::gpu::GpuMat d_mask(mask);
107

108
        TEST_CYCLE() dst.setTo(val, d_mask);
109

110
        GPU_SANITY_CHECK(dst, 1e-10);
111 112 113
    }
    else
    {
114
        cv::Mat dst = src;
115

116
        TEST_CYCLE() dst.setTo(val, mask);
117

118
        CPU_SANITY_CHECK(dst);
119 120 121 122 123 124
    }
}

//////////////////////////////////////////////////////////////////////
// CopyToMasked

125 126 127 128
PERF_TEST_P(Sz_Depth_Cn, MatOp_CopyToMasked,
            Combine(GPU_TYPICAL_MAT_SIZES,
                    Values(CV_8U, CV_16U, CV_32F, CV_64F),
                    GPU_CHANNELS_1_3_4))
129
{
130 131 132
    const cv::Size size = GET_PARAM(0);
    const int depth = GET_PARAM(1);
    const int channels = GET_PARAM(2);
133

134
    const int type = CV_MAKE_TYPE(depth, channels);
135 136 137

    cv::Mat src(size, type);
    cv::Mat mask(size, CV_8UC1);
138
    declare.in(src, mask, WARMUP_RNG);
139 140 141

    if (PERF_RUN_GPU())
    {
142 143 144
        const cv::gpu::GpuMat d_src(src);
        const cv::gpu::GpuMat d_mask(mask);
        cv::gpu::GpuMat dst(d_src.size(), d_src.type(), cv::Scalar::all(0));
145

146
        TEST_CYCLE() d_src.copyTo(dst, d_mask);
147

148
        GPU_SANITY_CHECK(dst, 1e-10);
149 150 151
    }
    else
    {
152
        cv::Mat dst(src.size(), src.type(), cv::Scalar::all(0));
153

154
        TEST_CYCLE() src.copyTo(dst, mask);
155 156 157 158 159 160 161 162 163 164

        CPU_SANITY_CHECK(dst);
    }
}

//////////////////////////////////////////////////////////////////////
// ConvertTo

DEF_PARAM_TEST(Sz_2Depth, cv::Size, MatDepth, MatDepth);

165 166 167 168
PERF_TEST_P(Sz_2Depth, MatOp_ConvertTo,
            Combine(GPU_TYPICAL_MAT_SIZES,
                    Values(CV_8U, CV_16U, CV_32F, CV_64F),
                    Values(CV_8U, CV_16U, CV_32F, CV_64F)))
169
{
170 171 172
    const cv::Size size = GET_PARAM(0);
    const int depth1 = GET_PARAM(1);
    const int depth2 = GET_PARAM(2);
173 174

    cv::Mat src(size, depth1);
175 176 177 178
    declare.in(src, WARMUP_RNG);

    const double a = 0.5;
    const double b = 1.0;
179 180 181

    if (PERF_RUN_GPU())
    {
182 183
        const cv::gpu::GpuMat d_src(src);
        cv::gpu::GpuMat dst;
184

185
        TEST_CYCLE() d_src.convertTo(dst, depth2, a, b);
186

187
        GPU_SANITY_CHECK(dst, 1e-10);
188 189 190 191 192
    }
    else
    {
        cv::Mat dst;

193
        TEST_CYCLE() src.convertTo(dst, depth2, a, b);
194 195 196 197

        CPU_SANITY_CHECK(dst);
    }
}