https://github.com/emmeowzing/rx_algorithm
A fast (experimental) RX algorithm implementation in Python 3.9+
https://github.com/emmeowzing/rx_algorithm
algorithm image mahalanobis rx
Last synced: 3 months ago
JSON representation
A fast (experimental) RX algorithm implementation in Python 3.9+
- Host: GitHub
- URL: https://github.com/emmeowzing/rx_algorithm
- Owner: emmeowzing
- License: gpl-3.0
- Created: 2018-07-14T22:14:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T07:45:35.000Z (9 months ago)
- Last Synced: 2025-03-24T08:37:04.030Z (9 months ago)
- Topics: algorithm, image, mahalanobis, rx
- Language: Python
- Homepage: https://github.com/bjd2385/rx_algorithm
- Size: 6.46 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rx_algorithm
A fast (experimental) RX algorithm implementation in Python 3.9+ with overhead reduction based on entropy estimation via compression.
## Example usage
```python
from rx_algorithm import rx
from rx.utils import plot
X = rx(array)
plot(X, 'out.png')
```