-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gazebo_plugins: gazebo_ros_openni_kinect plugin not publishing depth and rgb camera info #95
Comments
Once we find a solution for this, I can add it to my pull request #96. |
This was originally fixed in https://code.ros.org/trac/ros-pkg/ticket/5596, but somehow got reverted in 0696de6 Simply re-implementing my original patch did nothing, and I'll dig deeper into the code later tonight. |
Here's the cause: 0696de6#L11L555 This worked because originally the function was virtual and called by the base class, a call that has now been removed. I believe your method of calling it in |
That should be ensured, since Only minor back draw is, that the camera info cannot be published at a rate higher than the sensor's update rate. The inverse - camera info publishing rate < depth image publishing rate - however works. |
Commit 0696de6#L11L555 was me syncing the updates from the DRC Virtual Robotics Challenge code base back into the main gazebo repository. I did not remove that line myself so am not sure why it was removed, but @hsu probably knows why it was deleted. |
gazebo_ros_openni_kinect plugin: adds publishing of the camera info again (fixes #95)
Could someone re-release gazebo pkgs with this fix? Thanks! |
Will do. |
gazebo_ros_openni_kinect plugin: adds publishing of the camera info again (fixes ros-simulation#95)
I believe the important function to publish the camera info is
However, I don't see anything calling it ever, which might be the cause of this issue.
For testing I have added a call of this function in
OnNewDepthFrame()
, but I am not sure this is the right place.The text was updated successfully, but these errors were encountered: