Type of floodfill operation

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

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

Members

MemberDescription
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).

See Also