pygeodesic
pygeodesic copied to clipboard
Python library to compute geodesic distance over a triangular based surface mesh
Hi, I encoutered an error with only segment fault logging, "Segmentation fault (core dumped)". I found out the error line is the initiation of geoalg: ``` geoalg = geodesic.PyGeodesicAlgorithmExact(vertices, faces)...
The `max_distance` parameter of `geodesicDistances` doesn't seem to do anything. In `GeodesicAlgorithmExact::check_stop_conditions` from `geodesic_algorithm_exact.h`, shouldn't the first `if` block read ``` if(queue_distance > stop_distance()) { return true; } ``` instead...
``Hello, I have a question regarding the connectivity of points in a triangular mesh. Should there normally be a geodesic path between any two points in a triangular mesh? In...
I build from source by `python setup.py install`. But I get error `Traceback (most recent call last): File "", line 1, in File "/root/code/pygeodesic/pygeodesic/__init__.py", line 5, in import pygeodesic.geodesic as...
When passing a 3rd argument (`max_distance`) to [`PyGeodesicAlgorithmExact.geodesicDistances()`](https://github.com/mhogg/pygeodesic/blob/8106598e5575c44ec2d74965362459e1c421896a/pygeodesic/geodesic.pyx#L142), it sometimes crashes with this traceback: ``` Traceback (most recent call last): ... File "/home/nicoco/src/inria/cardiaclbm/experiments/doxo/cv/CVcomputationWithCircles.py", line 32, in jairo gdistances, best_source =...
This commit makes sure that the numpy headers that are picked up for the compilation are the ones that setuptools installed. This fixes building on debian bullseye when the `python-numpy`...
I have a 3D surface mesh generated using Marching Cubes, and I am trying to compute exact geodesic distances using pygeodesic. However, I am getting infinite values when calculating the...