You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for pointing out the error, this part of the code is using NPBG. In our work, point clouds have normals, so it doesn't matter
When I run the pointcloud.ply file you provided, there is no normals is this file, I think you better confirm
In the utils.py, you write
" if model['normals'] is None:
print(f'no normals in {model_path}')
model['rgb'] = np.zeros((n_pts, 3), dtype=np.float32)"
I think this is wrong, it should be model["normals"] = np.zeros((n_pts, 3), dtype=np.float32)", because we have already defined model["rgb"] before.
In line 460 of READ.gl.utils, it should be 'model['normals'] = np.zeros((n_pts, 3), dtype=np.float32)'. Is this an error?
The text was updated successfully, but these errors were encountered: