jediofgever / ROS_Raw_Kitti_Player

Ros Package to access and manipulate raw KITTI data, with Camera-LIDAR sensor fusion and Perception Tasks
MIT License
71 stars 12 forks source link

fatal error: jsk_recognition_msgs/BoundingBox.h: No such file or directory #5

Closed NoRomantic closed 4 years ago

NoRomantic commented 4 years ago

I think it's a build order problem though, I can't figure out the dependencies between these packagaes. Could you please tell me how to build this package correctly?

jediofgever commented 4 years ago

Hi, Can you try this command rosdep install --from-paths src --ignore-src --rosdistro kinetic

jediofgever commented 4 years ago

Jsk_recognition is an external package that need to be installed for kinetic version, the above command will hopefully install the packages required

NoRomantic commented 4 years ago

@jediofgever Hello, I've tried this command, but still comes out the same error.

NoRomantic commented 4 years ago

@jediofgever After executing this command: sudo apt-get install ros-kinetic-jsk-recognition-msgs I finally build this package successfullly. So the reason caused this problem is that jsk_recognition_msgs package is missed. Thanks for your excellent work and for your kindness.