C# Класс AForge.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:

Наследование: BaseInPlacePartialFilter
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
PointedColorFloodFill ( ) : System

Initializes a new instance of the PointedColorFloodFill class.

PointedColorFloodFill ( Color fillColor ) : System

Initializes a new instance of the PointedColorFloodFill class.

Защищенные методы

Метод Описание
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

Приватные методы

Метод Описание
CheckGrayPixel ( byte pixel ) : bool
CheckRGBPixel ( byte pixel ) : bool
CoordsToPointerGray ( int x, int y ) : int
CoordsToPointerRGB ( int x, int y ) : int
LinearFloodFill4Gray ( IntPoint startingPoint ) : void
LinearFloodFill4RGB ( IntPoint startPoint ) : void

Описание методов

PointedColorFloodFill() публичный метод

Initializes a new instance of the PointedColorFloodFill class.
public PointedColorFloodFill ( ) : System
Результат System

PointedColorFloodFill() публичный метод

Initializes a new instance of the PointedColorFloodFill class.
public PointedColorFloodFill ( Color fillColor ) : System
fillColor Color Fill color.
Результат System

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