You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- each object is modeled as a center point (n-dimensional) and its size (n-dimensional); e.g. 2D position with width and height would be the most popular use case for bounding boxes tracking
15
-
- seperately configurable system order for object position and size (currently 0th, 1st and 2nd order systems are allowed)
16
-
- quite fast, more than realtime performance even on Raspberry Pi
- each object is modeled as a center point (n-dimensional) and its size (n-dimensional); e.g. 2D position with width and height would be the most popular use case for bounding boxes tracking
15
+
- seperately configurable system order for object position and size (currently 0th, 1st and 2nd order systems are allowed)
16
+
- quite fast, more than realtime performance even on Raspberry Pi
17
17
18
-
## Installation:
18
+
## Installation
19
19
20
-
### Latest release:
20
+
### Latest release
21
21
22
22
```bash
23
23
pip install motpy
24
24
```
25
25
26
-
### Develop:
26
+
#### Additional installation steps on Raspberry Pi
27
+
28
+
You might need to have to install following dependencies on RPi platform:
29
+
30
+
```bash
31
+
sudo apt-get install python-scipy
32
+
sudo apt install libatlas-base-dev
33
+
```
34
+
35
+
### Develop
36
+
27
37
```bash
28
38
git clone https://github.com/wmuron/motpy
29
39
cd motpy
30
40
make install-develop # to install editable version of library
31
41
make test# to run all tests
32
42
```
33
43
34
-
## Demo
44
+
## Example usage
35
45
36
-
### 2D tracking
46
+
### 2D tracking - synthetic example
37
47
38
48
Run demo example of tracking N objects in 2D space. In the ideal world it will show a bunch of colorful objects moving on a grey canvas in various directions, sometimes overlapping, sometimes not. Each object is detected from time to time (green box) and once it's being tracked by motpy, its track box is drawn in red with an ID above.
This will run a simplified example where a tracker processes artificially corrupted ground-truth bounding boxes from sequence 11; you can preview the expected results in the beginning of the README file.
76
+
1.Download MOT16 dataset from `https://motchallenge.net/data/MOT16/` and extract to `~/Downloads/MOT16` directory,
This will run a simplified example where a tracker processes artificially corrupted ground-truth bounding boxes from sequence 11; you can preview the expected results in the beginning of the README file.
54
82
55
83
### Face tracking on webcam
56
84
57
85
Run the following command to start tracking your own face.
The simplification used here is that the object position and size can be treated and modeled independently; hence you can use even 2D bounding boxes in 3D space.
111
140
112
141
Feel free to tune the parameter of Q and R matrix builders to better fit your use case.
113
142
114
143
## Tested platforms
115
-
- Linux (Ubuntu)
116
-
- macOS (Catalina)
117
-
- Raspberry Pi (4)
144
+
145
+
- Linux (Ubuntu)
146
+
- macOS (Catalina)
147
+
- Raspberry Pi (4)
118
148
119
149
## Things to do
120
150
121
-
-[x] Initial version
122
-
-[ ] Documentation
123
-
-[ ] Performance optimization
124
-
-[ ] Multiple object classes support
151
+
- [x] Initial version
152
+
- [ ] Documentation
153
+
- [ ] Performance optimization
154
+
- [x] Multiple object classes support via instance-level class_id counting
155
+
- [x] Allow tracking without Kalman filter
156
+
- [x] Easy to use and configurable example of video processing with off-the-shelf object detector
0 commit comments