Thermal Camera SDK 10.0.1
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
TemperaturePrecision.h
Go to the documentation of this file.
1// Copyright (c) 2025 Optris GmbH Co. KG
2
13
14#pragma once
15
16
17namespace optris
18{
19
21static constexpr float INVALID_TEMPERATURE = -100.F;
22
24static constexpr unsigned short INVALID_VALUE = 0;
25
26
29{
30 Unknown = 0,
32 High = 2,
33};
34
35} // namespace optris
Main SDK namespace.
Definition DeviceInfo.h:23
static constexpr float INVALID_TEMPERATURE
All temperatures in °C equal or lower are invalid.
Definition TemperaturePrecision.h:21
static constexpr unsigned short INVALID_VALUE
All internal temperature values equal to this are invalid.
Definition TemperaturePrecision.h:24
TemperaturePrecision
Represents the available temperature precisions.
Definition TemperaturePrecision.h:29
@ High
Hight precision.
Definition TemperaturePrecision.h:32
@ Standard
Standard precision.
Definition TemperaturePrecision.h:31