Hello,
I'm having trouble to calculate the Euler angles (Pitch, Roll, Yaw) with tensorflow. It seems some type of version problem, as the expected method do not exist in the used library.
import tensorflow explicit_quat = [orientation.x, orientation.y, orientation.z, orientation.w] euler = tensorflow.euler_from_quaternion(explicit_quat)
The ERROR: 'module' object has no attribute 'euler_from_quaternion'
Can you please help me?
Thank you!