1.导入库
import cv2
import os
import tkinter as tk
from tkinter import filedialog
import subprocess
from PIL import Image, ImageTk
2.设置窗口
win = tk.Tk()
win.title('相机抓取')
win.geometry('750x600')
3.设置背景
image = Image.open("11.gif")
image = image.resize((750, 600)) # 调整背景图片大小
photo1 = ImageTk.PhotoImage(image)
canvas = tk.Label(win, image=photo1)
canvas.pack()
4.保存图像
save_images = 'tq_faces'
save_faces = 'tq_faces'
if not os.path.exists(save_images):os.makedirs(save_images)
if not os.path.exists(save_faces):os.makedirs(save_faces)
5.加载Haar级联分类器
用于人脸检测。
faceCascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
6.打开摄像头
0表示默认摄像头,如果有多个摄像头,可以使用不同的编号
cap = cv2.VideoCapture(0)
7.定义函数xzsp
用于从摄像头中读取图像,检测人脸,并在窗口中显示。
def xzsp():frame_count = 0 # 初始化帧计数器while True:# 从摄像头中读取一帧图像ret, image = cap.read()# 水平翻转图像,因为通常摄像头捕捉到的图像是镜像的image = cv2.flip(image, 1)# 如果无法读取图像(可能是摄像头故障或摄像头未连接),则退出循环if not ret:break# 将图像转换为灰度图像,以便进行人脸检测gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)# 使用Haar级联分类器检测灰度图像中的人脸faces = faceCascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5, minSize=(30, 30))# 遍历检测到的人脸for (x, y, w, h) in faces:# 在图像上绘制矩形框来标记检测到的人脸,颜色为绿色,线宽为2cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 2)# 提取人脸图像并保存到文件夹face_img = image[y:y+h, x:x+w]if face_img.any(): # 检查人脸图像是否为空face_save_path = f"{save_faces}/face_{frame_count}.jpg"cv2.imwrite(face_save_path, face_img)# 保存整个图像到文件夹save_path = f"{save_images}/frame_{frame_count}.jpg"cv2.imwrite(save_path, image)frame_count += 1 # 帧计数器增加# 显示带有人脸标记的图像cv2.imshow('rljc', image)# 等待10毫秒,同时检查是否按下了键盘上的Esc键(ASCII码为27)key = cv2.waitKey(10)# 如果按下了Esc键,则退出循环if key == 27:break# 释放摄像头资源cap.release()# 关闭所有打开的图像窗口cv2.destroyAllWindows()
8.定义函数xzwj
用于打开指定的文件夹或文件。当用户点击“选择文件”按钮时,如果提供的文件夹路径存在,这个函数将会被调用,尝试在文件资源管理器中打开该文件夹。
def xzwj():folder_path = filedialog.askopenfilename(title="选择文件")if os.path.exists(folder_path): # 检查文件夹路径是否存在os.startfile
9.定义函数close
def close():subprocess.Popen(["python", "动态处理.py"])win.destroy()
10.设置按钮
image = Image.open("F10.gif") # 加载一张图片
photo2 = ImageTk.PhotoImage(image)
bt1 = tk.Button(win, image=photo2, width=198, height=32, command=xzsp)
bt1.place(x=210, y=130)image = Image.open("F9.gif") # 加载一张图片
photo3 = ImageTk.PhotoImage(image)
bt2 = tk.Button(win, image=photo3, width=198, height=32, command=xzwj)
bt2.place(x=310, y=230)image = Image.open("B.gif") # 加载一张图片
photo4 = ImageTk.PhotoImage(image)
bt3 = tk.Button(win, image=photo4, width=198, height=32, command=close)
bt3.place(x=440, y=330)
11.退出程序
win.mainloop()