Is td_wheel the time offset between IMU and Wheel? Or is it the time offset between Camera and Wheel?
curTime = feature.first + td;
curTime_wheel = curTime - td_wheel;
Is td_wheel calculated as the backward offset from IMU timestamp to wheel timestamp?
td_wheel is the time offset between IMU and Wheel, and curTime_wheel = curTime - td_wheel;
you can refer to viwo_data_simulation for the usage of td_wheel
Is td_wheel the time offset between IMU and Wheel? Or is it the time offset between Camera and Wheel? curTime = feature.first + td; curTime_wheel = curTime - td_wheel;
Is td_wheel calculated as the backward offset from IMU timestamp to wheel timestamp?