Coder Social home page Coder Social logo

Comments (4)

v4hn avatar v4hn commented on August 20, 2024

from moveit_tutorials.

mjkl-gh avatar mjkl-gh commented on August 20, 2024

Ran across this problem as well. Running on Ubuntu 16.04 LTS using ROS kinetic. NO virtual machines were used. First of all, a lot of warnings are given due to using the dated PR2 model namely:

[rospack] Error: no package given
[librospack]: error while executing command
deprecated: xacro tags should be prepended with 'xacro' xml namespace.
Use the following script to fix incorrect usage:
find . -iname "*.xacro" | xargs sed -i 's#<([/]?)(if|unless|include|arg|property|macro|insert_block)#<\1xacro:\2#g'
when processing file: /opt/ros/kinetic/share/pr2_description/urdf/common.xacro
included from: /opt/ros/kinetic/share/pr2_description/robots/pr2_no_kinect.urdf.xacro

inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/shoulder_v0/shoulder.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/upper_arm_v0/upper_arm.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/forearm_v0/forearm.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/gripper_v0/gripper.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/head_v0/head.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/tilting_laser_v0/tilting_laser.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/torso_v0/torso.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/base_v0/base.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/sensors/head_sensor_package.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/sensors/wge100_camera.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/urdf/sensors/projector_wg6802418.urdf.xacro)
inconsistent namespace redefinitions for xmlns:xacro:
old: http://playerstage.sourceforge.net/gazebo/xmlschema/#interface
new: http://ros.org/wiki/xacro (/opt/ros/kinetic/share/pr2_description/gazebo/gazebo.urdf.xacro)

after that there's a weird bug where the node fails to set the parameters initially due to not being able to contact the master:

[ INFO] [1515020473.376741972]: Loaded pr2 robot model.
[ INFO] [1515020473.377113356]: Setting Param Server with Robot Description
[ERROR] [1515020473.379147367]: [setParam] Failed to contact master at [localhost:11311]. Retrying...
[ INFO] [1515020473.453269674]: Connected to master at [localhost:11311]

Then there are some problems with the model, however, defaulting to some settings seems to fix that:

[ INFO] [1515020473.457769194]: Robot semantic model successfully loaded.
[ INFO] [1515020473.457823621]: Setting Param Server with Robot Semantic Description
[ INFO] [1515020473.507338059]: Loading robot model 'pr2'...
[ INFO] [1515020473.507382996]: No root/virtual joint specified in SRDF. Assuming fixed joint
[ INFO] [1515020473.709099445]: Stereo is NOT SUPPORTED
[ INFO] [1515020473.709225877]: OpenGl version: 3 (GLSL 1.3).

and then the process suddenly dies:

================================================================================REQUIRED process [moveit_setup_assistant-1] has died!
process has died [pid 3391, exit code -11, cmd /opt/ros/kinetic/lib/moveit_setup_assistant/moveit_setup_assistant __name:=moveit_setup_assistant __log:=/home/maarten/.ros/log/05c3cb64-f0d7-11e7-b79a-54ee756d3429/moveit_setup_assistant-1.log].
log file: /home/maarten/.ros/log/05c3cb64-f0d7-11e7-b79a-54ee756d3429/moveit_setup_assistant-1*.log
Initiating shutdown!

looking at the logs referred to does not reveal any more info. Will try to build the tutorials from github in the morning. Moreover, it seems to be a problem with openGL or the setup assistant package. Using other models doesn't seem to work

from moveit_tutorials.

mjkl-gh avatar mjkl-gh commented on August 20, 2024

Compiling from source seems to fix the problem. However, there are still a lot of errors

from moveit_tutorials.

v4hn avatar v4hn commented on August 20, 2024

I will close this as apparently fixed.

For new errors, please file different issues.

from moveit_tutorials.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.