perf_surf.ocl.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. #include "perf_precomp.hpp"
  46. #if defined(HAVE_OPENCV_OCL) && defined(OPENCV_ENABLE_NONFREE)
  47. namespace opencv_test { namespace {
  48. typedef perf::TestBaseWithParam<std::string> OCL_SURF;
  49. #define SURF_IMAGES \
  50. "cv/detectors_descriptors_evaluation/images_datasets/leuven/img1.png",\
  51. "stitching/a3.png"
  52. PERF_TEST_P(OCL_SURF, DISABLED_with_data_transfer, testing::Values(SURF_IMAGES))
  53. {
  54. string filename = getDataPath(GetParam());
  55. Mat img = imread(filename, IMREAD_GRAYSCALE);
  56. ASSERT_FALSE(img.empty());
  57. SURF_OCL d_surf;
  58. oclMat d_keypoints;
  59. oclMat d_descriptors;
  60. Mat cpu_kp;
  61. Mat cpu_dp;
  62. declare.time(60);
  63. TEST_CYCLE()
  64. {
  65. oclMat d_src(img);
  66. d_surf(d_src, oclMat(), d_keypoints, d_descriptors);
  67. d_keypoints.download(cpu_kp);
  68. d_descriptors.download(cpu_dp);
  69. }
  70. SANITY_CHECK_NOTHING();
  71. }
  72. PERF_TEST_P(OCL_SURF, DISABLED_without_data_transfer, testing::Values(SURF_IMAGES))
  73. {
  74. string filename = getDataPath(GetParam());
  75. Mat img = imread(filename, IMREAD_GRAYSCALE);
  76. ASSERT_FALSE(img.empty());
  77. SURF_OCL d_surf;
  78. oclMat d_keypoints;
  79. oclMat d_descriptors;
  80. oclMat d_src(img);
  81. declare.time(60);
  82. TEST_CYCLE() d_surf(d_src, oclMat(), d_keypoints, d_descriptors);
  83. Mat cpu_kp;
  84. Mat cpu_dp;
  85. d_keypoints.download(cpu_kp);
  86. d_descriptors.download(cpu_dp);
  87. SANITY_CHECK_NOTHING();
  88. }
  89. }} // namespace
  90. #endif // HAVE_OPENCV_OCL && OPENCV_ENABLE_NONFREE