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: 7 days 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: 2026-01-21T05:11:58.000Z (28 days ago)
- Last Synced: 2026-01-21T17:24:45.462Z (28 days ago)
- Topics: algorithm, image, mahalanobis, rx
- Language: Python
- Homepage: https://github.com/bjd2385/rx_algorithm
- Size: 6.41 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')
```