Hi, I have recorded svo and Iwant to get IMU datas how can I reach them?
Hi @OnurS
the SVO file does not contain IMU data, only orientation information.
IMU runs at a higher frequency with respect to image grabbing and saving IMU data at this rate would have caused the introduction of the subsampling effect known as aliasing.
We are working on a new SVO format that will store all the sensors’ information at full rate.
It will be released as soon as our R&D team will validate it.
Thanks for your reply.
Is there any way for me to get orientation then?
26 Tem 2023 Çar 15:28 tarihinde Walter Lucetti (Stereolabs) support@stereolabs.com şunu yazdı:
Yes, you retrieve it from the Sensors Data structure:
Unfornately it gives 0 0 0 1 in quaternion which is 0 in all dimensions for Euler
Can you please share the SVO to check it?
Can you please share the SVO to check it?
[Discourse post]
Walter
Walter Lucetti
Senior Developer
SDK / Robotics / HW
Stereolabs Support
here it is
thanks
Hi @OnurS
the SVO contains the required data.
Please be sure to call getSensorsData
with TIME_REFERENCE::IMAGE
and not TIME_REFERENCE::CURRENT
because the SVO has synchronized data with images.
e.g. C++:
sl::ERROR_CODE err = zed.getSensorsData(sensors_data, TIME_REFERENCE::IMAGE);