core_calcCovarMatrix_Mat

[32/64bit] ベクトルの集合の共分散行列を計算します。

core_calcCovarMatrix_Mat p1,p2,p3,p4,p5,p6

p1 = sptr : [MarshalAs(UnmanagedType.LPArray)] IntPtr[] samples
p2 = int : int nsamples
p3 = sptr : IntPtr covar
p4 = sptr : IntPtr mean
p5 = int : int flags
p6 = int : int ctype

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

解説

関数 cv::calcCovarMatrix は,入力ベクトル集合の共分散行列と,オプションとして平均ベクトルを求めます.

元関数名(C#): core_calcCovarMatrix_Mat
元DLLエクスポート名: core_calcCovarMatrix_Mat
参照元CSファイル: Internal\PInvoke\NativeMethods\core\NativeMethods_core.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) core_calcCovarMatrix_Mat(cv::Mat **samples, int nsamples, cv::Mat *covar, 
                                     cv::Mat *mean, int flags, int ctype)
{
    BEGIN_WRAP
    std::vector<cv::Mat> samplesVec(nsamples);
    for (int i = 0; i < nsamples; i++)    
        samplesVec[i] = *samples[i];
    
    cv::calcCovarMatrix(&samplesVec[0], nsamples, *covar, *mean, flags, ctype);
    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