ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Oppenheim's profile - activity

2014-08-01 04:59:34 -0500 received badge  Famous Question (source)
2013-10-09 08:23:26 -0500 received badge  Notable Question (source)
2013-08-12 10:22:40 -0500 received badge  Popular Question (source)
2013-07-02 23:45:59 -0500 commented question rospack error(libboost_system_mt-1.48.so)

Actually, I'm using ubuntu 10.04 now, but I'm not sure why libboost1.48 is needed..

2013-07-01 22:15:47 -0500 asked a question rospack error(libboost_system_mt-1.48.so)

Hi, I'm trying to cross-compile Nao V4. But when I use rospack command, following error message comes out.

rospack: error while loading shared libraries: libboost_system-mt-1_48.so.1.48.0: cannot open shared object file: No such file or directory

I tried installing library files by "$ sudo apt-get install libboost-system libboost-dev etc. But nothing has been solved.

In fact, I found out this error when I tried to source $TARGETDIR/workspace_nao/setup.bash, which contained "rospack" command. This content came from http://www.ros.org/wiki/nao/Tutorials/Cross-Compiling_NAO-V4#Creating_a_workspacehttp:// (tutorial). When I tried to source setup.bash, following error message came out.

rospack could not be found, you cannot have rosbash features until you bootstrap ros

So I think that it is the error coming from rospack error related with library(libboost?).

Is there Anyone who knows the solution?

Thanks in advance! :)

2012-12-17 22:39:02 -0500 received badge  Teacher (source)
2012-12-17 20:17:59 -0500 answered a question rosinstall error: cannot import name get_vcs_client

Hi, I had the same problem. first, I updated the packages using $ sudo apt-get update

then, I installed python-vcstools by $ sudo apt-get install python-vcstools

I don't know what happened with 'python-vcstools', but the rosinstall works well now. Hope it will work for you too! :)

Have a nice day!

2012-12-02 23:42:57 -0500 received badge  Famous Question (source)
2012-11-20 16:05:26 -0500 received badge  Notable Question (source)
2012-11-19 18:26:20 -0500 commented question fuerte rgbdslam problem with eigen..

Hi dornhege, Felix. I solved my problem. It's the problem of code of pcl which was out of date, so i erased it and reinstall it, it worked. Thanks for your kind answer and upgrading my question to cleaner version :)

2012-11-15 13:01:51 -0500 received badge  Popular Question (source)
2012-11-14 00:16:55 -0500 received badge  Editor (source)
2012-11-14 00:16:02 -0500 asked a question fuerte rgbdslam problem with eigen..

Hi.

I'm going to start the 3d mapping project with rgbdslam and octomap. but I'm struggling with rgbdslam.

I installed rgbdslam from source(using rosinstall) and I wrote $ rosdep install rgbdslam

then it said,

ERROR: the following packages/stacks could not have their rosdep keys resolved to system dependencies: rgbdslam: Missing resource eigen ROS path [0]=/opt/ros/fuerte/share/ros ROS path [1]=/opt/ros/fuerte/share ROS path [2]=/opt/ros/fuerte/stacks

there are already many Q&A's about fuerte and eigen problems, but I couldn't solve my problems with them.

This link is the answer already suggested.

But in my case, the manifest.xml file of rgbdslam already contains <rosdep name="eigen"/> instead of <depend package="eigen"/>. Also, I edited my manifest.xml file and CMakeLists.txt as "http://ros.org/wiki/eigen" says, but it was of no use as well.

Here is my manifest.xml.

<package>

  <description brief="SLAM on RGBD Data">

    This package can be used to register the point clouds from RGBD sensors such as the kinect or stereo cameras.

    The rgbdslam node can be connected easily to an octomap_server node to create a memory-efficient 3D map.

  </description>

  <author>Felix Endres, Juergen Hess, Nikolas Engelhard</author>
  <license>GPL v3</license>

  <review status="unreviewed" notes=""/>

  <url>http://ros.org/wiki/rgbdslam</url>

  <depend package="tf"/>

  <depend package="pcl"/>

  <depend package="rospy"/>

  <depend package="roscpp"/>

  <depend package="rosbag"/>

  <depend package="pcl_ros"/>

  <!--depend package="opencv2"/-->

  <depend package="cv_bridge"/>

  <depend package="sensor_msgs"/>

  <!--depend package="openni_camera"/-->

  <!--depend package="octomap_server"/-->

  <!--depend package="octomap"/-->

  <depend package="geometry_msgs"/>

  <depend package="visualization_msgs"/>

  <rosdep name="libqt4-opengl-dev"/>

  <rosdep name="libqt4-dev"/>

  <rosdep name="libglew-dev"/>

  <rosdep name="libdevil-dev"/>

  <rosdep name="libgsl"/>

  <!--rosdep name="gl2ps"/-->

  <rosdep name="eigen"/>

  <rosdep name="libg2o"/>

  <export>

    <rosdoc config="rosdoc.yaml" />

    <nodelet plugin="${prefix}/nodelet_plugins.xml" />

    <cpp cflags="-I${prefix}/srv_gen/cpp"/>

