All Projects → zllrunning → Siamesex.pytorch

zllrunning / Siamesex.pytorch

A simplified PyTorch implementation of Siamese networks for tracking: SiamFC, SiamRPN, SiamRPN++, SiamVGG, SiamDW, SiamRPN-VGG.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Siamesex.pytorch

sparseIndexTracking
Design of Portfolio of Stocks to Track an Index
Stars: ✭ 27 (-91.51%)
Mutual labels:  tracking
energizedprotection
Energized Protection Magisk Module.
Stars: ✭ 70 (-77.99%)
Mutual labels:  tracking
Habitctl
Minimalist command line tool you can use to track and examine your habits.
Stars: ✭ 277 (-12.89%)
Mutual labels:  tracking
PlaceTracking
Simple and free to use API for time and location tracking
Stars: ✭ 21 (-93.4%)
Mutual labels:  tracking
realtime-facereccpp
Real time face recognition with tracking (mtcnn detection, kcf tracker, arcface loss)
Stars: ✭ 32 (-89.94%)
Mutual labels:  tracking
Pirsch
Pirsch is a drop-in, server-side, no-cookie, and privacy-focused analytics solution for Go.
Stars: ✭ 257 (-19.18%)
Mutual labels:  tracking
ember-deep-tracked
Deep auto-tracking for when you just don't care, and want things to work (at the cost of performance in some situtations)
Stars: ✭ 20 (-93.71%)
Mutual labels:  tracking
Tensorflow 2.x Yolov3
YOLOv3 implementation in TensorFlow 2.3.1
Stars: ✭ 300 (-5.66%)
Mutual labels:  tracking
traq
Super simple email open/click tracking server.
Stars: ✭ 62 (-80.5%)
Mutual labels:  tracking
Public activity
Easy activity tracking for models - similar to Github's Public Activity
Stars: ✭ 2,822 (+787.42%)
Mutual labels:  tracking
brfv4 win examples
Windows C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 13 (-95.91%)
Mutual labels:  tracking
RPT
RPT: Learning Point Set Representation for Siamese Visual Tracking
Stars: ✭ 75 (-76.42%)
Mutual labels:  tracking
Aitrack
6DoF Head tracking software
Stars: ✭ 262 (-17.61%)
Mutual labels:  tracking
svelte-google-analytics
Google Analytics component for Svelte
Stars: ✭ 41 (-87.11%)
Mutual labels:  tracking
Pymodes
Python decoder for Mode S and ADS-B signals
Stars: ✭ 282 (-11.32%)
Mutual labels:  tracking
face-detectify
😅 Detect faces in images. Without native modules. It uses tracking.js.
Stars: ✭ 20 (-93.71%)
Mutual labels:  tracking
Sipmask
SipMask: Spatial Information Preservation for Fast Image and Video Instance Segmentation (ECCV2020)
Stars: ✭ 255 (-19.81%)
Mutual labels:  tracking
Spline
Data Lineage Tracking And Visualization Solution
Stars: ✭ 306 (-3.77%)
Mutual labels:  tracking
Mixpanel Swift
Official iOS (Swift) Tracking Library for Mixpanel Analytics
Stars: ✭ 294 (-7.55%)
Mutual labels:  tracking
Pysot Toolkit
Python Single Object Tracking Evaluation
Stars: ✭ 262 (-17.61%)
Mutual labels:  tracking

SiameseX.PyTorch

A simplified PyTorch implementation of Siamese networks for tracking: SiamFC, SiamVGG, SiamDW, SiamRPN, SiamRPN++.

Warning: It is still in development, some files are just for the integrity of the project.

Dependencies

  • python2.7
  • pytorch == 0.4.0
  • opencv
  • mmcv

Currently supported models

Backbones

  • AlexNet
  • VGG
  • ResNet22
  • Incep22
  • ResNeXt22
  • ResNet50

Demo

  • Try SiamFC:

Clone this repo and run

python demo.py --model SiamFC

You can change --mdoel to other models like

python demo.py --model SiamFCNext22
  • Try SiamRPN:

Download the pretrained model and put it in ./cp folder.

python demo_rpn.py --model SiamRPNResNeXt22
  • Try SiamRPN++:

Download the pretrained model and put it in ./cp folder.

python demo_rpn.py --model SiamRPNPPRes50
  • You'll see the following:

Training

  • download VID dataset (I did not use Youtube-bb because of limited resources).
  • download label files from here and run label_preprocess.py --file --output_file --path to replace my file path by yours, these three arguments should be treated carefully.
  • train SiamFCNext22 tracker
python train.py --gpu 0 --config configs/SiamFC.py
  • just replace --config argument and you can train other models
python train.py --gpu 0 --config configs/SiamRPN.py

TODO

We have accumulated the following to-do list, which we hope to complete in the near future

  • Still to come:
    • [ ] Add testing code on common datasets
    • [x] Add SiamRPN(AlexNet as backbone)
    • [x] Add SiamRPN(VGG as backbone)
    • [x] Add SiamRPN(ResNet, ResNext, Inception as backbone)

Citation

@inproceedings{bertinetto2016fully,
  title={Fully-convolutional siamese networks for object tracking},
  author={Bertinetto, Luca and Valmadre, Jack and Henriques, Joao F and Vedaldi, Andrea and Torr, Philip HS},
  booktitle={European conference on computer vision},
  pages={850--865},
  year={2016},
  organization={Springer}
}

@inproceedings{Li2019SiamVGGVT,
  title={SiamVGG: Visual Tracking using Deeper Siamese Networks},
  author={Yuhong Li and Xiaofan Zhang},
  year={2019}
}

@inproceedings{SiamDW_2019_CVPR,
    author={Zhang, Zhipeng and Peng, Houwen},
    title={Deeper and Wider Siamese Networks for Real-Time Visual Tracking},
    booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
    year = {2019}

@article{li2018siamrpn++,
  title={SiamRPN++: Evolution of Siamese Visual Tracking with Very Deep Networks},
  author={Li, Bo and Wu, Wei and Wang, Qiang and Zhang, Fangyi and Xing, Junliang and Yan, Junjie},
  journal={arXiv preprint arXiv:1812.11703},
  year={2018}
}
}

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].