C# Class Accord.Imaging.Filters.RectanglesMarker

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

Public Methods

Method Description
RectanglesMarker ( ) : System.Collections.Generic

Initializes a new instance of the RectanglesMarker class.

RectanglesMarker ( Color markerColor ) : System.Collections.Generic

Initializes a new instance of the RectanglesMarker class.

RectanglesMarker ( IEnumerable rectangles ) : System.Collections.Generic

Initializes a new instance of the RectanglesMarker class.

RectanglesMarker ( IEnumerable rectangles, Color markerColor ) : System.Collections.Generic

Initializes a new instance of the RectanglesMarker class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image ) : void

Applies the filter to the image.

Method Details

ProcessFilter() protected method

Applies the filter to the image.
protected ProcessFilter ( UnmanagedImage image ) : void
image UnmanagedImage
return void

RectanglesMarker() public method

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

RectanglesMarker() public method

Initializes a new instance of the RectanglesMarker class.
public RectanglesMarker ( Color markerColor ) : System.Collections.Generic
markerColor System.Drawing.Color The color to use to drawn the rectangles.
return System.Collections.Generic

RectanglesMarker() public method

Initializes a new instance of the RectanglesMarker class.
public RectanglesMarker ( IEnumerable rectangles ) : System.Collections.Generic
rectangles IEnumerable Set of rectangles to be drawn.
return System.Collections.Generic

RectanglesMarker() public method

Initializes a new instance of the RectanglesMarker class.
public RectanglesMarker ( IEnumerable rectangles, Color markerColor ) : System.Collections.Generic
rectangles IEnumerable Set of rectangles to be drawn.
markerColor System.Drawing.Color The color to use to drawn the rectangles.
return System.Collections.Generic