Click or drag to resize

CudaHOG Constructor

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

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public CudaHOG(
	Size winSize,
	Size blockSize,
	Size blockStride,
	Size cellSize,
	int nbins = 9
)

Parameters

winSize
Type: System.DrawingSize
Detection window size. Must be aligned to block size and block stride. Must match the size of the training image. Use (64, 128) for default.
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.
See Also