mirror of https://github.com/opencv/opencv.git
Merge pull request #2289 from ilya-lavrenov:umat_expr
commit
9ff5a24f92
10 changed files with 292 additions and 57 deletions
@ -0,0 +1,85 @@ |
|||||||
|
// This file is part of OpenCV project.
|
||||||
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
||||||
|
// of this distribution and at http://opencv.org/license.html.
|
||||||
|
|
||||||
|
// Copyright (C) 2014, Advanced Micro Devices, Inc., all rights reserved.
|
||||||
|
// Third party copyrights are property of their respective owners.
|
||||||
|
|
||||||
|
#include "test_precomp.hpp" |
||||||
|
#include "opencv2/ts/ocl_test.hpp" |
||||||
|
|
||||||
|
#ifdef HAVE_OPENCL |
||||||
|
|
||||||
|
namespace cvtest { |
||||||
|
namespace ocl { |
||||||
|
|
||||||
|
//////////////////////////////// UMat Expressions /////////////////////////////////////////////////
|
||||||
|
|
||||||
|
PARAM_TEST_CASE(UMatExpr, MatDepth, Channels) |
||||||
|
{ |
||||||
|
int type; |
||||||
|
Size size; |
||||||
|
|
||||||
|
virtual void SetUp() |
||||||
|
{ |
||||||
|
type = CV_MAKE_TYPE(GET_PARAM(0), GET_PARAM(1)); |
||||||
|
} |
||||||
|
|
||||||
|
void generateTestData() |
||||||
|
{ |
||||||
|
size = randomSize(1, MAX_VALUE); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
//////////////////////////////// UMat::eye /////////////////////////////////////////////////
|
||||||
|
|
||||||
|
OCL_TEST_P(UMatExpr, Eye) |
||||||
|
{ |
||||||
|
for (int j = 0; j < test_loop_times; j++) |
||||||
|
{ |
||||||
|
generateTestData(); |
||||||
|
|
||||||
|
Mat m = Mat::eye(size, type); |
||||||
|
UMat um = UMat::eye(size, type); |
||||||
|
|
||||||
|
EXPECT_MAT_NEAR(m, um, 0); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//////////////////////////////// UMat::zeros /////////////////////////////////////////////////
|
||||||
|
|
||||||
|
OCL_TEST_P(UMatExpr, Zeros) |
||||||
|
{ |
||||||
|
for (int j = 0; j < test_loop_times; j++) |
||||||
|
{ |
||||||
|
generateTestData(); |
||||||
|
|
||||||
|
Mat m = Mat::zeros(size, type); |
||||||
|
UMat um = UMat::zeros(size, type); |
||||||
|
|
||||||
|
EXPECT_MAT_NEAR(m, um, 0); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//////////////////////////////// UMat::ones /////////////////////////////////////////////////
|
||||||
|
|
||||||
|
OCL_TEST_P(UMatExpr, Ones) |
||||||
|
{ |
||||||
|
for (int j = 0; j < test_loop_times; j++) |
||||||
|
{ |
||||||
|
generateTestData(); |
||||||
|
|
||||||
|
Mat m = Mat::ones(size, type); |
||||||
|
UMat um = UMat::ones(size, type); |
||||||
|
|
||||||
|
EXPECT_MAT_NEAR(m, um, 0); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//////////////////////////////// Instantiation /////////////////////////////////////////////////
|
||||||
|
|
||||||
|
OCL_INSTANTIATE_TEST_CASE_P(MatrixOperation, UMatExpr, Combine(OCL_ALL_DEPTHS, OCL_ALL_CHANNELS)); |
||||||
|
|
||||||
|
} } // namespace cvtest::ocl
|
||||||
|
|
||||||
|
#endif |
Loading…
Reference in new issue