C# Class Accord.Imaging.Filters.PointedColorFloodFill

Flood filling with specified color starting from specified point.

The filter performs image's area filling (4 directional) starting from the specified point. It fills the area of the pointed color, but also fills other colors, which are similar to the pointed within specified tolerance. The area is filled using specified fill color.

The filter accepts 8 bpp grayscale images and 24 bpp color images for processing.

Sample usage:

// create filter PointedColorFloodFill filter = new PointedColorFloodFill( ); // configure the filter filter.Tolerance = Color.FromArgb( 150, 92, 92 ); filter.FillColor = Color.FromArgb( 255, 255, 255 ); filter.StartingPoint = new IntPoint( 150, 100 ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

Inheritance: BaseInPlacePartialFilter
Afficher le fichier Open project: accord-net/framework

Méthodes publiques

Méthode Description
PointedColorFloodFill ( ) : System

Initializes a new instance of the PointedColorFloodFill class.

PointedColorFloodFill ( Color fillColor ) : System

Initializes a new instance of the PointedColorFloodFill 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
CheckGrayPixel ( byte pixel ) : bool
CheckRGBPixel ( byte pixel ) : bool
CoordsToPointerGray ( int x, int y ) : byte*
CoordsToPointerRGB ( int x, int y ) : byte*
LinearFloodFill4Gray ( IntPoint startingPoint ) : void
LinearFloodFill4RGB ( IntPoint startPoint ) : void

Method Details

PointedColorFloodFill() public méthode

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

PointedColorFloodFill() public méthode

Initializes a new instance of the PointedColorFloodFill class.
public PointedColorFloodFill ( Color fillColor ) : System
fillColor Color Fill color.
Résultat System

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