Create a new HOGDescriptor using the specific parameters

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

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

Parameters

winSize
Type: System.Drawing..::.Size

[Missing <param name="winSize"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

blockSize
Type: System.Drawing..::.Size

[Missing <param name="blockSize"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

blockStride
Type: System.Drawing..::.Size

[Missing <param name="blockStride"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

cellSize
Type: System.Drawing..::.Size

[Missing <param name="cellSize"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

nbins
Type: System..::.Int32

[Missing <param name="nbins"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

derivAperture
Type: System..::.Int32

[Missing <param name="derivAperture"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

winSigma
Type: System..::.Double

[Missing <param name="winSigma"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

L2HysThreshold
Type: System..::.Double

[Missing <param name="L2HysThreshold"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

gammaCorrection
Type: System..::.Boolean

[Missing <param name="gammaCorrection"/> documentation for "M:Emgu.CV.HOGDescriptor.#ctor(System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Drawing.Size,System.Int32,System.Int32,System.Double,System.Double,System.Boolean)"]

See Also