📅  最后修改于: 2020-11-07 07:48:02             🧑  作者: Mango
在使用Python图像处理库处理图像时,有些情况下您需要翻转现有图像以获取更多信息,以增强其可见性或因您的需要。
枕头库的图像模块使我们可以非常轻松地翻转图像。我们将使用Image模块中的转置(方法)函数来翻转图像。 ‘transpose()’支持的一些最常用的方法是-
Image.FLIP_LEFT_RIGHT-用于水平翻转图像
Image.FLIP_TOP_BOTTOM-用于垂直翻转图像
Image.ROTATE_90-用于通过指定度旋转图像
以下Python示例读取图像,将其水平翻转,并使用标准PNG显示实用程序显示原始图像和翻转的图像-
# import required image module
from PIL import Image
# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")
# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
# Show the original image
imageObject.show()
# Show the horizontal flipped image
hori_flippedImage.show()
原始图片
图像翻转
以下Python示例读取图像,垂直翻转图像,并使用标准PNG显示实用程序显示原始图像和翻转的图像-
# import required image module
from PIL import Image
# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")
# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
# Show the original image
imageObject.show()
# Show vertically flipped image
Vert_flippedImage = imageObject.transpose(Image.FLIP_TOP_BOTTOM)
Vert_flippedImage.show()
原始图片
图像翻转
以下Python示例读取图像,旋转到指定程度,并使用标准PNG显示实用程序显示原始图像和旋转后的图像-
# import required image module
from PIL import Image
# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")
# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
# Show the original image
imageObject.show()
#show 90 degree flipped image
degree_flippedImage = imageObject.transpose(Image.ROTATE_90)
degree_flippedImage.show()
原始图片
旋转影像