We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A: IMU data is re-calbrated or keep consistent with the time of companion computer by mavlink_msg_timesync. Fair enough!
mavlink_msg_timesync
B: I didn't know if below calculation can keep video time consistent with the companion computer?
-- code from https://github.com/chobitsfan/libcamera-apps/blob/ros_img/apps/libcamera_hello.cpp
uint64_t boot_epoch_offset = epoch_ts.tv_sec * 1000000000 + epoch_ts.tv_nsec - (boot_ts.tv_sec * 1000000000 + boot_ts.tv_nsec);
auto sensor_ts = completed_request->metadata.get(controls::SensorTimestamp); uint64_t sensor_ts_epoch = *sensor_ts + boot_epoch_offset; ros::Time sensor_ros_ts(sensor_ts_epoch / 1000000000, sensor_ts_epoch % 1000000000);
Really confused here. Please help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A: IMU data is re-calbrated or keep consistent with the time of companion computer by
mavlink_msg_timesync
. Fair enough!B: I didn't know if below calculation can keep video time consistent with the companion computer?
-- code from https://github.com/chobitsfan/libcamera-apps/blob/ros_img/apps/libcamera_hello.cpp
Really confused here. Please help.
The text was updated successfully, but these errors were encountered: