-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
# ssd_sort | ||
This is a simple multi-person tracking system.<br> | ||
Detector:[SSD](https://github.com/weiliu89/caffe/tree/ssd).<br> | ||
Association:[Sort](https://github.com/abewley/sort).<br> | ||
To run this code | ||
# SSD_SORT | ||
This is a simple multi-person tracking system.<br> | ||
* Detector: [SSD](https://github.com/weiliu89/caffe/tree/ssd).<br> | ||
* Association: [Sort](https://github.com/abewley/sort).<br> | ||
|
||
### Instruction | ||
|
||
To run this code,you should install [SSD](https://github.com/weiliu89/caffe/tree/ssd) and build the python interface. A pretrained person detector caffemodel is also needed for the detector. The image sequence should be stored under sequence folder. Some deploy files are under model folder. Run detrk.py to see the detection and association results. You can also edit some arguments to meet different situations. | ||
|
||
### Result | ||
![Image text](https://raw.githubusercontent.com/SpyderXu/ssd_sort/master/example.png) | ||
|
||
|
||
@inproceedings{liu2016ssd, | ||
### Citing | ||
|
||
|
||
@inproceedings{Bewley2016_sort, | ||
author={Bewley, Alex and Ge, Zongyuan and Ott, Lionel and Ramos, Fabio and Upcroft, Ben}, | ||
booktitle={2016 IEEE International Conference on Image Processing (ICIP)}, | ||
title={Simple online and realtime tracking}, | ||
year={2016}, | ||
pages={3464-3468}, | ||
keywords={Benchmark testing;Complexity theory;Detectors;Kalman filters;Target tracking;Visualization;Computer Vision;Data Association;Detection;Multiple Object Tracking}, | ||
doi={10.1109/ICIP.2016.7533003} | ||
} | ||
@inproceedings{liu2016ssd, | ||
title = {{SSD}: Single Shot MultiBox Detector}, | ||
author = {Liu, Wei and Anguelov, Dragomir and Erhan, Dumitru and Szegedy, Christian and Reed, Scott and Fu, Cheng-Yang and Berg, Alexander C.}, | ||
booktitle = {ECCV}, | ||
year = {2016} | ||
} | ||
|
||
|
||
@inproceedings{Bewley2016_sort, | ||
author={Bewley, Alex and Ge, Zongyuan and Ott, Lionel and Ramos, Fabio and Upcroft, Ben}, | ||
booktitle={2016 IEEE International Conference on Image Processing (ICIP)}, | ||
title={Simple online and realtime tracking}, | ||
year={2016}, | ||
pages={3464-3468}, | ||
keywords={Benchmark testing;Complexity theory;Detectors;Kalman filters;Target tracking;Visualization;Computer Vision;Data Association;Detection;Multiple Object Tracking}, | ||
doi={10.1109/ICIP.2016.7533003} | ||
} |