[32/64bit] Cannyアルゴリズム[41]を用いて,画像のエッジを検出します.
imgproc_Canny2 p1,p2,p3,p4,p5,p6
p1 = sptr : IntPtr dx p2 = sptr : IntPtr dy p3 = sptr : IntPtr edges p4 = double : double threshold1 p5 = double : double threshold2 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_Canny2 元DLLエクスポート名: imgproc_Canny2 参照元CSファイル: Internal\PInvoke\NativeMethods\imgproc\NativeMethods_imgproc.cs ▼ C言語側関数定義
CVAPI(ExceptionStatus) imgproc_Canny2( cv::_InputArray *dx, cv::_InputArray *dy, cv::_OutputArray *edges, double threshold1, double threshold2, int L2gradient = false) { BEGIN_WRAP cv::Canny(*dx, *dy, *edges, threshold1, threshold2, L2gradient != 0); END_WRAP }
プラグイン / モジュール | OpenCvSharpExtern.dll |
バージョン | 1.00 |
作成日 | 2021/11/30 |
著作者 | inovia |
URL | https://hsp.moe/ |
備考 | #include "OpenCvSharpExtern32.as"
#include "OpenCvSharpExtern64.as" 使用するHSPランタイムのビット数に合わせたインクルードファイルを使用すること |
タイプ | OpenCVSharpラッパーDLL |
グループ | NativeMethods_imgproc |
対応環境 |
|
hs ファイル | hsphelp\OpenCvSharpExtern.hs |