选择性搜索分割算法 该类实现了[277]中描述的算法。更多…
#include <opencv2/ximgproc/segmentation.hpp>
选择性搜索分割算法 该类实现了[277]中描述的算法。
◆ addGraphSegmentation()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::addGraphSegmentation |
( |
Ptr< GraphSegmentation > | g | ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.addGraphSegmentation( | g | ) -> | None |
◆ addImage()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::addImage |
( |
InputArray | img | ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.addImage( | img | ) -> | None |
◆ addStrategy()
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.addStrategy( | s | ) -> | None |
◆ clearGraphSegmentations()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::clearGraphSegmentations |
( |
| ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.clearGraphSegmentations( | | ) -> | None |
◆ clearImages()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::clearImages |
( |
| ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.clearImages( | | ) -> | None |
◆ clearStrategies()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::clearStrategies |
( |
| ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.clearStrategies( | | ) -> | None |
◆ process()
虚函数 void cv::ximgproc::segmentation::SelectiveSearchSegmentation::process |
( |
std::vector< Rect > & | 矩形区域 (rects) | ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.process( | | ) -> | 矩形区域 (rects) |
基于所有图像、图分割和策略,计算所有可能的矩形并返回它们。
- 参数
-
矩形区域 (rects) | 矩形区域列表。列表中靠前的矩形区域比靠后的更相关。 |
◆ 设置基础图像 (setBaseImage)
virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentation::setBaseImage |
( |
InputArray | img | ) |
|
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.setBaseImage( | img | ) -> | None |
设置 switch* 函数用来初始化类的图像。
- 参数
-
◆ 切换到快速选择搜索 (switchToSelectiveSearchFast)
virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentation::switchToSelectiveSearchFast |
( |
int | base_k = 150, |
|
|
int | inc_k = 150, |
|
|
float | sigma = 0.8f ) |
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.switchToSelectiveSearchFast( | [, base_k[, inc_k[, sigma]]] | ) -> | None |
使用[277]中描述的“快速选择性搜索”参数初始化类。
- 参数
-
base_k | 第一次图分割的 k 参数。 |
inc_k | 所有图分割的 k 参数增量。 |
sigma | 图分割的 sigma 参数。 |
◆ 切换到高质量选择搜索 (switchToSelectiveSearchQuality)
virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentation::switchToSelectiveSearchQuality |
( |
int | base_k = 150, |
|
|
int | inc_k = 150, |
|
|
float | sigma = 0.8f ) |
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.switchToSelectiveSearchQuality( | [, base_k[, inc_k[, sigma]]] | ) -> | None |
使用[277]中描述的“快速选择性搜索”参数初始化类。
- 参数
-
base_k | 第一次图分割的 k 参数。 |
inc_k | 所有图分割的 k 参数增量。 |
sigma | 图分割的 sigma 参数。 |
◆ 切换到单一策略 (switchToSingleStrategy)
virtual void cv::ximgproc::segmentation::SelectiveSearchSegmentation::switchToSingleStrategy |
( |
int | k = 200, |
|
|
float | sigma = 0.8f ) |
|
纯虚函数 |
Python |
---|
| cv.ximgproc.segmentation.SelectiveSearchSegmentation.switchToSingleStrategy( | [, k[, sigma]] | ) -> | None |
使用[277]中描述的“单一策略”参数初始化类。
- 参数
-
k | 图分割的 k 参数。 |
sigma | 图分割的 sigma 参数。 |
此类的文档是从以下文件生成的: