fatheral / matlab_imresize

Python implementation of MatLab imresize function
MIT License
154 stars 41 forks source link

Do you know how to back propagation of imresize with bilinear interpolation? #2

Closed henanjun closed 4 years ago

henanjun commented 6 years ago

Thank you very much. :)

fatheral commented 6 years ago

I think you'd better to use the functions implemented in the NN Frameworks specially designed to have backprop :) E.g. resize_images in TF. Also you could look onto https://github.com/iwyoo/bicubic_interp-tensorflow

henanjun commented 6 years ago

Thank you very much. I see.