Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kharitonov-ivan committed Oct 25, 2023
1 parent 8f249dc commit d98d367
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3100/)

This repository contains implementation of various multi-object trackers. Main goal is to demonstrate principles of work this trackers in educational proposes. This project is built upon this course [youtube 馃摵](https://www.youtube.com/channel/UCa2-fpj6AV8T6JK1uTRuFpw/featured) and MATLAB open sourced implementations.
This repository contains implementation of various multi-object trackers.

In addition, it includes is tutorial with goal to demonstrate principles of work this trackers in educational proposes. It is unfluenced by the Multiple Object Tracking course in Chalmers and Edx [youtube 馃摵](https://www.youtube.com/channel/UCa2-fpj6AV8T6JK1uTRuFpw/featured) and MATLAB open sourced implementations.

You can dive into in tutorial notebook (locally or in colab). Or explore code explicitly.
<a target="_blank" href="https://colab.research.google.com/github/kharitonov-ivan/multi-object-tracking-in-python/blob/main/tutorial-mot.ipynb">
Expand All @@ -14,13 +16,17 @@ You can dive into in tutorial notebook (locally or in colab). Or explore code ex

Firstly, you need install Eigen3 in your system.

```
```bash
python3.10 -m venv .venv
```
```bash
source .venv/bin/activate
```
```bash
python -m pip install -e .
```

As a depencies package manager this project use PDM.
As a dependencies package manager this project use PDM.

# Single Object tracking

Expand Down

0 comments on commit d98d367

Please sign in to comment.