gpt4 book ai didi

python - 如何在Google Colab中显示点击图片的点的坐标?

转载 作者:行者123 更新时间:2023-12-05 03:17:10 26 4
gpt4 key购买 nike

我需要在 google colab notebook 中的图像上定位鼠标点击位置。我尝试了以下脚本,但没有任何反应。以下代码应该可以在 Jupyter notebooks 中使用,但不适用于 google colab:

import matplotlib
matplotlib.use('TKAgg')
import matplotlib.pyplot as plt
import matplotlib.image as mpimg

f1 = 'sample.tif'

fig = plt.figure(figsize=(20,30))

img = mpimg.imread(f1)

def onclick(event):
ix, iy = event.xdata, event.ydata
print(ix, iy)

cid = fig.canvas.mpl_connect('button_press_event', onclick)

imgplot = plt.imshow(img)
plt.show()

最佳答案

您需要使用一个交互式 IPython 后端,例如ipympl :

  1. 在 Colab 中安装:
!pip install ipympl
from google.colab import output
output.enable_custom_widget_manager()
  1. 设置 matplotlib 以使用它:
%matplotlib ipympl
  1. 测试它:
import matplotlib
import matplotlib.pyplot as plt

fig, ax = plt.subplots()

def onclick(event):
ix, iy = event.xdata, event.ydata
print(ix, iy)

cid = fig.canvas.mpl_connect('button_press_event', onclick)

输出:

enter image description here

关于python - 如何在Google Colab中显示点击图片的点的坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74248955/

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