-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Closed
Description
Required Info | |
---|---|
Camera Model | D435i |
Operating System & Version | Win 10 |
Language | python |
Issue Description
As I have taken IMU data by using following code :
accX = frames[0].as_motion_frame().get_motion_data().x
accY = frames[0].as_motion_frame().get_motion_data().y
accZ = frames[0].as_motion_frame().get_motion_data().z
gyroX = frames[1].as_motion_frame().get_motion_data().x
gyroY = frames[1].as_motion_frame().get_motion_data().y
gyroZ = frames[1].as_motion_frame().get_motion_data().z
The Data which I am getting is highly fluctuating and from that I also not be able to derive accurate YAW , PITCH , ROLL etc values .
Is there any method available in python to derive these data ( YAW, PITCH , ROLL ) directly ?