ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I fixed it! Use the patch described at :
http://toychest.in.tum.de/wiki/_media/fastdev:gscam.patch
in particularly, add the following instructions in src/gscam.cpp:
ros::Time now = ros::Time::now();
msg.header.stamp.sec = now.sec;
msg.header.stamp.nsec = now.nsec;
camera_info.header.frame_id = frame_id;
camera_info.header.stamp.sec = now.sec;
camera_info.header.stamp.nsec = now.nsec;
Bye