http://www.emgu.com
Create a new HOGDescriptor using the specific parameters

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)

Syntax

C#
public GpuHOGDescriptor(
	Size winSize,
	Size blockSize,
	Size blockStride,
	Size cellSize,
	int nbins,
	double winSigma,
	double L2HysThreshold,
	bool gammaCorrection,
	int nLevels
)
Visual Basic
Public Sub New ( _
	winSize As Size, _
	blockSize As Size, _
	blockStride As Size, _
	cellSize As Size, _
	nbins As Integer, _
	winSigma As Double, _
	L2HysThreshold As Double, _
	gammaCorrection As Boolean, _
	nLevels As Integer _
)
Visual C++
public:
GpuHOGDescriptor(
	Size winSize, 
	Size blockSize, 
	Size blockStride, 
	Size cellSize, 
	int nbins, 
	double winSigma, 
	double L2HysThreshold, 
	bool gammaCorrection, 
	int nLevels
)

Parameters

winSize
Type: System.Drawing..::..Size
Detection window size. Must be aligned to block size and block stride.
blockSize
Type: System.Drawing..::..Size
Block size in cells. Only (2,2) is supported for now.
blockStride
Type: System.Drawing..::..Size
Block stride. Must be a multiple of cell size.
cellSize
Type: System.Drawing..::..Size
Cell size. Only (8, 8) is supported for now.
nbins
Type: System..::..Int32
Number of bins. Only 9 bins per cell is supported for now.
winSigma
Type: System..::..Double
Gaussian smoothing window parameter.
L2HysThreshold
Type: System..::..Double
L2-Hys normalization method shrinkage.
gammaCorrection
Type: System..::..Boolean
Do gamma correction preprocessing or not.
nLevels
Type: System..::..Int32
Maximum number of detection window increases.

See Also