Stage2024/tracking_sources/REAMDE.md

43 lines
530 B
Markdown
Raw Normal View History

2024-06-28 14:08:49 +02:00
# Python sources for object tracking
## Installation
### With Nix
```bash
nix-shell
```
### Without Nix
requirements : Conda
```bash
conda create --yes -q -n stage python=3.10 -c conda-forge
conda activate stage
conda install --yes -f conda-requirements.txt -c conda-forge
```
## Usage
Tracking:
```bash
python tracking.py
```
verify on a benchmarck of pictures
```bash
python verify.py
```
Graph results:
```bash
python graphing.py results.csv
```
Graph frametime:
```bash
python frametime.py
```