Code Monkey home page Code Monkey logo

Comments (2)

ChauChorHim avatar ChauChorHim commented on July 3, 2024

the demo video demo shows the rgbd map. image

I'm currious about how to get this rgbd map. A possible method is depth image + intrinsic -> pointcloud -> aggragate all pointclouds with poses -> voxelization -> rgbd map. Could anybody know how to generate this rgbd map?

Hi, I don't know if you solve it or not, but the pipeline you mentioned is basically correct. The difficult point here is how to concatenate pointclouds. So, the first stuffs you need to prepare are the pointcloud of each depth in the camera coordinate.
At the same time, you should have the absolute pose for each camera. I don't use the pose generated by the pose encoder. In my dataset, I use the pose generated by the antenna gps. Anyway, if you don't have a more accurate pose source, maybe the pose from pose encoder is an option.
Then, you'd better set the first camera's pose as the initial pose and then transform the other pose into this coordinate system. Here are the mathematical computation.

R_ac = R_ab * R_bc
R_bc = inverse(R_ab) * R_ac

T_ac = T_ab + R_ab * T_bc
T_bc = inverse(R_ab) * (T_ac - T_ab)

where a is the absolute coordinate, b is the first frame's coordinate and c is the other coordinate.

Use R_bc and T_bc, you could transform all other pointcloud into the same coordinate of the first camera coordinate.

from manydepth.

iariav avatar iariav commented on July 3, 2024

Has anyone managed to produce the RGBD point cloud as in the demo and can share a script on how to achieve this?

from manydepth.

Related Issues (20)

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.