thangvubk / video-super-resolution

Video super resolution implemented in Pytorch
197 stars 41 forks source link

About the input size and ouput size #11

Open yinyiyu opened 2 years ago

yinyiyu commented 2 years ago

Hello, thank you for your excellent work. I noticed that in your code, the input and output of the model are all of the same size. Isn't this super resolution work? Why are the input and output the same?

thangvubk commented 2 years ago

The low resolution image is preprocessed by bicubic interpolation and then fed into the network. That is why the input and output of the model have same size.

yinyiyu commented 2 years ago

Thank you for your answer. I also noticed that bilinear interpolation was first used as the input of the model. One more question, why the input and output are gray picture instead of RGB graphs?

thangvubk commented 2 years ago

because we evaluate PSNR on gray channel only to compare with other methods.