ximgproc_createFastLineDetector

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

ximgproc_createFastLineDetector p1,p2,p3,p4,p5,p6,p7

p1 = int : int length_threshold
p2 = float : float distance_threshold
p3 = double : double canny_th1
p4 = double : double canny_th2
p5 = int : int canny_aperture_size
p6 = int : int do_merge
p7 = var : out IntPtr returnValue

(プラグイン / モジュール : OpenCvSharpExtern.dll)

解説

例:fld_lines.cpp.

元関数名(C#): ximgproc_createFastLineDetector
元DLLエクスポート名: ximgproc_createFastLineDetector
参照元CSファイル: Internal\PInvoke\NativeMethods\ximgproc\NativeMethods_ximgproc_FastLineDetector.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) ximgproc_createFastLineDetector(
    int length_threshold, float distance_threshold, double canny_th1, double canny_th2, int canny_aperture_size, int do_merge,
    cv::Ptr<cv::ximgproc::FastLineDetector> **returnValue)
{
    BEGIN_WRAP
    const auto ptr = cv::ximgproc::createFastLineDetector(
        length_threshold, distance_threshold, canny_th1, canny_th2, canny_aperture_size, do_merge != 0);
    *returnValue = new cv::Ptr<cv::ximgproc::FastLineDetector>(ptr);
    END_WRAP
}

情報

プラグイン / モジュールOpenCvSharpExtern.dll
バージョン1.00
作成日2021/11/30
著作者inovia
URLhttps://hsp.moe/
備考#include "OpenCvSharpExtern32.as"
#include "OpenCvSharpExtern64.as"
使用するHSPランタイムのビット数に合わせたインクルードファイルを使用すること
タイプOpenCVSharpラッパーDLL
グループNativeMethods_ximgproc_FastLineDetector
対応環境
  • Windows 版 HSP
hs ファイルhsphelp\OpenCvSharpExtern.hs