apple / ml-neuman

Official repository of NeuMan: Neural Human Radiance Field from a Single Video (ECCV 2022)
Other
1.27k stars 141 forks source link

How to get the point cloud for alignment in blender #61

Open liuxinyangyyy opened 1 year ago

liuxinyangyyy commented 1 year ago

hello, thanks for your work! I want to align scene and human in blender and I'm not sure how to get the point cloud of scenes and human

jiangwei221 commented 1 year ago

The point cloud of the scene is reconstructed by the colmap, and exported as .ply file using Open3D library. The point cloud of the human is the vertex of the SMPL model also exported using O3D. We concatenate multiple human point clouds from the motion sequence to form a single point cloud, to help the alignment.

liuxinyangyyy commented 1 year ago

The point cloud of the scene is reconstructed by the colmap, and exported as .ply file using Open3D library. The point cloud of the human is the vertex of the SMPL model also exported using O3D. We concatenate multiple human point clouds from the motion sequence to form a single point cloud, to help the alignment.

Thanks for your answer. But I'm not sure in blender I should align by adjusting the scene model or the character mode

jiangwei221 commented 1 year ago

You can refer to: https://github.com/apple/ml-neuman/issues/42 and https://github.com/apple/ml-neuman/issues/26

liuxinyangyyy commented 1 year ago

You can refer to: #42 and #26

Thanks again! I'll try it.