Enum FloodFillFlagsEnum
- java.lang.Object
- 
- java.lang.Enum<FloodFillFlagsEnum>
- 
- edu.wpi.grip.generated.opencv_imgproc.enumeration.FloodFillFlagsEnum
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<FloodFillFlagsEnum>
 
 public enum FloodFillFlagsEnum extends java.lang.Enum<FloodFillFlagsEnum> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FLOODFILL_FIXED_RANGEIf set, the difference between the current pixel and seed pixel is considered.FLOODFILL_MASK_ONLYIf set, the function does not change the image ( newVal is ignored), and only fills the mask with the value specified in bits 8-16 of flags as described above.
 - 
Field SummaryFields Modifier and Type Field Description intvalue
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static FloodFillFlagsEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FloodFillFlagsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
FLOODFILL_FIXED_RANGEpublic static final FloodFillFlagsEnum FLOODFILL_FIXED_RANGE If set, the difference between the current pixel and seed pixel is considered. Otherwise, the difference between neighbor pixels is considered (that is, the range is floating).
 - 
FLOODFILL_MASK_ONLYpublic static final FloodFillFlagsEnum FLOODFILL_MASK_ONLY If set, the function does not change the image ( newVal is ignored), and only fills the mask with the value specified in bits 8-16 of flags as described above. This option only make sense in function variants that have the mask parameter.
 
- 
 - 
Method Detail- 
valuespublic static FloodFillFlagsEnum[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FloodFillFlagsEnum c : FloodFillFlagsEnum.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FloodFillFlagsEnum valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-