我目前正在使用Tkinter为我的项目设计UI。我试图使用此图像插入:
import Tkinter as tk
from PIL import ImageTk, Image
window = Tk()
window.title("Outlier Detection using Feature Grouping")
window.configure(background = "black")
path="C:/Users/user/Desktop/od in hd/Corr"
C = tk.Canvas(window, bg="blue", height=250, width=300)
img = ImageTk.PhotoImage(Image.open(path))
我收到错误消息:
IOError: [Errno 2] No such file or directory: 'C:/Users/user/Desktop/od in hd/Corr'
我在其他问题中仔细研究了解决方案,但由于对Tkinter不熟悉,所以对它们的理解不多。为什么说不存在文件或目录?如何将图像插入UI?还有其他方法吗?