Type of floodfill operation

C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum FLOODFILL_FLAG
<FlagsAttribute> _ Public Enumeration FLOODFILL_FLAG
[FlagsAttribute] public enum class FLOODFILL_FLAG

Member | Description |
---|---|
DEFAULT |
The default type
|
FIXED_RANGE |
If set the difference between the current pixel and seed pixel is considered,
otherwise difference between neighbor pixels is considered (the range is floating).
|
MASK_ONLY |
If set, the function does not fill the image (new_val is ignored),
but the fills mask (that must be non-NULL in this case).
|