ImageTColor, TDepthCanny Method (Double, Double) |
http://www.emgu.com Find the edges on this image and marked them in the returned image.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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