Open wln19 opened 2 months ago
Thank you for your excellent work. When merging point clouds, the ply visualization colors cannot be loaded correctly. Do I need to set additional parameters?
The error you encountered while saving the PLY file is due to using the wrong data type. The color data should be saved as uint8.
This is mostly attributed to using a new version of the numpy library. The expression color = (color * 255).astype(int) needs to be updated. Replace np.int with np.int32 to ensure compatibility with the new numpy version.
Thank you for your answer. We also encountered some problems in generating Mesh. Which version of openmvs did you install? After we installed it, we kept getting errors when running the code.
Thank you for your answer. We also encountered some problems in generating Mesh. Which version of openmvs did you install? After we installed it, we kept getting errors when running the code.
We used OpenMVS1.1.1. You can kindly ingore this error if the mesh result can be output .
Thank you for your excellent work. When merging point clouds, the ply visualization colors cannot be loaded correctly. Do I need to set additional parameters?