We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a function as follows but it seems not working... Any help is appreciated.
@staticmethod def draw_pc(pc_xyzrgb): pc = o3d.geometry.PointCloud() pc.points = o3d.utility.Vector3dVector(pc_xyzrgb[:, 0:3]) if pc_xyzrgb.shape[1] == 3: o3d.visualization.draw_geometries([pc]) return 0 if np.max(pc_xyzrgb[:, 3:6]) > 20: ## 0-255 pc.colors = o3d.utility.Vector3dVector(pc_xyzrgb[:, 3:6] / 255.) else: pc.colors = o3d.utility.Vector3dVector(pc_xyzrgb[:, 3:6]) o3d.geometry.PointCloud.estimate_normals(pc) o3d.visualization.draw_geometries([pc], width=1000, height=1000) return 0
The text was updated successfully, but these errors were encountered:
Can you submit new results on the evaluation's website now?
Sorry, something went wrong.
No branches or pull requests
I found a function as follows but it seems not working...
Any help is appreciated.
The text was updated successfully, but these errors were encountered: