All Projects → researchmm → VOT2019

researchmm / VOT2019

Licence: other
The Winner and Runner-up Trackers for VOT-2019 Challenges

Programming Languages

python
139335 projects - #7 most used programming language
Cuda
1817 projects

Labels

Projects that are alternatives of or similar to VOT2019

webb-tracker-api
James Webb Space Telescope (JWST) tracking REST API
Stars: ✭ 67 (+36.73%)
Mutual labels:  tracking
ngx-metrika
Angular Yandex Metrika (Модуль поддержки счетчиков Яндекс Метрика для Angular 6+)
Stars: ✭ 13 (-73.47%)
Mutual labels:  tracking
matomo-tracker
Stand alone library for using matamo tracking in frontend projects
Stars: ✭ 138 (+181.63%)
Mutual labels:  tracking
m2.TrackingLink
Magento2. Extension add Tracking Url in Shipment Email.
Stars: ✭ 35 (-28.57%)
Mutual labels:  tracking
COVID-19-tracker
北航大数据高精尖中心研究团队进行数据来源的整理与获取,利用自然语言处理等技术从已公开全国4626确诊患者轨迹中抽取了基本信息(性别、年龄、常住地、工作、武汉/湖北接触史等)、轨迹(时间、地点、交通工具、事件)及病患关系形成结构化信息
Stars: ✭ 75 (+53.06%)
Mutual labels:  tracking
groucho
Know all your users. Scalable front-end (anon) personalization & attribution
Stars: ✭ 31 (-36.73%)
Mutual labels:  tracking
gtm-guidelines
A collection of best practices for your daily Google Tag Manager routine
Stars: ✭ 39 (-20.41%)
Mutual labels:  tracking
accomplist
ACCOMPLIST - List Compiler
Stars: ✭ 51 (+4.08%)
Mutual labels:  tracking
smashblock
📡 🛡️A self-updating extensive blocklist filter for AdGaurd. Be sure to 🌟 this repository for updates!
Stars: ✭ 66 (+34.69%)
Mutual labels:  tracking
icloud3
iCloud3 - An advanced device_tracker custom_component for iPhones, iPads, etc. It monitors zone & location updates triggered by the HA iOS App and supports Apple 2fa verification.
Stars: ✭ 304 (+520.41%)
Mutual labels:  tracking
Mobile Phone Tracking
This repository is source code for some of the attacks defined in this paper (https://arxiv.org/pdf/1703.02874v1.pdf). Not all attacks will be available. Please read the README.md
Stars: ✭ 20 (-59.18%)
Mutual labels:  tracking
delibee
📦 Delivery tracking library on Node.js
Stars: ✭ 24 (-51.02%)
Mutual labels:  tracking
corona tracker
COVID-19 tracking app - submission for https://wirvsvirushackathon.org/
Stars: ✭ 13 (-73.47%)
Mutual labels:  tracking
CrowdFlow
Optical Flow Dataset and Benchmark for Visual Crowd Analysis
Stars: ✭ 87 (+77.55%)
Mutual labels:  tracking
vue-plausible
Plausible Analytics Vue.js Plugin and NuxtJS Module
Stars: ✭ 107 (+118.37%)
Mutual labels:  tracking
yolo deepsort
Fast MOT base on yolo+deepsort, support yolo3 and yolo4
Stars: ✭ 47 (-4.08%)
Mutual labels:  tracking
mailbox
📨 簡易電子報發送系統,使用 #Golang 實作,send campaign mail with open, click tracker.
Stars: ✭ 26 (-46.94%)
Mutual labels:  tracking
flyxc
GPS track visualization, flight planning, live tracking, and more ...
Stars: ✭ 47 (-4.08%)
Mutual labels:  tracking
VideoRecognitionTracking
Real time object or face detection recognition and tracking in video. The Full end-to-end project.
Stars: ✭ 36 (-26.53%)
Mutual labels:  tracking
OpenTLD KCF
OpenTLD with KCF tracker
Stars: ✭ 20 (-59.18%)
Mutual labels:  tracking

SiamDW-based trackers for VOT-2019 challenge

We are hiring talented interns: [email protected]

SiamDW_D

If you failed to install and run this tracker, please email me ([email protected]).

Prerequisites

Install python packages

The python version should be 3.6.x, if not please run,

conda install -y python=3.6

and then run,

bash install.sh

Download pretrained model

Download models here. Unzip networks.zip in SiamDW_D/test/

Set pretrained model path

  • row of 14th in SiamDW_D/test/settings/resnext_far/resnext.py, and row of 14th in SiamDW_D/test/settings/senet_far/senet.py please modify main_path to your code SiamDW_D/test directory. eg.
main_path = '/home/hongyuan/VOT2019/SiamDW_D/test/'

Prepare data

You can creat a soft link in test dir. eg.

ln -s $Your-RGBD-data-path data 

or just move RGBD data to SiamDW_D/test/data. Then, modify self.rgbd_path in SiamDW_D/test/settings/envs.py to your RGBD data path.

Prepare to run

Define your experiments in SiamDW_D/test/settings/exp.py. The default is RGBD.

Run tracker

Set gpus id and processes in SiamDW_D/test/parallel_test.py. Then run it.

python parallel_test.py

SiamDW_T

If you failed run this tracker, please be free to email me ([email protected]).

Install python packages

sh install.sh

Download model

Download pre-trained model and put it in SiamDW_T/snapshot

Prepare testing data

cd SiamDW_T
mkdir dataset
cd dataset
ln -sfb $you_rgbt_vot_workspace/sequences VOT2019RGBT
cd ..

Run

python rgbt_tracking/test_rgbt.py

SiamDW_LT

If you failed to install and run this tracker, please email me ([email protected]).

Prerequisites

Install python packages

The python version should be 3.6.x, if not please run,

conda install -y python=3.6

and then run,

bash install.sh

Download pretrained model

Download models here. Unzip networks.zip in SiamDW_LT/test/

Set pretrained model path

  • row of 14th in SiamDW_LT/test/settings/resnext_far/resnext.py, please modify main_path to your code SiamDW_LT/test directory. eg.
main_path = '/home/v-had/VOT2019/SiamDW_LT/test/'

Prepare data

You can creat a soft link in test dir. eg.

ln -s $Your-LongTerm-data-path data

or just move LongTerm data to SiamDW_LT/test/data. Then, modify self.votlt19_path in SiamDW_LT/test/settings/envs.py to your LongTerm data path.

Prepare to run

Define your experiments in SiamDW_LT/test/settings/exp.py. The default is LongTerm.

Run tracker

Set gpus id and processes in SiamDW_LT/test/parallel_test.py. Then run it.

python parallel_test.py



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