我创建了一个类(class),将我的网络摄像头视频显示在Tkinter屏幕上,我想在按下Tkinter按钮后拍摄3张照片(每张照片等待3秒)。

这是我的代码(精简版),我的拍照逻辑已完成。我应该使用线程来解决这个问题吗?我是Python的新手。

import tkinter, cv2, time, dlib, numpy as np, time, threading
from PIL import Image, ImageTk

class Tela:
def __init__(self, janela):
    self.janela = janela
    self.janela.title("Reconhecimento Facial")
    self.janela.config(background="#FFFFFF")
    self.image = None

    self.cam = cv2.VideoCapture(0)
    self.detector = dlib.get_frontal_face_detector()

    self.delay = 15
    self.update()
    self.janela.mainloop()

def update(self): # display image on gui
    ret, frame = self.cam.read()
    if ret:
        faces, confianca, idx = self.detector.run(frame)
        for i, face in enumerate(faces):
            e, t, d, b = (int(face.left()), int(face.top()), int(face.right()), int(face.bottom()))
            cv2.rectangle(frame, (e, t), (d, b), (0, 255, 255), 2)
        cv2image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGBA)
        self.image = Image.fromarray(cv2image)
        imgtk = ImageTk.PhotoImage(image=self.image)
        self.painel.imgtk = imgtk
        self.painel.config(image=imgtk)
        self.janela.after(self.delay, self.update)

def take_picture(self):
    cou = 1  # counter of pictures
    start = time.clock()  # starts the time
    ret, frame = self.cam.read()
    if ret:
        faces, confianca, idx = self.detector.run(frame)
        secs = (time.clock() - start)  # count seconds
        for i, face in enumerate(faces):
            e, t, d, b = (int(face.left()), int(face.top()), int(face.right()), int(face.bottom()))
            cv2.rectangle(frame, (e, t), (d, b), (0, 255, 255), 2)
            if secs > 3:
                imgfinal = cv2.resize(frame, (750, 600))
                cv2.imwrite("fotos/pessoa." + str(id[0][0]) + "." + str(cou) + ".jpg", imgfinal)
                print("Foto " + str(cou) + " tirada")
                cou += 1
                start = time.clock()  # reset the counter of seconds
        if cou > 3:
            # here is where the thread should stop


     # Creates the window
     Tela(tkinter.Tk())

最佳答案

使用time.sleep()冻结guit_rstrong您的GUI,通过tkinter,您可以使用after()在x秒后调用您的方法,下面是一个示例,该示例每2秒调用一次4次,您可以在应用程序中使用此想法

import tkinter as tk

class App():
    def __init__(self):
        self.root = tk.Tk()
        self.label = tk.Label(text="Anything")
        self.label.pack()

        self.counter = 0
        self.take_picture(repeates=4, seconds=2)  # our desired function

        self.root.mainloop()


    def take_picture(self, repeates=0, seconds=1):
        if repeates:
            self.counter = repeates

        if self.counter == 0:
            print('no more execution')
            self.label.configure(text='Done, no more execution')
            return

        # doing stuff
        text = f'function counting down # {self.counter}'
        self.label.configure(text=text)

        # schedule another call to this func using after()
        self.root.after(seconds * 1000, self.take_picture, 0, seconds)
        self.counter -= 1  # our tracker

app=App()

学分到this answer

关于python - 3秒后如何创建线程拍照?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55754417/

10-12 18:10