from tkinter import* from tkinter import ttk from PIL import Image, ImageTk
class Face_Recognization_System: def init(self, root): self.root = root self.root.title(“Simple Prog”) self.root.geometry(“1530x790+0+0”)
if name == “main”:
root = Tk() obj = Face_Recognization_System()
root.mainloop()
有两个错误,第一个是 Initialization 的语法
__init__ Not _init_
其次,您应该输入根目录作为输入。
最后你稍微改变一下,将初始化与其他方法分开。
from tkinter import* from tkinter import ttk from PIL import Image, ImageTk class Face_Recognization_System: def __init__(self, root): self.root = root def change(self): self.root.title("Simple Prog") self.root.geometry("1530x790+0+0") if __name__ == "__main__": root = Tk() obj = Face_Recognization_System(root) obj.change() root.mainloop()