Intel® RealSense™ Cross Platform API
Intel Realsense Cross-platform API
rs_types.h
Go to the documentation of this file.
1 /* License: Apache 2.0. See LICENSE file in root directory.
2  Copyright(c) 2017 Intel Corporation. All Rights Reserved. */
3 
9 #ifndef LIBREALSENSE_RS2_TYPES_H
10 #define LIBREALSENSE_RS2_TYPES_H
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
28 
30 typedef enum rs2_exception_type
31 {
43 
45 typedef enum rs2_distortion
46 {
55 const char* rs2_distortion_to_string(rs2_distortion distortion);
56 
58 typedef struct rs2_intrinsics
59 {
60  int width;
61  int height;
62  float ppx;
63  float ppy;
64  float fx;
65  float fy;
67  float coeffs[5];
69 
73 typedef struct rs2_dsm_params
74 {
75  unsigned long long timestamp;
76  unsigned short version;
77  unsigned char model;
78  unsigned char flags[5];
79  float h_scale;
80  float v_scale;
81  float h_offset;
82  float v_offset;
83  float rtd_offset;
84  unsigned char temp_x2;
85  unsigned char reserved[11];
87 
89 {
95 
98 {
99  /* \internal
100  * Scale X cross axis cross axis Bias X \n
101  * cross axis Scale Y cross axis Bias Y \n
102  * cross axis cross axis Scale Z Bias Z */
103  float data[3][4];
105  float noise_variances[3];
106  float bias_variances[3];
108 
111 typedef struct rs2_vertex
112 {
113  float xyz[3];
115 
117 typedef struct rs2_pixel
118 {
119  int ij[2];
121 
123 typedef struct rs2_vector
124 {
125  float x, y, z;
127 
129 typedef struct rs2_quaternion
130 {
131  float x, y, z, w;
133 
134 typedef struct rs2_pose
135 {
142  unsigned int tracker_confidence;
143  unsigned int mapper_confidence;
145 
147 typedef enum rs2_log_severity {
158 
160 typedef enum rs2_extension
161 {
217 
219 typedef enum rs2_matchers
220 {
221  RS2_MATCHER_DI, //compare depth and ir based on frame number
222 
223  RS2_MATCHER_DI_C, //compare depth and ir based on frame number,
224  //compare the pair of corresponding depth and ir with color based on closest timestamp,
225  //commonly used by SR300
226 
227  RS2_MATCHER_DLR_C, //compare depth, left and right ir based on frame number,
228  //compare the set of corresponding depth, left and right with color based on closest timestamp,
229  //commonly used by RS415, RS435
230 
231  RS2_MATCHER_DLR, //compare depth, left and right ir based on frame number,
232  //commonly used by RS400, RS405, RS410, RS420, RS430
233 
234  RS2_MATCHER_DIC, //compare depth, ir and confidence based on frame number used by RS500
235 
236  RS2_MATCHER_DIC_C, //compare depth, ir and confidence based on frame number,
237  //compare the set of corresponding depth, ir and confidence with color based on closest timestamp,
238  //commonly used by RS515
239 
240  RS2_MATCHER_DEFAULT, //the default matcher compare all the streams based on closest timestamp
241 
244 
245 typedef struct rs2_device_info rs2_device_info;
246 typedef struct rs2_device rs2_device;
247 typedef struct rs2_error rs2_error;
248 typedef struct rs2_log_message rs2_log_message;
250 typedef struct rs2_frame rs2_frame;
251 typedef struct rs2_frame_queue rs2_frame_queue;
252 typedef struct rs2_pipeline rs2_pipeline;
254 typedef struct rs2_config rs2_config;
255 typedef struct rs2_device_list rs2_device_list;
260 typedef struct rs2_log_callback rs2_log_callback;
261 typedef struct rs2_syncer rs2_syncer;
263 typedef struct rs2_source rs2_source;
268 typedef struct rs2_context rs2_context;
269 typedef struct rs2_device_hub rs2_device_hub;
270 typedef struct rs2_sensor_list rs2_sensor_list;
271 typedef struct rs2_sensor rs2_sensor;
272 typedef struct rs2_options rs2_options;
273 typedef struct rs2_options_list rs2_options_list;
275 typedef struct rs2_notification rs2_notification;
281 typedef void (*rs2_log_callback_ptr)(rs2_log_severity, rs2_log_message const *, void * arg);
285 typedef void (*rs2_frame_callback_ptr)(rs2_frame*, void*);
287 typedef void(*rs2_update_progress_callback_ptr)(const float, void*);
288 
289 typedef double rs2_time_t;
290 typedef long long rs2_metadata_type;
292 rs2_error * rs2_create_error(const char* what, const char* name, const char* args, rs2_exception_type type);
294 const char* rs2_get_failed_function (const rs2_error* error);
295 const char* rs2_get_failed_args (const rs2_error* error);
296 const char* rs2_get_error_message (const rs2_error* error);
297 void rs2_free_error (rs2_error* error);
298 
299 #ifdef __cplusplus
300 }
301 #endif
302 #endif
rs2_playback_status_changed_callback
Definition: rs_types.hpp:77
rs2_vector
3D vector in Euclidean coordinate space
Definition: rs_types.h:124
RS2_EXTENSION_TM2
@ RS2_EXTENSION_TM2
Definition: rs_types.h:184
RS2_EXTENSION_MOTION
@ RS2_EXTENSION_MOTION
Definition: rs_types.h:165
RS2_EXTENSION_DEVICE_CALIBRATION
@ RS2_EXTENSION_DEVICE_CALIBRATION
Definition: rs_types.h:211
RS2_NOTIFICATION_CATEGORY_COUNT
@ RS2_NOTIFICATION_CATEGORY_COUNT
Definition: rs_types.h:25
rs2_dsm_correction_model
rs2_dsm_correction_model
Definition: rs_types.h:89
RS2_DSM_CORRECTION_TOA
@ RS2_DSM_CORRECTION_TOA
Definition: rs_types.h:92
rs2_quaternion
Quaternion used to represent rotation
Definition: rs_types.h:130
RS2_EXCEPTION_TYPE_COUNT
@ RS2_EXCEPTION_TYPE_COUNT
Definition: rs_types.h:40
rs2_get_error_message
const char * rs2_get_error_message(const rs2_error *error)
RS2_NOTIFICATION_CATEGORY_HARDWARE_EVENT
@ RS2_NOTIFICATION_CATEGORY_HARDWARE_EVENT
Definition: rs_types.h:21
RS2_EXTENSION_DEBUG
@ RS2_EXTENSION_DEBUG
Definition: rs_types.h:163
RS2_DISTORTION_MODIFIED_BROWN_CONRADY
@ RS2_DISTORTION_MODIFIED_BROWN_CONRADY
Definition: rs_types.h:48
RS2_EXTENSION_HOLE_FILLING_FILTER
@ RS2_EXTENSION_HOLE_FILLING_FILTER
Definition: rs_types.h:192
RS2_EXTENSION_MOTION_FRAME
@ RS2_EXTENSION_MOTION_FRAME
Definition: rs_types.h:171
rs2_notification_category_to_string
const char * rs2_notification_category_to_string(rs2_notification_category category)
rs2_frame_callback_ptr
void(* rs2_frame_callback_ptr)(rs2_frame *, void *)
Definition: rs_types.h:285
RS2_EXTENSION_POSE_SENSOR
@ RS2_EXTENSION_POSE_SENSOR
Definition: rs_types.h:196
rs2_create_error
rs2_error * rs2_create_error(const char *what, const char *name, const char *args, rs2_exception_type type)
RS2_EXTENSION_SERIALIZABLE
@ RS2_EXTENSION_SERIALIZABLE
Definition: rs_types.h:208
RS2_EXCEPTION_TYPE_NOT_IMPLEMENTED
@ RS2_EXCEPTION_TYPE_NOT_IMPLEMENTED
Definition: rs_types.h:37
rs2_log_message
struct rs2_log_message rs2_log_message
Definition: rs_types.h:248
rs2_pose::angular_velocity
rs2_vector angular_velocity
Definition: rs_types.h:140
rs2_software_device_destruction_callback_ptr
void(* rs2_software_device_destruction_callback_ptr)(void *)
Definition: rs_types.h:283
RS2_DSM_CORRECTION_COUNT
@ RS2_DSM_CORRECTION_COUNT
Definition: rs_types.h:93
rs2_devices_changed_callback
Definition: rs_types.hpp:70
rs2_matchers
rs2_matchers
Specifies types of different matchers.
Definition: rs_types.h:220
RS2_EXTENSION_POSE_PROFILE
@ RS2_EXTENSION_POSE_PROFILE
Definition: rs_types.h:183
rs2_extension
rs2_extension
Specifies advanced interfaces (capabilities) objects may implement.
Definition: rs_types.h:161
rs2_pose
struct rs2_pose rs2_pose
RS2_EXCEPTION_TYPE_CAMERA_DISCONNECTED
@ RS2_EXCEPTION_TYPE_CAMERA_DISCONNECTED
Definition: rs_types.h:33
rs2_extension_type_to_string
const char * rs2_extension_type_to_string(rs2_extension type)
rs2_dsm_params::h_scale
float h_scale
Definition: rs_types.h:79
rs2_intrinsics
Video stream intrinsics.
Definition: rs_types.h:59
RS2_EXTENSION_AUTO_CALIBRATION_FILTER
@ RS2_EXTENSION_AUTO_CALIBRATION_FILTER
Definition: rs_types.h:210
RS2_EXTENSION_UPDATE_DEVICE
@ RS2_EXTENSION_UPDATE_DEVICE
Definition: rs_types.h:200
rs2_frame
struct rs2_frame rs2_frame
Definition: rs_types.h:250
RS2_LOG_SEVERITY_WARN
@ RS2_LOG_SEVERITY_WARN
Definition: rs_types.h:150
RS2_EXTENSION_FW_LOGGER
@ RS2_EXTENSION_FW_LOGGER
Definition: rs_types.h:209
RS2_EXTENSION_UPDATABLE
@ RS2_EXTENSION_UPDATABLE
Definition: rs_types.h:199
RS2_EXCEPTION_TYPE_BACKEND
@ RS2_EXCEPTION_TYPE_BACKEND
Definition: rs_types.h:34
rs2_intrinsics::ppx
float ppx
Definition: rs_types.h:62
rs2_source
struct rs2_source rs2_source
Definition: rs_types.h:263
rs2_dsm_params
Video DSM (Digital Sync Module) parameters for calibration (same layout as in FW ac_depth_params) Thi...
Definition: rs_types.h:74
rs2_intrinsics::height
int height
Definition: rs_types.h:61
rs2_vertex::xyz
float xyz[3]
Definition: rs_types.h:113
RS2_LOG_SEVERITY_ALL
@ RS2_LOG_SEVERITY_ALL
Definition: rs_types.h:155
RS2_EXTENSION_RECORD
@ RS2_EXTENSION_RECORD
Definition: rs_types.h:176
rs2_dsm_params::timestamp
unsigned long long timestamp
Definition: rs_types.h:75
rs2_firmware_log_parser
struct rs2_firmware_log_parser rs2_firmware_log_parser
Definition: rs_types.h:279
RS2_EXTENSION_COMPOSITE_FRAME
@ RS2_EXTENSION_COMPOSITE_FRAME
Definition: rs_types.h:172
rs2_dsm_params::v_scale
float v_scale
Definition: rs_types.h:80
RS2_EXTENSION_ADVANCED_MODE
@ RS2_EXTENSION_ADVANCED_MODE
Definition: rs_types.h:175
RS2_DISTORTION_COUNT
@ RS2_DISTORTION_COUNT
Definition: rs_types.h:53
rs2_dsm_params::temp_x2
unsigned char temp_x2
Definition: rs_types.h:84
RS2_MATCHER_DIC_C
@ RS2_MATCHER_DIC_C
Definition: rs_types.h:236
rs2_get_failed_args
const char * rs2_get_failed_args(const rs2_error *error)
rs2_notifications_callback
Definition: rs_types.hpp:40
RS2_EXTENSION_POSE
@ RS2_EXTENSION_POSE
Definition: rs_types.h:195
RS2_EXCEPTION_TYPE_UNKNOWN
@ RS2_EXCEPTION_TYPE_UNKNOWN
Definition: rs_types.h:32
RS2_EXCEPTION_TYPE_INVALID_VALUE
@ RS2_EXCEPTION_TYPE_INVALID_VALUE
Definition: rs_types.h:35
rs2_log_severity
rs2_log_severity
Severity of the librealsense logger.
Definition: rs_types.h:147
rs2_pose::rotation
rs2_quaternion rotation
Definition: rs_types.h:139
RS2_NOTIFICATION_CATEGORY_HARDWARE_ERROR
@ RS2_NOTIFICATION_CATEGORY_HARDWARE_ERROR
Definition: rs_types.h:20
rs2_vector::z
float z
Definition: rs_types.h:125
RS2_EXTENSION_MOTION_PROFILE
@ RS2_EXTENSION_MOTION_PROFILE
Definition: rs_types.h:181
rs2_pixel
Pixel location within 2D image. (0,0) is the topmost, left corner. Positive X is right,...
Definition: rs_types.h:118
rs2_dsm_params::model
unsigned char model
Definition: rs_types.h:77
RS2_NOTIFICATION_CATEGORY_POSE_RELOCALIZATION
@ RS2_NOTIFICATION_CATEGORY_POSE_RELOCALIZATION
Definition: rs_types.h:24
RS2_DISTORTION_FTHETA
@ RS2_DISTORTION_FTHETA
Definition: rs_types.h:50
rs2_pixel
struct rs2_pixel rs2_pixel
Pixel location within 2D image. (0,0) is the topmost, left corner. Positive X is right,...
rs2_intrinsics
struct rs2_intrinsics rs2_intrinsics
Video stream intrinsics.
rs2_notification
struct rs2_notification rs2_notification
Definition: rs_types.h:275
RS2_EXTENSION_SOFTWARE_DEVICE
@ RS2_EXTENSION_SOFTWARE_DEVICE
Definition: rs_types.h:185
rs2_notification_callback_ptr
void(* rs2_notification_callback_ptr)(rs2_notification *, void *)
Definition: rs_types.h:282
rs2_motion_device_intrinsic
Motion device intrinsics: scale, bias, and variances.
Definition: rs_types.h:98
RS2_EXTENSION_ROI
@ RS2_EXTENSION_ROI
Definition: rs_types.h:168
rs2_context
struct rs2_context rs2_context
Definition: rs_types.h:268
rs2_quaternion::y
float y
Definition: rs_types.h:131
RS2_EXTENSION_UNKNOWN
@ RS2_EXTENSION_UNKNOWN
Definition: rs_types.h:162
RS2_EXTENSION_COUNT
@ RS2_EXTENSION_COUNT
Definition: rs_types.h:213
rs2_intrinsics::fx
float fx
Definition: rs_types.h:64
rs2_terminal_parser
struct rs2_terminal_parser rs2_terminal_parser
Definition: rs_types.h:280
rs2_frame_processor_callback
Definition: rs_types.hpp:33
RS2_EXTENSION_RECOMMENDED_FILTERS
@ RS2_EXTENSION_RECOMMENDED_FILTERS
Definition: rs_types.h:194
RS2_EXTENSION_DEPTH_HUFFMAN_DECODER
@ RS2_EXTENSION_DEPTH_HUFFMAN_DECODER
Definition: rs_types.h:207
RS2_EXTENSION_L500_DEPTH_SENSOR
@ RS2_EXTENSION_L500_DEPTH_SENSOR
Definition: rs_types.h:201
rs2_intrinsics::model
rs2_distortion model
Definition: rs_types.h:66
rs2_log_callback
Definition: rs_types.hpp:56
rs2_options
struct rs2_options rs2_options
Definition: rs_types.h:272
rs2_devices_changed_callback_ptr
void(* rs2_devices_changed_callback_ptr)(rs2_device_list *, rs2_device_list *, void *)
Definition: rs_types.h:284
rs2_dsm_params::flags
unsigned char flags[5]
Definition: rs_types.h:78
RS2_EXTENSION_SPATIAL_FILTER
@ RS2_EXTENSION_SPATIAL_FILTER
Definition: rs_types.h:190
rs2_firmware_log_message
struct rs2_firmware_log_message rs2_firmware_log_message
Definition: rs_types.h:277
RS2_EXTENSION_COLOR_SENSOR
@ RS2_EXTENSION_COLOR_SENSOR
Definition: rs_types.h:204
rs2_motion_device_intrinsic
struct rs2_motion_device_intrinsic rs2_motion_device_intrinsic
Motion device intrinsics: scale, bias, and variances.
RS2_EXTENSION_DEPTH_STEREO_SENSOR
@ RS2_EXTENSION_DEPTH_STEREO_SENSOR
Definition: rs_types.h:179
RS2_EXTENSION_VIDEO_PROFILE
@ RS2_EXTENSION_VIDEO_PROFILE
Definition: rs_types.h:177
RS2_EXTENSION_SOFTWARE_SENSOR
@ RS2_EXTENSION_SOFTWARE_SENSOR
Definition: rs_types.h:186
rs2_metadata_type
long long rs2_metadata_type
Definition: rs_types.h:290
rs2_dsm_params::version
unsigned short version
Definition: rs_types.h:76
rs2_intrinsics::ppy
float ppy
Definition: rs_types.h:63
rs2_pipeline_profile
struct rs2_pipeline_profile rs2_pipeline_profile
Definition: rs_types.h:253
rs2_sensor
struct rs2_sensor rs2_sensor
Definition: rs_types.h:271
rs2_log_severity_to_string
const char * rs2_log_severity_to_string(rs2_log_severity info)
RS2_EXTENSION_VIDEO_FRAME
@ RS2_EXTENSION_VIDEO_FRAME
Definition: rs_types.h:170
RS2_EXCEPTION_TYPE_IO
@ RS2_EXCEPTION_TYPE_IO
Definition: rs_types.h:39
RS2_EXTENSION_TM2_SENSOR
@ RS2_EXTENSION_TM2_SENSOR
Definition: rs_types.h:202
RS2_MATCHER_DI
@ RS2_MATCHER_DI
Definition: rs_types.h:221
rs2_pixel::ij
int ij[2]
Definition: rs_types.h:119
RS2_LOG_SEVERITY_INFO
@ RS2_LOG_SEVERITY_INFO
Definition: rs_types.h:149
rs2_vector::y
float y
Definition: rs_types.h:125
rs2_pose::velocity
rs2_vector velocity
Definition: rs_types.h:137
RS2_MATCHER_DIC
@ RS2_MATCHER_DIC
Definition: rs_types.h:234
RS2_DISTORTION_KANNALA_BRANDT4
@ RS2_DISTORTION_KANNALA_BRANDT4
Definition: rs_types.h:52
rs2_intrinsics::fy
float fy
Definition: rs_types.h:65
rs2_pose
Definition: rs_types.h:135
rs2_pipeline
struct rs2_pipeline rs2_pipeline
Definition: rs_types.h:252
rs2_vector::x
float x
Definition: rs_types.h:125
RS2_DISTORTION_BROWN_CONRADY
@ RS2_DISTORTION_BROWN_CONRADY
Definition: rs_types.h:51
RS2_MATCHER_COUNT
@ RS2_MATCHER_COUNT
Definition: rs_types.h:242
rs2_sensor_list
struct rs2_sensor_list rs2_sensor_list
Definition: rs_types.h:270
RS2_EXTENSION_DECIMATION_FILTER
@ RS2_EXTENSION_DECIMATION_FILTER
Definition: rs_types.h:187
rs2_syncer
struct rs2_syncer rs2_syncer
Definition: rs_types.h:261
rs2_pose::angular_acceleration
rs2_vector angular_acceleration
Definition: rs_types.h:141
RS2_EXTENSION_ZERO_ORDER_FILTER
@ RS2_EXTENSION_ZERO_ORDER_FILTER
Definition: rs_types.h:193
RS2_EXTENSION_DEPTH_SENSOR
@ RS2_EXTENSION_DEPTH_SENSOR
Definition: rs_types.h:169
rs2_pose::mapper_confidence
unsigned int mapper_confidence
Definition: rs_types.h:143
RS2_MATCHER_DLR
@ RS2_MATCHER_DLR
Definition: rs_types.h:231
RS2_EXTENSION_INFO
@ RS2_EXTENSION_INFO
Definition: rs_types.h:164
rs2_pose::translation
rs2_vector translation
Definition: rs_types.h:136
RS2_EXTENSION_PLAYBACK
@ RS2_EXTENSION_PLAYBACK
Definition: rs_types.h:178
RS2_LOG_SEVERITY_FATAL
@ RS2_LOG_SEVERITY_FATAL
Definition: rs_types.h:152
RS2_MATCHER_DEFAULT
@ RS2_MATCHER_DEFAULT
Definition: rs_types.h:240
RS2_EXTENSION_WHEEL_ODOMETER
@ RS2_EXTENSION_WHEEL_ODOMETER
Definition: rs_types.h:197
rs2_quaternion
struct rs2_quaternion rs2_quaternion
Quaternion used to represent rotation
rs2_motion_device_intrinsic::noise_variances
float noise_variances[3]
Definition: rs_types.h:105
rs2_quaternion::w
float w
Definition: rs_types.h:131
rs2_dsm_params::h_offset
float h_offset
Definition: rs_types.h:81
RS2_EXTENSION_DEPTH_FRAME
@ RS2_EXTENSION_DEPTH_FRAME
Definition: rs_types.h:174
rs2_intrinsics::width
int width
Definition: rs_types.h:60
rs2_vertex
3D coordinates with origin at topmost left corner of the lense, with positive Z pointing away from th...
Definition: rs_types.h:112
rs2_raw_data_buffer
struct rs2_raw_data_buffer rs2_raw_data_buffer
Definition: rs_types.h:249
RS2_EXCEPTION_TYPE_WRONG_API_CALL_SEQUENCE
@ RS2_EXCEPTION_TYPE_WRONG_API_CALL_SEQUENCE
Definition: rs_types.h:36
RS2_EXTENSION_VIDEO
@ RS2_EXTENSION_VIDEO
Definition: rs_types.h:167
rs2_free_error
void rs2_free_error(rs2_error *error)
RS2_DSM_CORRECTION_NONE
@ RS2_DSM_CORRECTION_NONE
Definition: rs_types.h:90
rs2_dsm_params::reserved
unsigned char reserved[11]
Definition: rs_types.h:85
RS2_EXTENSION_GLOBAL_TIMER
@ RS2_EXTENSION_GLOBAL_TIMER
Definition: rs_types.h:198
rs2_stream_profile
struct rs2_stream_profile rs2_stream_profile
Definition: rs_types.h:258
RS2_EXTENSION_OPTIONS
@ RS2_EXTENSION_OPTIONS
Definition: rs_types.h:166
rs2_stream_profile_list
struct rs2_stream_profile_list rs2_stream_profile_list
Definition: rs_types.h:256
rs2_pose::tracker_confidence
unsigned int tracker_confidence
Definition: rs_types.h:142
rs2_device
struct rs2_device rs2_device
Definition: rs_types.h:246
RS2_DISTORTION_NONE
@ RS2_DISTORTION_NONE
Definition: rs_types.h:47
rs2_time_t
double rs2_time_t
Definition: rs_types.h:289
rs2_update_progress_callback
Definition: rs_types.hpp:84
rs2_frame_queue
struct rs2_frame_queue rs2_frame_queue
Definition: rs_types.h:251
RS2_NOTIFICATION_CATEGORY_FIRMWARE_UPDATE_RECOMMENDED
@ RS2_NOTIFICATION_CATEGORY_FIRMWARE_UPDATE_RECOMMENDED
Definition: rs_types.h:23
rs2_pose::acceleration
rs2_vector acceleration
Definition: rs_types.h:138
rs2_processing_block_list
struct rs2_processing_block_list rs2_processing_block_list
Definition: rs_types.h:257
rs2_motion_device_intrinsic::bias_variances
float bias_variances[3]
Definition: rs_types.h:106
rs2_config
struct rs2_config rs2_config
Definition: rs_types.h:254
rs2_quaternion::z
float z
Definition: rs_types.h:131
RS2_EXTENSION_MOTION_SENSOR
@ RS2_EXTENSION_MOTION_SENSOR
Definition: rs_types.h:205
rs2_distortion
rs2_distortion
Distortion model: defines how pixel coordinates should be mapped to sensor coordinates.
Definition: rs_types.h:46
RS2_EXTENSION_TEMPORAL_FILTER
@ RS2_EXTENSION_TEMPORAL_FILTER
Definition: rs_types.h:191
RS2_EXTENSION_AUTO_CALIBRATED_DEVICE
@ RS2_EXTENSION_AUTO_CALIBRATED_DEVICE
Definition: rs_types.h:203
rs2_device_hub
struct rs2_device_hub rs2_device_hub
Definition: rs_types.h:269
RS2_EXTENSION_POINTS
@ RS2_EXTENSION_POINTS
Definition: rs_types.h:173
RS2_EXTENSION_FISHEYE_SENSOR
@ RS2_EXTENSION_FISHEYE_SENSOR
Definition: rs_types.h:206
rs2_dsm_params::rtd_offset
float rtd_offset
Definition: rs_types.h:83
RS2_EXCEPTION_TYPE_DEVICE_IN_RECOVERY_MODE
@ RS2_EXCEPTION_TYPE_DEVICE_IN_RECOVERY_MODE
Definition: rs_types.h:38
rs2_device_info
struct rs2_device_info rs2_device_info
Definition: rs_types.h:245
RS2_EXTENSION_POSE_FRAME
@ RS2_EXTENSION_POSE_FRAME
Definition: rs_types.h:182
RS2_EXTENSION_DISPARITY_FRAME
@ RS2_EXTENSION_DISPARITY_FRAME
Definition: rs_types.h:180
rs2_device_serializer
struct rs2_device_serializer rs2_device_serializer
Definition: rs_types.h:262
rs2_frame_processor_callback_ptr
void(* rs2_frame_processor_callback_ptr)(rs2_frame *, rs2_source *, void *)
Definition: rs_types.h:286
rs2_intrinsics::coeffs
float coeffs[5]
Definition: rs_types.h:67
RS2_MATCHER_DLR_C
@ RS2_MATCHER_DLR_C
Definition: rs_types.h:227
RS2_LOG_SEVERITY_NONE
@ RS2_LOG_SEVERITY_NONE
Definition: rs_types.h:153
rs2_quaternion::x
float x
Definition: rs_types.h:131
RS2_EXTENSION_CALIBRATED_SENSOR
@ RS2_EXTENSION_CALIBRATED_SENSOR
Definition: rs_types.h:212
RS2_LOG_SEVERITY_COUNT
@ RS2_LOG_SEVERITY_COUNT
Definition: rs_types.h:154
rs2_processing_block
struct rs2_processing_block rs2_processing_block
Definition: rs_types.h:264
rs2_device_list
struct rs2_device_list rs2_device_list
Definition: rs_types.h:255
rs2_extension_to_string
const char * rs2_extension_to_string(rs2_extension type)
rs2_motion_device_intrinsic::data
float data[3][4]
Definition: rs_types.h:103
rs2_dsm_params::v_offset
float v_offset
Definition: rs_types.h:82
rs2_update_progress_callback_ptr
void(* rs2_update_progress_callback_ptr)(const float, void *)
Definition: rs_types.h:287
rs2_vector
struct rs2_vector rs2_vector
3D vector in Euclidean coordinate space
RS2_DSM_CORRECTION_AOT
@ RS2_DSM_CORRECTION_AOT
Definition: rs_types.h:91
RS2_DISTORTION_INVERSE_BROWN_CONRADY
@ RS2_DISTORTION_INVERSE_BROWN_CONRADY
Definition: rs_types.h:49
rs2_options_list
struct rs2_options_list rs2_options_list
Definition: rs_types.h:273
RS2_NOTIFICATION_CATEGORY_UNKNOWN_ERROR
@ RS2_NOTIFICATION_CATEGORY_UNKNOWN_ERROR
Definition: rs_types.h:22
rs2_exception_type_to_string
const char * rs2_exception_type_to_string(rs2_exception_type type)
rs2_dsm_params
struct rs2_dsm_params rs2_dsm_params
Video DSM (Digital Sync Module) parameters for calibration (same layout as in FW ac_depth_params) Thi...
rs2_vertex
struct rs2_vertex rs2_vertex
3D coordinates with origin at topmost left corner of the lense, with positive Z pointing away from th...
rs2_error
struct rs2_error rs2_error
Definition: rs_types.h:247
RS2_NOTIFICATION_CATEGORY_FRAME_CORRUPTED
@ RS2_NOTIFICATION_CATEGORY_FRAME_CORRUPTED
Definition: rs_types.h:19
rs2_get_librealsense_exception_type
rs2_exception_type rs2_get_librealsense_exception_type(const rs2_error *error)
RS2_NOTIFICATION_CATEGORY_FRAMES_TIMEOUT
@ RS2_NOTIFICATION_CATEGORY_FRAMES_TIMEOUT
Definition: rs_types.h:18
rs2_distortion_to_string
const char * rs2_distortion_to_string(rs2_distortion distortion)
RS2_EXTENSION_DISPARITY_FILTER
@ RS2_EXTENSION_DISPARITY_FILTER
Definition: rs_types.h:189
rs2_log_callback_ptr
void(* rs2_log_callback_ptr)(rs2_log_severity, rs2_log_message const *, void *arg)
Definition: rs_types.h:281
rs2_get_failed_function
const char * rs2_get_failed_function(const rs2_error *error)
rs2_notification_category
rs2_notification_category
Category of the librealsense notification.
Definition: rs_types.h:17
RS2_MATCHER_DI_C
@ RS2_MATCHER_DI_C
Definition: rs_types.h:223
RS2_LOG_SEVERITY_DEBUG
@ RS2_LOG_SEVERITY_DEBUG
Definition: rs_types.h:148
RS2_EXTENSION_THRESHOLD_FILTER
@ RS2_EXTENSION_THRESHOLD_FILTER
Definition: rs_types.h:188
rs2_exception_type
rs2_exception_type
Exception types are the different categories of errors that RealSense API might return.
Definition: rs_types.h:31
RS2_LOG_SEVERITY_ERROR
@ RS2_LOG_SEVERITY_ERROR
Definition: rs_types.h:151
rs2_frame_callback
Definition: rs_types.hpp:26
rs2_firmware_log_parsed_message
struct rs2_firmware_log_parsed_message rs2_firmware_log_parsed_message
Definition: rs_types.h:278