Nuitrack  1.11.2
3D Skeleton Tracking Middleware
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Events Groups Pages
OutputMode.h
1 #ifndef NUITRACK_OUTPUTMODE_H_
2 #define NUITRACK_OUTPUTMODE_H_
3 
4 namespace tdv
5 {
6 namespace nuitrack
7 {
8 
13 struct OutputMode
14 {
18  int fps;
19 
23  int xres;
24 
28  int yres;
29 
33  float hfov;
34 };
35 
36 } /* namespace nuitrack */
37 } /* namespace tdv */
38 
39 #endif /* NUITRACK_OUTPUTMODE_H_ */
int fps
Count of frames transferred per second.
Definition: OutputMode.h:18
float hfov
Horizontal field of view in radians.
Definition: OutputMode.h:33
int yres
Y resolution (frame height).
Definition: OutputMode.h:28
Stores sensor data properties.
Definition: OutputMode.h:13
int xres
X resolution (frame width).
Definition: OutputMode.h:23