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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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
[Missing <param name="stream"/> documentation for "M:Emgu.CV.Cuda.CudaCannyEdgeDetector.Detect(Emgu.CV.IInputArray,Emgu.CV.IOutputArray,Emgu.CV.Cuda.Stream)"]
See Also