test_optflow_farneback.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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, Institute Of Software Chinese Academy Of Science, all rights reserved.
  14. // Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
  15. // Copyright (C) 2010-2012, Multicoreware, Inc., all rights reserved.
  16. // Third party copyrights are property of their respective owners.
  17. //
  18. // Redistribution and use in source and binary forms, with or without modification,
  19. // are permitted provided that the following conditions are met:
  20. //
  21. // * Redistribution's of source code must retain the above copyright notice,
  22. // this list of conditions and the following disclaimer.
  23. //
  24. // * Redistribution's in binary form must reproduce the above copyright notice,
  25. // this list of conditions and the following disclaimer in the documentation
  26. // and/or other materials provided with the distribution.
  27. //
  28. // * The name of the copyright holders may not be used to endorse or promote products
  29. // derived from this software without specific prior written permission.
  30. //
  31. // This software is provided by the copyright holders and contributors "as is" and
  32. // any express or implied warranties, including, but not limited to, the implied
  33. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  34. // In no event shall the Intel Corporation or contributors be liable for any direct,
  35. // indirect, incidental, special, exemplary, or consequential damages
  36. // (including, but not limited to, procurement of substitute goods or services;
  37. // loss of use, data, or profits; or business interruption) however caused
  38. // and on any theory of liability, whether in contract, strict liability,
  39. // or tort (including negligence or otherwise) arising in any way out of
  40. // the use of this software, even if advised of the possibility of such damage.
  41. //
  42. //M*/
  43. #include "../test_precomp.hpp"
  44. #include "opencv2/ts/ocl_test.hpp"
  45. #ifdef HAVE_OPENCL
  46. namespace opencv_test {
  47. namespace ocl {
  48. /////////////////////////////////////////////////////////////////////////////////////////////////
  49. // FarnebackOpticalFlow
  50. namespace
  51. {
  52. IMPLEMENT_PARAM_CLASS(PyrScale, double)
  53. IMPLEMENT_PARAM_CLASS(PolyN, int)
  54. CV_FLAGS(FarnebackOptFlowFlags, 0, OPTFLOW_FARNEBACK_GAUSSIAN)
  55. IMPLEMENT_PARAM_CLASS(UseInitFlow, bool)
  56. }
  57. PARAM_TEST_CASE(FarnebackOpticalFlow, PyrScale, PolyN, FarnebackOptFlowFlags, UseInitFlow)
  58. {
  59. int numLevels;
  60. int winSize;
  61. int numIters;
  62. double pyrScale;
  63. int polyN;
  64. int flags;
  65. bool useInitFlow;
  66. virtual void SetUp()
  67. {
  68. numLevels = 5;
  69. winSize = 13;
  70. numIters = 10;
  71. pyrScale = GET_PARAM(0);
  72. polyN = GET_PARAM(1);
  73. flags = GET_PARAM(2);
  74. useInitFlow = GET_PARAM(3);
  75. }
  76. };
  77. OCL_TEST_P(FarnebackOpticalFlow, Mat)
  78. {
  79. cv::Mat frame0 = readImage("optflow/RubberWhale1.png", cv::IMREAD_GRAYSCALE);
  80. ASSERT_FALSE(frame0.empty());
  81. cv::Mat frame1 = readImage("optflow/RubberWhale2.png", cv::IMREAD_GRAYSCALE);
  82. ASSERT_FALSE(frame1.empty());
  83. double polySigma = polyN <= 5 ? 1.1 : 1.5;
  84. cv::Mat flow; cv::UMat uflow;
  85. if (useInitFlow)
  86. {
  87. OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
  88. uflow.copyTo(flow);
  89. flags |= cv::OPTFLOW_USE_INITIAL_FLOW;
  90. }
  91. OCL_OFF(cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
  92. OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
  93. EXPECT_MAT_SIMILAR(flow, uflow, 0.1);
  94. }
  95. OCL_INSTANTIATE_TEST_CASE_P(Video, FarnebackOpticalFlow,
  96. Combine(
  97. Values(PyrScale(0.3), PyrScale(0.5), PyrScale(0.8)),
  98. Values(PolyN(5), PolyN(7)),
  99. Values(FarnebackOptFlowFlags(0), FarnebackOptFlowFlags(cv::OPTFLOW_FARNEBACK_GAUSSIAN)),
  100. Values(UseInitFlow(false), UseInitFlow(true))
  101. )
  102. );
  103. } } // namespace opencv_test::ocl
  104. #endif // HAVE_OPENCL