imgproc_Canny1

[32/64bit] Cannyアルゴリズム[41]を用いて,画像のエッジを検出します.

imgproc_Canny1 p1,p2,p3,p4,p5,p6

p1 = sptr : IntPtr src
p2 = sptr : IntPtr edges
p3 = double : double threshold1
p4 = double : double threshold2
p5 = int : int apertureSize
p6 = int : int l2Gradient

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

解説

この関数は,Cannyアルゴリズムを用いて,入力画像中のエッジを検出し,出力マップのエッジにマーキングします.threshold1 と threshold2 の間の最小値が,エッジの連結に利用されます.また,最大の値は,強いエッジの初期セグメントを見つけるために利用されます.http://en.wikipedia.org/wiki/Canny_edge_detectorExamples: samples/cpp/edge.cpp, samples/cpp/squares.cpp, samples/cpp/tutorial_code/ImgTrans/houghlines.cpp, and samples/tapi/squares.cpp を参照してください。

元関数名(C#): imgproc_Canny1
元DLLエクスポート名: imgproc_Canny1
参照元CSファイル: Internal\PInvoke\NativeMethods\imgproc\NativeMethods_imgproc.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) imgproc_Canny1(cv::_InputArray *src, cv::_OutputArray *edges,
                          double threshold1, double threshold2, int apertureSize, int L2gradient)
{
    BEGIN_WRAP
    cv::Canny(*src, *edges, threshold1, threshold2, apertureSize, L2gradient != 0);
    END_WRAP
}

情報

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