Open3D
Open3D copied to clipboard
some funtion is not valid in vscode such as "build a coordinate and make visualization"
Checklist
- [X] I have searched for similar issues.
- [X] For Python issues, I have tested with the latest development wheel.
- [X] I have checked the release documentation and the latest documentation (for
main
branch).
My Question
python -- version 3.11.9
open3d -- version 0.18.0
code:
import open3d as o3d
print("start")
coordinate = o3d.geometry.TriangleMesh.create_coordinate_frame(size=1)
print("build coordinate")
o3d.visualization.draw_geometries([coordinate])
print("visualization")
result:
PS E:\python3.11\workspace> & E:/python3.11/python.exe e:/python3.11/workspace/test.py
start
PS E:\python3.11\workspace>
Normally, it will show a window with a coordinate inside it, but it doesn't and no error. If I show some points, it works!
import open3d as o3d
import numpy as np
num_points = 1000
points = np.random.rand(num_points, 3)
point_cloud = o3d.geometry.PointCloud()
point_cloud.points = o3d.utility.Vector3dVector(points)
o3d.visualization.draw_geometries([point_cloud], window_name="Random Point Cloud")
result:
It give me a window with some random point_cloud, sorry for no picture~
So the coordinate visualization, how can I fix it?