Gazebo | Ignition | Community
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Calculate Pitch, Roll, Yaw (with python tensorflow)

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!

Calculate Pitch, Roll, Yaw (with python tensorflow)

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)tensorflow.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'euler_from_quaternion'

Can you please help me?

Thank you!

Calculate Pitch, Roll, Yaw (with python tensorflow)

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 tensorflow

explicit_quat = [orientation.x, orientation.y, orientation.z, orientation.w] orientation.w]

euler = tensorflow.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'euler_from_quaternion'

Can you please help me?

Thank you!

Calculate Pitch, Roll, Yaw (with python tensorflow)

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.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'euler_from_quaternion''transformations'

Can you please help me?

Thank you!

Calculate Pitch, Roll, Yaw (with python tensorflow)

Hello,

I'm using Gazebo for simulating modular robots, and I'm having trouble to calculate the Euler angles (Pitch, Roll, Yaw) of the robot with tensorflow. It seems some type of version problem, as the expected method do not exist in the used library.library. I'm trying to make the calculation using the orientation values I fetched from Gazebo.

import tensorflow

explicit_quat = [orientation.x, orientation.y, orientation.z, orientation.w]

euler = tensorflow.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'transformations'

Can you please help me?

Thank you!

Calculate Pitch, Roll, Yaw (with python tensorflow)

Hello,Dear All,

I'm using working with Gazebo through python in a virtual environment for simulating modular robots, and I'm having trouble to calculate the Euler angles (Pitch, Roll, Yaw) of the robot with robots' parts using tensorflow. It seems some type of version problem, as I provide tensorflow an orientation matrix witch I fetch from Gazebo, following examples I've seen around, however, the expected method do not exist Im trying to call is non existent. Obs: I did indstall tensorflow and tf in the used library. I'm trying to make the calculation using the orientation values I fetched from Gazebo. virtual environment.

import tensorflow

explicit_quat = [orientation.x, orientation.y, orientation.z, orientation.w]

euler = tensorflow.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'transformations'

Can you please help me?

Thank you!

Calculate Pitch, Roll, Yaw (with python tensorflow)

Dear All,

I'm working with Gazebo through python in a virtual environment for simulating modular robots, and I'm having trouble to calculate the Euler angles (Pitch, Roll, Yaw) of the robots' parts using tensorflow. I provide tensorflow an orientation matrix witch I fetch from Gazebo, following examples I've seen around, however, the method Im trying to call is non existent. Obs: I did indstall tensorflow and tf in the virtual environment.

import tensorflow

explicit_quat = [orientation.x, orientation.y, orientation.z, orientation.w]

euler = tensorflow.transformations.euler_from_quaternion(explicit_quat)

The ERROR: 'module' object has no attribute 'transformations'

I also tried it with the tf module, but I get the same.

Can you please help me?

Thank you!