CvLatentSvmDetectObjects Method (IplImage, CvLatentSvmDetector, CvMemStorage, Single, Int32) OpenCvSharp Class Library
find rectangular regions in the given image that are likely to contain objects and corresponding confidence levels

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static CvSeq<CvObjectDetection> LatentSvmDetectObjects(
	IplImage image,
	CvLatentSvmDetector detector,
	CvMemStorage storage,
	float overlapThreshold,
	int numThreads
)

Parameters

image
Type: OpenCvSharpIplImage
image to detect objects in
detector
Type: OpenCvSharpCvLatentSvmDetector
Latent SVM detector in internal representation
storage
Type: OpenCvSharpCvMemStorage
memory storage to store the resultant sequence of the object candidate rectangles
overlapThreshold
Type: SystemSingle
threshold for the non-maximum suppression algorithm = 0.5f [here will be the reference to original paper]
numThreads
Type: SystemInt32

[Missing <param name="numThreads"/> documentation for "M:OpenCvSharp.Cv.LatentSvmDetectObjects(OpenCvSharp.IplImage,OpenCvSharp.CvLatentSvmDetector,OpenCvSharp.CvMemStorage,System.Single,System.Int32)"]

Return Value

Type: CvSeqCvObjectDetection

[Missing <returns> documentation for "M:OpenCvSharp.Cv.LatentSvmDetectObjects(OpenCvSharp.IplImage,OpenCvSharp.CvLatentSvmDetector,OpenCvSharp.CvMemStorage,System.Single,System.Int32)"]

See Also

Reference