Thermal Camera SDK 11.3.0
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
FrameEvent.h
Go to the documentation of this file.
1// Copyright (c) 2008-2026 Optris GmbH & Co. KG
2
11
12#pragma once
13
14#include <cstdint>
15#include <unordered_map>
16
20
21
22namespace optris
23{
24
27{
34
43
53 std::unordered_map<std::int32_t, FieldStatus> fields;
54};
55
56} // namespace optris
Contains a class that encapsulates status of a processed measurement field.
Contains a class encapsulating the metadata associated with each frame.
Contains a class encapsulating a processed thermal frame.
Encapsulates the metadata of frames provided by the devices.
Definition FrameMetadata.h:33
Encapsulates processed thermal frame data.
Definition ThermalFrame.h:23
Main SDK namespace.
Definition AlarmChannel.h:21
Event containing the results of the successful processing of a frame.
Definition FrameEvent.h:27
FrameMetadata meta
Metadata of the frame.
Definition FrameEvent.h:33
std::unordered_map< std::int32_t, FieldStatus > fields
The results of the measurement field processing.
Definition FrameEvent.h:53
ThermalFrame thermalFrame
Thermal frame.
Definition FrameEvent.h:42