Click or drag to resize

CudaGoodFeaturesToTrackDetector Constructor

http://www.emgu.com
Create the Cuda implementation of GoodFeaturesToTrackDetector

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public CudaGoodFeaturesToTrackDetector(
	DepthType srcDepth,
	int srcChannels,
	int maxCorners = 1000,
	double qualityLevel = 0.01,
	double minDistance = 0,
	int blockSize = 3,
	bool useHarrisDetector = false,
	double harrisK = 0.04
)

Parameters

srcDepth
Type: Emgu.CV.CvEnumDepthType
The depth of the src image
srcChannels
Type: SystemInt32
The number of channels in the src image
maxCorners (Optional)
Type: SystemInt32
The maximum number of channels
qualityLevel (Optional)
Type: SystemDouble
The quality level
minDistance (Optional)
Type: SystemDouble
The minimum distance
blockSize (Optional)
Type: SystemInt32
The block size
useHarrisDetector (Optional)
Type: SystemBoolean
If true, use Harris detector
harrisK (Optional)
Type: SystemDouble
Harris K
See Also