CudaCannyEdgeDetectorDetect Method |
http://www.emgu.com
Finds the edges on the input src and marks them in the output image edges using the Canny algorithm.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void Detect(
IInputArray src,
IOutputArray edges,
Stream stream = null
)
Public Sub Detect (
src As IInputArray,
edges As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Detect(
IInputArray^ src,
IOutputArray^ edges,
Stream^ stream = nullptr
)
member Detect :
src : IInputArray *
edges : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Input image - edges
- Type: Emgu.CVIOutputArray
Image to store the edges found by the function - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also