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
Show file Open project: fajoy/RTSPExample

Public Properties

Property Type Description
GridCols int
GridRows int
MaxTotalKeyPoints int

Private Properties

Property Type Description

Public Methods

Method 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.

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

GridAdaptedFeatureDetector() public method

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
return System

Property Details

GridCols public property

Grid column count
public int GridCols
return int

GridRows public property

Grid rows count
public int GridRows
return int

MaxTotalKeyPoints public property

Maximum count of keypoints detected on the image. Only the strongest keypoints
public int MaxTotalKeyPoints
return int