Coder Social home page Coder Social logo

Comments (1)

dlr1516 avatar dlr1516 commented on September 4, 2024

Thanks for your interest. The function associatePointToPoint does not use the robot pose to associate points, but is based on correspondence graph methods. GRD methods selects the list of candidates with highest signature similarities. Then, the more expensive we execute point-to-point association, which in the current implementation is done by correpondence graph.
Correpondence graph creates a graph whose nodes are all the associations between points. (Example {A, B} the set of landmarks and {1,2,3} the set of features: the nodes are (A,1), (A,2), (A,3), (B,1), etc.). Two nodes/associations are connected by an edge if the pairwise distance between the points of the two associatons in their respective set. (Example: node (A,1) is connected to node (B,2) by an edge is the distances (A,B) and (1,2) are the same up to a tolerance). Final association is found by matching subgraphs. See e.g. Tim Bailey et al. paper at ICRA 2000 which is cited also by my paper.
Thus, correspondence graph does not depend on odometry and is not affected by drift. Failures may occur due to perceptual aliases: if similar lanmark sets is observed by two or more locations, correspondence graph cannot disambiguate among them.
I want to point out that GRD is designed to select potential loop closure candidates similalrly to bag-of-words methods applied to feature descriptors, it is not a complete localization method. It avoids testing point-to-point association to all the scans or submaps by selecting the places with similar landmark location pattern. Final pose estimation requires point-to-point association.
In general, if you have more candidates with similar landmark patterns or the landmark are not so descriptive, one possibility is to use bayesian methods tracking more than a single hypothesis. Hope this help.
Best regards.

from grd.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.