C# Class Accord.Imaging.Filters.FastBoxBlur

Fast Box Blur filter.
Reference: http://www.vcskicks.com/box-blur.php
Inheritance: BaseInPlacePartialFilter
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

Private Methods

Méthode Description
HorizontalBoxBlur ( UnmanagedImage &image, Rectangle rect, IntRange kernelSizeRange ) : void
KernelSizeInRange ( byte kernelSize ) : IntRange
VerticalBoxBlur ( UnmanagedImage &image, Rectangle rect, IntRange kernelSizeRange ) : void

Method Details

FastBoxBlur() public méthode

Initializes a new instance of the FastBoxBlur class.
public FastBoxBlur ( ) : System.Collections.Generic
Résultat System.Collections.Generic

FastBoxBlur() public méthode

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.
Résultat System.Collections.Generic

ProcessFilter() protected méthode

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.
Résultat void