Juyong / Fast_RNRR

Source code for the paper "Quasi-Newton Solver for Robust Non-Rigid Registration" (CVPR2020 Oral).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The format of point cloud to input

Tyg23 opened this issue · comments

commented

It says the code supports non-rigid registration from a triangle mesh to a mesh or a point cloud. Then if I want to input a point cloud, what format is supported in this code? And is there any part of the code has to be modified please? Thank you so much

Do you mean that the source model (deformed model) is a point cloud?

If so, you should change the part of building the deformation graph, because we need to compute the geodesic distance in this process, and we use the method which is just suitable for the mesh.

If not, for the target model (fixed model), you can input a point cloud in any form that can be read by OpenMesh(https://www.graphics.rwth-aachen.de/software/openmesh/), such as
'.ply', '.obj', '.off'.

commented

Brilliant work, I got it. Thank you so much!

Brilliant work, I got it. Thank you so much!

Hi, did you change the input from mesh to point cloud?