Click or drag to resize

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)
Syntax
public void DetectMultiScale(
	IInputArray image,
	IOutputArray objects,
	Stream stream = null
)

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