test_canny.cpp 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 "../test_precomp.hpp"
  46. #include "opencv2/ts/ocl_test.hpp"
  47. #ifdef HAVE_OPENCL
  48. namespace opencv_test {
  49. namespace ocl {
  50. ////////////////////////////////////////////////////////
  51. // Canny
  52. IMPLEMENT_PARAM_CLASS(ApertureSize, int)
  53. IMPLEMENT_PARAM_CLASS(L2gradient, bool)
  54. IMPLEMENT_PARAM_CLASS(UseRoi, bool)
  55. PARAM_TEST_CASE(Canny, Channels, ApertureSize, L2gradient, UseRoi)
  56. {
  57. int cn, aperture_size;
  58. bool useL2gradient, use_roi;
  59. TEST_DECLARE_INPUT_PARAMETER(src);
  60. TEST_DECLARE_OUTPUT_PARAMETER(dst);
  61. virtual void SetUp()
  62. {
  63. cn = GET_PARAM(0);
  64. aperture_size = GET_PARAM(1);
  65. useL2gradient = GET_PARAM(2);
  66. use_roi = GET_PARAM(3);
  67. }
  68. void generateTestData()
  69. {
  70. Mat img = readImageType("shared/fruits.png", CV_8UC(cn));
  71. ASSERT_FALSE(img.empty()) << "can't load shared/fruits.png";
  72. Size roiSize = img.size();
  73. int type = img.type();
  74. Border srcBorder = randomBorder(0, use_roi ? MAX_VALUE : 0);
  75. randomSubMat(src, src_roi, roiSize, srcBorder, type, 2, 100);
  76. img.copyTo(src_roi);
  77. Border dstBorder = randomBorder(0, use_roi ? MAX_VALUE : 0);
  78. randomSubMat(dst, dst_roi, roiSize, dstBorder, type, 5, 16);
  79. UMAT_UPLOAD_INPUT_PARAMETER(src);
  80. UMAT_UPLOAD_OUTPUT_PARAMETER(dst);
  81. }
  82. };
  83. OCL_TEST_P(Canny, Accuracy)
  84. {
  85. generateTestData();
  86. const double low_thresh = 50.0, high_thresh = 100.0;
  87. double eps = 0.03;
  88. OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, aperture_size, useL2gradient));
  89. OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, aperture_size, useL2gradient));
  90. EXPECT_MAT_SIMILAR(dst_roi, udst_roi, eps);
  91. EXPECT_MAT_SIMILAR(dst, udst, eps);
  92. }
  93. OCL_TEST_P(Canny, AccuracyCustomGradient)
  94. {
  95. generateTestData();
  96. const double low_thresh = 50.0, high_thresh = 100.0;
  97. double eps = 0.03;
  98. OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, aperture_size, useL2gradient));
  99. OCL_ON(
  100. UMat dx, dy;
  101. Sobel(usrc_roi, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
  102. Sobel(usrc_roi, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE);
  103. cv::Canny(dx, dy, udst_roi, low_thresh, high_thresh, useL2gradient);
  104. );
  105. EXPECT_MAT_SIMILAR(dst_roi, udst_roi, eps);
  106. EXPECT_MAT_SIMILAR(dst, udst, eps);
  107. }
  108. OCL_INSTANTIATE_TEST_CASE_P(ImgProc, Canny, testing::Combine(
  109. testing::Values(1, 3),
  110. testing::Values(ApertureSize(3), ApertureSize(5)),
  111. testing::Values(L2gradient(false), L2gradient(true)),
  112. testing::Values(UseRoi(false), UseRoi(true))));
  113. } // namespace ocl
  114. } // namespace opencv_test
  115. #endif // HAVE_OPENCL