I am working on Yolo3-4-PY to implement it with tkinter.
I\'ve looked up everywhere but not able to resolve the issue.
When I run the program the canvas is d
in my case , correct with just simply add this line
root = tkinter.Tk()
complete code :
root = tkinter.Tk() image = PIL.Image.open(r"C:\Users\Hamid\Desktop\asdasd\2.jpeg") img = ImageTk.PhotoImage(image) l = Label(image=img) l.pack()