ImageTColor, TDepthCanny Method (Double, Double) |
http://www.emgu.com Find the edges on this image and marked them in the returned image.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Image<Gray, byte> Canny(
double thresh,
double threshLinking
)
Public Function Canny (
thresh As Double,
threshLinking As Double
) As Image(Of Gray, Byte)
public:
Image<Gray, unsigned char>^ Canny(
double thresh,
double threshLinking
)
member Canny :
thresh : float *
threshLinking : float -> Image<Gray, byte>
Parameters
- thresh
- Type: SystemDouble
The threshhold to find initial segments of strong edges - threshLinking
- Type: SystemDouble
The threshold used for edge Linking
Return Value
Type:
ImageGray,
Byte The edges found by the Canny edge detector
See Also