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
I installed open3d via pip and i was installed with numpy 2.1.0. When running the code the translation will silenty crash my python programm. Downgrading to numpy <2.0 resolves the issuse.
If I use the latest dev-wheel it works fine, because the numpy version is <2.0.
Steps to reproduce the bug
importopen3daso3dimportnumpyasnpimportcopydefmain():
armadillo_data=o3d.data.ArmadilloMesh()
pcd=o3d.io.read_triangle_mesh(
armadillo_data.path).sample_points_poisson_disk(5000)
trans_vec=np.array((150.0,0.0,0.0))
# crashes here if numpy version >= 2.0translated_pcd=copy.deepcopy(pcd).translate(trans_vec)
o3d.visualization.draw_geometries([pcd,translated_pcd],show_ui=True)
if__name__=="__main__":
main()
Error message
No response
Expected behavior
Ether bump version of numpy or check numpy version on install.
Also a error msg or an exception would be good for better debug
Open3D, Python and System information
- Operating system: Windows 10 64-bit
- Python version: Python 3.10.11 / output from `import sys; print(sys.version)`- Open3D version: 0.18.0
- System architecture: x86
- Is this a remote workstation?: no
- How did you install Open3D?: pip
Additional information
No response
The text was updated successfully, but these errors were encountered:
Checklist
main
branch).Describe the issue
I installed open3d via pip and i was installed with numpy 2.1.0. When running the code the translation will silenty crash my python programm. Downgrading to numpy <2.0 resolves the issuse.
If I use the latest dev-wheel it works fine, because the numpy version is <2.0.
Steps to reproduce the bug
Error message
No response
Expected behavior
Ether bump version of numpy or check numpy version on install.
Also a error msg or an exception would be good for better debug
Open3D, Python and System information
Additional information
No response
The text was updated successfully, but these errors were encountered: