Closed xi-mao closed 5 years ago
https://github.com/GengZ/siameseFC-pytorch-vot/blob/master/Train/run_Train_SiamFC.py#L45
There could be further process before feeding data into the network. In this line, crop the size of 255x255 to 127x127.
https://github.com/GengZ/siameseFC-pytorch-vot/blob/master/Train/run_Train_SiamFC.py#L45
There could be further process before feeding data into the network. In this line, crop the size of 255x255 to 127x127.
I mean that you should read the .crop.z.jpg as the exemplar image,and read .crop.x.jpg as the search image. but in the code ,it all read .*crop.x.jpg. I don't understand that.
Besides, I have some question,did you test on OTB-2013. I test my trained model on vot2016, its result is nice. but when I test on OTB-2013. Its results is terrible. Should I change some parameters?
There's no actual difference between .x.jpg and .z.jpg except the size. Read the .x.jpg then crop is the same as use .z.jpg. But the former approach makes augmentation easier, for example you could use the random offset.
I didn't test on OTB since it's not my focus. But OTB data is different from VOT in some aspects. The most obvious one is there is grey image in OTB. So at least include some random grey image pairs while training for it.