FloodFillType Enumeration |
http://www.emgu.com
Type of floodfill operation
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax [FlagsAttribute]
public enum FloodFillType
<FlagsAttribute>
Public Enumeration FloodFillType
[FlagsAttribute]
public enum class FloodFillType
[<FlagsAttribute>]
type FloodFillType
Members
| Member name | Value | Description |
---|
| Default | 0 |
The default type
|
| FixedRange | 65536 |
If set the difference between the current pixel and seed pixel is considered,
otherwise difference between neighbor pixels is considered (the range is floating).
|
| MaskOnly | 131072 |
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).
|
See Also