C# Class Accord.Imaging.Filters.PointsMarker

Filter to mark (highlight) points in a image.

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

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

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

Public Methods

Method Description
PointsMarker ( Color markerColor ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( Color markerColor, int width ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IEnumerable points ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IEnumerable points, Color markerColor ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IEnumerable points, Color markerColor, int width ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IList points ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IList points, Color markerColor ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

PointsMarker ( IList points, Color markerColor, int width ) : System.Collections.Generic

Initializes a new instance of the PointsMarker class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

Private Methods

Method Description
init ( IEnumerable points, Color markerColor, int width ) : Color

Method Details

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( Color markerColor ) : System.Collections.Generic
markerColor System.Drawing.Color
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( Color markerColor, int width ) : System.Collections.Generic
markerColor System.Drawing.Color
width int
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IEnumerable points ) : System.Collections.Generic
points IEnumerable
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IEnumerable points, Color markerColor ) : System.Collections.Generic
points IEnumerable
markerColor System.Drawing.Color
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IEnumerable points, Color markerColor, int width ) : System.Collections.Generic
points IEnumerable
markerColor System.Drawing.Color
width int
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IList points ) : System.Collections.Generic
points IList
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IList points, Color markerColor ) : System.Collections.Generic
points IList
markerColor System.Drawing.Color
return System.Collections.Generic

PointsMarker() public method

Initializes a new instance of the PointsMarker class.
public PointsMarker ( IList points, Color markerColor, int width ) : System.Collections.Generic
points IList
markerColor System.Drawing.Color
width int
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