isl-org / Open3D

Open3D: A Modern Library for 3D Data Processing
http://www.open3d.org
Other
11.22k stars 2.28k forks source link

Why is my computer reporting this error "Process finished with exit code -1073741819(0xC0000005)" #6889

Open lkjvzizh opened 1 month ago

lkjvzizh commented 1 month ago

Checklist

My Question

import open3d as o3d
knot_mesh = o3d.data.KnotMesh()
mesh = o3d.io.read_triangle_mesh(knot_mesh.path)
print("Painting the mesh")
`mesh.paint_uniform_color([1,` 0.706, 0])
o3d.visualization.draw_geometries([mesh])

Process finished with exit code -1073741819(0xC0000005)

It is a problem with paint_uniform_color, My open3d version 0.18.0, My computer configuration: CPU: Intel(R) Core(TM) i7-14700KF RAM:32GB Operating System: Win10 64 bit Graphics card: NVIDIA GeForce RTX 4070Ti Python 3.11, 3.10, 3.9 series will report this error, but version 3.8 works fine, why?

heyunwang1 commented 1 month ago

PLZ Try to reinstall numpy==1.24.0

lkjvzizh commented 1 month ago

PLZ Try to reinstall numpy==1.24.0

Resolved, Thanks very much!

umiskky commented 1 month ago

numpy-1.26.0 also works

TiHoXue commented 1 month ago

PLZ Try to reinstall numpy==1.24.0

Thanks!!!