[32/64bit] 輪郭領域を計算します.
imgproc_contourArea_Point2f p1,p2,p3,p4
p1 = var : [MarshalAs(UnmanagedType.LPArray)] Point2f[] contour p2 = int : int contourLength p3 = int : int oriented p4 = var : out double returnValue
(プラグイン / モジュール : OpenCvSharpExtern.dll)
この関数は,輪郭の面積を計算します.モーメントと同様に,面積は Green の式を用いて計算されます。したがって,drawContours や fillPoly を用いて輪郭を描いた場合,返される面積と,0ではないピクセル数は異なります.例:vector<Point> contour;contour.push_back(Point2f(0, 0));contour.push_back(Point2f(10, 0));contour.push_back(Point2f(10, 10));contour.push_back(Point2f(10, 10));contour.push_back(Point2f(5, 4));double area0 = contourArea(contour);vector<Point> approx;approxPolyDP(contour, approx, 5, true);double area1 = contourArea(approx);cout << "area0 =" << area0 << endl << "area1 =" << area1 << endl << "approx poly vertices" << approx.size() << endl;fragmentExamples: samples/cpp/segment_objects.cpp, samples/cpp/squares.cpp, samples/cpp/tutorial_code/ml/introduction_to_pca/introduction_to_pca.cpp, and samples/tapi/squares.cpp. 元関数名(C#): imgproc_contourArea_Point2f 元DLLエクスポート名: imgproc_contourArea_Point2f 参照元CSファイル: Internal\PInvoke\NativeMethods\imgproc\NativeMethods_imgproc.cs ▼ C言語側関数定義
CVAPI(ExceptionStatus) imgproc_contourArea_Point2f(cv::Point2f *contour, int contourLength, int oriented, double* returnValue) { BEGIN_WRAP const cv::Mat_<cv::Point2f> contourMat(contourLength, 1, contour); *returnValue = cv::contourArea(contourMat, oriented != 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 |