Click or drag to resize
HOGDescriptor Constructor (IInputArray, Size, Size, Size, Int32, Int32, Double, Double, Boolean)
http://www.emgu.com
Create a new HOGDescriptor using the specific parameters.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntax
public HOGDescriptor(
	IInputArray template,
	Size blockSize,
	Size blockStride,
	Size cellSize,
	int nbins = 9,
	int derivAperture = 1,
	double winSigma = -1,
	double L2HysThreshold = 0.2,
	bool gammaCorrection = true
)

Parameters

template
Type: Emgu.CVIInputArray
The template image to be detected.
blockSize
Type: System.DrawingSize
Block size in cells. Use (16, 16) for default.
blockStride
Type: System.DrawingSize
Block stride. Must be a multiple of cell size. Use (8,8) for default.
cellSize
Type: System.DrawingSize
Cell size. Use (8, 8) for default.
nbins (Optional)
Type: SystemInt32
Number of bins. Use 9 for default.
derivAperture (Optional)
Type: SystemInt32
Use 1 for default.
winSigma (Optional)
Type: SystemDouble
Gaussian smoothing window parameter. Use -1 for default.
L2HysThreshold (Optional)
Type: SystemDouble
L2-Hys normalization method shrinkage. Use 0.2 for default.
gammaCorrection (Optional)
Type: SystemBoolean
Do gamma correction preprocessing or not. Use true for default.
See Also