|
|
|
@ -54,8 +54,8 @@ using namespace gpu; |
|
|
|
|
class CV_GpuImageProcTest : public CvTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuImageProcTest(const char* test_name, const char* test_funcs); |
|
|
|
|
virtual ~CV_GpuImageProcTest(); |
|
|
|
|
CV_GpuImageProcTest(const char* test_name, const char* test_funcs) : CvTest(test_name, test_funcs) {} |
|
|
|
|
virtual ~CV_GpuImageProcTest() {} |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
void run(int); |
|
|
|
@ -70,11 +70,6 @@ protected: |
|
|
|
|
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) |
|
|
|
|
{ |
|
|
|
@ -188,20 +183,12 @@ void CV_GpuImageProcTest::run( int ) |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// threshold
|
|
|
|
|
class CV_GpuNppImageThresholdTest : public CV_GpuImageProcTest |
|
|
|
|
struct CV_GpuNppImageThresholdTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuNppImageThresholdTest(); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
virtual int test(const Mat& img); |
|
|
|
|
}; |
|
|
|
|
CV_GpuNppImageThresholdTest() : CV_GpuImageProcTest( "GPU-NppImageThreshold", "threshold" ) {} |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageThresholdTest::CV_GpuNppImageThresholdTest(): CV_GpuImageProcTest( "GPU-NppImageThreshold", "threshold" ) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageThresholdTest::test(const Mat& img) |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() != CV_32FC1) |
|
|
|
|
{ |
|
|
|
@ -221,25 +208,14 @@ int CV_GpuNppImageThresholdTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return CheckNorm(cpuRes, gpuRes); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageThresholdTest CV_GpuNppImageThreshold_test; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// resize
|
|
|
|
|
class CV_GpuNppImageResizeTest : public CV_GpuImageProcTest |
|
|
|
|
struct 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) |
|
|
|
|
CV_GpuNppImageResizeTest() : CV_GpuImageProcTest( "GPU-NppImageResize", "resize" ) {} |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() != CV_8UC1 && img.type() != CV_8UC4) |
|
|
|
|
{ |
|
|
|
@ -269,25 +245,15 @@ int CV_GpuNppImageResizeTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
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" ) |
|
|
|
|
struct CV_GpuNppImageCopyMakeBorderTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
CV_GpuNppImageCopyMakeBorderTest() : CV_GpuImageProcTest( "GPU-NppImageCopyMakeBorder", "copyMakeBorder" ) {} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageCopyMakeBorderTest::test(const Mat& img) |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() != CV_8UC1 && img.type() != CV_8UC4 && img.type() != CV_32SC1) |
|
|
|
|
{ |
|
|
|
@ -311,25 +277,15 @@ int CV_GpuNppImageCopyMakeBorderTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return CheckNorm(cpudst, gpudst); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageCopyMakeBorderTest CV_GpuNppImageCopyMakeBorder_test; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// warpAffine
|
|
|
|
|
class CV_GpuNppImageWarpAffineTest : public CV_GpuImageProcTest |
|
|
|
|
struct CV_GpuNppImageWarpAffineTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuNppImageWarpAffineTest(); |
|
|
|
|
CV_GpuNppImageWarpAffineTest() : CV_GpuImageProcTest( "GPU-NppImageWarpAffine", "warpAffine" ) {} |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
virtual int test(const Mat& img); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageWarpAffineTest::CV_GpuNppImageWarpAffineTest(): CV_GpuImageProcTest( "GPU-NppImageWarpAffine", "warpAffine" ) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageWarpAffineTest::test(const Mat& img) |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() == CV_32SC1) |
|
|
|
|
{ |
|
|
|
@ -367,25 +323,16 @@ int CV_GpuNppImageWarpAffineTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return test_res; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//CV_GpuNppImageWarpAffineTest CV_GpuNppImageWarpAffine_test;
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// warpPerspective
|
|
|
|
|
class CV_GpuNppImageWarpPerspectiveTest : public CV_GpuImageProcTest |
|
|
|
|
struct CV_GpuNppImageWarpPerspectiveTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuNppImageWarpPerspectiveTest(); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
virtual int test(const Mat& img); |
|
|
|
|
}; |
|
|
|
|
CV_GpuNppImageWarpPerspectiveTest() : CV_GpuImageProcTest( "GPU-NppImageWarpPerspective", "warpPerspective" ) {} |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageWarpPerspectiveTest::CV_GpuNppImageWarpPerspectiveTest(): CV_GpuImageProcTest( "GPU-NppImageWarpPerspective", "warpPerspective" ) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageWarpPerspectiveTest::test(const Mat& img) |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() == CV_32SC1) |
|
|
|
|
{ |
|
|
|
@ -424,23 +371,13 @@ int CV_GpuNppImageWarpPerspectiveTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return test_res; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//CV_GpuNppImageWarpPerspectiveTest CV_GpuNppImageWarpPerspective_test;
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// integral
|
|
|
|
|
class CV_GpuNppImageIntegralTest : public CV_GpuImageProcTest |
|
|
|
|
struct CV_GpuNppImageIntegralTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuNppImageIntegralTest(); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
virtual int test(const Mat& img); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageIntegralTest::CV_GpuNppImageIntegralTest(): CV_GpuImageProcTest( "GPU-NppImageIntegral", "integral" ) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
CV_GpuNppImageIntegralTest() : CV_GpuImageProcTest( "GPU-NppImageIntegral", "integral" ) {} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageIntegralTest::test(const Mat& img) |
|
|
|
|
{ |
|
|
|
@ -474,25 +411,15 @@ int CV_GpuNppImageIntegralTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return test_res; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageIntegralTest CV_GpuNppImageIntegral_test; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// blur
|
|
|
|
|
class CV_GpuNppImageBlurTest : public CV_GpuImageProcTest |
|
|
|
|
struct CV_GpuNppImageBlurTest : public CV_GpuImageProcTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuNppImageBlurTest(); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
virtual int test(const Mat& img); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
CV_GpuNppImageBlurTest::CV_GpuNppImageBlurTest(): CV_GpuImageProcTest( "GPU-NppImageBlur", "blur" ) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
CV_GpuNppImageBlurTest() : CV_GpuImageProcTest( "GPU-NppImageBlur", "blur" ) {} |
|
|
|
|
|
|
|
|
|
int CV_GpuNppImageBlurTest::test(const Mat& img) |
|
|
|
|
int test(const Mat& img) |
|
|
|
|
{ |
|
|
|
|
if (img.type() != CV_8UC1 && img.type() != CV_8UC4) |
|
|
|
|
{ |
|
|
|
@ -525,15 +452,15 @@ int CV_GpuNppImageBlurTest::test(const Mat& img) |
|
|
|
|
|
|
|
|
|
return test_res; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//CV_GpuNppImageBlurTest CV_GpuNppImageBlur_test;
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// cvtColor
|
|
|
|
|
class CV_GpuCvtColorTest : public CvTest |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
CV_GpuCvtColorTest(); |
|
|
|
|
CV_GpuCvtColorTest() : CvTest("GPU-NppCvtColor", "cvtColor") {} |
|
|
|
|
~CV_GpuCvtColorTest() {}; |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
void run(int); |
|
|
|
@ -541,9 +468,6 @@ protected: |
|
|
|
|
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) |
|
|
|
|
{ |
|
|
|
@ -610,4 +534,19 @@ void CV_GpuCvtColorTest::run( int ) |
|
|
|
|
ts->set_failed_test_info(testResult); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/////////////////// tests registration /////////////////////////////////////
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
// If we comment some tests, we may foget/miss to uncomment it after.
|
|
|
|
|
// Placing all test definitions in one place
|
|
|
|
|
// makes us know about what tests are commented.
|
|
|
|
|
|
|
|
|
|
CV_GpuNppImageThresholdTest CV_GpuNppImageThreshold_test; |
|
|
|
|
CV_GpuNppImageResizeTest CV_GpuNppImageResize_test; |
|
|
|
|
CV_GpuNppImageCopyMakeBorderTest CV_GpuNppImageCopyMakeBorder_test; |
|
|
|
|
CV_GpuNppImageWarpAffineTest CV_GpuNppImageWarpAffine_test; |
|
|
|
|
CV_GpuNppImageWarpPerspectiveTest CV_GpuNppImageWarpPerspective_test; |
|
|
|
|
CV_GpuNppImageIntegralTest CV_GpuNppImageIntegral_test; |
|
|
|
|
CV_GpuNppImageBlurTest CV_GpuNppImageBlur_test; |
|
|
|
|
CV_GpuCvtColorTest CV_GpuCvtColor_test; |