C# 클래스 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.

상속: BaseInPlaceFilter
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage image ) : void

Process the filter on the specified image.

비공개 메소드들

메소드 설명
init ( IEnumerable points, Color markerColor, int width ) : Color

메소드 상세

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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
리턴 System.Collections.Generic

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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

PointsMarker() 공개 메소드

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
리턴 System.Collections.Generic

ProcessFilter() 보호된 메소드

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