# SiameseX.PyTorch **Repository Path**: greitzmann/SiameseX.PyTorch ## Basic Information - **Project Name**: SiameseX.PyTorch - **Description**: A simplified PyTorch implementation of Siamese networks for tracking: SiamFC, SiamRPN, SiamRPN++, SiamVGG, SiamDW, SiamRPN-VGG. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 - [**SiamFC**](https://arxiv.org/abs/1606.09549) - [SiamVGG](https://arxiv.org/abs/1902.02804) - [SiamFCRes22](https://arxiv.org/abs/1901.01660) - [SiamFCIncep22](https://arxiv.org/abs/1901.01660) - [SiamFCNext22](https://arxiv.org/abs/1901.01660) - [**SiamRPN**](http://openaccess.thecvf.com/content_cvpr_2018/papers/Li_High_Performance_Visual_CVPR_2018_paper.pdf) - [SiamRPNVGG](https://github.com/leeyeehoo/SiamRPN-VGG) - [SiamRPNRes22](https://arxiv.org/abs/1901.01660) - [SiamRPNIncep22](https://arxiv.org/abs/1901.01660) - [SiamRPNResNeXt22](https://arxiv.org/abs/1901.01660) - [**SiamRPN++**](https://arxiv.org/abs/1812.11703) ## 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](https://drive.google.com/open?id=1nQUcmg8SmLq9J_cXqMW5OtxgFQjtPBDc) and put it in **./cp** folder. ``` python demo_rpn.py --model SiamRPNResNeXt22 ``` - **Try SiamRPN++:** Download [the pretrained model](https://drive.google.com/open?id=1BV86AAjYMn50T1RfE8BkKkThlNZI1a-m) and put it in **./cp** folder. ``` python demo_rpn.py --model SiamRPNPPRes50 ``` - You'll see the following: