You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want the robot to be placed at a specific position in the environment so that I can manually build the world around it using vamp.Environment(). I tried modifying the URDF file, but it doesn't seem to affect the robot's interpreted position in the code. Specifically, I want the robot to be located at a particular position in the environment, for example, pos: [1.0, 0.0, 0.0], when I initiate it with vamp.ur5.
The PyBullet simulation uses the URDF file, so I was able to change the robot's location by modifying the origin of the base_link in the URDF. However, the vamp module seems to be using the robot's original spawn location from the URDF, despite my changes.
In the code below, I have modified the provided URDF to spawn the UR5e at the origin. Although PyBullet loads the URDF correctly, the robot_module still interprets the robot as being at the old location:
We currently assume that the robot base is at the origin, and transform the environment to the robot's frame so that this is true. That said, this isn't any sort of fundamental limitation of vamp; we will add support for arbitrary base poses for all supported robots in a future update.
I want the robot to be placed at a specific position in the environment so that I can manually build the world around it using
vamp.Environment()
. I tried modifying the URDF file, but it doesn't seem to affect the robot's interpreted position in the code. Specifically, I want the robot to be located at a particular position in the environment, for example, pos: [1.0, 0.0, 0.0], when I initiate it withvamp.ur5
.The PyBullet simulation uses the URDF file, so I was able to change the robot's location by modifying the origin of the
base_link
in the URDF. However, the vamp module seems to be using the robot's original spawn location from the URDF, despite my changes.In the code below, I have modified the provided URDF to spawn the UR5e at the origin. Although PyBullet loads the URDF correctly, the robot_module still interprets the robot as being at the old location:
How do I make the code interpret robot at the location I want?
The text was updated successfully, but these errors were encountered: