cc48aa28c5c35072b5e8508a2c05fbf6d072500b
[profile/ivi/opencv.git] / modules / nonfree / perf / perf_surf.ocl.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
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, Multicoreware, Inc., 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 //    Peng Xiao, pengxiao@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 materials 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 #include "perf_precomp.hpp"
47
48 #ifdef HAVE_OPENCV_OCL
49
50 using namespace cv;
51 using namespace cv::ocl;
52 using namespace std;
53
54 typedef perf::TestBaseWithParam<std::string> OCL_SURF;
55
56 #define SURF_IMAGES \
57     "cv/detectors_descriptors_evaluation/images_datasets/leuven/img1.png",\
58     "stitching/a3.png"
59
60 PERF_TEST_P(OCL_SURF, DISABLED_with_data_transfer, testing::Values(SURF_IMAGES))
61 {
62     string filename = getDataPath(GetParam());
63     Mat img = imread(filename, IMREAD_GRAYSCALE);
64     ASSERT_FALSE(img.empty());
65
66     SURF_OCL d_surf;
67     oclMat d_keypoints;
68     oclMat d_descriptors;
69     Mat cpu_kp;
70     Mat cpu_dp;
71
72     declare.time(60);
73
74     TEST_CYCLE()
75     {
76         oclMat d_src(img);
77
78         d_surf(d_src, oclMat(), d_keypoints, d_descriptors);
79
80         d_keypoints.download(cpu_kp);
81         d_descriptors.download(cpu_dp);
82     }
83
84     SANITY_CHECK(cpu_kp, 1);
85     SANITY_CHECK(cpu_dp, 1);
86 }
87
88 PERF_TEST_P(OCL_SURF, DISABLED_without_data_transfer, testing::Values(SURF_IMAGES))
89 {
90     string filename = getDataPath(GetParam());
91     Mat img = imread(filename, IMREAD_GRAYSCALE);
92     ASSERT_FALSE(img.empty());
93
94     SURF_OCL d_surf;
95     oclMat d_keypoints;
96     oclMat d_descriptors;
97     oclMat d_src(img);
98
99     declare.time(60);
100
101     TEST_CYCLE() d_surf(d_src, oclMat(), d_keypoints, d_descriptors);
102
103     Mat cpu_kp;
104     Mat cpu_dp;
105     d_keypoints.download(cpu_kp);
106     d_descriptors.download(cpu_dp);
107     SANITY_CHECK(cpu_kp, 1);
108     SANITY_CHECK(cpu_dp, 1);
109 }
110
111 #endif // HAVE_OPENCV_OCL