C# Class Emgu.CV.Features2D.StarDetector

Mostrar archivo Open project: fajoy/RTSPExample Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
StarDetector ( ) : System

Construct default star detector

StarDetector ( int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize ) : System

Create a star detector with the specific parameters

Protected Methods

Method Description
DisposeObject ( ) : void

Release the unmanaged memory associated with this detector.

Method Details

DisposeObject() protected method

Release the unmanaged memory associated with this detector.
protected DisposeObject ( ) : void
return void

StarDetector() public method

Construct default star detector
public StarDetector ( ) : System
return System

StarDetector() public method

Create a star detector with the specific parameters
public StarDetector ( int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize ) : System
maxSize int /// Use 45 as default. Maximum size of the features. The following /// values of the parameter are supported: /// 4, 6, 8, 11, 12, 16, 22, 23, 32, 45, 46, 64, 90, 128
responseThreshold int /// Use 30 as default. Threshold for the approximated laplacian, /// used to eliminate weak features. The larger it is, /// the less features will be retrieved ///
lineThresholdProjected int /// Use 10 as default. Another threshold for the laplacian to eliminate edges. /// The larger the threshold, the more points you get. ///
lineThresholdBinarized int /// Use 8 as default. Another threshold for the feature size to eliminate edges. /// The larger the threshold, the more points you get.
suppressNonmaxSize int /// Use 5 as default. ///
return System