rust example working, clean up

This commit is contained in:
Alon Levy 2023-12-29 17:06:22 +02:00
parent a612d4f7d7
commit 056bb2f96c
6 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/venv
/frames
**/*.png
thermaldecoder/target

View File

@ -1,3 +1,15 @@
### Thermal decoder
https://wiki.telavivmakers.org/tamiwiki/projects/thermalcam
### Rust lib usage
# if you don't already have a virtualenv. Linux specific, adjust to your OS.
```bash
virtualenv venv
. venv/bin/activate
pip install -r requirements.txt
(cd thermaldecoder; maturin develop -r)
python test_rust.py
```