-
Notifications
You must be signed in to change notification settings - Fork 194
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
[BUG] problem synchronizing cameras, with depth and imu #638
Comments
Hi, each sensors reports its own timestamp of when the data was captured. In DepthAI C++/Python library we can use |
Is there a simple way to synchronize the stereo cameras? Maybe even a hard code approach to go along the stereo_node. |
what functionalities do i need to add to the stereo_node? |
Hi, you can refer to exampled in depthai-core on pipeline setup, with a sync node it's unfortunately more complicated when it comes to DAI_ROS bridge as is since it's designed for single input queues. In short, you would need to create a separate ROS node with publishers and for each message publish that message, similarly to how it's done in depthai_ros_driver. |
I can't synchronize the cameras, depth and imu with "message_filters::TimeSynchronizer" but I can synchronize them with "message_filters::sync_policies::ApproximateTime".
It happens because the time stamps are not exactly alien and I do need them to be properly alien.
I'm using the depthai_examples stereo_node node
Any help?
The text was updated successfully, but these errors were encountered: