【深度学习图片】图片清洗,只留下图像中只有一张人脸的,而且人脸是全的

环境:


conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia -y

pip install onnx==1.15 onnxruntime-gpu==1.17

pip install insightface==0.7.3

pip install opencv-python

pip install gradio

图片清洗,只留下图像中只有一张人脸的,而且人脸是全的。

import os
import shutil

import cv2
import numpy as np
from insightface.app import FaceAnalysis


def is_full_face(facedata, img_shape, threshold=0.5):
    """
    判断是否为整张脸
    :param facedata: 人脸数据
    :param img_shape: 图片尺寸
    :param threshold: 阈值
    :return: 布尔值,True 表示整张脸,False 表示部分脸
    """
    img_width, img_height = img_shape[1], img_shape[0]

    # 检查人脸关键点是否在图片内部
    kps = facedata['kps']
    if np.all(kps >= 10) and np.all(kps[:, 0] <= img_width - 10) and np.all(kps[:, 1] <= img_height - 10):
        keypoints_inside = True
    else:
        keypoints_inside = False

    # 满足阈值并且关键点在图片内部
    return keypoints_inside


def listPathAllfiles(dirname):
    result = []
    for maindir, subdir, file_name_list in os.walk(dirname):
        for filename in file_name_list:
            apath = os.path.join(maindir, filename)
            result.append(apath)
    return result


# 使用的检测模型名为 buffalo_sc
app = FaceAnalysis(name='buffalo_sc', providers=['CUDAExecutionProvider'])
app.prepare(ctx_id=0, det_size=(640, 640))  # ctx_id 小于0 表示用 CPU 预测,det_size 表示 resize 后的图片分辨率

src = r"C:\Users\Administrator\Pictures\girl_no_train\mangguo_dst"
dst = r"C:\Users\Administrator\Pictures\girl_no_train\mangguo_dst2"
os.makedirs(dst, exist_ok=True)

files = listPathAllfiles(src)
for file in files:
    img = cv2.imread(file)  # 读取图片
    faces = app.get(img)  # 得到人脸信息
    if len(faces) == 0:
        continue
    if len(faces) > 1:
        continue
    for facedata in faces:
        if is_full_face(facedata, img.shape):
            # print("This is a full face.")
            shutil.copy(file, dst)

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-20 16:40:03       123 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-20 16:40:03       131 阅读
  3. 在Django里面运行非项目文件

    2024-07-20 16:40:03       109 阅读
  4. Python语言-面向对象

    2024-07-20 16:40:03       117 阅读

热门阅读

  1. 【Spring Boot 自定义配置项详解】

    2024-07-20 16:40:03       24 阅读
  2. 13、.Net相关的书籍 - .Net循序渐进系列文章

    2024-07-20 16:40:03       30 阅读
  3. OpenWrt安装快速入门指南

    2024-07-20 16:40:03       30 阅读
  4. K8S私有云 服务器负载均衡器OpenELB

    2024-07-20 16:40:03       32 阅读
  5. 基于深度学习的天气预报

    2024-07-20 16:40:03       29 阅读