Thermal Camera SDK 10.1.1
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
MeasurementFieldConfig.h
Go to the documentation of this file.
1// Copyright (c) 2008-2025 Optris GmbH & Co. KG
2
10
11#pragma once
12
13#include <string>
14#include <ostream>
15
16#include "otcsdk/Api.h"
19
20
21namespace optris
22{
23
26{
27public:
30
31
38
39
41 std::string name;
42
45
48
56
64
65
72 int width;
73
80 int height;
81
82
85};
86
87
88// Utility functions
97std::ostream& operator<<(std::ostream& out, const MeasurementFieldConfig& config) noexcept;
98
99} // namespace optris
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
Contains various enums representing properties of fields.
Contains a class holding the individual radiation parameters.
Encapsulates the configuration of a measurement field.
Definition MeasurementFieldConfig.h:26
FieldMode mode
Mode for the measurement field.
Definition MeasurementFieldConfig.h:47
int positionY
y position of the measurement field in pixels.
Definition MeasurementFieldConfig.h:63
std::string name
Name of the measurement field.
Definition MeasurementFieldConfig.h:41
int width
Width of the measurement field in pixels.
Definition MeasurementFieldConfig.h:72
int positionX
x position of the measurement field in pixels.
Definition MeasurementFieldConfig.h:55
OTC_SDK_API MeasurementFieldConfig() noexcept
Constructor.
FieldShape shape
Shape of the measurement field.
Definition MeasurementFieldConfig.h:44
OTC_SDK_API void validate()
Validates the configuration settings.
int height
Height of the measurement field in pixels.
Definition MeasurementFieldConfig.h:80
RadiationParameters radiation
Radiation parameters for the measurement field.
Definition MeasurementFieldConfig.h:84
Holds the radiation parameters for a frame or a measurement field.
Definition RadiationParameters.h:34
Main SDK namespace.
Definition DeviceInfo.h:24
FieldShape
Represents the different available shapes of fields.
Definition FieldProperties.h:24
FieldMode
Represents the different field modes that define what data point is calculated.
Definition FieldProperties.h:30