如何在Python中缩放和平移图像?

时间:2018-02-26 07:00:12

标签: python image image-processing image-zoom

我有一张图片:Image

我希望在此图片上选择一点。但是,当我显示图像时,我只能在屏幕上看到它的一部分,如下所示:Image visible on screen

我希望知道如何缩小和平移图像,以便我能够在同一图像上选择一个点并进行处理。

我尝试使用此处给出的代码:Move and zoom a tkinter canvas with mouse但问题是这会在不同的画布上显示图像,并且我的所有进一步处理都应该在图像本身上。

我不想使用图像调整大小功能,因为这会导致像素方向/像素丢失的变化

请帮忙!

1 个答案:

答案 0 :(得分:0)

在处理图像本身时,应将画布坐标转换为图像坐标。

例如,对于代码“ Move and zoom a tkinter canvas with mouse”,将以下事件添加到Zoom类的__init__方法中:

self.canvas.bind('<ButtonPress-3>', self.get_coords)  # get coords of the image

函数self.get_coords将鼠标右键单击事件的坐标转换为图像坐标并在控制台上打印它们:

def get_coords(self, event):
    """ Get coordinates of the mouse click event on the image """
    x1 = self.canvas.canvasx(event.x)  # get coordinates of the event on the canvas
    y1 = self.canvas.canvasy(event.y)
    xy = self.canvas.coords(self.imageid)  # get coords of image's upper left corner
    x2 = round((x1 - xy[0]) / self.imscale)  # get real (x,y) on the image without zoom
    y2 = round((y1 - xy[1]) / self.imscale)
    if 0 <= x2 <= self.image.size[0] and 0 <= y2 <= self.image.size[1]:
        print(x2, y2)
    else:
        print('Outside of the image')

我也建议您使用更先进的缩放技术from here。尤其是 EDIT 文本后的第二个代码示例。