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
in some cases, need to use open3d for further processing
The text was updated successfully, but these errors were encountered:
def to_open3d(idp_pcd): final_pcd = o3d.geometry.PointCloud() final_pcd.points = o3d.utility.Vector3dVector(idp_pcd._points) color_np = idp_pcd.colors/255 # color_np = np.insert(color_np, 2, 0.5, axis=1) # print(color_np) final_pcd.colors = o3d.utility.Vector3dVector(color_np) return final_pcd
Sorry, something went wrong.
HowcanoeWang
No branches or pull requests
in some cases, need to use open3d for further processing
The text was updated successfully, but these errors were encountered: