visinf / self-mono-sf

Self-Supervised Monocular Scene Flow Estimation (CVPR 2020)
Apache License 2.0
248 stars 47 forks source link

Scaling in Augmentation #15

Closed Bayrambai closed 3 years ago

Bayrambai commented 3 years ago

Thanks for making your code open,

Can you tell me how do you obtain [0.93, 1] scaling for size [256, 832] in your Augmentation? Is scaling dependent on the resized image?

hurjunhwa commented 3 years ago

Hi, The two parameters are independent.

You can intuitively think that (although the actual implementation is a bit different):

So, you can freely change the two parameters as you wish. However, there is a stage that discards an invalid configuration such as when the intermediate image is smaller than the crop size. This kind of case will not be used for training.

Bayrambai commented 3 years ago

Thanks for your reply