features2d_KAZE_create

[32/64bit] KAZEのコンストラクタです。

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

p1 = int : int extended
p2 = int : int upright
p3 = float : float threshold
p4 = int : int nOctaves
p5 = int : int nOctaveLayers
p6 = int : int diffusivity
p7 = var : out IntPtr returnValue

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

解説

元関数名(C#): features2d_KAZE_create
元DLLエクスポート名: features2d_KAZE_create
参照元CSファイル: Internal\PInvoke\NativeMethods\features2d\NativeMethods_features2d_Feature2D.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) features2d_KAZE_create(
    int extended, int upright, float threshold,
    int nOctaves, int nOctaveLayers, int diffusivity,
    cv::Ptr<cv::KAZE> **returnValue)
{
    BEGIN_WRAP
    const auto ptr = cv::KAZE::create(
        extended != 0, upright != 0, threshold,
        nOctaves, nOctaveLayers, static_cast<cv::KAZE::DiffusivityType>(diffusivity));
    *returnValue = clone(ptr);
    END_WRAP
}

情報

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