C# 클래스 Accord.Imaging.Filters.FastBoxBlur

Fast Box Blur filter.
Reference: http://www.vcskicks.com/box-blur.php
상속: BaseInPlacePartialFilter
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
FastBoxBlur ( ) : System.Collections.Generic

Initializes a new instance of the FastBoxBlur class.

FastBoxBlur ( byte horizontalKernelSize, byte verticalKernelSize ) : System.Collections.Generic

Initializes a new instance of the FastBoxBlur class.

보호된 메소드들

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

Process the filter on the specified image.

비공개 메소드들

메소드 설명
HorizontalBoxBlur ( UnmanagedImage &image, Rectangle rect, IntRange kernelSizeRange ) : void
KernelSizeInRange ( byte kernelSize ) : IntRange
VerticalBoxBlur ( UnmanagedImage &image, Rectangle rect, IntRange kernelSizeRange ) : void

메소드 상세

FastBoxBlur() 공개 메소드

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

FastBoxBlur() 공개 메소드

Initializes a new instance of the FastBoxBlur class.
public FastBoxBlur ( byte horizontalKernelSize, byte verticalKernelSize ) : System.Collections.Generic
horizontalKernelSize byte Horizontal kernel size.
verticalKernelSize byte Vertical kernel size.
리턴 System.Collections.Generic

ProcessFilter() 보호된 메소드

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