Thermal Camera SDK 11.3.0
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
ProcessingOutputConfig.h
Go to the documentation of this file.
1// Copyright (c) 2008-2026 Optris GmbH & Co. KG
2
11
12#pragma once
13
14namespace optris
15{
16
19{
25 bool rawFrames = false;
26
32 bool thermalFrames = true;
33
43 bool fields = true;
44};
45
46} // namespace optris
Main SDK namespace.
Definition AlarmChannel.h:21
Specifies which outputs should be computed and provided by the SDK.
Definition ProcessingOutputConfig.h:19
bool fields
Specifies whether measurement field should be processed.
Definition ProcessingOutputConfig.h:43
bool thermalFrames
Specifies whether thermal frames are provided via the IRImager::onFrame callback.
Definition ProcessingOutputConfig.h:32
bool rawFrames
Specifies whether raw unprocessed frames are provided via the IRImager::onRawFrame callback.
Definition ProcessingOutputConfig.h:25