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 had the same issue, I tried your fix but it still raised OOM error (killed), the mesh I use is from shapenet: ShapeNetCore.v2/04256520/ccb08f869edde5e6d8adf1ca87495d41
0a6acbe0724b4fd0901b5a42c19c8952.zip
This is a zipped .glb scene containing a car. Unzipping and running the following script
gives
Having debugged, this has been narrowed down to the line near the top of
__init__.py
:which calls
sum()
on a numpy array ofTrimesh
. This apparently does some parallelisation which is too memory intensive for this geometry. If we dowhich uses trimesh's inbuilt mesh concatenation, the script completes with expected output
I will open a pull request with this change.
The text was updated successfully, but these errors were encountered: