objdetect_HOGDescriptor_new2

[32/64bit] cv::HOGDescriptor のインスタンスを生成します

objdetect_HOGDescriptor_new2 p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11,p12

p1 = ARGS_SIZE : Size winSize
p2 = ARGS_SIZE : Size blockSize
p3 = ARGS_SIZE : Size blockStride
p4 = ARGS_SIZE : Size cellSize
p5 = int : int nbins
p6 = int : int derivAperture
p7 = double : double winSigma
p8 = int : [MarshalAs(UnmanagedType.I4)] HistogramNormType histogramNormType
p9 = double : double l2HysThreshold
p10 = int : int gammaCorrection
p11 = int : int nlevels
p12 = var : out IntPtr returnValue

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

解説

HOG (Histogram of Oriented Gradients) ディスクリプタとオブジェクト検出器の実装.


Navneet DalalとBill Triggsによって紹介されたHOGディスクリプタアルゴリズム[50]を使用しています.


便利なリンク集です.


https://hal.inria.fr/inria-00548512/document/


https://en.wikipedia.org/wiki/Histogram_of_oriented_gradients


https://software.intel.com/en-us/ipp-dev-reference-histogram-of-oriented-gradients-hog-descriptor


http://www.learnopencv.com/histogram-of-oriented-gradients


http://www.learnopencv.com/handwritten-digits-classification-an-opencv-c-python-tutorial


例:samples/cpp/peopledetect.cpp,samples/cpp/train_HOG.cpp,samples/tapi/hog.cpp.


元関数名(C#): objdetect_HOGDescriptor_new2
元DLLエクスポート名: objdetect_HOGDescriptor_new2
参照元CSファイル: Internal\PInvoke\NativeMethods\objdetect\NativeMethods_objdetect_HOGDescriptor.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) objdetect_HOGDescriptor_new2(
    MyCvSize winSize, MyCvSize blockSize, MyCvSize blockStride, MyCvSize cellSize,
    int nbins, int derivAperture, double winSigma, int histogramNormType, double L2HysThreshold, int gammaCorrection, int nlevels,
    cv::HOGDescriptor **returnValue)
{
    BEGIN_WRAP
    *returnValue = new cv::HOGDescriptor(cpp(winSize), cpp(blockSize), cpp(blockStride), cpp(cellSize), nbins, derivAperture, 
                                 winSigma, static_cast<cv::HOGDescriptor::HistogramNormType>(histogramNormType), L2HysThreshold, gammaCorrection != 0, nlevels);
    END_WRAP
}

情報

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