3DiVi Face SDK  3.21.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Groups
IRFrameRaw.h
1 #ifndef __PBIO_API__PBIO__IR_FRAME_RAW_H_
2 #define __PBIO_API__PBIO__IR_FRAME_RAW_H_
3 
4 
5 namespace pbio
6 {
21  struct IRFrameRaw
22  {
29 
36 
43 
50 
57 
64 
71 
78 
84  uint16_t const* ir_frame_data;
85 
92 
93  IRFrameRaw()
94  {
95  ir_frame_rows = 0;
96  ir_frame_cols = 0;
101  ir_horizontal_fov = 0;
102  ir_vertical_fov = 0;
103  ir_frame_data = 0;
105  }
106  };
107 
108 } // pbio namespace
109 
110 
111 #endif // __PBIO_API__PBIO__IR_FRAME_RAW_H_
An IR frame aligned with an original color image. Correspondence between the coordinates of the ori...
Definition: IRFrameRaw.h:21
float ir_vertical_fov
The vertical viewing angle of an IR frame in degrees.
Definition: IRFrameRaw.h:77
uint16_t const * ir_frame_data
Pointer to IR data.
Definition: IRFrameRaw.h:84
float ir_frame_2_image_offset_x
Parameter of correspondence between the coordinates of an original image and an IR frame...
Definition: IRFrameRaw.h:42
float ir_horizontal_fov
The horizontal viewing angle of an IR frame in degrees.
Definition: IRFrameRaw.h:70
float ir_frame_2_image_scale_y
Parameter of correspondence between the coordinates of an original image and an IR frame...
Definition: IRFrameRaw.h:63
float ir_frame_2_image_offset_y
Parameter of correspondence between the coordinates of an original image and an IR frame...
Definition: IRFrameRaw.h:49
int32_t ir_data_stride_in_bytes
Stride in bytes.
Definition: IRFrameRaw.h:91
int ir_frame_cols
Width of an IR frame.
Definition: IRFrameRaw.h:35
float ir_frame_2_image_scale_x
Parameter of correspondence between the coordinates of an original image and an IR frame...
Definition: IRFrameRaw.h:56
int ir_frame_rows
Height of an IR frame.
Definition: IRFrameRaw.h:28