C# Class Accord.Imaging.Filters.LineMarker

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

Public Methods

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

Initializes a new instance of the LineMarker class.

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

Initializes a new instance of the LineMarker class.

LineMarker ( Line line ) : System.Collections.Generic

Initializes a new instance of the LineMarker class.

LineMarker ( Line line, Color markerColor ) : System.Collections.Generic

Initializes a new instance of the LineMarker class.

LineMarker ( Line line, Color markerColor, int width ) : System.Collections.Generic

Initializes a new instance of the LineMarker class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

Method Details

LineMarker() public method

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

LineMarker() public method

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

LineMarker() public method

Initializes a new instance of the LineMarker class.
public LineMarker ( Line line ) : System.Collections.Generic
line Line
return System.Collections.Generic

LineMarker() public method

Initializes a new instance of the LineMarker class.
public LineMarker ( Line line, Color markerColor ) : System.Collections.Generic
line Line
markerColor Color
return System.Collections.Generic

LineMarker() public method

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