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 found that both vo and gnss only ensure the alignment of imu with vo or gnss during initialization, and then completely depend on whether ros nodes receive data for processing
'''
if (!ekf_ptr_->inited_) {
if (!ekf_ptr_->init(gps_data_ptr->timestamp)) return;
std::dynamic_pointer_cast<GNSS>(ekf_ptr_->observer_ptr_)->set_params(gps_data_ptr);
printf("[cggos %s] System initialized.\n", __FUNCTION__);
return;
}
'''
The text was updated successfully, but these errors were encountered:
I found that both vo and gnss only ensure the alignment of imu with vo or gnss during initialization, and then completely depend on whether ros nodes receive data for processing
'''
if (!ekf_ptr_->inited_) {
if (!ekf_ptr_->init(gps_data_ptr->timestamp)) return;
}
'''
The text was updated successfully, but these errors were encountered: