ravijo / ros_openpose

ROS wrapper for OpenPose
MIT License
142 stars 63 forks source link

fatal error: ros_openpose/Frame.h: No such file or directory #4

Closed xh20 closed 4 years ago

xh20 commented 4 years ago

Hi ravijo,

when I run catkin_make clean, it appears an error: fatal error: ros_openpose/Frame.h: No such file or directory and I only find cameraReader.hpp in the folder ~/catkin_ws/src/ros_openpose/include/ros_openpose. Is it still in programming?

best Hao

ravijo commented 4 years ago

@xh20 , thank you very much.

when I run catkin_make clean, it appears an error: fatal error: ros_openpose/Frame.h: No such file or directory

Sorry to hear that you faced the issue. Please note that catkin_make clean is going to clean the build and other folders. Before you clone, ros_openpose, make sure catkin_make compiles all existing packages on your workspace. After cloning this package, you should run catkin_make a few times.

I only find cameraReader.hpp in the folder

Frame.h is defined as a ROS msg file. You can find its definition here. Furthermore, it is included in CMakeLists.txt, so that catkin_make can find it out.

Is it still in programming?

The code pushed to GitHub should work fine.

Let me know if the problem persists.

Cheers!

xh20 commented 4 years ago

@ravijo Thank you for replying. Yes, you are right. I don't need to clean it. It is compiled now.

ravijo commented 4 years ago

@xh20 Thank you for the quick response. Glad that it compiled. Feel free to create new issues if needed. I will close this issue now.