Thermal Camera SDK 11.3.0
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
VideoFormatEvent.h
Go to the documentation of this file.
1// Copyright (c) 2008-2026 Optris GmbH & Co. KG
2
10
11#pragma once
12
13
14namespace optris
15{
16
19{
21 int width = 0;
23 int height = 0;
24
26 float framerate = 0.F;
27
29 int bitsPerPixel = 16;
30};
31
32} // namespace optris
Main SDK namespace.
Definition AlarmChannel.h:21
Event containing information about the current video format.
Definition VideoFormatEvent.h:19
int bitsPerPixel
Specifies the size of the data point for an individual pixel in bits.
Definition VideoFormatEvent.h:29
int width
Frame width in pixels.
Definition VideoFormatEvent.h:21
int height
Frame height in pixels.
Definition VideoFormatEvent.h:23
float framerate
Framerate from the device in Hz (not sub-sampled).
Definition VideoFormatEvent.h:26