Package com.flir.thermalsdk.image.fusion
Enum Class FusionMode
- All Implemented Interfaces:
Serializable
,Comparable<FusionMode>
,Constable
Defines the way the image is displayed. This definition is called image fusion mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIR image is blended with visual image based on the specified blending factor value.Color night vision fusion.Thermal MSX (Multi Spectral Dynamic Imaging) mode displays an infrared image where the edges of the objects are enhanced with information from the visual image.Picture in picture fusion, where a defined box/rectangle shape with IR image pixels is placed on top of the visual image.IR image is blended with visual image based on the specifiedThermalValue
threshold.Ordinary IR image.Visual image is zoomed and fused with IR image. -
Method Summary
Modifier and TypeMethodDescriptionstatic FusionMode
Returns the enum constant of this class with the specified name.static FusionMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
THERMAL_ONLY
Ordinary IR image. -
VISUAL_ONLY
Visual image is zoomed and fused with IR image.
Note: for not aligned DC image useFusion.getPhoto()
.- See Also:
-
BLENDING
IR image is blended with visual image based on the specified blending factor value. Use BLENDING mode to display a blended image that uses a mix of infrared pixels and digital photo pixels. -
MSX
Thermal MSX (Multi Spectral Dynamic Imaging) mode displays an infrared image where the edges of the objects are enhanced with information from the visual image. -
THERMAL_FUSION
IR image is blended with visual image based on the specifiedThermalValue
threshold. -
PICTURE_IN_PICTURE
Picture in picture fusion, where a defined box/rectangle shape with IR image pixels is placed on top of the visual image. -
COLOR_NIGHT_VISION
Color night vision fusion.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-