All Projects → songdejia → Siamese Rpn Pytorch

songdejia / Siamese Rpn Pytorch

Licence: mit
This is a re-implementation of Siamese-RPN with pytorch, which is CVPR2018 spotlight.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Siamese Rpn Pytorch

Aitrack
6DoF Head tracking software
Stars: ✭ 262 (-24.06%)
Mutual labels:  tracker
Whatsapp Play
Command line software through which you can play with your WhatsApp. It is having different options to play with your WhatsApp like message blast, online tracking, whatsapp chat..
Stars: ✭ 289 (-16.23%)
Mutual labels:  tracker
Dcpdn
Densely Connected Pyramid Dehazing Network (CVPR'2018)
Stars: ✭ 321 (-6.96%)
Mutual labels:  cvpr2018
Psa
Learning Pixel-level Semantic Affinity with Image-level Supervision for Weakly Supervised Semantic Segmentation, CVPR 2018
Stars: ✭ 261 (-24.35%)
Mutual labels:  cvpr2018
Geomapnet
Geometry-Aware Learning of Maps for Camera Localization (CVPR2018)
Stars: ✭ 281 (-18.55%)
Mutual labels:  cvpr2018
Tfusion
CVPR2018: Unsupervised Cross-dataset Person Re-identification by Transfer Learning of Spatio-temporal Patterns
Stars: ✭ 301 (-12.75%)
Mutual labels:  cvpr2018
build-time-tracker
Gradle plugin that prints the time taken by the tasks in a build
Stars: ✭ 27 (-92.17%)
Mutual labels:  tracker
Textspotter
Stars: ✭ 323 (-6.38%)
Mutual labels:  cvpr2018
V2v Posenet release
Official Torch7 implementation of "V2V-PoseNet: Voxel-to-Voxel Prediction Network for Accurate 3D Hand and Human Pose Estimation from a Single Depth Map", CVPR 2018
Stars: ✭ 286 (-17.1%)
Mutual labels:  cvpr2018
Matomo Sdk Android
SDK for Android to measure your apps with Matomo. Works on Android phones, tablets, Fire TV sticks, and more!
Stars: ✭ 309 (-10.43%)
Mutual labels:  tracker
Nyaa
Bittorrent software for cats
Stars: ✭ 2,899 (+740.29%)
Mutual labels:  tracker
Disco4g
4G/LTE softmod for the Parrot Disco
Stars: ✭ 273 (-20.87%)
Mutual labels:  tracker
Tracker Control Android
TrackerControl: monitor and control trackers and ads.
Stars: ✭ 305 (-11.59%)
Mutual labels:  tracker
Bt Btt
磁力網站U3C3介紹以及域名更新
Stars: ✭ 261 (-24.35%)
Mutual labels:  tracker
Prm
Weakly Supervised Instance Segmentation using Class Peak Response, in CVPR 2018 (Spotlight)
Stars: ✭ 322 (-6.67%)
Mutual labels:  cvpr2018
Splatnet
SPLATNet: Sparse Lattice Networks for Point Cloud Processing (CVPR2018)
Stars: ✭ 259 (-24.93%)
Mutual labels:  cvpr2018
Covid19
an interactive, animated COVID-19 coronavirus map to track the outbreak over time by country and by region for selected countries
Stars: ✭ 295 (-14.49%)
Mutual labels:  tracker
Planenet
PlaneNet: Piece-wise Planar Reconstruction from a Single RGB Image
Stars: ✭ 334 (-3.19%)
Mutual labels:  cvpr2018
Klystrack
A chiptune tracker
Stars: ✭ 321 (-6.96%)
Mutual labels:  tracker
Macos Fortress
Firewall and Privatizing Proxy for Trackers, Attackers, Malware, Adware, and Spammers with Anti-Virus On-Demand and On-Access Scanning (PF, squid, privoxy, hphosts, dshield, emergingthreats, hostsfile, PAC file, clamav)
Stars: ✭ 307 (-11.01%)
Mutual labels:  tracker

Siamese-RPN-pytorch

Introduction

  • Tensorflow Version has been available by my classmates makalo. If you have any question, please feel free to contact us.
  • This is a re-implementation for High Performance Visual Tracking with Siamese Region Proposal Network with PyTorch, which is accepted at CVPR2018.
  • Code_v1.0 is available for traning, you should change your dataset as VOT format(top-left point and w,h). If there is a break in a sequence, ues "0,0,0,0" to replace the info of this frame.
  • Dataset Tree
-root/class1/img1.jpg
            /...
            /imgN.jpg
            /groundtruth.txt

Citation

Paper: @InProceedings{Li_2018_CVPR,
author = {Li, Bo and Yan, Junjie and Wu, Wei and Zhu, Zheng and Hu, Xiaolin},
title = {High Performance Visual Tracking With Siamese Region Proposal Network},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2018}
}

Getting Started

Performance

Network introduction

Environment

  • python=3.6
  • pytorch=0.4.0
  • cuda=9.0
  • shapely=1.6.4

Download VOT2013 Dataset

wget http://data.votchallenge.net/vot2013/vot2013.zip 

Download YouTube-BB Data

git clone https://github.com/mbuckler/youtube-bb.git
python3 download.py ./dataset 12

Download pretrained model on VID with 690000 image pairs

Pretrained model is available here BaiduYun

Training Phase

git clone https://github.com/songdejia/siamese-RPN
cd code_v1.0
python train_siamrpn.py --dataroot=/PATH/TO/YOUR/DATASET --lr=0.001 --checkpoint_path=/PATH/TO/YOUR/WEIGHT

Visualization for debug

bbox in detection
green -- ground truth which is got by pos anchor shift with reg_target
red -- bbox which is got by pos anchor with reg_pred
black -- bbox with highest score

proposal in original image

Authors

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].