Click or drag to resize
CudaCannyEdgeDetector Constructor
http://www.emgu.com
Canny edge detector using Cuda.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaCannyEdgeDetector(
	double lowThreshold,
	double highThreshold,
	int apertureSize = 3,
	bool L2gradient = false
)

Parameters

lowThreshold
Type: SystemDouble
The first threshold, used for edge linking
highThreshold
Type: SystemDouble
The second threshold, used to find initial segments of strong edges
apertureSize (Optional)
Type: SystemInt32
Aperture parameter for Sobel operator, use 3 for default
L2gradient (Optional)
Type: SystemBoolean
Use false for default
See Also