CudaCascadeClassifierDetectMultiScale Method |
http://www.emgu.com
Finds rectangular regions in the given image that are likely to contain objects the cascade has been trained for and returns those regions as a sequence of rectangles.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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
The image where search will take place - objects
- Type: Emgu.CVIOutputArray
[Missing <param name="objects"/> documentation for "M:Emgu.CV.Cuda.CudaCascadeClassifier.DetectMultiScale(Emgu.CV.IInputArray,Emgu.CV.IOutputArray,Emgu.CV.Cuda.Stream)"]
- stream (Optional)
- Type: Emgu.CV.CudaStream
[Missing <param name="stream"/> documentation for "M:Emgu.CV.Cuda.CudaCascadeClassifier.DetectMultiScale(Emgu.CV.IInputArray,Emgu.CV.IOutputArray,Emgu.CV.Cuda.Stream)"]
Return Value
Type:
An array of regions for the detected objects
See Also