i am trying to transform image, that is rotated and a little skewed with Skimage.
image = io.imread("id_1.jpg")
afine_tf = tf.AffineTransform(shear=0.3, rotation=-0.5)
modified = tf.warp(image, inverse_map=afine_tf)
io.imshow(modified)
io.show()
but every time I do this, the edges are cut off, is there a possibility to transform the image without cutting edges?
Cutted edges after script above:
Kind regards