<cpp cflags="&lt;code&gt;pkg-config --cflags eigen3&lt;/code&gt; -I${prefix}/include 
&lt;code&gt;rosboost-cfg --cflags&lt;/code&gt;" lflags="-Wl,-rpath,${prefix}/lib -L${prefix}/lib -lplanning_models"/>

 </export>

</package>

And the eigen part of my CMakeLists.txt

#############################
# Eigen ####################
#############################
find_package(Eigen)

IF(Eigen_FOUND)

  include_directories(${EIGEN_INCLUDE_DIRS})

  add_definitions(${EIGEN_DEFINITIONS})

ELSE(Eigen_FOUND)

  MESSAGE("Eigen package was not found. This is OK FOR ROS ELECTRIC, bad for fuerte\n")

ENDIF(Eigen_FOUND)

Do you have any solutions about this?

Thanks in advance! :)

2012-11-13 23:20:48 -0500 received badge  Supporter (source)
2012-10-23 21:40:46 -0500 commented question openni_launch in ROS fuerte doesn't work

@dinamex Thanks for your answering. I installed openni_launch with $ sudo apt-get install ros-fuerte-openni-launch. and I just installed openni_camera and openni_launch. Should I install other things?, Thanks a lot!

2012-10-23 21:37:15 -0500 commented question openni_launch in ROS fuerte doesn't work

@yygyt Thanks for your answering. But when i command $ killall XnSensorServer, then it says XnSensorServer : no process found. Then isn't it the problem of other things than XnSensorServer? Again, thanks a lot!

2012-10-22 22:04:12 -0500 received badge  Famous Question (source)
2012-10-22 05:32:06 -0500 received badge  Notable Question (source)
2012-10-22 03:54:05 -0500 received badge  Popular Question (source)
2012-10-22 02:09:58 -0500 asked a question openni_launch in ROS fuerte doesn't work

Hi.

I was using Ubuntu 11.10 and ROS Electric version before, and it worked pretty well. And I upgraded my Ubuntu to 12.04 and so I changed my ROS from Electric to Fuerte.

Installing ROS, and openni_camera, openni_launch, and I commanded in terminal,

$ roslaunch openni_launch openni.launch

THEN, it showed so many Exception AttributeErrors, errors, fatal errors. Followings are what the terminal said..

... logging to /home/cpslab/.ros/log/3426f506-1c40-11e2-bd5e-90e6bace91bb/roslaunch-cpslab-System-Product-Name-12244.log Checking log directory for disk usage. This may take awhile. Press Ctrl-C to interrupt Done checking log file disk usage. Usage is <1GB.

started roslaunch server http://cpslab-System-Product-Name:58779/

SUMMARY

PARAMETERS * /camera/depth/rectify_depth/interpolation * /camera/depth_registered/rectify_depth/interpolation * /camera/disparity_depth/max_range * /camera/disparity_depth/min_range * /camera/disparity_depth_registered/max_range * /camera/disparity_depth_registered/min_range * /camera/driver/depth_camera_info_url * /camera/driver/depth_frame_id * /camera/driver/depth_registration * /camera/driver/device_id * /camera/driver/rgb_camera_info_url * /camera/driver/rgb_frame_id * /rosdistro * /rosversion

NODES /camera/depth/ metric (nodelet/nodelet) metric_rect (nodelet/nodelet) points (nodelet/nodelet) rectify_depth (nodelet/nodelet) /camera/rgb/ debayer (nodelet/nodelet) rectify_color (nodelet/nodelet) rectify_mono (nodelet/nodelet) / camera_base_link (tf/static_transform_publisher) camera_base_link1 (tf/static_transform_publisher) camera_base_link2 (tf/static_transform_publisher) camera_base_link3 (tf/static_transform_publisher) camera_nodelet_manager (nodelet/nodelet) /camera/ disparity_depth (nodelet/nodelet) disparity_depth_registered (nodelet/nodelet) driver (nodelet/nodelet) points_xyzrgb_depth_rgb (nodelet/nodelet) register_depth_rgb (nodelet/nodelet) /camera/ir/ rectify_ir (nodelet/nodelet) /camera/depth_registered/ metric (nodelet/nodelet) metric_rect (nodelet/nodelet) rectify_depth (nodelet/nodelet)

auto-starting new master Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[master]: started with pid [12260] ROS_MASTER_URI=http://localhost:11311

setting /run_id to 3426f506-1c40-11e2-bd5e-90e6bace91bb Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[rosout-1]: started with pid [12273] started core service [/rosout] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera_nodelet_manager-2]: started with pid [12285] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/driver-3]: started with pid [12286] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/rgb/debayer-4]: started with pid [12308] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/rgb/rectify_mono-5]: started with pid [12344] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/rgb/rectify_color-6]: started with pid [12362] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/ir/rectify_ir-7]: started with pid [12386] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera/depth/rectify_depth-8]: started with pid [12424] Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading'="" from="" '="" usr="" lib="" python2.7="" threading.pyc'=""> ignored process[camera ... (more)