CudaCascadeClassifierDetectMultiScale Method |
http://www.emgu.com
Detects objects of different sizes in the input image.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void DetectMultiScale(
IInputArray image,
IOutputArray objects,
Stream stream = null
)
Public Sub DetectMultiScale (
image As IInputArray,
objects As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void DetectMultiScale(
IInputArray^ image,
IOutputArray^ objects,
Stream^ stream = nullptr
)
member DetectMultiScale :
image : IInputArray *
objects : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
Matrix of type CV_8U containing an image where objects should be detected. - objects
- Type: Emgu.CVIOutputArray
Buffer to store detected objects (rectangles). - 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