https://github.com/tylerjereddy/rusty_hausdorff
https://github.com/tylerjereddy/rusty_hausdorff
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tylerjereddy/rusty_hausdorff
- Owner: tylerjereddy
- License: mit
- Created: 2021-05-21T02:07:47.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T03:54:37.000Z (over 3 years ago)
- Last Synced: 2025-03-28T02:45:50.150Z (4 months ago)
- Language: Rust
- Size: 76.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

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.