Find the edges on this image and marked them in the returned image.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> Canny(
	TColor thresh,
	TColor threshLinking
)
Public Function Canny ( _
	thresh As TColor, _
	threshLinking As TColor _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Canny(
	TColor thresh, 
	TColor threshLinking
)

Parameters

thresh
TColor
The threshhold to find initial segments of strong edges
threshLinking
TColor
The threshold used for edge Linking

Return Value

The edges found by the Canny edge detector

See Also