OpenCV 4.13.0
Open Source Computer Vision
読み込み中...
検索中...
見つかりません
🤖 AIによる機械翻訳(非公式) — これは OpenCV 4.13.0 公式リファレンス(英語)を AI (Claude) で自動翻訳したものです。訳に誤りを含む場合があります。正確な情報は 公式英語版(原文) を参照してください。
segmentation.hpp ファイル
#include <opencv2/core.hpp>
Include dependency graph for segmentation.hpp:
This graph shows which files directly or indirectly include this file:

クラス

class  cv::ximgproc::segmentation::GraphSegmentation
 グラフベースのセグメンテーション Algorithm。このクラスは [90] で説明されているアルゴリズムを実装する。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentation
 Selective search(選択的探索)セグメンテーションアルゴリズム。このクラスは [283] で説明されているアルゴリズムを実装する。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategy
 Selective search セグメンテーションアルゴリズムのための戦略。このクラスは [283] で説明されているアルゴリズムのための汎用的な戦略を実装する。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyColor
 Selective search セグメンテーションアルゴリズムのための色ベースの戦略。このクラスは [283] で説明されているアルゴリズムから実装されている。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyFill
 Selective search セグメンテーションアルゴリズムのための塗りつぶしベースの戦略。このクラスは [283] で説明されているアルゴリズムから実装されている。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyMultiple
 Selective search セグメンテーションアルゴリズムのための複数の戦略をまとめる。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategySize
 Selective search セグメンテーションアルゴリズムのためのサイズベースの戦略。このクラスは [283] で説明されているアルゴリズムから実装されている。 詳細...
 
class  cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture
 Selective search セグメンテーションアルゴリズムのためのテクスチャベースの戦略。このクラスは [283] で説明されているアルゴリズムから実装されている。 詳細...
 

名前空間

namespace  cv
 
namespace  cv::ximgproc
 
namespace  cv::ximgproc::segmentation
 

関数

Ptr< GraphSegmentationcv::ximgproc::segmentation::createGraphSegmentation (double sigma=0.5, float k=300, int min_size=100)
 グラフベースのセグメンタを作成する。
 
Ptr< SelectiveSearchSegmentationcv::ximgproc::segmentation::createSelectiveSearchSegmentation ()
 新しい SelectiveSearchSegmentation クラスを作成する。
 
Ptr< SelectiveSearchSegmentationStrategyColorcv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyColor ()
 新しい色ベースの戦略を作成する。
 
Ptr< SelectiveSearchSegmentationStrategyFillcv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyFill ()
 新しい塗りつぶしベースの戦略を作成する。
 
Ptr< SelectiveSearchSegmentationStrategyMultiplecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple ()
 新しい複数戦略を作成する。
 
Ptr< SelectiveSearchSegmentationStrategyMultiplecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1)
 新しい複数戦略を作成し、1つのサブ戦略を設定する。
 
Ptr< SelectiveSearchSegmentationStrategyMultiplecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2)
 新しい複数戦略を作成し、等しい重みで2つのサブ戦略を設定する。
 
Ptr< SelectiveSearchSegmentationStrategyMultiplecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3)
 新しい複数戦略を作成し、等しい重みで3つのサブ戦略を設定する。
 
Ptr< SelectiveSearchSegmentationStrategyMultiplecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyMultiple (Ptr< SelectiveSearchSegmentationStrategy > s1, Ptr< SelectiveSearchSegmentationStrategy > s2, Ptr< SelectiveSearchSegmentationStrategy > s3, Ptr< SelectiveSearchSegmentationStrategy > s4)
 新しい複数戦略を作成し、等しい重みで4つのサブ戦略を設定する。
 
Ptr< SelectiveSearchSegmentationStrategySizecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategySize ()
 新しいサイズベースの戦略を作成する。
 
Ptr< SelectiveSearchSegmentationStrategyTexturecv::ximgproc::segmentation::createSelectiveSearchSegmentationStrategyTexture ()
 新しいサイズベースの戦略を作成する。