gpt4 book ai didi

python - 在矩形python中绘制图像

转载 作者:行者123 更新时间:2023-12-05 02:44:21 25 4
gpt4 key购买 nike

我使用 matplotlib 绘制了一个矩形,并想在其中放置一个图像,如下图所示。有谁知道我如何在 Python 中实现这一点?

Click here for image of problem

最佳答案

这是使用 Python/OpenCV/Numpy 的一种方法。使用 Pandas 图像的 4 个角和矩形的 4 个角对 Pandas 图像进行透视变形。然后制作多余区域的蒙版,这些区域在变形图像中为黑色。最后,使用蒙版混合变形图像和背景图像。

输入:

enter image description here

图形图像:

enter image description here

import numpy as np
import cv2
import math

# read image to be processed
img = cv2.imread("panda.png")
hh, ww = img.shape[:2]

# read background image
bck = cv2.imread("rectangle_graph.png")
hhh, www = bck.shape[:2]

# specify coordinates for corners of img in order TL, TR, BR, BL as x,y pairs
img_pts = np.float32([[0,0], [ww-1,0], [ww-1,hh-1], [0,hh-1]])

# manually pick coordinates of corners of rectangle in background image
bck_pts = np.float32([[221,245], [333,26], [503,111], [390,331]])

# compute perspective matrix
matrix = cv2.getPerspectiveTransform(img_pts,bck_pts)
#print(matrix)

# change black and near-black to graylevel 1 in each channel so that no values
# inside panda image will be black in the subsequent mask
img[np.where((img<=[5,5,5]).all(axis=2))] = [1,1,1]

# do perspective transformation setting area outside input to black
img_warped = cv2.warpPerspective(img, matrix, (www,hhh), cv2.INTER_LINEAR, borderMode=cv2.BORDER_CONSTANT, borderValue=(0,0,0))

# make mask for area outside the warped region
# (black in image stays black and rest becomes white)
mask = cv2.cvtColor(img_warped, cv2.COLOR_BGR2GRAY)
mask = cv2.threshold(mask, 0, 255, cv2.THRESH_BINARY)[1]
mask = cv2.merge([mask,mask,mask])
mask_inv = 255 - mask

# use mask to blend between img_warped and bck
result = ( 255 * (bck * mask_inv + img_warped * mask) ).clip(0, 255).astype(np.uint8)

# save images
cv2.imwrite("panda_warped.png", img_warped)
cv2.imwrite("panda_warped_mask.png", mask)
cv2.imwrite("panda_in_graph.png", result)

# show the result
cv2.imshow("warped", img_warped)
cv2.imshow("mask", mask)
cv2.imshow("result", result)
cv2.waitKey(0)
cv2.destroyAllWindows()

扭曲的输入:

enter image description here

面具:

enter image description here

结果:

enter image description here

关于python - 在矩形python中绘制图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66521951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com