我正在使用python 3.5上的GUI,关键是我在画布上显示图像并希望使用matplotlib工具使用zoom to rectangle
或pan/zoom
按钮放大图像,然后已经缩放的区域将其存储在变量上以进行一些图像处理,我可以使用ginput()
实现一个按钮来提取区域,但是我从视图中丢失了原始图像。
现在我想尝试使用matplotlib的工具。
我该怎么办?感谢
编辑:这就是我编码的方式:
#On _init_ function on class I declare the figure like this
def __init__(self):
self.raiz = tk.Tk()
self.raiz.title("SOFTWARE KI-67")
self.raiz.geometry('1000x800')
self.figura=plt.figure()
self.canvas = FigureCanvasTkAgg(self.figura, self.cuadro_plot)
self.canvas.get_tk_widget().pack(side=tk.TOP, expand=tk.TRUE, fill=tk.BOTH)
self.canvas.draw()
self.toolbar = NavigationToolbar2TkAgg(self.canvas, self.cuadro_plot)
self.canvas._tkcanvas.pack(side=tk.BOTTOM, fill=tk.BOTH, expand=True)
#This is the cutting function
def recortar(self):
if self.brecortar.config('relief')[-1] == 'sunken':
self.brecortar["state"] = 'normal'
else:
self.brecortar.config(relief="sunken")
self.brecortar["state"] = 'disabled'
pts = np.asarray(plt.ginput(2, show_clicks=True))
pts = np.sort(pts, axis=0)
pts = (np.floor(pts))
print(pts)
minX = int(min(pts[0][0], pts[1][0]))
maxX = int(max(pts[0][0], pts[1][0]))
minY = int(min(pts[0][1], pts[1][1]))
maxY = int(max(pts[0][1], pts[1][1]))
print(minX, maxX, minY, maxY)
img2 = self.img.copy()
img2 = img2[minY:maxY, minX:maxX]
self.img = img2
self.plotear(img2)
self.brecortar.config(relief="raised")
self.brecortar["state"] = 'normal'
我阅读了欧内斯特的评论,但我怎么能实现
ax.callbacks.connect('xlim_changed', on_xlims_change)
ax.callbacks.connect('ylim_changed', on_ylims_change)
...