SiameseX.PyTorch icon indicating copy to clipboard operation
SiameseX.PyTorch copied to clipboard

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

Results 13 SiameseX.PyTorch issues
Sort by recently updated
recently updated
newest added

What does your groundtruth's mean,it has 8D vectors?

Hi. Can you please share some transfer learning strategy to start with without training from scratch? thank you

Which code handles the sampling problem of random_shift_factor=32?

Can this implementation handle multiple tracker instances to track several objects on a frame. The reason for asking: SiamRPN PYSOT implementation cannot handle it, since SOT requires initialization.

Do you know the loss of siamrpn++ in detail?

can you tell me the result of SiamDW in VOT2018 and VOT2016 (trained by COCO, ImageNet DET , ImageNet VID, and YouTube-BoundingBoxes Dataset)?

I've recently been attempting to run the demo_rpn.py script with the pretrained weights you have made available. Unfortunately, it appears that the weights don't match the model. Placing a breakpoint...

Hi, can you provide any guidance in using this code for custom images/videos? what if i want to draw bounding box first and then track it? to make it more...

I run the command `python demo_rpn.py --model SiamRPNResNeXt22` in the directory "SiameseX.PyTorch", I got the error "from neck import AdjustLayer, AdjustAllLayer". Then, I changed it to `from .neck import AdjustLayer,...