segmentation.hpp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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_XIMGPROC_SEGMENTATION_HPP__
  32. #define __OPENCV_XIMGPROC_SEGMENTATION_HPP__
  33. #include <opencv2/core.hpp>
  34. namespace cv {
  35. namespace ximgproc {
  36. namespace segmentation {
  37. //! @addtogroup ximgproc_segmentation
  38. //! @{
  39. /** @brief Graph Based Segmentation Algorithm.
  40. The class implements the algorithm described in @cite PFF2004 .
  41. */
  42. class CV_EXPORTS_W GraphSegmentation : public Algorithm {
  43. public:
  44. /** @brief Segment an image and store output in dst
  45. @param src The input image. Any number of channel (1 (Eg: Gray), 3 (Eg: RGB), 4 (Eg: RGB-D)) can be provided
  46. @param dst The output segmentation. It's a CV_32SC1 Mat with the same number of cols and rows as input image, with an unique, sequential, id for each pixel.
  47. */
  48. CV_WRAP virtual void processImage(InputArray src, OutputArray dst) = 0;
  49. CV_WRAP virtual void setSigma(double sigma) = 0;
  50. CV_WRAP virtual double getSigma() = 0;
  51. CV_WRAP virtual void setK(float k) = 0;
  52. CV_WRAP virtual float getK() = 0;
  53. CV_WRAP virtual void setMinSize(int min_size) = 0;
  54. CV_WRAP virtual int getMinSize() = 0;
  55. };
  56. /** @brief Creates a graph based segmentor
  57. @param sigma The sigma parameter, used to smooth image
  58. @param k The k parameter of the algorythm
  59. @param min_size The minimum size of segments
  60. */
  61. CV_EXPORTS_W Ptr<GraphSegmentation> createGraphSegmentation(double sigma=0.5, float k=300, int min_size=100);
  62. //! @}
  63. // Represent an edge between two pixels
  64. class Edge {
  65. public:
  66. int from;
  67. int to;
  68. float weight;
  69. bool operator <(const Edge& e) const {
  70. return weight < e.weight;
  71. }
  72. };
  73. // A point in the sets of points
  74. class PointSetElement {
  75. public:
  76. int p;
  77. int size;
  78. PointSetElement() { }
  79. PointSetElement(int p_) {
  80. p = p_;
  81. size = 1;
  82. }
  83. };
  84. // An object to manage set of points, who can be fusionned
  85. class PointSet {
  86. public:
  87. PointSet(int nb_elements_);
  88. ~PointSet();
  89. int nb_elements;
  90. // Return the main point of the point's set
  91. int getBasePoint(int p);
  92. // Join two sets of points, based on their main point
  93. void joinPoints(int p_a, int p_b);
  94. // Return the set size of a set (based on the main point)
  95. int size(unsigned int p) { return mapping[p].size; }
  96. private:
  97. PointSetElement* mapping;
  98. };
  99. }
  100. }
  101. }
  102. #endif