We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问这里的transformation为什么要 -8 ? https://github.com/bilylee/SiamFC-TensorFlow/blob/master/datasets/dataloader.py#L38
另外,因为下面的处理,instance embeds的shape永远都是[batch_size, 255-28, 255-28, 3]吗? https://github.com/bilylee/SiamFC-TensorFlow/blob/master/datasets/dataloader.py#L39
The text was updated successfully, but these errors were encountered:
Is it because the random stretch may resize the raw image with a -0.05:
SiamFC-TensorFlow/datasets/transforms.py
Line 49 in f572dca
Sorry, something went wrong.
这是为了对训练图像做 +- 4 个 pixel 的平移。如果直接 RandomCrop(255 - 2 * 8) 会导致平移 +- 8 个 pixel,所以先CenterCrop,再 RandomCrop。相关问题 #19 #32 #56
RandomCrop(255 - 2 * 8)
No branches or pull requests
请问这里的transformation为什么要 -8 ?
https://github.com/bilylee/SiamFC-TensorFlow/blob/master/datasets/dataloader.py#L38
另外,因为下面的处理,instance embeds的shape永远都是[batch_size, 255-28, 255-28, 3]吗?
https://github.com/bilylee/SiamFC-TensorFlow/blob/master/datasets/dataloader.py#L39
The text was updated successfully, but these errors were encountered: