Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

Process finished with exit code -1073741819 (0xC0000005)

Open FredJ44 opened this issue 5 months ago • 0 comments

Checklist

Describe the issue

Hi All, I need desperately your help ; I randomly encounter the same bug : Process finished with exit code -1073741819 (0xC0000005). I use GUI with 4 WidgetScene (callbacks on mouse et keyboard) in order to visualize a las file (cloud of points). I tried everything without any success : code modification, Numpy, Open3D and python release change, various las files, ... If you have any idea about the failure ? Thanks for your help.

Steps to reproduce the bug

self.window = gui.Application.instance.create_window(self.version, width, height)
self.window.set_on_key(self.on_key_event)

self.scene = [gui.SceneWidget(), gui.SceneWidget(), gui.SceneWidget(), gui.SceneWidget()]
        for i in range(len(self.scene)):
            self.scene[i].scene = rendering.Open3DScene(self.window.renderer)
            self.scene[i].scene.set_background([0.8, 0.9, 1.0, 1.0])
            self.scene[i].set_on_mouse(self.on_mouse_event)

Error message

Process finished with exit code -1073741819 (0xC0000005)

Expected behavior

No response

Open3D, Python and System information

- Windows 10 64-bit
- Python version 3.10`
- Open3D version 0.18.0
- NumPy version 1.24.0
- IDE : PyCharm

Additional information

No response

FredJ44 avatar Jun 11 '25 11:06 FredJ44