Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T03:54:37.000Z (over 2 years ago)
- Last Synced: 2024-09-17T02:54:46.173Z (4 months ago)
- Language: Rust
- Size: 76.2 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![test status](https://github.com/tylerjereddy/rusty_hausdorff/actions/workflows/linux.yml/badge.svg)
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.