Structure containing all sensors data (except image sensors) to be used for positional tracking or environment study. More...
Classes | |
struct | BarometerData |
Structure containing data from the barometer sensor. More... | |
struct | IMUData |
Structure containing data from the IMU sensor. More... | |
struct | MagnetometerData |
Structure containing data from the magnetometer sensor. More... | |
struct | TemperatureData |
Structure containing data from the temperature sensors. More... | |
Types | |
enum class | CAMERA_MOTION_STATE |
Lists different states of the camera motion. More... | |
Functions | |
SensorsData () | |
Default constructor. More... | |
SensorsData (const SensorsData &data) | |
Copy constructor (deep copy). More... | |
Attributes | |
BarometerData | barometer |
Barometer data. More... | |
TemperatureData | temperature |
Temperature data. More... | |
MagnetometerData | magnetometer |
Magnetometer data. More... | |
IMUData | imu |
IMU data. More... | |
CAMERA_MOTION_STATE | camera_moving_state |
Motion state of the camera. More... | |
int | image_sync_trigger |
Indicates if the sensors data has been taken during a frame capture on sensor. More... | |
Structure containing all sensors data (except image sensors) to be used for positional tracking or environment study.
SensorsData | ( | ) |
Default constructor.
Creates an empty sl::SensorsData (identity).
SensorsData | ( | const SensorsData & | data | ) |
Copy constructor (deep copy).
BarometerData barometer |
Barometer data.
TemperatureData temperature |
Temperature data.
MagnetometerData magnetometer |
Magnetometer data.
IMUData imu |
IMU data.
CAMERA_MOTION_STATE camera_moving_state |
Motion state of the camera.
int image_sync_trigger |
Indicates if the sensors data has been taken during a frame capture on sensor.
If the value is 1, the data has been taken during the same time than a frame has been acquired by the left sensor (the time precision is linked to the IMU rate, therefore 800Hz == 1.3ms).
If the value is 0, the data has not been taken during a frame acquisition.