catching OpenCL double not supported exceptions
[profile/ivi/opencv.git] / modules / ocl / test / test_pyramids.cpp
1 ///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                           License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2010-2012, Institute Of Software Chinese Academy Of Science, all rights reserved.
14 // Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
15 // Third party copyrights are property of their respective owners.
16 //
17 // @Authors
18 //    Yao Wang yao@multicorewareinc.com
19 //
20 // Redistribution and use in source and binary forms, with or without modification,
21 // are permitted provided that the following conditions are met:
22 //
23 //   * Redistribution's of source code must retain the above copyright notice,
24 //     this list of conditions and the following disclaimer.
25 //
26 //   * Redistribution's in binary form must reproduce the above copyright notice,
27 //     this list of conditions and the following disclaimer in the documentation
28 //     and/or other oclMaterials provided with the distribution.
29 //
30 //   * The name of the copyright holders may not be used to endorse or promote products
31 //     derived from this software without specific prior written permission.
32 //
33 // This software is provided by the copyright holders and contributors "as is" and
34 // any express or implied warranties, including, but not limited to, the implied
35 // warranties of merchantability and fitness for a particular purpose are disclaimed.
36 // In no event shall the Intel Corporation or contributors be liable for any direct,
37 // indirect, incidental, special, exemplary, or consequential damages
38 // (including, but not limited to, procurement of substitute goods or services;
39 // loss of use, data, or profits; or business interruption) however caused
40 // and on any theory of liability, whether in contract, strict liability,
41 // or tort (including negligence or otherwise) arising in any way out of
42 // the use of this software, even if advised of the possibility of such damage.
43 //
44 //M*/
45
46
47 #include "test_precomp.hpp"
48 #include <iomanip>
49
50 #ifdef HAVE_OPENCL
51
52 using namespace cv;
53 using namespace cv::ocl;
54 using namespace cvtest;
55 using namespace testing;
56 using namespace std;
57
58 PARAM_TEST_CASE(PyrBase, MatType, int)
59 {
60     int depth;
61     int channels;
62
63     Mat dst_cpu;
64     oclMat gdst;
65
66     virtual void SetUp()
67     {
68         depth = GET_PARAM(0);
69         channels = GET_PARAM(1);
70     }
71 };
72
73 /////////////////////// PyrDown //////////////////////////
74
75 typedef PyrBase PyrDown;
76
77 OCL_TEST_P(PyrDown, Mat)
78 {
79     for (int j = 0; j < LOOP_TIMES; j++)
80     {
81         Size size(MWIDTH, MHEIGHT);
82         Mat src = randomMat(size, CV_MAKETYPE(depth, channels), 0, 255);
83         oclMat gsrc(src);
84
85         pyrDown(src, dst_cpu);
86         pyrDown(gsrc, gdst);
87
88         EXPECT_MAT_NEAR(dst_cpu, Mat(gdst), depth == CV_32F ? 1e-4f : 1.0f);
89     }
90 }
91
92 INSTANTIATE_TEST_CASE_P(OCL_ImgProc, PyrDown, Combine(
93                             Values(CV_8U, CV_16U, CV_16S, CV_32F),
94                             Values(1, 3, 4)));
95
96 /////////////////////// PyrUp //////////////////////////
97
98 typedef PyrBase PyrUp;
99
100 OCL_TEST_P(PyrUp, Accuracy)
101 {
102     for (int j = 0; j < LOOP_TIMES; j++)
103     {
104         Size size(MWIDTH, MHEIGHT);
105         Mat src = randomMat(size, CV_MAKETYPE(depth, channels), 0, 255);
106         oclMat gsrc(src);
107
108         pyrUp(src, dst_cpu);
109         pyrUp(gsrc, gdst);
110
111         EXPECT_MAT_NEAR(dst_cpu, Mat(gdst), (depth == CV_32F ? 1e-4f : 1.0));
112     }
113 }
114
115
116 INSTANTIATE_TEST_CASE_P(OCL_ImgProc, PyrUp, Combine(
117                             Values(CV_8U, CV_16U, CV_16S, CV_32F),
118                             Values(1, 3, 4)));
119 #endif // HAVE_OPENCL