C# Class Emgu.CV.Features2D.GridAdaptedFeatureDetector

Adapts a detector to partition the source image into a grid and detect points in each cell.
Inheritance: Emgu.Util.UnmanagedObject, IKeyPointDetector
Afficher le fichier Open project: fajoy/RTSPExample

Méthodes publiques

Свойство Type Description
GridCols int
GridRows int
MaxTotalKeyPoints int

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
GridAdaptedFeatureDetector ( IKeyPointDetector detector, int maxTotalKeyPoints, int gridRows, int gridCols ) : System

Adapts a detector to partition the source image into a grid and detect points in each cell.

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

GridAdaptedFeatureDetector() public méthode

Adapts a detector to partition the source image into a grid and detect points in each cell.
public GridAdaptedFeatureDetector ( IKeyPointDetector detector, int maxTotalKeyPoints, int gridRows, int gridCols ) : System
detector IKeyPointDetector Detector that will be adapted
maxTotalKeyPoints int Maximum count of keypoints detected on the image. Only the strongest keypoints
gridRows int Grid rows count
gridCols int Grid column count
Résultat System

Property Details

GridCols public_oe property

Grid column count
public int GridCols
Résultat int

GridRows public_oe property

Grid rows count
public int GridRows
Résultat int

MaxTotalKeyPoints public_oe property

Maximum count of keypoints detected on the image. Only the strongest keypoints
public int MaxTotalKeyPoints
Résultat int