OpenCV
3.1.0-dev
Open Source Computer Vision
|
Classes | |
class | cv::ximgproc::segmentation::GraphSegmentation |
Graph Based Segmentation Algorithm. The class implements the algorithm described in [48] . More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentation |
Selective search segmentation algorithm The class implements the algorithm described in [149]. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy |
Strategie for the selective search segmentation algorithm The class implements a generic stragery for the algorithm described in [149]. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyColor |
Color-based strategy for the selective search segmentation algorithm The class is implemented from the algorithm described in [149]. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyFill |
Fill-based strategy for the selective search segmentation algorithm The class is implemented from the algorithm described in [149]. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyMultiple |
Regroup multiple strategies for the selective search segmentation algorithm. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategySize |
Size-based strategy for the selective search segmentation algorithm The class is implemented from the algorithm described in [149]. More... | |
class | cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture |
Texture-based strategy for the selective search segmentation algorithm The class is implemented from the algorithm described in [149]. More... | |
Functions | |
Ptr< GraphSegmentation > | cv::ximgproc::segmentation::createGraphSegmentation (double sigma=0.5, float k=300, int min_size=100) |
Creates a graph based segmentor. More... | |
Ptr< SelectiveSearchSegmentation > | cv::ximgproc::segmentation::createSelectiveSearchSegmentation () |
Create a new SelectiveSearchSegmentation class. More... | |
Ptr< SelectiveSearchSegmentationStrategyColor > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyColor () |
Create a new color-based strategy. More... | |
Ptr< SelectiveSearchSegmentationStrategyFill > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyFill () |
Create a new fill-based strategy. More... | |
Ptr< SelectiveSearchSegmentationStrategyMultiple > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple () |
Create a new multiple strategy. More... | |
Ptr< SelectiveSearchSegmentationStrategyMultiple > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1) |
Create a new multiple strategy and set one subtrategy. More... | |
Ptr< SelectiveSearchSegmentationStrategyMultiple > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2) |
Create a new multiple strategy and set two subtrategies, with equal weights. More... | |
Ptr< SelectiveSearchSegmentationStrategyMultiple > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3) |
Create a new multiple strategy and set three subtrategies, with equal weights. More... | |
Ptr< SelectiveSearchSegmentationStrategyMultiple > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3, Ptr< SelectiveSearchSegmentationStrategy > s4) |
Create a new multiple strategy and set four subtrategies, with equal weights. More... | |
Ptr< SelectiveSearchSegmentationStrategySize > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategySize () |
Create a new size-based strategy. More... | |
Ptr< SelectiveSearchSegmentationStrategyTexture > | cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyTexture () |
Create a new size-based strategy. More... | |
Ptr<GraphSegmentation> cv::ximgproc::segmentation::createGraphSegmentation | ( | double | sigma = 0.5 , |
float | k = 300 , |
||
int | min_size = 100 |
||
) |
Creates a graph based segmentor.
sigma | The sigma parameter, used to smooth image |
k | The k parameter of the algorythm |
min_size | The minimum size of segments |
Ptr<SelectiveSearchSegmentation> cv::ximgproc::segmentation::createSelectiveSearchSegmentation | ( | ) |
Create a new SelectiveSearchSegmentation class.
Ptr<SelectiveSearchSegmentationStrategyColor> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyColor | ( | ) |
Create a new color-based strategy.
Ptr<SelectiveSearchSegmentationStrategyFill> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyFill | ( | ) |
Create a new fill-based strategy.
Ptr<SelectiveSearchSegmentationStrategyMultiple> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple | ( | ) |
Create a new multiple strategy.
Ptr<SelectiveSearchSegmentationStrategyMultiple> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple | ( | Ptr< SelectiveSearchSegmentationStrategy > | s1 | ) |
Create a new multiple strategy and set one subtrategy.
s1 | The first strategy |
Ptr<SelectiveSearchSegmentationStrategyMultiple> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple | ( | Ptr< SelectiveSearchSegmentationStrategy > | s1, |
Ptr< SelectiveSearchSegmentationStrategy > | s2 | ||
) |
Create a new multiple strategy and set two subtrategies, with equal weights.
s1 | The first strategy |
s2 | The second strategy |
Ptr<SelectiveSearchSegmentationStrategyMultiple> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple | ( | Ptr< SelectiveSearchSegmentationStrategy > | s1, |
Ptr< SelectiveSearchSegmentationStrategy > | s2, | ||
Ptr< SelectiveSearchSegmentationStrategy > | s3 | ||
) |
Create a new multiple strategy and set three subtrategies, with equal weights.
s1 | The first strategy |
s2 | The second strategy |
s3 | The third strategy |
Ptr<SelectiveSearchSegmentationStrategyMultiple> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple | ( | Ptr< SelectiveSearchSegmentationStrategy > | s1, |
Ptr< SelectiveSearchSegmentationStrategy > | s2, | ||
Ptr< SelectiveSearchSegmentationStrategy > | s3, | ||
Ptr< SelectiveSearchSegmentationStrategy > | s4 | ||
) |
Create a new multiple strategy and set four subtrategies, with equal weights.
s1 | The first strategy |
s2 | The second strategy |
s3 | The third strategy |
s4 | The forth strategy |
Ptr<SelectiveSearchSegmentationStrategySize> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategySize | ( | ) |
Create a new size-based strategy.
Ptr<SelectiveSearchSegmentationStrategyTexture> cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyTexture | ( | ) |
Create a new size-based strategy.