How to Import .ply File into Unity and Enable User Navigation in the Scene
Closed this issue · 2 comments
tsai-b10809052 commented
After completing the step "7.Re-scale the mesh according to the known height of the camera off of the ground", I have generated a .ply file. I would like to import this file into Unity so that users can freely navigate within the scene. Could you provide guidance on the best approach to:
- Import the .ply file into Unity
- Set up the scene to allow user movement within the mesh environment
Any suggestions or resources would be greatly appreciated. Thank you!
jonathanventura commented
Hello, I believe Unity supports GLB files -- you should be able to change the suffix of the filename to .glb
when running estimate_scale_histogram.py
to get a GLB file:
python mesh/estimate_scale_histogram.py input.ply output.glb
tsai-b10809052 commented
Thank YOU!!!!!