Pytorch-SiamFC icon indicating copy to clipboard operation
Pytorch-SiamFC copied to clipboard

used bicubic

Open arbitularov opened this issue 6 years ago • 2 comments

benet bicubic I used bicubic interpolation, but my results is not good

arbitularov avatar Feb 13 '19 10:02 arbitularov

Can you give me more details on what exactly you did? For example did you use the bicubic upsampling during training, i.e. does your bicubic upsampling have a backprop function?

rafellerc avatar Feb 18 '19 05:02 rafellerc

if self.upscale: match_map = F.interpolate(match_map, self.upsc_size, mode='bilinear', align_corners=False)

In your code, I just change the:

if self.upscale: match_map = F.interpolate(match_map, self.upsc_size, mode='bicubuc', align_corners=False)

arbitularov avatar Feb 21 '19 10:02 arbitularov