-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use interactive markers to change the pose of objects in a planning scene #26
Comments
after a lot of trial and error, here are some steps that worked for me to edit planning scene files on rviz using moveit plugin and interactive markers:
|
I think I found the issue. The default MoveIt! planning frame is import rospy
from moveit_commander import RobotCommander
rospy.init_node('get_planning_frame')
robot = RobotCommander()
planning_frame = robot.get_planning_frame()
print("Planning frame:", planning_frame) prints A quick fix is to publish a static transform to
Or maybe it would be useful to change the planning frame? |
It's interesting that the planning frame is Anyway, if the planning frame is |
To reduce the time needed to create a planning scene, the use of interactive markers would be nice. I already started, with the current state looking like this:
It still has to be integrated into the
rqt
guiThe text was updated successfully, but these errors were encountered: