C# Class Emgu.CV.Features2D.StarDetector

Afficher le fichier Open project: fajoy/RTSPExample Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
DisposeObject ( ) : void

Release the unmanaged memory associated with this detector.

Method Details

DisposeObject() protected méthode

Release the unmanaged memory associated with this detector.
protected DisposeObject ( ) : void
Résultat void

StarDetector() public méthode

Construct default star detector
public StarDetector ( ) : System
Résultat System

StarDetector() public méthode

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. ///
Résultat System