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

クラス

class cv::ximgproc::FastLineDetector
で説明されている FLD (Fast Line Detector) アルゴリズムを実装したクラス。[Lee14]..[【詳解】(英語]

関数

CV_EXPORTS_W Ptr< FastLineDetector > cv::ximgproc::createFastLineDetector (int length_threshold=10, float distance_threshold=1.414213562f, double canny_th1=50.0, double canny_th2=50.0, int canny_aperture_size=3, bool do_merge=false)
オブジェクトへのスマート ポインタを作成し、初期化します。FastLineDetectorオブジェクトを作成し、それを初期化します。[【詳解】(英語]

詳解

関数詳解

createFastLineDetector()

CV_EXPORTS_W Ptr< FastLineDetector > cv::ximgproc::createFastLineDetector ( int length_threshold = 10,
float distance_threshold = 1.414213562f,
double canny_th1 = 50.0,
double canny_th2 = 50.0,
int canny_aperture_size = 3,
bool do_merge = false
)

オブジェクトへのスマート ポインタを作成し、初期化します。FastLineDetectorオブジェクトを作成し、それを初期化します。

引数
length_threshold これより短いセグメントは破棄される
distance_threshold これよりも遠い仮説線分から配置された点は外れ値とみなされる
canny_th1 のヒステリシス手順の第一閾値Canny()
canny_th2 ヒステリシス処理のための第2のしきい値Canny()
canny_aperture_size sobel演算子の開口サイズはCanny(). ゼロの場合Canny()は適用されず、入力画像はエッジ画像として扱われます。
do_merge 真であれば,セグメントのインクリメンタルな結合が行われます.