Create a new HOGDescriptor using the specific parameters

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public HOGDescriptor(
	Size winSize,
	Size blockSize,
	Size blockStride,
	Size cellSize,
	int nbins,
	int derivAperture,
	double winSigma,
	double L2HysThreshold,
	bool gammaCorrection
)
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 _
)
public:
HOGDescriptor(
	Size winSize, 
	Size blockSize, 
	Size blockStride, 
	Size cellSize, 
	int nbins, 
	int derivAperture, 
	double winSigma, 
	double L2HysThreshold, 
	bool gammaCorrection
)

Parameters

winSize
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
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
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
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
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
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
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
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
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