Hi,
I noticed an issue with the way you have handled the Flow calculations in the dataloader. In the paper they mentioned that they downsampled the flow array using an 8*8 kernel using average pooling. You have taken a center crop to downsample, which is not going to give the right results.
Secondly, the paper mentioned to multiply the resulting flows by 50. I'm not sure what that is meant to do. Multiplying the flow array with 50 just increases the values by a lot. But if they meant upsample it by 50 then its like 28*50=1400px which becomes huge. So I'm not sure what that part does.
Hi,
I noticed an issue with the way you have handled the Flow calculations in the dataloader. In the paper they mentioned that they downsampled the flow array using an 8*8 kernel using average pooling. You have taken a center crop to downsample, which is not going to give the right results.
Secondly, the paper mentioned to multiply the resulting flows by 50. I'm not sure what that is meant to do. Multiplying the flow array with 50 just increases the values by a lot. But if they meant upsample it by 50 then its like 28*50=1400px which becomes huge. So I'm not sure what that part does.