dnn_NMSBoxes_Rect2d

[32/64bit] ボックスとそれに対応するスコアが与えられると、非最大級の抑制を行います。

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

p1 = sptr : IntPtr bboxes
p2 = sptr : IntPtr scores
p3 = float : float score_threshold
p4 = float : float nms_threshold
p5 = sptr : IntPtr indices
p6 = float : float eta
p7 = int : int top_k

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

解説

例:samples/dnn/object_detection.cpp.

元関数名(C#): dnn_NMSBoxes_Rect2d
元DLLエクスポート名: dnn_NMSBoxes_Rect2d
参照元CSファイル: Internal\PInvoke\NativeMethods\dnn\NativeMethods_dnn.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) dnn_NMSBoxes_Rect2d(std::vector<cv::Rect2d> *bboxes, std::vector<float> *scores,
    const float score_threshold, const float nms_threshold,
    std::vector<int> *indices, const float eta, const int top_k)
{
    BEGIN_WRAP
    cv::dnn::NMSBoxes(*bboxes, *scores, score_threshold, nms_threshold, *indices, eta, top_k);
    END_WRAP
}

情報

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