http://www.emgu.com Find the edges on this image and marked them in the returned image.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> Canny(
TColor thresh,
TColor threshLinking
) |
Visual Basic |
---|
Public Function Canny ( _
thresh As TColor, _
threshLinking As TColor _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ Canny(
TColor thresh,
TColor threshLinking
) |
Parameters
- thresh
- Type: TColor
The threshhold to find initial segments of strong edges
- threshLinking
- Type: TColor
The threshold used for edge Linking
Return Value
The edges found by the Canny edge detector
See Also