使用 Python Matplotlib 将图片和绘图结合起来
我有一个图,其中 x 轴上有时间戳,y 轴上有一些信号数据。作为文档,我想将带时间戳的图片与图中的特定点相关。是否可以在绘图中将一条线绘制到绘图下方一系列图片中的图片上?
I have a plot which has timestamps on the x-axis and some signal data on the y-axis. As a documentation I want to put timestamped pictures in relation to specific points in the plot. Is it possible to draw a line in a plot to a picture in a sequence of pictures below the plot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个来自 matplotlib gallery 的演示展示了如何插入图片、在其中绘制线条等。我将发布图库中的图像,您可以按照链接查看代码。
这是代码(来自版本 2.1.2):
This demo from the matplotlib gallery shows how to insert pictures, draw lines to them, etc. I'll post the image from the gallery, and you can follow the link to see the code.
And here's the code (from version 2.1.2):
如果我正确理解了这个问题,那么也许这可能会有所帮助:
If I understand the question correctly, then perhaps this may help: