[Missing <summary> documentation for "M:Emgu.CV.HOGDescriptor.Compute(Emgu.CV.Image{Emgu.CV.Structure.Bgr,System.Byte},System.Drawing.Size,System.Drawing.Size,System.Drawing.Point[])"]

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public float[] Compute(
	Image<Bgr, byte> image,
	Size winStride,
	Size padding,
	Point[] locations
)
Public Function Compute ( _
	image As Image(Of Bgr, Byte), _
	winStride As Size, _
	padding As Size, _
	locations As Point() _
) As Single()
public:
array<float>^ Compute(
	Image<Bgr, unsigned char>^ image, 
	Size winStride, 
	Size padding, 
	array<Point>^ locations
)

Parameters

image
Image<(Of <(<'Bgr, Byte>)>)>
The image
winStride
Size
Window stride. Must be a multiple of block stride.
padding
Size

[Missing <param name="padding"/> documentation for "M:Emgu.CV.HOGDescriptor.Compute(Emgu.CV.Image{Emgu.CV.Structure.Bgr,System.Byte},System.Drawing.Size,System.Drawing.Size,System.Drawing.Point[])"]

locations
array<Point>[]()[][]
Locations for the computation. Can be null if not needed

Return Value

The descriptor vector

See Also