Home > Software engineering >  Restore an image after rotation without black borders in python
Restore an image after rotation without black borders in python

Time:12-02

I've used the following code in order to rotate an image (enter image description here

unrotated_img:
enter image description here

Original image:
enter image description here


The "restored" image looks blurred, because each warp (forward and backward) applies bi-linear interpolation that blurs the image a little.

  • Related