Giter Club home page Giter Club logo

Comments (2)

songanz avatar songanz commented on June 3, 2024

And also, if I don't know the A matrix, how should I use the score_pairwise_consistency() function? Right now I am just generate a random A matrix.

from clipper.

plusk01 avatar plusk01 commented on June 3, 2024

hi, currently there are only two invariants implemented in this repo: EuclideanDistance and PointNormalDistance. The PointNormalaDistance invariant has four parameters, two for the point distance comparison and two for the normal distance (angle between normal vectors) comparison. This invariant can be used for data association between two point clouds with normals, or for matching planar patches. However, in the planar patch case, this distance isn't truly "invariant" --- e.g., if the patch is extracted with different areas between the two views, the center point of the patch will be different.

I've recently solved this issue by leveraging a manifold representation of planes with a new invariant. This invariant is not implemented here yet.

Another invariant I have used (although not yet implemented here) is a three-way invariant for data association between two point clouds with unknown scales.

If you don't have an initial set of correspondence guesses, you may use an all-to-all hypothesis clipperpy.utils.create_all_to_all() (or simply omit the A parameter from score_pairwise_consistency()). However, in this case you must be wary of how many potential associations will be evaluated. In the all-to-all case, the problem size is n choose 2. CLIPPER is efficient (2000 associations takes 130 ms), but these graph-based methods tend to scale poorly as the number of associations grows. It is best to use some information (descriptors, color, intensity, etc) to create a set of initial guesses; it's okay if many of them are bad, as long as there is some set of good initial associations, CLIPPER can find them.

from clipper.

Related Issues (10)

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.