43 lines
530 B
Markdown
43 lines
530 B
Markdown
|
# 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
|
||
|
```
|