def add_assembly():
"""????"""
global index_label
init()
index_label = Label(master, text=u'{}/{}'.format(offset + 1, len(face_file_list)),
font=Font(size=20))
index_label.place(anchor=u'nw', x=10, y=10)
previous_button = Button(master, text=u'???', command=handle_previous)
previous_button.place(anchor=u'nw', x=300, y=8)
next_button = Button(master, text=u'???', command=handle_next)
next_button.place(anchor=u'nw', x=380, y=8)
rotate_button = Button(master, text=u'??', command=handle_rotate)
rotate_button.place(anchor=u'nw', x=460, y=8)
detect_button = Button(master, text=u'??', command=handle_detect)
detect_button.place(anchor=u'nw', x=520, y=8)
评论列表
文章目录