C# Class AForge.Imaging.Filters.Dilatation3x3

Dilatation operator from Mathematical Morphology with 3x3 structuring element.

The filter represents an optimized version of Dilatation filter, which is aimed for grayscale image processing with 3x3 structuring element.

See Dilatation filter, which represents generic version of dilatation filter supporting custom structuring elements and wider range of image formats.

The filter accepts 8 bpp grayscale images for processing.

Inheritance: BaseUsingCopyPartialFilter
Afficher le fichier Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Méthodes publiques

Méthode Description
Dilatation3x3 ( ) : System

Initializes a new instance of the Dilatation3x3 class.

Méthodes protégées

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

Process the filter on the specified image.

Method Details

Dilatation3x3() public méthode

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

ProcessFilter() protected méthode

Process the filter on the specified image.
Processing rectangle mast be at least 3x3 in size.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData, Rectangle rect ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
rect System.Drawing.Rectangle Image rectangle for processing by the filter.
Résultat void