OpenCV 4.5.3(日本語機械翻訳)
クラス | 関数
Ximgproc_segmentation

クラス

class cv::ximgproc::segmentation::GraphSegmentation
グラフベースのセグメンテーションAlgorithm. このクラスは,以下に記述されたアルゴリズムを実装しています[PFF2004]..[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy
選択的検索セグメンテーションアルゴリズムのストラテジー このクラスは、以下で説明されているアルゴリズムの一般的なストラテジーを実装しています。[uijlings2013selective]で説明されている.[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyColor
Color-based strategy for the selective search segmentation algorithm このクラスは、上記のアルゴリズムを実装しています。[uijlings2013selective]で説明されている.[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategySize
選択的検索セグメンテーションアルゴリズムのためのサイズベースの戦略 クラスは、以下で説明されているアルゴリズムから実装される[uijlings2013selective]で説明されている.[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture
Texture-based strategy for the selective search segmentation algorithm このクラスは、下記のアルゴリズムで実装されています。[uijlings2013selective]で説明されている.[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyFill
選択的検索セグメンテーションアルゴリズムのためのフィルベースの戦略 このクラスは、「選択的検索セグメンテーションアルゴリズムのためのフィルベースの戦略」で説明されているアルゴリズムから実装されています。[uijlings2013selective]で説明されている.[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyMultiple
選択的検索セグメンテーションアルゴリズムの複数の戦略を再編成する[【詳解】(英語]
class cv::ximgproc::segmentation::SelectiveSearchSegmentation
選択的探索セグメンテーションアルゴリズム このクラスは、以下で説明するアルゴリズムを実装しています。[uijlings2013selective]で説明されている.[【詳解】(英語]

関数

CV_EXPORTS_W Ptr< GraphSegmentation > cv::ximgproc::segmentation::createGraphSegmentation (double sigma=0.5, float k=300, int min_size=100)
グラフベースのセグメンテーションツールを作成します.[【詳解】(英語]
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyColor > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyColor ()
カラー・ストラテジーを新規に作成
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategySize > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategySize ()
サイズベースのストラテジーを新規に作成します。
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyTexture > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyTexture ()
サイズベースのストラテジーを新規に作成します。
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyFill > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyFill ()
塗りつぶし戦略を新規に作成します。
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ()
マルチストラテジーの作成
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1)
新しいマルチプルストラテジーを作成し、サブストラテジーを1つ設定する[【詳解】(英語]
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2)
新しいマルチプル戦略を作成し、2つのサブ戦略を同じ重みで設定する[【詳解】(英語]
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3)
新規に複数の戦略を作成し、3つのサブ戦略を同じ重みで設定する[【詳解】(英語]
CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3, Ptr< SelectiveSearchSegmentationStrategy > s4)
新規に複数の戦略を作成し、サブ戦略を4つ、同じウェイトで設定します。[【詳解】(英語]
CV_EXPORTS_W Ptr< SelectiveSearchSegmentation > cv::ximgproc::segmentation::createSelectiveSearchSegmentation ()
新規作成SelectiveSearchSegmentationクラスである。

詳解

関数詳解

createGraphSegmentation()

CV_EXPORTS_W Ptr< GraphSegmentation > cv::ximgproc::segmentation::createGraphSegmentation ( double sigma = 0.5,
float k = 300,
int min_size = 100
)

グラフベースのセグメンテーションツールを作成します.

引数
sigma 画像を滑らかにするために使われるシグマパラメータ
k アルゴリズムのkパラメータ
min_size セグメントの最小サイズ

createSelectiveSearchSegmentationStrategyMultiple() [1/4]

CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ( Ptr< SelectiveSearchSegmentationStrategy > s1 )

新しいマルチプルストラテジーを作成し、サブストラテジーを1つ設定する

引数
s1 最初の戦略

createSelectiveSearchSegmentationStrategyMultiple() [2/4]

CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ( Ptr< SelectiveSearchSegmentationStrategy > s1,
Ptr< SelectiveSearchSegmentationStrategy > s2
)

新しいマルチプル戦略を作成し、2つのサブ戦略を同じ重みで設定する

引数
s1 最初の戦略
s2 第二戦略

createSelectiveSearchSegmentationStrategyMultiple() [3/4]

CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ( Ptr< SelectiveSearchSegmentationStrategy > s1,
Ptr< SelectiveSearchSegmentationStrategy > s2,
Ptr< SelectiveSearchSegmentationStrategy > s3
)

新規に複数の戦略を作成し、3つのサブ戦略を同じ重みで設定する

引数
s1 最初の戦略
s2 第二戦略
s3 第3の戦略

createSelectiveSearchSegmentationStrategyMultiple() [4/4]

CV_EXPORTS_W Ptr< SelectiveSearchSegmentationStrategyMultiple > cv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ( Ptr< SelectiveSearchSegmentationStrategy > s1,
Ptr< SelectiveSearchSegmentationStrategy > s2,
Ptr< SelectiveSearchSegmentationStrategy > s3,
Ptr< SelectiveSearchSegmentationStrategy > s4
)

新規に複数の戦略を作成し、サブ戦略を4つ、同じウェイトで設定します。

引数
s1 最初の戦略
s2 第二戦略
s3 第3の戦略
s4 第4のストラテジー