C# Class Accord.Imaging.Filters.FeaturesMarker

Filter to mark (highlight) feature points in a image.

The filter highlights feature points on the image using a given set of points.

The filter accepts 8 bpp grayscale and 24 color images for processing.

Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
FeaturesMarker ( ) : System.Drawing

Initializes a new instance of the FeaturesMarker class.

FeaturesMarker ( IEnumerable points ) : System.Drawing

Initializes a new instance of the FeaturesMarker class.

FeaturesMarker ( IEnumerable points, double scale ) : System.Drawing

Initializes a new instance of the FeaturesMarker class.

FeaturesMarker ( IEnumerable points ) : System.Drawing

Initializes a new instance of the FeaturesMarker class.

FeaturesMarker ( IEnumerable points, double scale ) : System.Drawing

Initializes a new instance of the FeaturesMarker class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

Private Methods

Method Description
init ( IEnumerable points ) : void

Method Details

FeaturesMarker() public method

Initializes a new instance of the FeaturesMarker class.
public FeaturesMarker ( ) : System.Drawing
return System.Drawing

FeaturesMarker() public method

Initializes a new instance of the FeaturesMarker class.
public FeaturesMarker ( IEnumerable points ) : System.Drawing
points IEnumerable
return System.Drawing

FeaturesMarker() public method

Initializes a new instance of the FeaturesMarker class.
public FeaturesMarker ( IEnumerable points, double scale ) : System.Drawing
points IEnumerable
scale double
return System.Drawing

FeaturesMarker() public method

Initializes a new instance of the FeaturesMarker class.
public FeaturesMarker ( IEnumerable points ) : System.Drawing
points IEnumerable
return System.Drawing

FeaturesMarker() public method

Initializes a new instance of the FeaturesMarker class.
public FeaturesMarker ( IEnumerable points, double scale ) : System.Drawing
points IEnumerable
scale double
return System.Drawing

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
return void