Aasman Bashyal
Aasman Bashyal
I am also getting the segmentation fault while running it on ubuntu. But while running it on windows there is no problem. ``` import faulthandler # Enable fault handler faulthandler.enable()...
``` import faulthandler # Enable fault handler faulthandler.enable() import triangle as tr import numpy as np def delaunay_triangulation(pts, segments): """ Apply constrained delaunay triangulation https://rufat.be/triangle/API.html """ pts = np.array(pts, dtype=...
I am encountering a `ValueError: min() arg` is an empty sequence error when running train_vast.py. I used `COLMAP` to generate the datasets. The same datasets work fine with `train.py`, but...