rusty_hausdorff 0.2.0

A parallel implementation of the directed Hausdorff distance.
Documentation
1
2
3
4
5
6
7
8
This is a Rust implementation of the directed [Hausdorff distance](https://en.wikipedia.org/wiki/Hausdorff_distance).
It is currently intended as an experiment to see if it can be
built to outperform the SciPy implementation of [`directed_hausdorff()`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.distance.directed_hausdorff.html)
by leveraging i.e., safe concurrency in Rust.

Initial performance comparison with the serial SciPy
implementation [shows substantial performance improvements](https://github.com/scipy/scipy/issues/14719)
with the parallel Rust code in this project.