Contains defines controlling the Windows DLL export and import of symbols.
#define OTC_SDK_API
Only needed when working with Windows DLLs.
Definition Api.h:65
Main SDK namespace.
Definition AlarmChannel.h:21
OTC_SDK_API std::ostream & operator<<(std::ostream &out, const AlarmChannelConfig &config) noexcept
Output stream operator for alarm channel configurations.
FieldShape
Represents the different available field shapes.
Definition FieldProperties.h:24
@ Ellipse
Elliptical field.
Definition FieldProperties.h:26
@ Polygon
Polygonal field defined by a set of vertices.
Definition FieldProperties.h:27
@ Rectangle
Rectangular field.
Definition FieldProperties.h:25
@ Splines
Spline based field defined by a set of vertices.
Definition FieldProperties.h:28
OTC_SDK_API float getFieldStat(const FieldStats &stats, FieldStat stat) noexcept
Returns the value of the given field statistic.
FieldStat
Represents the different field statistics that can be used by other components (PIF,...
Definition FieldProperties.h:33
@ Mean
Mean field temperature.
Definition FieldProperties.h:36
@ Median
Median field temperature.
Definition FieldProperties.h:37
@ Maximum
Maximum field temperature.
Definition FieldProperties.h:35
@ Minimum
Minimum field temperature.
Definition FieldProperties.h:34
OTC_SDK_API std::string toString(AlarmInput alarmInput) noexcept
Returns a string representation of the given alarm input.
Encapsulates the results of the statistical analysis of a measurement field.
Definition FieldProperties.h:42
float min
Minimum temperature in °C.
Definition FieldProperties.h:44
float mean
Mean temperature in °C.
Definition FieldProperties.h:48
float median
Median temperature in °C.
Definition FieldProperties.h:52
float max
Maximum temperature in °C.
Definition FieldProperties.h:46
float sampleDeviation
Sample deviation of the temperatures in °C.
Definition FieldProperties.h:50
std::size_t n
Number of evaluated valid pixels in the field.
Definition FieldProperties.h:54