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
in the Initializer.cpp, in some cases above code the value init_frame_index_last could be nil(), it's size_t(-1), the value is not handle, that could cause out of bound
The text was updated successfully, but these errors were encountered:
Hi
`void Initializer::mirror_keyframe_map(Map *feature_tracking_map,
size_t init_frame_id) {
size_t init_frame_index_last =
feature_tracking_map->frame_index_by_id(init_frame_id);
size_t init_frame_index_gap = config->initializer_keyframe_gap();
size_t init_frame_index_distance =
init_frame_index_gap * (config->initializer_keyframe_num() - 1);
...
}`
in the Initializer.cpp, in some cases above code the value init_frame_index_last could be nil(), it's size_t(-1), the value is not handle, that could cause out of bound
The text was updated successfully, but these errors were encountered: