C# 클래스 AForge.Imaging.Filters.Dilatation

Dilatation operator from Mathematical Morphology
상속: IFilter
파일 보기 프로젝트 열기: holisticware-admin/MonoVersal.AForgeNET 1 사용 예제들

공개 메소드들

메소드 설명
Dilatation ( ) : System

Initializes a new instance of the Dilatation class.

Initializes new instance of the Dilatation class using default structuring element - 3x3 structuring element with all elements equal to 1.

Dilatation ( short se ) : System

Initializes a new instance of the Dilatation class.

Structuring elemement for the dilatation morphological operator must be square matrix with odd size in the range of [3, 99].

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData, Rectangle rect ) : void

Process the filter on the specified image.

메소드 상세

Dilatation() 공개 메소드

Initializes a new instance of the Dilatation class.

Initializes new instance of the Dilatation class using default structuring element - 3x3 structuring element with all elements equal to 1.

public Dilatation ( ) : System
리턴 System

Dilatation() 공개 메소드

Initializes a new instance of the Dilatation class.

Structuring elemement for the dilatation morphological operator must be square matrix with odd size in the range of [3, 99].

Invalid size of structuring element.
public Dilatation ( short se ) : System
se short Structuring element.
리턴 System

ProcessFilter() 보호된 메소드

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData, Rectangle rect ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
rect Rectangle Image rectangle for processing by the filter.
리턴 void