core_findNonZero

[32/64bit] 0 ではないピクセルの位置のリストを返します.

core_findNonZero p1,p2

p1 = sptr : IntPtr src
p2 = sptr : IntPtr idx

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

解説

2値行列(おそらく,threshold(),compare(),>,==などの処理から返されます)が与えられた場合,すべての非ゼロインデックスを cv::Mat または std::vector<cv::Point> (x,y) として返します.例えば, cv::Mat binaryImage; // 入力であるバイナリ画像ecv::Mat locations; // 出力である,非ゼロピクセルの位置cv::findNonZero(binaryImage, locations);// ピクセル座標へのアクセスPoint pnt = locations.at<Point>(i);fragmentorcv::Mat binaryImage; // 入力,バイナリイメージevector<Point> locations; // 出力,0ではないピクセルの位置cv::findNonZero(binaryImage, locations);// アクセスピクセル座標Point pnt = locations[i];fragment

元関数名(C#): core_findNonZero
元DLLエクスポート名: core_findNonZero
参照元CSファイル: Internal\PInvoke\NativeMethods\core\NativeMethods_core.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) core_findNonZero(cv::_InputArray* src, cv::_OutputArray* idx)
{
    BEGIN_WRAP
    cv::findNonZero(*src, *idx);
    END_WRAP
}

情報

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