You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently writing a handeye calibration program using your cpp example. But I would like to use your ros driver package instead of interfacing with the camera directly inside my program.
The calibration requires the Zivid::PointCloud type but your service will of course return a sensor_msgs::PointCloud2 type. What would be the best way to convert it back into the Zivid format?
The text was updated successfully, but these errors were encountered:
Hi @Levaru. Sorry for the late response. Currently we don't have any way to convert from sensor_msgs::PointCloud2 to Zivid::PointCloud. The Zivid ROS driver is not really designed to be used together with the C++ API at the same time. I am not sure how well this will work in practice. Unfortunately we also do not have hand-eye calibration support in our ROS driver directly.
However we have an open PR (#68) which will allow you to use the ROS driver to capture and save to a .zdf file on disk, that you can then load again into a Zivid::Frame and then you can call frame.pointCloud(). This PR has been on hold for a while, but we will get it finished soon and then merged.
If the capture_and_save solution does not work for you, I think you might need to have the calibration be done in a separate process independent of the ROS driver, and then only after hand-eye calibration you use the Zivid ROS driver for normal operation.
I'm currently writing a handeye calibration program using your cpp example. But I would like to use your ros driver package instead of interfacing with the camera directly inside my program.
The calibration requires the
Zivid::PointCloud
type but your service will of course return asensor_msgs::PointCloud2
type. What would be the best way to convert it back into the Zivid format?The text was updated successfully, but these errors were encountered: