C# Class Emgu.CV.LatentSvmDetector

Laten SVM detector
Inheritance: Emgu.Util.UnmanagedObject
ファイルを表示 Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
Detect ( Byte>.Image image, float overlapThreshold ) : Emgu.CV.Structure.MCvObjectDetection[]

Find rectangular regions in the given image that are likely to contain objects and corresponding confidence levels

LatentSvmDetector ( String fileName ) : System

Load the trained detector from file

Protected Methods

Method Description
DisposeObject ( ) : void

Release the unmanaged memory associated with the LatenSvnDetector

Method Details

Detect() public method

Find rectangular regions in the given image that are likely to contain objects and corresponding confidence levels
public Detect ( Byte>.Image image, float overlapThreshold ) : Emgu.CV.Structure.MCvObjectDetection[]
image Byte>.Image The image to detect objects in
overlapThreshold float Threshold for the non-maximum suppression algorithm, Use default value of 0.5
return Emgu.CV.Structure.MCvObjectDetection[]

DisposeObject() protected method

Release the unmanaged memory associated with the LatenSvnDetector
protected DisposeObject ( ) : void
return void

LatentSvmDetector() public method

Load the trained detector from file
public LatentSvmDetector ( String fileName ) : System
fileName String The trained laten svm file
return System