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

Michal's profile - activity

2013-09-19 17:50:46 -0500 received badge  Nice Answer (source)
2013-02-04 03:41:30 -0500 received badge  Famous Question (source)
2013-02-04 03:41:30 -0500 received badge  Notable Question (source)
2012-07-09 03:51:39 -0500 received badge  Popular Question (source)
2012-01-19 09:46:20 -0500 received badge  Teacher (source)
2012-01-19 09:46:20 -0500 received badge  Self-Learner (source)
2012-01-19 08:37:13 -0500 answered a question need executing bag_to_pcd: broken packages on Ubuntu 10.4 (Lucid)

The problem for me was really a newer version of libeigen3-dev installed on my computer.

Using "sudo aptitude install ros-electric-desktop-all" instead of ..apt-get.. resolved the problem since aptitude worked out that it needs to downgrade libeigen3-dev and did it.

thanks a lot

2012-01-19 08:37:08 -0500 received badge  Supporter (source)
2012-01-19 08:09:43 -0500 commented answer need executing bag_to_pcd: broken packages on Ubuntu 10.4 (Lucid)
Thanks for suggestions. I went through all the installation steps again and I still believe there is a problem with libeigen3-dev where I have newer version and it's somehow not compatible.
2012-01-16 11:36:00 -0500 asked a question need executing bag_to_pcd: broken packages on Ubuntu 10.4 (Lucid)

Hey everyone,

my final aim is simply to convert a .bag file to .pcd I found out that there is a simple command for that:

rosrun pcl_ros bag_to_pcd <input_file.bag> <topic> <output_directory>

for that I need ros installed, I followed the tutorial instructions, but running

apt-get install ros-electric-desktop-full

it found many broken packages

The following packages have unmet dependencies:
  ros-electric-desktop-full: Depends: ros-electric-eigen (= 1.6.0-s1323552432~lucid) but it is not going to be installed
                             Depends: ros-electric-geometry-tutorials (= 0.1.3-s1323570867~lucid) but it is not going to be installed
                             Depends: ros-electric-orocos-kinematics-dynamics (= 0.2.3-s1323552462~lucid) but it is not going to be installed
                             Depends: ros-electric-slam-gmapping (= 1.2.4-s1323564969~lucid) but it is not going to be installed
                             Depends: ros-electric-stage (= 1.4.1-s1323569881~lucid) but it is not going to be installed
                             Depends: ros-electric-visualization (= 1.6.7-s1323558747~lucid) but it is not going to be installed
                             Depends: ros-electric-vision-opencv (= 1.6.9-s1323553146~lucid) but it is not going to be installed
                             Depends: ros-electric-perception-pcl (= 1.0.2-s1323553637~lucid) but it is not going to be installed
                             Depends: ros-electric-geometry-experimental (= 0.2.2-s1323566592~lucid) but it is not going to be installed
                             Depends: ros-electric-image-pipeline (= 1.6.4-s1323553467~lucid) but it is not going to be installed
                             Depends: ros-electric-simulator-gazebo (= 1.4.9-s1323566768~lucid) but it is not going to be installed
                             Depends: ros-electric-simulator-stage (= 1.4.0-s1323570009~lucid) but it is not going to be installed
                             Depends: ros-electric-geometry-visualization (= 0.1.1-s1323587798~lucid) but it is not going to be installed
                             Depends: ros-electric-common-tutorials (= 0.1.2-s1323588081~lucid) but it is not going to be installed
                             Depends: ros-electric-image-transport-plugins (= 1.4.2-s1323553224~lucid) but it is not going to be installed
                             Depends: ros-electric-robot-model (= 1.6.3-s1323555199~lucid) but it is not going to be installed
                             Depends: ros-electric-visualization-tutorials (= 0.2.3-s1323589393~lucid) but it is not going to be installed
                             Depends: ros-electric-geometry (= 1.6.1-s1323552584~lucid) but it is not going to be installed
                             Depends: ros-electric-laser-pipeline (= 1.2.0-s1323557302~lucid) but it is not going to be installed
                             Depends: ros-electric-navigation (= 1.6.5-s1323562415~lucid) but it is not going to be installed
E: Broken packages

so I installed just ros-electric-ros-base but that didn't contain pcl_ros package which I need. I tried installing ros-electric-perception-pcl because I thought that it's going to have pcl_ros inside but I got another broken packages report.

Can you help me with this, what should I try? Different linux dist to install ros, or convert bag to pcd differently?

Thanks a lot,

Michal