如何使用 PIL 放大图像的某个部分?
Posted
技术标签:
【中文标题】如何使用 PIL 放大图像的某个部分?【英文标题】:How to zoom in on a certain part of an image using PIL? 【发布时间】:2019-01-15 18:11:25 【问题描述】:我使用了一个名为人脸识别的模块在任何照片上创建嘴唇的轮廓,并且想修改图片以只看到嘴唇而不是全脸。但是我不知道该怎么做。
我曾尝试将 face_landmarks 转换为 numpy 数组然后显示它,但意识到它只是显示嘴唇的坐标。
from PIL import Image, ImageDraw
import face_recognition
import numpy as np
# Load the jpg file into a numpy array
image =
face_recognition.load_image_file("/Users/23Athreyad/Documents/trump.jpg")
# Find all facial features in all the faces in the image
face_landmarks_list = face_recognition.face_landmarks(image)
for face_landmarks in face_landmarks_list:
pil_image = Image.fromarray(image)
d = ImageDraw.Draw(pil_image, 'RGBA')
# Gloss the lips
d.polygon(face_landmarks['top_lip'], fill=(150, 0, 0, 128))
d.polygon(face_landmarks['bottom_lip'], fill=(150, 0, 0, 128))
print(face_landmarks['top_lip'])
pil_image.show()
预期的结果是放大的嘴唇图片,但我不知道如何实现。
【问题讨论】:
我认为这个答案正是你要找的:***.com/a/30953525/1469465 Crop image with settable center and scale in Python PIL的可能重复 【参考方案1】:如果要提取限定嘴唇的矩形,只需获取矩形左上角的坐标(最小的'x'和'y'坐标)和右下角的坐标(最大的'x'和'y'坐标)并使用:
lip = image.crop((min_x, min_y, max_x, max_y))
注意image
是一个PIL Image
对象。
【讨论】:
以上是关于如何使用 PIL 放大图像的某个部分?的主要内容,如果未能解决你的问题,请参考以下文章
如何将 pygame Surface 转换为 PIL 图像?