Click or drag to resize
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.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public void DetectMultiScale(
	IInputArray image,
	IOutputArray objects,
	Stream stream = null
)

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