使用scipy处理图片——旋转任意角度

大纲

  • 载入图片
  • 左旋转30度,且重新调整图片大小
  • 右旋转30度,且重新调整图片大小
  • 左旋转135度,保持图片大小不变
  • 右旋转135度,保持图片大小不变
  • 代码地址

在《使用numpy处理图片——90度旋转》中,我们使用numpy提供的方法,可以将矩阵旋转90度。而如果我们需要旋转任意角度,则需要自己撸很多代码。如果我们使用scipy库提供的方法,则会容易很多。
需要注意的是,旋转导致原始的图片会“撑开”修改后的图片大小。当然我们也可以通过参数设置,让图片大小不变,但是会让部分图片显示不出来。

载入图片

import numpy as np
import PIL.Image as Image
import scipy.ndimage as ndimage

data = np.array(Image.open('the_starry_night.jpg'))

使用scipy处理图片——旋转任意角度_第1张图片

左旋转30度,且重新调整图片大小

left30 = ndimage.rotate(data, 30)

Image.fromarray(left30).save('left30.png')

使用scipy处理图片——旋转任意角度_第2张图片

右旋转30度,且重新调整图片大小

right30 = ndimage.rotate(data, -30)

Image.fromarray(right30).save('right30.png')

使用scipy处理图片——旋转任意角度_第3张图片

左旋转135度,保持图片大小不变

注意我们给reshape参数传递了False,即不调整图片大小

left135 = ndimage.rotate(data, 135, reshape=False)

Image.fromarray(left135).save('left135.png')

使用scipy处理图片——旋转任意角度_第4张图片

右旋转135度,保持图片大小不变

right135 = ndimage.rotate(data, -135, reshape=False)

Image.fromarray(right135).save('right135.png')

使用scipy处理图片——旋转任意角度_第5张图片

代码地址

https://github.com/f304646673/scipy-ndimage-example/tree/main/rot

你可能感兴趣的:(scipy,scipy)