C# Class Accord.Imaging.Filters.PairsMarker

Filter to mark (highlight) pairs of points in a image.
Inheritance: BaseInPlaceFilter
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
PairsMarker ( IntPoint points1, IntPoint points2 ) : System.Collections.Generic

Initializes a new instance of the PairsMarker class.

PairsMarker ( IntPoint points1, IntPoint points2, Color markerColor ) : System.Collections.Generic

Initializes a new instance of the PairsMarker class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

Method Details

PairsMarker() public method

Initializes a new instance of the PairsMarker class.
public PairsMarker ( IntPoint points1, IntPoint points2 ) : System.Collections.Generic
points1 AForge.IntPoint Set of starting points.
points2 AForge.IntPoint Set of corresponding points.
return System.Collections.Generic

PairsMarker() public method

Initializes a new instance of the PairsMarker class.
public PairsMarker ( IntPoint points1, IntPoint points2, Color markerColor ) : System.Collections.Generic
points1 AForge.IntPoint Set of starting points.
points2 AForge.IntPoint Set of corresponding points.
markerColor System.Drawing.Color The color of the lines to be marked.
return System.Collections.Generic

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image ) : void
image Accord.Imaging.UnmanagedImage Source image data.
return void