17 lines
454 B
Markdown
17 lines
454 B
Markdown
|
# Trajectory Prediction
|
||
|
|
||
|
Use object detector (e.g. RetinaNET, YOLO), and multi-object-tracker (e.g. SORT, DeepSORT) to capture trajectories. Then tinker with Weighted Networks (Hunger 2023) to create predictions of new movements.
|
||
|
|
||
|
## Initiate
|
||
|
|
||
|
The project uses poetry. So to set it up:
|
||
|
|
||
|
```bash
|
||
|
poetry install
|
||
|
```
|
||
|
|
||
|
If using python notebook with Jupyter it might be useful to do:
|
||
|
|
||
|
```bash
|
||
|
poetry run python -m ipykernel install --user --name trajpred
|
||
|
```
|