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
Thanks you! But I have a problem for the ground truth of the loop . How do you get the ground truth of the loop close decetion in kitti? The code in the project should be to obtain the true value of the network.
The text was updated successfully, but these errors were encountered:
Please have a look at demo4: There we calculate and visualize the ground truth overlap of the very first frame against all others. The central function which actually does the work is com_overlap_yaw(). If you want the ground truth overlap for all frames, you just have to call this function for all frames (which we do not do in the demo as it takes some time).
If you have the ground truth overlaps, you just define a threshold for the overlap value (we used 30% in the paper). All frame pairs with higher overlap are then loop closure candidates. Here you might leave out the last n frames (we use n=100 in the paper) in order not to get loop closures between recent frames.
Thanks you! But I have a problem for the ground truth of the loop . How do you get the ground truth of the loop close decetion in kitti? The code in the project should be to obtain the true value of the network.
The text was updated successfully, but these errors were encountered: