-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
About information matrix #2
Comments
The important thing to note here is that absolute value of information matrix doesn’t matter whether it’s 500 vs 700 or 5000 vs 7000. You just need to trust your loop closure edge more than your odometry edges. The range of absolute values though I took from ORB SLAM and RTABMAP, but you can change it to 5000 vs 7000 yourself. |
Thanks! So it doesn't matter, as long as loop closure edge information matrix is larger. Also, do you happen to have the implementation about detecting loop closure edges? Thank you very much! |
Yes, just ensure that loop closure edge has higher information matrix. Here is the implementation of detection of loop closure and calculating transformation and doing pose graph slam. Apart from this you can use traditional bag of visual words or NETVLAD network for loop closure detection. And then use some feature matching algorithm for getting corespondences and ultimately transformation matrix. |
Thank you very much! But I only find how theuy use loop_pairs.txt, I don't find how they generate loop_pairs.txt. Could you please refer me where I can find the loop clocure detection implemention? Also, I only have monocular image sequence. Is this implementation compatible to my case? If not, could you refer me a good implementation that I can try? Thank you very much! Sorry, I am new to this area. Really appreciate!!! |
Hi, we have just released the code for local feature matching in our RoRD GitHub repository and not loop closure detection. For loop closure detection, we were using RoRD feature matching and for loop closure detection, we were calculating local feature matching between the query image and all the images in the database set, which are a 50-meter range of the query image, and then the database image which has the maximum correspondences with the query image is used as loop closure pair. |
Hi, thanks for your sharing. I noticed that you set Information matrix for odometry edges, = 500.0 0.0 0.0 500.0 0.0 500.0 and Information matrix for loop closure edges, = 700.0 0.0 0.0 700.0 0.0 700.0. May I ask why you set information matrix in this way? I have some visual odometry data, but I don't have information matrix. I don't know how to set up. Thanks!
The text was updated successfully, but these errors were encountered: