mirror of https://github.com/opencv/opencv.git
minor refactoring of GPU module and GPU tests, split arithm and imgproc parts.pull/13383/head
parent
0c771221a3
commit
4100cbd997
19 changed files with 1937 additions and 1299 deletions
@ -0,0 +1,696 @@ |
||||
/*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.
|
||||
//
|
||||
//
|
||||
// Intel License Agreement
|
||||
// For Open Source Computer Vision Library
|
||||
//
|
||||
// Copyright (C) 2000, Intel Corporation, 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 Intel Corporation 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*/
|
||||
|
||||
#include <iostream> |
||||
#include <cmath> |
||||
#include <limits> |
||||
#include "gputest.hpp" |
||||
#include "opencv2/core/core.hpp" |
||||
#include "opencv2/imgproc/imgproc.hpp" |
||||
#include "opencv2/highgui/highgui.hpp" |
||||
|
||||
using namespace cv; |
||||
using namespace std; |
||||
using namespace gpu; |
||||
|
||||
class CV_GpuArithmTest : public CvTest |
||||
{ |
||||
public: |
||||
CV_GpuArithmTest(const char* test_name, const char* test_funcs); |
||||
virtual ~CV_GpuArithmTest(); |
||||
|
||||
protected: |
||||
void run(int); |
||||
|
||||
int test(int type); |
||||
|
||||
virtual int test(const Mat& mat1, const Mat& mat2) = 0; |
||||
|
||||
int CheckNorm(const Mat& m1, const Mat& m2); |
||||
int CheckNorm(const Scalar& s1, const Scalar& s2); |
||||
int CheckNorm(double d1, double d2); |
||||
}; |
||||
|
||||
CV_GpuArithmTest::CV_GpuArithmTest(const char* test_name, const char* test_funcs): CvTest(test_name, test_funcs) |
||||
{ |
||||
} |
||||
|
||||
CV_GpuArithmTest::~CV_GpuArithmTest() {} |
||||
|
||||
int CV_GpuArithmTest::test(int type) |
||||
{ |
||||
cv::Size sz(200, 200); |
||||
cv::Mat mat1(sz, type), mat2(sz, type); |
||||
cv::RNG rng(*ts->get_rng()); |
||||
rng.fill(mat1, cv::RNG::UNIFORM, cv::Scalar::all(10), cv::Scalar::all(100)); |
||||
rng.fill(mat2, cv::RNG::UNIFORM, cv::Scalar::all(10), cv::Scalar::all(100)); |
||||
|
||||
return test(mat1, mat2); |
||||
} |
||||
|
||||
int CV_GpuArithmTest::CheckNorm(const Mat& m1, const Mat& m2) |
||||
{ |
||||
double ret = norm(m1, m2, NORM_INF); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
int CV_GpuArithmTest::CheckNorm(const Scalar& s1, const Scalar& s2) |
||||
{ |
||||
double ret0 = CheckNorm(s1[0], s2[0]), ret1 = CheckNorm(s1[1], s2[1]), ret2 = CheckNorm(s1[2], s2[2]), ret3 = CheckNorm(s1[3], s2[3]); |
||||
|
||||
return (ret0 == CvTS::OK && ret1 == CvTS::OK && ret2 == CvTS::OK && ret3 == CvTS::OK) ? CvTS::OK : CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
int CV_GpuArithmTest::CheckNorm(double d1, double d2) |
||||
{ |
||||
double ret = ::fabs(d1 - d2); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
void CV_GpuArithmTest::run( int ) |
||||
{ |
||||
int testResult = CvTS::OK; |
||||
try |
||||
{ |
||||
//run tests
|
||||
ts->printf(CvTS::LOG, "\n========Start test 8UC1========\n"); |
||||
if (test(CV_8UC1) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 8UC3========\n"); |
||||
if (test(CV_8UC3) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 8UC4========\n"); |
||||
if (test(CV_8UC4) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 32FC1========\n"); |
||||
if (test(CV_32FC1) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
catch(const cv::Exception& e) |
||||
{ |
||||
if (!check_and_treat_gpu_exception(e, ts)) |
||||
throw; |
||||
return; |
||||
} |
||||
|
||||
ts->set_failed_test_info(testResult); |
||||
} |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Add
|
||||
class CV_GpuNppImageAddTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageAddTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageAddTest::CV_GpuNppImageAddTest(): CV_GpuArithmTest( "GPU-NppImageAdd", "add" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageAddTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4 && mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::add(mat1, mat2, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::add(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageAddTest CV_GpuNppImageAdd_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Sub
|
||||
class CV_GpuNppImageSubtractTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageSubtractTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageSubtractTest::CV_GpuNppImageSubtractTest(): CV_GpuArithmTest( "GPU-NppImageSubtract", "subtract" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageSubtractTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4 && mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::subtract(mat1, mat2, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::subtract(gpu1, gpu2, gpuRes);
|
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageSubtractTest CV_GpuNppImageSubtract_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// multiply
|
||||
class CV_GpuNppImageMultiplyTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMultiplyTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMultiplyTest::CV_GpuNppImageMultiplyTest(): CV_GpuArithmTest( "GPU-NppImageMultiply", "multiply" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMultiplyTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4 && mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::multiply(mat1, mat2, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::multiply(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageMultiplyTest CV_GpuNppImageMultiply_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// divide
|
||||
class CV_GpuNppImageDivideTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageDivideTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageDivideTest::CV_GpuNppImageDivideTest(): CV_GpuArithmTest( "GPU-NppImageDivide", "divide" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageDivideTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4 && mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::divide(mat1, mat2, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::divide(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageDivideTest CV_GpuNppImageDivide_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// transpose
|
||||
class CV_GpuNppImageTransposeTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageTransposeTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageTransposeTest::CV_GpuNppImageTransposeTest(): CV_GpuArithmTest( "GPU-NppImageTranspose", "transpose" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageTransposeTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::transpose(mat1, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpuRes; |
||||
cv::gpu::transpose(gpu1, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageTransposeTest CV_GpuNppImageTranspose_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// absdiff
|
||||
class CV_GpuNppImageAbsdiffTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageAbsdiffTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageAbsdiffTest::CV_GpuNppImageAbsdiffTest(): CV_GpuArithmTest( "GPU-NppImageAbsdiff", "absdiff" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageAbsdiffTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::absdiff(mat1, mat2, cpuRes); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::absdiff(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageAbsdiffTest CV_GpuNppImageAbsdiff_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// compare
|
||||
class CV_GpuNppImageCompareTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageCompareTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageCompareTest::CV_GpuNppImageCompareTest(): CV_GpuArithmTest( "GPU-NppImageCompare", "compare" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageCompareTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
int cmp_codes[] = {CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE}; |
||||
const char* cmp_str[] = {"CMP_EQ", "CMP_GT", "CMP_GE", "CMP_LT", "CMP_LE", "CMP_NE"}; |
||||
int cmp_num = sizeof(cmp_codes) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < cmp_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nCompare operation: %s\n", cmp_str[i]); |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::compare(mat1, mat2, cpuRes, cmp_codes[i]); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::compare(gpu1, gpu2, gpuRes, cmp_codes[i]); |
||||
|
||||
if (CheckNorm(cpuRes, gpuRes) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageCompareTest CV_GpuNppImageCompare_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// meanStdDev
|
||||
class CV_GpuNppImageMeanStdDevTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMeanStdDevTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMeanStdDevTest::CV_GpuNppImageMeanStdDevTest(): CV_GpuArithmTest( "GPU-NppImageMeanStdDev", "meanStdDev" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMeanStdDevTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
Scalar cpumean;
|
||||
Scalar cpustddev; |
||||
cv::meanStdDev(mat1, cpumean, cpustddev); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
Scalar gpumean;
|
||||
Scalar gpustddev; |
||||
cv::gpu::meanStdDev(gpu1, gpumean, gpustddev); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
if (CheckNorm(cpumean, gpumean) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nMean FAILED\n"); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
if (CheckNorm(cpustddev, gpustddev) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nStdDev FAILED\n"); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageMeanStdDevTest CV_GpuNppImageMeanStdDev_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// norm
|
||||
class CV_GpuNppImageNormTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageNormTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageNormTest::CV_GpuNppImageNormTest(): CV_GpuArithmTest( "GPU-NppImageNorm", "norm" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageNormTest::test( const Mat& mat1, const Mat& mat2 ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
int norms[] = {NORM_INF, NORM_L1, NORM_L2}; |
||||
const char* norms_str[] = {"NORM_INF", "NORM_L1", "NORM_L2"}; |
||||
int norms_num = sizeof(norms) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < norms_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nNorm type: %s\n", norms_str[i]); |
||||
|
||||
double cpu_norm = cv::norm(mat1, mat2, norms[i]); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu2(mat2); |
||||
double gpu_norm = cv::gpu::norm(gpu1, gpu2, norms[i]); |
||||
|
||||
if (CheckNorm(cpu_norm, gpu_norm) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageNormTest CV_GpuNppImageNorm_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// flip
|
||||
class CV_GpuNppImageFlipTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageFlipTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageFlipTest::CV_GpuNppImageFlipTest(): CV_GpuArithmTest( "GPU-NppImageFlip", "flip" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageFlipTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
int flip_codes[] = {0, 1, -1}; |
||||
const char* flip_axis[] = {"X", "Y", "Both"}; |
||||
int flip_codes_num = sizeof(flip_codes) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flip_codes_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFlip Axis: %s\n", flip_axis[i]); |
||||
|
||||
Mat cpu_res; |
||||
cv::flip(mat1, cpu_res, flip_codes[i]); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
GpuMat gpu_res; |
||||
cv::gpu::flip(gpu1, gpu_res, flip_codes[i]); |
||||
|
||||
if (CheckNorm(cpu_res, gpu_res) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageFlipTest CV_GpuNppImageFlip_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// sum
|
||||
class CV_GpuNppImageSumTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageSumTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageSumTest::CV_GpuNppImageSumTest(): CV_GpuArithmTest( "GPU-NppImageSum", "sum" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageSumTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1 && mat1.type() != CV_8UC4) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
Scalar cpures = cv::sum(mat1); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
Scalar gpures = cv::gpu::sum(gpu1); |
||||
|
||||
return CheckNorm(cpures, gpures); |
||||
} |
||||
|
||||
CV_GpuNppImageSumTest CV_GpuNppImageSum_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// minNax
|
||||
class CV_GpuNppImageMinNaxTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMinNaxTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMinNaxTest::CV_GpuNppImageMinNaxTest(): CV_GpuArithmTest( "GPU-NppImageMinNax", "minNax" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMinNaxTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
double cpumin, cpumax; |
||||
cv::minMaxLoc(mat1, &cpumin, &cpumax); |
||||
|
||||
GpuMat gpu1(mat1); |
||||
double gpumin, gpumax; |
||||
cv::gpu::minMax(gpu1, &gpumin, &gpumax); |
||||
|
||||
return (CheckNorm(cpumin, gpumin) == CvTS::OK && CheckNorm(cpumax, gpumax) == CvTS::OK) ? CvTS::OK : CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
CV_GpuNppImageMinNaxTest CV_GpuNppImageMinNax_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// LUT
|
||||
class CV_GpuNppImageLUTTest : public CV_GpuArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageLUTTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& mat1, const Mat& mat2); |
||||
}; |
||||
|
||||
CV_GpuNppImageLUTTest::CV_GpuNppImageLUTTest(): CV_GpuArithmTest( "GPU-NppImageLUT", "LUT" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageLUTTest::test( const Mat& mat1, const Mat& ) |
||||
{ |
||||
if (mat1.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::Mat lut(1, 256, CV_32SC1); |
||||
cv::RNG rng(*ts->get_rng()); |
||||
rng.fill(lut, cv::RNG::UNIFORM, cv::Scalar::all(100), cv::Scalar::all(200)); |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::LUT(mat1, lut, cpuRes); |
||||
cpuRes.convertTo(cpuRes, CV_8U); |
||||
|
||||
cv::gpu::GpuMat gpuRes; |
||||
cv::gpu::LUT(GpuMat(mat1), lut, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageLUTTest CV_GpuNppImageLUT_test; |
@ -0,0 +1,613 @@ |
||||
/*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.
|
||||
//
|
||||
//
|
||||
// Intel License Agreement
|
||||
// For Open Source Computer Vision Library
|
||||
//
|
||||
// Copyright (C) 2000, Intel Corporation, 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 Intel Corporation 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*/
|
||||
|
||||
#include <iostream> |
||||
#include <cmath> |
||||
#include <limits> |
||||
#include "gputest.hpp" |
||||
#include "opencv2/core/core.hpp" |
||||
#include "opencv2/imgproc/imgproc.hpp" |
||||
#include "opencv2/highgui/highgui.hpp" |
||||
|
||||
using namespace cv; |
||||
using namespace std; |
||||
using namespace gpu; |
||||
|
||||
class CV_GpuImageProcTest : public CvTest |
||||
{ |
||||
public: |
||||
CV_GpuImageProcTest(const char* test_name, const char* test_funcs); |
||||
virtual ~CV_GpuImageProcTest(); |
||||
|
||||
protected: |
||||
void run(int); |
||||
|
||||
int test8UC1 (const Mat& img); |
||||
int test8UC4 (const Mat& img); |
||||
int test32SC1(const Mat& img); |
||||
int test32FC1(const Mat& img); |
||||
|
||||
virtual int test(const Mat& img) = 0; |
||||
|
||||
int CheckNorm(const Mat& m1, const Mat& m2); |
||||
}; |
||||
|
||||
CV_GpuImageProcTest::CV_GpuImageProcTest(const char* test_name, const char* test_funcs): CvTest(test_name, test_funcs) |
||||
{ |
||||
} |
||||
|
||||
CV_GpuImageProcTest::~CV_GpuImageProcTest() {} |
||||
|
||||
int CV_GpuImageProcTest::test8UC1(const Mat& img) |
||||
{ |
||||
cv::Mat img_C1; |
||||
cvtColor(img, img_C1, CV_BGR2GRAY); |
||||
|
||||
return test(img_C1); |
||||
} |
||||
|
||||
int CV_GpuImageProcTest::test8UC4(const Mat& img) |
||||
{ |
||||
cv::Mat img_C4; |
||||
cvtColor(img, img_C4, CV_BGR2BGRA); |
||||
|
||||
return test(img_C4); |
||||
} |
||||
|
||||
int CV_GpuImageProcTest::test32SC1(const Mat& img) |
||||
{ |
||||
cv::Mat img_C1; |
||||
cvtColor(img, img_C1, CV_BGR2GRAY);
|
||||
img_C1.convertTo(img_C1, CV_32S); |
||||
|
||||
return test(img_C1); |
||||
} |
||||
|
||||
int CV_GpuImageProcTest::test32FC1(const Mat& img) |
||||
{ |
||||
cv::Mat temp, img_C1; |
||||
img.convertTo(temp, CV_32F); |
||||
cvtColor(temp, img_C1, CV_BGR2GRAY); |
||||
|
||||
return test(img_C1); |
||||
} |
||||
|
||||
int CV_GpuImageProcTest::CheckNorm(const Mat& m1, const Mat& m2) |
||||
{ |
||||
double ret = norm(m1, m2, NORM_INF); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
void CV_GpuImageProcTest::run( int ) |
||||
{ |
||||
//load image
|
||||
cv::Mat img = cv::imread(std::string(ts->get_data_path()) + "stereobp/aloe-L.png"); |
||||
|
||||
if (img.empty()) |
||||
{ |
||||
ts->set_failed_test_info(CvTS::FAIL_MISSING_TEST_DATA); |
||||
return; |
||||
} |
||||
|
||||
int testResult = CvTS::OK; |
||||
try |
||||
{ |
||||
//run tests
|
||||
ts->printf(CvTS::LOG, "\n========Start test 8UC1========\n"); |
||||
if (test8UC1(img) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 8UC4========\n"); |
||||
if (test8UC4(img) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 32SC1========\n"); |
||||
if (test32SC1(img) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
ts->printf(CvTS::LOG, "\n========Start test 32FC1========\n"); |
||||
if (test32FC1(img) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
catch(const cv::Exception& e) |
||||
{ |
||||
if (!check_and_treat_gpu_exception(e, ts)) |
||||
throw; |
||||
return; |
||||
} |
||||
|
||||
ts->set_failed_test_info(testResult); |
||||
} |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// threshold
|
||||
class CV_GpuNppImageThresholdTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageThresholdTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageThresholdTest::CV_GpuNppImageThresholdTest(): CV_GpuImageProcTest( "GPU-NppImageThreshold", "threshold" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageThresholdTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() != CV_32FC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::RNG rng(*ts->get_rng()); |
||||
const double thresh = rng; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::threshold(img, cpuRes, thresh, 0.0, THRESH_TRUNC); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpuRes; |
||||
cv::gpu::threshold(gpu1, gpuRes, thresh); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageThresholdTest CV_GpuNppImageThreshold_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// resize
|
||||
class CV_GpuNppImageResizeTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageResizeTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageResizeTest::CV_GpuNppImageResizeTest(): CV_GpuImageProcTest( "GPU-NppImageResize", "resize" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageResizeTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() != CV_8UC1 && img.type() != CV_8UC4) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
int interpolations[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_LANCZOS4}; |
||||
const char* interpolations_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_LANCZOS4"}; |
||||
int interpolations_num = sizeof(interpolations) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < interpolations_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nInterpolation type: %s\n", interpolations_str[i]); |
||||
|
||||
Mat cpu_res; |
||||
cv::resize(img, cpu_res, Size(), 0.5, 0.5, interpolations[i]); |
||||
|
||||
GpuMat gpu1(img), gpu_res; |
||||
cv::gpu::resize(gpu1, gpu_res, Size(), 0.5, 0.5, interpolations[i]); |
||||
|
||||
if (CheckNorm(cpu_res, gpu_res) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
//CV_GpuNppImageResizeTest CV_GpuNppImageResize_test;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// copyMakeBorder
|
||||
class CV_GpuNppImageCopyMakeBorderTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageCopyMakeBorderTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageCopyMakeBorderTest::CV_GpuNppImageCopyMakeBorderTest(): CV_GpuImageProcTest( "GPU-NppImageCopyMakeBorder", "copyMakeBorder" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageCopyMakeBorderTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() != CV_8UC1 && img.type() != CV_8UC4 && img.type() != CV_32SC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
cv::RNG rng(*ts->get_rng()); |
||||
int top = rng.uniform(1, 10); |
||||
int botton = rng.uniform(1, 10); |
||||
int left = rng.uniform(1, 10); |
||||
int right = rng.uniform(1, 10); |
||||
cv::Scalar val(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); |
||||
|
||||
Mat cpudst; |
||||
cv::copyMakeBorder(img, cpudst, top, botton, left, right, BORDER_CONSTANT, val); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpudst;
|
||||
cv::gpu::copyMakeBorder(gpu1, gpudst, top, botton, left, right, val); |
||||
|
||||
return CheckNorm(cpudst, gpudst); |
||||
} |
||||
|
||||
CV_GpuNppImageCopyMakeBorderTest CV_GpuNppImageCopyMakeBorder_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// warpAffine
|
||||
class CV_GpuNppImageWarpAffineTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageWarpAffineTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageWarpAffineTest::CV_GpuNppImageWarpAffineTest(): CV_GpuImageProcTest( "GPU-NppImageWarpAffine", "warpAffine" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageWarpAffineTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() == CV_32SC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
static const double coeffs[2][3] =
|
||||
{
|
||||
{cos(3.14 / 6), -sin(3.14 / 6), 100.0},
|
||||
{sin(3.14 / 6), cos(3.14 / 6), -100.0} |
||||
}; |
||||
Mat M(2, 3, CV_64F, (void*)coeffs); |
||||
|
||||
int flags[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_NEAREST | WARP_INVERSE_MAP, INTER_LINEAR | WARP_INVERSE_MAP, INTER_CUBIC | WARP_INVERSE_MAP}; |
||||
const char* flags_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_NEAREST | WARP_INVERSE_MAP", "INTER_LINEAR | WARP_INVERSE_MAP", "INTER_CUBIC | WARP_INVERSE_MAP"}; |
||||
int flags_num = sizeof(flags) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flags_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFlags: %s\n", flags_str[i]); |
||||
|
||||
Mat cpudst; |
||||
cv::warpAffine(img, cpudst, M, img.size(), flags[i]); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpudst; |
||||
cv::gpu::warpAffine(gpu1, gpudst, M, gpu1.size(), flags[i]); |
||||
|
||||
if (CheckNorm(cpudst, gpudst) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
//CV_GpuNppImageWarpAffineTest CV_GpuNppImageWarpAffine_test;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// warpPerspective
|
||||
class CV_GpuNppImageWarpPerspectiveTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageWarpPerspectiveTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageWarpPerspectiveTest::CV_GpuNppImageWarpPerspectiveTest(): CV_GpuImageProcTest( "GPU-NppImageWarpPerspective", "warpPerspective" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageWarpPerspectiveTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() == CV_32SC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
static const double coeffs[3][3] =
|
||||
{ |
||||
{cos(3.14 / 6), -sin(3.14 / 6), 100.0},
|
||||
{sin(3.14 / 6), cos(3.14 / 6), -100.0},
|
||||
{0.0, 0.0, 1.0} |
||||
}; |
||||
Mat M(3, 3, CV_64F, (void*)coeffs); |
||||
|
||||
int flags[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_NEAREST | WARP_INVERSE_MAP, INTER_LINEAR | WARP_INVERSE_MAP, INTER_CUBIC | WARP_INVERSE_MAP}; |
||||
const char* flags_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_NEAREST | WARP_INVERSE_MAP", "INTER_LINEAR | WARP_INVERSE_MAP", "INTER_CUBIC | WARP_INVERSE_MAP"}; |
||||
int flags_num = sizeof(flags) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flags_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFlags: %s\n", flags_str[i]); |
||||
|
||||
Mat cpudst; |
||||
cv::warpPerspective(img, cpudst, M, img.size(), flags[i]); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpudst; |
||||
cv::gpu::warpPerspective(gpu1, gpudst, M, gpu1.size(), flags[i]); |
||||
|
||||
if (CheckNorm(cpudst, gpudst) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
//CV_GpuNppImageWarpPerspectiveTest CV_GpuNppImageWarpPerspective_test;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// integral
|
||||
class CV_GpuNppImageIntegralTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageIntegralTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageIntegralTest::CV_GpuNppImageIntegralTest(): CV_GpuImageProcTest( "GPU-NppImageIntegral", "integral" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageIntegralTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() != CV_8UC1) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
Mat cpusum, cpusqsum; |
||||
cv::integral(img, cpusum, cpusqsum, CV_32S); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpusum, gpusqsum; |
||||
cv::gpu::integral(gpu1, gpusum, gpusqsum); |
||||
|
||||
gpusqsum.convertTo(gpusqsum, CV_64F); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
if (CheckNorm(cpusum, gpusum) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nSum failed\n"); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
if (CheckNorm(cpusqsum, gpusqsum) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nSquared sum failed\n"); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageIntegralTest CV_GpuNppImageIntegral_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// blur
|
||||
class CV_GpuNppImageBlurTest : public CV_GpuImageProcTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageBlurTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& img); |
||||
}; |
||||
|
||||
CV_GpuNppImageBlurTest::CV_GpuNppImageBlurTest(): CV_GpuImageProcTest( "GPU-NppImageBlur", "blur" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageBlurTest::test(const Mat& img) |
||||
{ |
||||
if (img.type() != CV_8UC1 && img.type() != CV_8UC4) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nUnsupported type\n"); |
||||
return CvTS::OK; |
||||
} |
||||
|
||||
int ksizes[] = {3, 5, 7}; |
||||
int ksizes_num = sizeof(ksizes) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < ksizes_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nksize = %d\n", ksizes[i]); |
||||
|
||||
Mat cpudst; |
||||
cv::blur(img, cpudst, Size(ksizes[i], ksizes[i])); |
||||
|
||||
GpuMat gpu1(img); |
||||
GpuMat gpudst; |
||||
cv::gpu::blur(gpu1, gpudst, Size(ksizes[i], ksizes[i])); |
||||
|
||||
cv::Mat c; |
||||
cv::absdiff(cpudst, gpudst, c); |
||||
|
||||
if (CheckNorm(cpudst, gpudst) != CvTS::OK) |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
//CV_GpuNppImageBlurTest CV_GpuNppImageBlur_test;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// cvtColor
|
||||
class CV_GpuCvtColorTest : public CvTest |
||||
{ |
||||
public: |
||||
CV_GpuCvtColorTest(); |
||||
|
||||
protected: |
||||
void run(int); |
||||
|
||||
int CheckNorm(const Mat& m1, const Mat& m2); |
||||
}; |
||||
|
||||
CV_GpuCvtColorTest::CV_GpuCvtColorTest(): CvTest("GPU-NppCvtColor", "cvtColor") |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuCvtColorTest::CheckNorm(const Mat& m1, const Mat& m2) |
||||
{ |
||||
double ret = norm(m1, m2, NORM_INF); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
void CV_GpuCvtColorTest::run( int ) |
||||
{ |
||||
//load image
|
||||
cv::Mat img = cv::imread(std::string(ts->get_data_path()) + "stereobp/aloe-L.png"); |
||||
|
||||
if (img.empty()) |
||||
{ |
||||
ts->set_failed_test_info(CvTS::FAIL_MISSING_TEST_DATA); |
||||
return; |
||||
} |
||||
|
||||
int testResult = CvTS::OK; |
||||
cv::Mat cpuRes; |
||||
cv::gpu::GpuMat gpuImg(img), gpuRes; |
||||
try |
||||
{ |
||||
//run tests
|
||||
int codes[] = {CV_BGR2RGB, CV_RGB2YCrCb, CV_YCrCb2RGB, CV_RGB2RGBA, CV_RGBA2BGRA, CV_BGRA2GRAY, CV_GRAY2RGB}; |
||||
const char* codes_str[] = {"CV_BGR2RGB", "CV_RGB2YCrCb", "CV_YCrCb2RGB", "CV_RGB2RGBA", "CV_RGBA2BGRA", "CV_BGRA2GRAY", "CV_GRAY2RGB"}; |
||||
int codes_num = sizeof(codes) / sizeof(int); |
||||
|
||||
for (int i = 0; i < codes_num; ++i) |
||||
{ |
||||
ts->printf(CvTS::LOG, "\n%s\n", codes_str[i]); |
||||
|
||||
cv::cvtColor(img, cpuRes, codes[i]); |
||||
cv::gpu::cvtColor(gpuImg, gpuRes, codes[i]); |
||||
|
||||
if (CheckNorm(cpuRes, gpuRes) == CvTS::OK) |
||||
ts->printf(CvTS::LOG, "\nSUCCESS\n"); |
||||
else |
||||
{ |
||||
ts->printf(CvTS::LOG, "\nFAIL\n"); |
||||
testResult = CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
img = cpuRes; |
||||
gpuImg = gpuRes; |
||||
} |
||||
} |
||||
catch(const cv::Exception& e) |
||||
{ |
||||
if (!check_and_treat_gpu_exception(e, ts)) |
||||
throw; |
||||
return; |
||||
} |
||||
|
||||
ts->set_failed_test_info(testResult); |
||||
} |
||||
|
||||
CV_GpuCvtColorTest CV_GpuCvtColor_test; |
@ -1,878 +0,0 @@ |
||||
/*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.
|
||||
//
|
||||
//
|
||||
// Intel License Agreement
|
||||
// For Open Source Computer Vision Library
|
||||
//
|
||||
// Copyright (C) 2000, Intel Corporation, 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 Intel Corporation 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*/
|
||||
|
||||
#include <iostream> |
||||
#include <cmath> |
||||
#include <limits> |
||||
#include "gputest.hpp" |
||||
#include "opencv2/imgproc/imgproc.hpp" |
||||
#include "opencv2/highgui/highgui.hpp" |
||||
|
||||
using namespace cv; |
||||
using namespace std; |
||||
using namespace gpu; |
||||
|
||||
class CV_GpuNppImageArithmTest : public CvTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageArithmTest(const char* test_name, const char* test_funcs); |
||||
virtual ~CV_GpuNppImageArithmTest(); |
||||
|
||||
protected: |
||||
void run(int); |
||||
|
||||
int test8UC1(const Mat& cpu1, const Mat& cpu2); |
||||
int test8UC4(const Mat& cpu1, const Mat& cpu2); |
||||
int test32SC1(const Mat& cpu1, const Mat& cpu2); |
||||
int test32FC1(const Mat& cpu1, const Mat& cpu2); |
||||
|
||||
virtual int test(const Mat& cpu1, const Mat& cpu2) = 0; |
||||
int CheckNorm(const Mat& m1, const Mat& m2); |
||||
int CheckNorm(const Scalar& s1, const Scalar& s2); |
||||
int CheckNorm(double d1, double d2); |
||||
}; |
||||
|
||||
CV_GpuNppImageArithmTest::CV_GpuNppImageArithmTest(const char* test_name, const char* test_funcs): CvTest(test_name, test_funcs) |
||||
{ |
||||
} |
||||
|
||||
CV_GpuNppImageArithmTest::~CV_GpuNppImageArithmTest() {} |
||||
|
||||
int CV_GpuNppImageArithmTest::test8UC1(const Mat& cpu1, const Mat& cpu2) |
||||
{ |
||||
cv::Mat imgL_C1; |
||||
cv::Mat imgR_C1; |
||||
cvtColor(cpu1, imgL_C1, CV_BGR2GRAY); |
||||
cvtColor(cpu2, imgR_C1, CV_BGR2GRAY); |
||||
|
||||
return test(imgL_C1, imgR_C1); |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::test8UC4(const Mat& cpu1, const Mat& cpu2) |
||||
{ |
||||
cv::Mat imgL_C4; |
||||
cv::Mat imgR_C4; |
||||
cvtColor(cpu1, imgL_C4, CV_BGR2BGRA); |
||||
cvtColor(cpu2, imgR_C4, CV_BGR2BGRA); |
||||
|
||||
return test(imgL_C4, imgR_C4); |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::test32SC1( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
cv::Mat imgL_C1; |
||||
cv::Mat imgR_C1; |
||||
cvtColor(cpu1, imgL_C1, CV_BGR2GRAY); |
||||
cvtColor(cpu2, imgR_C1, CV_BGR2GRAY); |
||||
|
||||
imgL_C1.convertTo(imgL_C1, CV_32S); |
||||
imgR_C1.convertTo(imgR_C1, CV_32S); |
||||
|
||||
return test(imgL_C1, imgR_C1); |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::test32FC1( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
cv::Mat imgL_C1; |
||||
cv::Mat imgR_C1; |
||||
cvtColor(cpu1, imgL_C1, CV_BGR2GRAY); |
||||
cvtColor(cpu2, imgR_C1, CV_BGR2GRAY); |
||||
|
||||
imgL_C1.convertTo(imgL_C1, CV_32F); |
||||
imgR_C1.convertTo(imgR_C1, CV_32F); |
||||
|
||||
return test(imgL_C1, imgR_C1); |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::CheckNorm(const Mat& m1, const Mat& m2) |
||||
{ |
||||
double ret = norm(m1, m2, NORM_INF); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::CheckNorm(const Scalar& s1, const Scalar& s2) |
||||
{ |
||||
double ret0 = CheckNorm(s1[0], s2[0]), ret1 = CheckNorm(s1[1], s2[1]), ret2 = CheckNorm(s1[2], s2[2]), ret3 = CheckNorm(s1[3], s2[3]); |
||||
|
||||
return (ret0 == CvTS::OK && ret1 == CvTS::OK && ret2 == CvTS::OK && ret3 == CvTS::OK) ? CvTS::OK : CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
int CV_GpuNppImageArithmTest::CheckNorm(double d1, double d2) |
||||
{ |
||||
double ret = ::fabs(d1 - d2); |
||||
|
||||
if (ret < std::numeric_limits<double>::epsilon()) |
||||
{ |
||||
return CvTS::OK; |
||||
} |
||||
else |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nNorm: %f\n", ret); |
||||
return CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
void CV_GpuNppImageArithmTest::run( int ) |
||||
{ |
||||
//load images
|
||||
//cv::Mat img_l = cv::imread(std::string(ts->get_data_path()) + "stereobm/aloe-L.png");
|
||||
//cv::Mat img_r = cv::imread(std::string(ts->get_data_path()) + "stereobm/aloe-R.png");
|
||||
|
||||
//cv::Mat img_l = cv::imread(std::string(ts->get_data_path()) + "stereobp/aloe-L.png");
|
||||
//cv::Mat img_r = cv::imread(std::string(ts->get_data_path()) + "stereobp/aloe-R.png");
|
||||
|
||||
cv::RNG rng(*ts->get_rng()); |
||||
cv::Size sz(200, 200); |
||||
cv::Mat img_l(sz, CV_8UC3), img_r(sz, CV_8UC3); |
||||
rng.fill(img_l, cv::RNG::UNIFORM, cv::Scalar::all(10), cv::Scalar::all(100)); |
||||
rng.fill(img_r, cv::RNG::UNIFORM, cv::Scalar::all(10), cv::Scalar::all(100)); |
||||
|
||||
if (img_l.empty() || img_r.empty()) |
||||
{ |
||||
ts->set_failed_test_info(CvTS::FAIL_MISSING_TEST_DATA); |
||||
return; |
||||
} |
||||
|
||||
try |
||||
{ |
||||
//run tests
|
||||
int testResult = test8UC1(img_l, img_r); |
||||
if (testResult != CvTS::OK) |
||||
{ |
||||
ts->set_failed_test_info(testResult); |
||||
return; |
||||
} |
||||
|
||||
testResult = test8UC4(img_l, img_r); |
||||
if (testResult != CvTS::OK) |
||||
{ |
||||
ts->set_failed_test_info(testResult); |
||||
return; |
||||
} |
||||
|
||||
testResult = test32SC1(img_l, img_r); |
||||
if (testResult != CvTS::OK) |
||||
{ |
||||
ts->set_failed_test_info(testResult); |
||||
return; |
||||
} |
||||
|
||||
testResult = test32FC1(img_l, img_r); |
||||
if (testResult != CvTS::OK) |
||||
{ |
||||
ts->set_failed_test_info(testResult); |
||||
return; |
||||
} |
||||
} |
||||
catch(const cv::Exception& e) |
||||
{ |
||||
if (!check_and_treat_gpu_exception(e, ts)) |
||||
throw; |
||||
return; |
||||
} |
||||
|
||||
ts->set_failed_test_info(CvTS::OK); |
||||
} |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Add
|
||||
class CV_GpuNppImageAddTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageAddTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageAddTest::CV_GpuNppImageAddTest(): CV_GpuNppImageArithmTest( "GPU-NppImageAdd", "add" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageAddTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4 && cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::add(cpu1, cpu2, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::add(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageAddTest CV_GpuNppImageAdd_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Sub
|
||||
class CV_GpuNppImageSubtractTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageSubtractTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageSubtractTest::CV_GpuNppImageSubtractTest(): CV_GpuNppImageArithmTest( "GPU-NppImageSubtract", "subtract" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageSubtractTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4 && cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::subtract(cpu1, cpu2, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::subtract(gpu1, gpu2, gpuRes);
|
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageSubtractTest CV_GpuNppImageSubtract_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// multiply
|
||||
class CV_GpuNppImageMultiplyTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMultiplyTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMultiplyTest::CV_GpuNppImageMultiplyTest(): CV_GpuNppImageArithmTest( "GPU-NppImageMultiply", "multiply" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMultiplyTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4 && cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::multiply(cpu1, cpu2, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::multiply(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageMultiplyTest CV_GpuNppImageMultiply_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// divide
|
||||
class CV_GpuNppImageDivideTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageDivideTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageDivideTest::CV_GpuNppImageDivideTest(): CV_GpuNppImageArithmTest( "GPU-NppImageDivide", "divide" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageDivideTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4 && cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::divide(cpu1, cpu2, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::divide(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageDivideTest CV_GpuNppImageDivide_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// transpose
|
||||
class CV_GpuNppImageTransposeTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageTransposeTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageTransposeTest::CV_GpuNppImageTransposeTest(): CV_GpuNppImageArithmTest( "GPU-NppImageTranspose", "transpose" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageTransposeTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::transpose(cpu1, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpuRes; |
||||
cv::gpu::transpose(gpu1, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageTransposeTest CV_GpuNppImageTranspose_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// absdiff
|
||||
class CV_GpuNppImageAbsdiffTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageAbsdiffTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageAbsdiffTest::CV_GpuNppImageAbsdiffTest(): CV_GpuNppImageArithmTest( "GPU-NppImageAbsdiff", "absdiff" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageAbsdiffTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::absdiff(cpu1, cpu2, cpuRes); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::absdiff(gpu1, gpu2, gpuRes); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageAbsdiffTest CV_GpuNppImageAbsdiff_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// threshold
|
||||
class CV_GpuNppImageThresholdTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageThresholdTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageThresholdTest::CV_GpuNppImageThresholdTest(): CV_GpuNppImageArithmTest( "GPU-NppImageThreshold", "threshold" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageThresholdTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
cv::RNG rng(*ts->get_rng()); |
||||
const double thresh = rng; |
||||
|
||||
cv::Mat cpuRes; |
||||
cv::threshold(cpu1, cpuRes, thresh, 0.0, THRESH_TRUNC); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpuRes; |
||||
cv::gpu::threshold(gpu1, gpuRes, thresh); |
||||
|
||||
return CheckNorm(cpuRes, gpuRes); |
||||
} |
||||
|
||||
CV_GpuNppImageThresholdTest CV_GpuNppImageThreshold_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// compare
|
||||
class CV_GpuNppImageCompareTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageCompareTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageCompareTest::CV_GpuNppImageCompareTest(): CV_GpuNppImageArithmTest( "GPU-NppImageCompare", "compare" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageCompareTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_32FC1) |
||||
return CvTS::OK; |
||||
|
||||
int cmp_codes[] = {CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE}; |
||||
const char* cmp_str[] = {"CMP_EQ", "CMP_GT", "CMP_GE", "CMP_LT", "CMP_LE", "CMP_NE"}; |
||||
int cmp_num = sizeof(cmp_codes) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < cmp_num; ++i) |
||||
{ |
||||
cv::Mat cpuRes; |
||||
cv::compare(cpu1, cpu2, cpuRes, cmp_codes[i]); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
GpuMat gpuRes; |
||||
cv::gpu::compare(gpu1, gpu2, gpuRes, cmp_codes[i]); |
||||
|
||||
if (CheckNorm(cpuRes, gpuRes) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nCompare operation: %s\n", cmp_str[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageCompareTest CV_GpuNppImageCompare_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// meanStdDev
|
||||
class CV_GpuNppImageMeanStdDevTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMeanStdDevTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMeanStdDevTest::CV_GpuNppImageMeanStdDevTest(): CV_GpuNppImageArithmTest( "GPU-NppImageMeanStdDev", "meanStdDev" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMeanStdDevTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1) |
||||
return CvTS::OK; |
||||
|
||||
Scalar cpumean;
|
||||
Scalar cpustddev; |
||||
cv::meanStdDev(cpu1, cpumean, cpustddev); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
Scalar gpumean;
|
||||
Scalar gpustddev; |
||||
cv::gpu::meanStdDev(gpu1, gpumean, gpustddev); |
||||
|
||||
return (CheckNorm(cpumean, gpumean) == CvTS::OK && CheckNorm(cpustddev, gpustddev) == CvTS::OK) ? CvTS::OK : CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
CV_GpuNppImageMeanStdDevTest CV_GpuNppImageMeanStdDev_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// norm
|
||||
class CV_GpuNppImageNormTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageNormTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageNormTest::CV_GpuNppImageNormTest(): CV_GpuNppImageArithmTest( "GPU-NppImageNorm", "norm" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageNormTest::test( const Mat& cpu1, const Mat& cpu2 ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1) |
||||
return CvTS::OK; |
||||
|
||||
int norms[] = {NORM_INF, NORM_L1, NORM_L2}; |
||||
const char* norms_str[] = {"NORM_INF", "NORM_L1", "NORM_L2"}; |
||||
int norms_num = sizeof(norms) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < norms_num; ++i) |
||||
{ |
||||
double cpu_norm = cv::norm(cpu1, cpu2, norms[i]); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu2(cpu2); |
||||
double gpu_norm = cv::gpu::norm(gpu1, gpu2, norms[i]); |
||||
|
||||
if (CheckNorm(cpu_norm, gpu_norm) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nNorm type: %s\n", norms_str[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageNormTest CV_GpuNppImageNorm_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// flip
|
||||
class CV_GpuNppImageFlipTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageFlipTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageFlipTest::CV_GpuNppImageFlipTest(): CV_GpuNppImageArithmTest( "GPU-NppImageFlip", "flip" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageFlipTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4) |
||||
return CvTS::OK; |
||||
|
||||
int flip_codes[] = {0, 1, -1}; |
||||
const char* flip_axis[] = {"X", "Y", "Both"}; |
||||
int flip_codes_num = sizeof(flip_codes) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flip_codes_num; ++i) |
||||
{ |
||||
Mat cpu_res; |
||||
cv::flip(cpu1, cpu_res, flip_codes[i]); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpu_res; |
||||
cv::gpu::flip(gpu1, gpu_res, flip_codes[i]); |
||||
|
||||
if (CheckNorm(cpu_res, gpu_res) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nFlip Axis: %s\n", flip_axis[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageFlipTest CV_GpuNppImageFlip_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// resize
|
||||
class CV_GpuNppImageResizeTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageResizeTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageResizeTest::CV_GpuNppImageResizeTest(): CV_GpuNppImageArithmTest( "GPU-NppImageResize", "resize" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageResizeTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4) |
||||
return CvTS::OK; |
||||
|
||||
int interpolations[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_LANCZOS4}; |
||||
const char* interpolations_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_LANCZOS4"}; |
||||
int interpolations_num = sizeof(interpolations) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < interpolations_num; ++i) |
||||
{ |
||||
Mat cpu_res; |
||||
cv::resize(cpu1, cpu_res, Size(), 0.5, 0.5, interpolations[i]); |
||||
|
||||
GpuMat gpu1(cpu1), gpu_res; |
||||
cv::gpu::resize(gpu1, gpu_res, Size(), 0.5, 0.5, interpolations[i]); |
||||
|
||||
if (CheckNorm(cpu_res, gpu_res) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nInterpolation type: %s\n", interpolations_str[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageResizeTest CV_GpuNppImageResize_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// sum
|
||||
class CV_GpuNppImageSumTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageSumTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageSumTest::CV_GpuNppImageSumTest(): CV_GpuNppImageArithmTest( "GPU-NppImageSum", "sum" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageSumTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4) |
||||
return CvTS::OK; |
||||
|
||||
Scalar cpures = cv::sum(cpu1); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
Scalar gpures = cv::gpu::sum(gpu1); |
||||
|
||||
return CheckNorm(cpures, gpures); |
||||
} |
||||
|
||||
CV_GpuNppImageSumTest CV_GpuNppImageSum_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// minNax
|
||||
class CV_GpuNppImageMinNaxTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageMinNaxTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageMinNaxTest::CV_GpuNppImageMinNaxTest(): CV_GpuNppImageArithmTest( "GPU-NppImageMinNax", "minNax" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageMinNaxTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1) |
||||
return CvTS::OK; |
||||
|
||||
double cpumin, cpumax; |
||||
cv::minMaxLoc(cpu1, &cpumin, &cpumax); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
double gpumin, gpumax; |
||||
cv::gpu::minMax(gpu1, &gpumin, &gpumax); |
||||
|
||||
return (CheckNorm(cpumin, gpumin) == CvTS::OK && CheckNorm(cpumax, gpumax) == CvTS::OK) ? CvTS::OK : CvTS::FAIL_GENERIC; |
||||
} |
||||
|
||||
CV_GpuNppImageMinNaxTest CV_GpuNppImageMinNax_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// copyConstBorder
|
||||
class CV_GpuNppImageCopyMakeBorderTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageCopyMakeBorderTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageCopyMakeBorderTest::CV_GpuNppImageCopyMakeBorderTest(): CV_GpuNppImageArithmTest( "GPU-NppImageCopyMakeBorder", "copyMakeBorder" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageCopyMakeBorderTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
if (cpu1.type() != CV_8UC1 && cpu1.type() != CV_8UC4 && cpu1.type() != CV_32SC1) |
||||
return CvTS::OK; |
||||
|
||||
Mat cpudst; |
||||
cv::copyMakeBorder(cpu1, cpudst, 5, 5, 5, 5, BORDER_CONSTANT); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpudst;
|
||||
cv::gpu::copyMakeBorder(gpu1, gpudst, 5, 5, 5, 5); |
||||
|
||||
return CheckNorm(cpudst, gpudst); |
||||
} |
||||
|
||||
CV_GpuNppImageCopyMakeBorderTest CV_GpuNppImageCopyMakeBorder_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// warpAffine
|
||||
class CV_GpuNppImageWarpAffineTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageWarpAffineTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageWarpAffineTest::CV_GpuNppImageWarpAffineTest(): CV_GpuNppImageArithmTest( "GPU-NppImageWarpAffine", "warpAffine" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageWarpAffineTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
static const double coeffs[2][3] =
|
||||
{
|
||||
{cos(3.14 / 6), -sin(3.14 / 6), 100.0},
|
||||
{sin(3.14 / 6), cos(3.14 / 6), -100.0} |
||||
}; |
||||
Mat M(2, 3, CV_64F, (void*)coeffs); |
||||
|
||||
if (cpu1.type() == CV_32SC1) |
||||
return CvTS::OK; |
||||
|
||||
int flags[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_NEAREST | WARP_INVERSE_MAP, INTER_LINEAR | WARP_INVERSE_MAP, INTER_CUBIC | WARP_INVERSE_MAP}; |
||||
const char* flags_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_NEAREST | WARP_INVERSE_MAP", "INTER_LINEAR | WARP_INVERSE_MAP", "INTER_CUBIC | WARP_INVERSE_MAP"}; |
||||
int flags_num = sizeof(flags) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flags_num; ++i) |
||||
{ |
||||
Mat cpudst; |
||||
cv::warpAffine(cpu1, cpudst, M, cpu1.size(), flags[i]); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpudst; |
||||
cv::gpu::warpAffine(gpu1, gpudst, M, gpu1.size(), flags[i]); |
||||
|
||||
if (CheckNorm(cpudst, gpudst) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nFlags: %s\n", flags_str[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageWarpAffineTest CV_GpuNppImageWarpAffine_test; |
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// warpAffine
|
||||
class CV_GpuNppImageWarpPerspectiveTest : public CV_GpuNppImageArithmTest |
||||
{ |
||||
public: |
||||
CV_GpuNppImageWarpPerspectiveTest(); |
||||
|
||||
protected: |
||||
virtual int test(const Mat& cpu1, const Mat& cpu2); |
||||
}; |
||||
|
||||
CV_GpuNppImageWarpPerspectiveTest::CV_GpuNppImageWarpPerspectiveTest(): CV_GpuNppImageArithmTest( "GPU-NppImageWarpPerspective", "warpPerspective" ) |
||||
{ |
||||
} |
||||
|
||||
int CV_GpuNppImageWarpPerspectiveTest::test( const Mat& cpu1, const Mat& ) |
||||
{ |
||||
static const double coeffs[3][3] =
|
||||
{ |
||||
{cos(3.14 / 6), -sin(3.14 / 6), 100.0},
|
||||
{sin(3.14 / 6), cos(3.14 / 6), -100.0},
|
||||
{0.0, 0.0, 1.0} |
||||
}; |
||||
Mat M(3, 3, CV_64F, (void*)coeffs); |
||||
|
||||
if (cpu1.type() == CV_32SC1) |
||||
return CvTS::OK; |
||||
|
||||
int flags[] = {INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_NEAREST | WARP_INVERSE_MAP, INTER_LINEAR | WARP_INVERSE_MAP, INTER_CUBIC | WARP_INVERSE_MAP}; |
||||
const char* flags_str[] = {"INTER_NEAREST", "INTER_LINEAR", "INTER_CUBIC", "INTER_NEAREST | WARP_INVERSE_MAP", "INTER_LINEAR | WARP_INVERSE_MAP", "INTER_CUBIC | WARP_INVERSE_MAP"}; |
||||
int flags_num = sizeof(flags) / sizeof(int); |
||||
|
||||
int test_res = CvTS::OK; |
||||
|
||||
for (int i = 0; i < flags_num; ++i) |
||||
{ |
||||
Mat cpudst; |
||||
cv::warpPerspective(cpu1, cpudst, M, cpu1.size(), flags[i]); |
||||
|
||||
GpuMat gpu1(cpu1); |
||||
GpuMat gpudst; |
||||
cv::gpu::warpPerspective(gpu1, gpudst, M, gpu1.size(), flags[i]); |
||||
|
||||
if (CheckNorm(cpudst, gpudst) != CvTS::OK) |
||||
{ |
||||
ts->printf(CvTS::CONSOLE, "\nFlags: %s\n", flags_str[i]); |
||||
test_res = CvTS::FAIL_GENERIC; |
||||
} |
||||
} |
||||
|
||||
return test_res; |
||||
} |
||||
|
||||
CV_GpuNppImageWarpPerspectiveTest CV_GpuNppImageWarpPerspective_test; |
Loading…
Reference in new issue