Skip to main content

ThermalColorEnum

enum class ThermalColorEnum

Description: Thermal imaging false color information

enum class ThermalColorEnum(var value: Int) {
/**
* white hot
*/
WHITE_HOT(0),

/**
* hot and cold
*/
BLACK_HOT(1),

/**
* rainbow
*/
RAINBOW(2),

/**
* Enhanced rainbow
*/
RAIN_HC(3),

/**
* Iron oxide red
*/
IRON_BOW(4),

/**
* lava
*/
LAVA(5),

/**
* Aurora
*/
ARCTIC(6),

/**
* scorching hot
*/
GLOW_BOW(7),

/**
* gradient
*/
GRADED_FIRE(8),

/**
* Heat detection
*/
HOTTEST(9),
}