Click or drag to resize

CudaCannyEdgeDetector Constructor

http://www.emgu.com
Canny edge detector using Cuda.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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