estimated_covariance.hpp 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. By downloading, copying, installing or using the software you agree to this license.
  3. 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) 2000-2015, Intel Corporation, all rights reserved.
  9. Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
  10. Copyright (C) 2009-2015, NVIDIA Corporation, all rights reserved.
  11. Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
  12. Copyright (C) 2015, OpenCV Foundation, all rights reserved.
  13. Copyright (C) 2015, Itseez Inc., all rights reserved.
  14. Third party copyrights are property of their respective owners.
  15. Redistribution and use in source and binary forms, with or without modification,
  16. are permitted provided that the following conditions are met:
  17. * Redistributions of source code must retain the above copyright notice,
  18. this list of conditions and the following disclaimer.
  19. * Redistributions in binary form must reproduce the above copyright notice,
  20. this list of conditions and the following disclaimer in the documentation
  21. and/or other materials provided with the distribution.
  22. * Neither the names of the copyright holders nor the names of the contributors
  23. may be used to endorse or promote products derived from this software
  24. without specific prior written permission.
  25. This software is provided by the copyright holders and contributors "as is" and
  26. any express or implied warranties, including, but not limited to, the implied
  27. warranties of merchantability and fitness for a particular purpose are disclaimed.
  28. In no event shall copyright holders or contributors be liable for any direct,
  29. indirect, incidental, special, exemplary, or consequential damages
  30. (including, but not limited to, procurement of substitute goods or services;
  31. loss of use, data, or profits; or business interruption) however caused
  32. and on any theory of liability, whether in contract, strict liability,
  33. or tort (including negligence or otherwise) arising in any way out of
  34. the use of this software, even if advised of the possibility of such damage.
  35. Algorithmic details of this algorithm can be found at:
  36. * O. Green, Y. Birk, "A Computationally Efficient Algorithm for the 2D Covariance Method", ACM/IEEE International Conference on High Performance Computing, Networking, Storage and Analysis, Denver, Colorado, 2013
  37. A previous and less efficient version of the algorithm can be found:
  38. * O. Green, L. David, A. Galperin, Y. Birk, "Efficient parallel computation of the estimated covariance matrix", arXiv, 2013
  39. */
  40. #ifndef __OPENCV_ESTIMATECOVARIANCE_HPP__
  41. #define __OPENCV_ESTIMATECOVARIANCE_HPP__
  42. #ifdef __cplusplus
  43. #include <opencv2/core.hpp>
  44. namespace cv
  45. {
  46. namespace ximgproc
  47. {
  48. /** @brief Computes the estimated covariance matrix of an image using the sliding
  49. window forumlation.
  50. @param src The source image. Input image must be of a complex type.
  51. @param dst The destination estimated covariance matrix. Output matrix will be size (windowRows*windowCols, windowRows*windowCols).
  52. @param windowRows The number of rows in the window.
  53. @param windowCols The number of cols in the window.
  54. The window size parameters control the accuracy of the estimation.
  55. The sliding window moves over the entire image from the top-left corner
  56. to the bottom right corner. Each location of the window represents a sample.
  57. If the window is the size of the image, then this gives the exact covariance matrix.
  58. For all other cases, the sizes of the window will impact the number of samples
  59. and the number of elements in the estimated covariance matrix.
  60. */
  61. CV_EXPORTS_W void covarianceEstimation(InputArray src, OutputArray dst, int windowRows, int windowCols);
  62. }
  63. }
  64. #endif
  65. #endif