I am looking for a rotational transform in python, that can be inverted to yield the original image. So far I am using
import skimage.transform as tf
import scipy
im = scipy.misc.ascent()
r1 = tf.rotate(im, 10, mode='wrap')
r2 = tf.rotate(r1, -10, mode='wrap')
If I do the same using reflect
the result looks like
Is there a possibilty to simply rotate an image by angle
and rotate the result back by -angle
and end up with the original image?
A potential solution to your problem would be to use
rotate
with the optional argumentresize
set toTrue
, and then to crop the final result.There will be minor differences between the original and the image rotated twice due to the operations inside the rotation function, but to the eye it looks the same.