C# 클래스 ImageProcessor.Imaging.Filters.EdgeDetection.ConvolutionFilter

The convolution filter for applying gradient operators to detect edges within an image.
파일 보기 프로젝트 열기: JimBobSquarePants/ImageProcessor 1 사용 예제들

공개 메소드들

메소드 설명
ConvolutionFilter ( IEdgeFilter edgeFilter, bool greyscale ) : System

Initializes a new instance of the ConvolutionFilter class.

Process2DFilter ( Image source ) : Bitmap

Processes the given bitmap to apply the current instance of I2DEdgeFilter.

ProcessFilter ( Image source ) : Bitmap

Processes the given bitmap to apply the current instance of IEdgeFilter.

메소드 상세

ConvolutionFilter() 공개 메소드

Initializes a new instance of the ConvolutionFilter class.
public ConvolutionFilter ( IEdgeFilter edgeFilter, bool greyscale ) : System
edgeFilter IEdgeFilter /// The to apply. ///
greyscale bool /// Whether to produce a greyscale output. ///
리턴 System

Process2DFilter() 공개 메소드

Processes the given bitmap to apply the current instance of I2DEdgeFilter.
public Process2DFilter ( Image source ) : Bitmap
source Image The image to process.
리턴 System.Drawing.Bitmap

ProcessFilter() 공개 메소드

Processes the given bitmap to apply the current instance of IEdgeFilter.
public ProcessFilter ( Image source ) : Bitmap
source Image The image to process.
리턴 System.Drawing.Bitmap