gpt4 book ai didi

image - 在 python 中绘制图像背景

转载 作者:行者123 更新时间:2023-12-03 13:38:41 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Adding a background image to a plot with known corner coordinates

(2 个回答)


3年前关闭。




我想使用 matplotlib 在图像背景上绘制图形。我在 matlab 中找到了如何做 http://www.peteryu.ca/tutorials/matlab/plot_over_image_background

我已经尝试了一些基本的东西:

im = plt.imread("dd.png")
implot = plt.imshow(im)
theta=np.linspace(0,2*np.pi,50)
z=np.cos(theta)*39+145
t=np.sin(theta)*39+535-78+39
plt.plot(z,t)
plt.show()

但它给了我一些非常难看的东西:

something really ugly

最佳答案

就像在您链接到的 MATLAB 示例中一样,您必须在调用 imshow 时指定所需的图像范围。 .

默认情况下,matplotlib 和 MATLAB 都将图像的左上角置于原点,从那里向下和向右,并将每个像素设置为坐标空间中的 1x1 正方形。这就是你的形象正在做的事情。

您可以使用 extent 来控制它。采用列表形式的参数 [left, right, bottom, top] .

不使用范围看起来像这样:

import matplotlib.pyplot as plt
img = plt.imread("airlines.jpg")
fig, ax = plt.subplots()
ax.imshow(img)

enter image description here

你可以看到我们有一张 1600 x 1200 的 Samuel L. Jackson,坦率地说,他对飞机上的蛇很恼火。

但是如果我们想在这两个维度上绘制一条从 0 到 300 的线,我们可以这样做:
fig, ax = plt.subplots()
x = range(300)
ax.imshow(img, extent=[0, 400, 0, 300])
ax.plot(x, x, '--', linewidth=5, color='firebrick')

enter image description here

我不知道这条线是否能帮助 jackson 先生解决他的蛇问题。至少,它不会让事情变得更难。

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

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