I am a beginner in open3d.
I want to try some examples in the document.
But I can't find any information about how to import o3dtut.
mesh = o3dtut.get_bunny_mesh()
pcd = mesh.sample_points_poisson_disk(750)
o3d.visualization.draw_geometries([pcd])
alpha = 0.03
print(f"alpha={alpha:.3f}")
mesh = o3d.geometry.TriangleMesh.create_from_point_cloud_alpha_shape(
pcd, alpha)
mesh.compute_vertex_normals()
o3d.visualization.draw_geometries([mesh], mesh_show_back_face=True)
the code was copied from here
I had the same problem.But now that I've settled it.
I don't find it anywhere, but "o3dtut" omits "open3d_tutorial" in the It seems to be the one you did. I found the "open3d_tutorial.py" in the Open3D Github repository(https://github.com/intel-isl/Open3D/tree/master/examples/python).
Cloning this repository and copy "open3d_tutorial.py" to your directory. importing the following from the source code solved the problem.
import open3d_tutorial as o3dtut
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With