optflow.hpp 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. By downloading, copying, installing or using the software you agree to this
  3. license. If you do not agree to this license, do not download, install,
  4. copy or use the software.
  5. License Agreement
  6. For Open Source Computer Vision Library
  7. (3-clause BSD License)
  8. Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  9. Third party copyrights are property of their respective owners.
  10. Redistribution and use in source and binary forms, with or without modification,
  11. are permitted provided that the following conditions are met:
  12. * Redistributions of source code must retain the above copyright notice,
  13. this list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright notice,
  15. this list of conditions and the following disclaimer in the documentation
  16. and/or other materials provided with the distribution.
  17. * Neither the names of the copyright holders nor the names of the contributors
  18. may be used to endorse or promote products derived from this software
  19. without specific prior written permission.
  20. This software is provided by the copyright holders and contributors "as is" and
  21. any express or implied warranties, including, but not limited to, the implied
  22. warranties of merchantability and fitness for a particular purpose are
  23. disclaimed. In no event shall copyright holders or contributors be liable for
  24. any direct, indirect, incidental, special, exemplary, or consequential damages
  25. (including, but not limited to, procurement of substitute goods or services;
  26. loss of use, data, or profits; or business interruption) however caused
  27. and on any theory of liability, whether in contract, strict liability,
  28. or tort (including negligence or otherwise) arising in any way out of
  29. the use of this software, even if advised of the possibility of such damage.
  30. */
  31. #ifndef __OPENCV_OPTFLOW_HPP__
  32. #define __OPENCV_OPTFLOW_HPP__
  33. #include "opencv2/core.hpp"
  34. #include "opencv2/video.hpp"
  35. /**
  36. @defgroup optflow Optical Flow Algorithms
  37. Dense optical flow algorithms compute motion for each point:
  38. - cv::optflow::calcOpticalFlowSF
  39. - cv::optflow::createOptFlow_DeepFlow
  40. Motion templates is alternative technique for detecting motion and computing its direction.
  41. See samples/motempl.py.
  42. - cv::motempl::updateMotionHistory
  43. - cv::motempl::calcMotionGradient
  44. - cv::motempl::calcGlobalOrientation
  45. - cv::motempl::segmentMotion
  46. Functions reading and writing .flo files in "Middlebury" format, see: <http://vision.middlebury.edu/flow/code/flow-code/README.txt>
  47. - cv::optflow::readOpticalFlow
  48. - cv::optflow::writeOpticalFlow
  49. */
  50. namespace cv
  51. {
  52. namespace optflow
  53. {
  54. //! @addtogroup optflow
  55. //! @{
  56. /** @overload */
  57. CV_EXPORTS_W void calcOpticalFlowSF( InputArray from, InputArray to, OutputArray flow,
  58. int layers, int averaging_block_size, int max_flow);
  59. /** @brief Calculate an optical flow using "SimpleFlow" algorithm.
  60. @param from First 8-bit 3-channel image.
  61. @param to Second 8-bit 3-channel image of the same size as prev
  62. @param flow computed flow image that has the same size as prev and type CV_32FC2
  63. @param layers Number of layers
  64. @param averaging_block_size Size of block through which we sum up when calculate cost function
  65. for pixel
  66. @param max_flow maximal flow that we search at each level
  67. @param sigma_dist vector smooth spatial sigma parameter
  68. @param sigma_color vector smooth color sigma parameter
  69. @param postprocess_window window size for postprocess cross bilateral filter
  70. @param sigma_dist_fix spatial sigma for postprocess cross bilateralf filter
  71. @param sigma_color_fix color sigma for postprocess cross bilateral filter
  72. @param occ_thr threshold for detecting occlusions
  73. @param upscale_averaging_radius window size for bilateral upscale operation
  74. @param upscale_sigma_dist spatial sigma for bilateral upscale operation
  75. @param upscale_sigma_color color sigma for bilateral upscale operation
  76. @param speed_up_thr threshold to detect point with irregular flow - where flow should be
  77. recalculated after upscale
  78. See @cite Tao2012 . And site of project - <http://graphics.berkeley.edu/papers/Tao-SAN-2012-05/>.
  79. @note
  80. - An example using the simpleFlow algorithm can be found at samples/simpleflow_demo.cpp
  81. */
  82. CV_EXPORTS_W void calcOpticalFlowSF( InputArray from, InputArray to, OutputArray flow, int layers,
  83. int averaging_block_size, int max_flow,
  84. double sigma_dist, double sigma_color, int postprocess_window,
  85. double sigma_dist_fix, double sigma_color_fix, double occ_thr,
  86. int upscale_averaging_radius, double upscale_sigma_dist,
  87. double upscale_sigma_color, double speed_up_thr );
  88. /** @brief Fast dense optical flow based on PyrLK sparse matches interpolation.
  89. @param from first 8-bit 3-channel or 1-channel image.
  90. @param to second 8-bit 3-channel or 1-channel image of the same size as from
  91. @param flow computed flow image that has the same size as from and CV_32FC2 type
  92. @param grid_step stride used in sparse match computation. Lower values usually
  93. result in higher quality but slow down the algorithm.
  94. @param k number of nearest-neighbor matches considered, when fitting a locally affine
  95. model. Lower values can make the algorithm noticeably faster at the cost of
  96. some quality degradation.
  97. @param sigma parameter defining how fast the weights decrease in the locally-weighted affine
  98. fitting. Higher values can help preserve fine details, lower values can help to get rid
  99. of the noise in the output flow.
  100. @param use_post_proc defines whether the ximgproc::fastGlobalSmootherFilter() is used
  101. for post-processing after interpolation
  102. @param fgs_lambda see the respective parameter of the ximgproc::fastGlobalSmootherFilter()
  103. @param fgs_sigma see the respective parameter of the ximgproc::fastGlobalSmootherFilter()
  104. */
  105. CV_EXPORTS_W void calcOpticalFlowSparseToDense ( InputArray from, InputArray to, OutputArray flow,
  106. int grid_step = 8, int k = 128, float sigma = 0.05f,
  107. bool use_post_proc = true, float fgs_lambda = 500.0f,
  108. float fgs_sigma = 1.5f );
  109. /** @brief Read a .flo file
  110. @param path Path to the file to be loaded
  111. The function readOpticalFlow loads a flow field from a file and returns it as a single matrix.
  112. Resulting Mat has a type CV_32FC2 - floating-point, 2-channel. First channel corresponds to the
  113. flow in the horizontal direction (u), second - vertical (v).
  114. */
  115. CV_EXPORTS_W Mat readOpticalFlow( const String& path );
  116. /** @brief Write a .flo to disk
  117. @param path Path to the file to be written
  118. @param flow Flow field to be stored
  119. The function stores a flow field in a file, returns true on success, false otherwise.
  120. The flow field must be a 2-channel, floating-point matrix (CV_32FC2). First channel corresponds
  121. to the flow in the horizontal direction (u), second - vertical (v).
  122. */
  123. CV_EXPORTS_W bool writeOpticalFlow( const String& path, InputArray flow );
  124. /** @brief DeepFlow optical flow algorithm implementation.
  125. The class implements the DeepFlow optical flow algorithm described in @cite Weinzaepfel2013 . See
  126. also <http://lear.inrialpes.fr/src/deepmatching/> .
  127. Parameters - class fields - that may be modified after creating a class instance:
  128. - member float alpha
  129. Smoothness assumption weight
  130. - member float delta
  131. Color constancy assumption weight
  132. - member float gamma
  133. Gradient constancy weight
  134. - member float sigma
  135. Gaussian smoothing parameter
  136. - member int minSize
  137. Minimal dimension of an image in the pyramid (next, smaller images in the pyramid are generated
  138. until one of the dimensions reaches this size)
  139. - member float downscaleFactor
  140. Scaling factor in the image pyramid (must be \< 1)
  141. - member int fixedPointIterations
  142. How many iterations on each level of the pyramid
  143. - member int sorIterations
  144. Iterations of Succesive Over-Relaxation (solver)
  145. - member float omega
  146. Relaxation factor in SOR
  147. */
  148. CV_EXPORTS_W Ptr<DenseOpticalFlow> createOptFlow_DeepFlow();
  149. //! Additional interface to the SimpleFlow algorithm - calcOpticalFlowSF()
  150. CV_EXPORTS_W Ptr<DenseOpticalFlow> createOptFlow_SimpleFlow();
  151. //! Additional interface to the Farneback's algorithm - calcOpticalFlowFarneback()
  152. CV_EXPORTS_W Ptr<DenseOpticalFlow> createOptFlow_Farneback();
  153. //! Additional interface to the SparseToDenseFlow algorithm - calcOpticalFlowSparseToDense()
  154. CV_EXPORTS_W Ptr<DenseOpticalFlow> createOptFlow_SparseToDense();
  155. //! @}
  156. } //optflow
  157. }
  158. #include "opencv2/optflow/motempl.hpp"
  159. #endif