ximgproc.hpp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. *
  6. *
  7. * License Agreement
  8. * For Open Source Computer Vision Library
  9. * (3 - clause BSD License)
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification,
  12. * are permitted provided that the following conditions are met :
  13. *
  14. * *Redistributions of source code must retain the above copyright notice,
  15. * this list of conditions and the following disclaimer.
  16. *
  17. * * Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and / or other materials provided with the distribution.
  20. *
  21. * * Neither the names of the copyright holders nor the names of the contributors
  22. * may be used to endorse or promote products derived from this software
  23. * without specific prior written permission.
  24. *
  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. */
  36. #ifndef __OPENCV_XIMGPROC_HPP__
  37. #define __OPENCV_XIMGPROC_HPP__
  38. #include "ximgproc/edge_filter.hpp"
  39. #include "ximgproc/disparity_filter.hpp"
  40. #include "ximgproc/sparse_match_interpolator.hpp"
  41. #include "ximgproc/structured_edge_detection.hpp"
  42. #include "ximgproc/seeds.hpp"
  43. #include "ximgproc/segmentation.hpp"
  44. #include "ximgproc/fast_hough_transform.hpp"
  45. #include "ximgproc/estimated_covariance.hpp"
  46. #include "ximgproc/slic.hpp"
  47. #include "ximgproc/lsc.hpp"
  48. /** @defgroup ximgproc Extended Image Processing
  49. @{
  50. @defgroup ximgproc_edge Structured forests for fast edge detection
  51. This module contains implementations of modern structured edge detection algorithms, i.e. algorithms
  52. which somehow takes into account pixel affinities in natural images.
  53. @defgroup ximgproc_filters Filters
  54. @defgroup ximgproc_superpixel Superpixels
  55. @defgroup ximgproc_segmentation Image segmentation
  56. @}
  57. */
  58. namespace cv {
  59. namespace ximgproc {
  60. CV_EXPORTS_W
  61. void niBlackThreshold( InputArray _src, OutputArray _dst, double maxValue,
  62. int type, int blockSize, double delta );
  63. } // namespace ximgproc
  64. } //namespace cv
  65. #endif