如何使用python选择图像的一部分?

时间:2011-06-27 17:10:14

标签: python image-processing

我正在使用卫星图像,我需要选择图像的一部分才能工作。我该怎么做? Im.crop看起来没有用。调整大小?

谢谢

1 个答案:

答案 0 :(得分:6)

from PIL import Image
im = Image.open("test.jpg")

crop_rectangle = (50, 50, 200, 200)
cropped_im = im.crop(crop_rectangle)

cropped_im.show()

请注意,裁剪区域必须为4元组 - (左,上,右,下)。

此处有更多详情Using the Image Class