浏览全局文件名为variab的图像后,imread出错

2024-06-02 05:19:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我用tkinter创建了一个简单的用户界面,允许用户浏览图像,当按下“计算角度”按钮时,它应该打印所选图像中两行之间的角度,并在python控制台上打印角度值,但我得到了这些错误:

File "D:\Python\PyFolder\lib\tkinter\__init__.py", line 1705, in __call__
    return self.func(*args)
  File "D:/PyCharm/PyCharm Community Edition 2018.3.5/PyProjetcs/angelTest/tkTest.py", line 21, in calculate
    image = imread(file_name)
  File "D:\PyCharm\PyCharm Community Edition 2018.3.5\PyProjetcs\angelTest\venv\lib\site-packages\matplotlib\pyplot.py", line 2152, in imread
    return matplotlib.image.imread(fname, format)
  File "D:\PyCharm\PyCharm Community Edition 2018.3.5\PyProjetcs\angelTest\venv\lib\site-packages\matplotlib\image.py", line 1369, in imread
    return handler(fname)
OSError: failed to read file

以下是我的python代码:

from tkinter import *
import tkinter.messagebox
from tkinter import filedialog
import numpy as np
from skimage.transform import (hough_line, hough_line_peaks)
from pylab import imread


root = Tk()
root.geometry('270x250')
root.title("Angle Calculation")
root.iconbitmap(r'D:\\Pictures\\iconTest.ico')


def browse_file():
    global file_name
    file_name = filedialog.askopenfile()


def calculate():
    image = imread(file_name)
    image = np.mean(image, axis=2)

    h, theta, d = hough_line(image)

    angle = []
    dist = []

    for _, a, d in zip(*hough_line_peaks(h, theta, d)):
        angle.append(a)
        dist.append(d)

    angle = [a * 180 / np.pi for a in angle]
    angle_reel = np.max(angle) - np.min(angle)

    print(angle_reel)


btn1 = Button(root, command=browse_file, text='Browse Image').pack()

btn2 = Button(root, command=calculate, text='Calculate angle').pack()

label1 = Label(root, text='The angle is equal to:').pack()
text = Entry().pack()


root.mainloop()

请任何人向我解释一下我在哪里把事情搞砸了,以及如何修复它,谢谢


Tags: nameinfrompyimageimporttkinternp