专栏名称: 小白玩转Python
分享一些Python相关的资料
今天看啥  ›  专栏  ›  小白玩转Python

InsightFace | 基于 AI 增强的人脸检测

小白玩转Python  · 公众号  ·  · 2024-06-01 20:03
    

文章预览

点击下方 卡片 ,关注“ 小白玩转Python ”公众号 概述 我将使用InsightFace,这是一个以其在复杂面部分析任务中的卓越表现而闻名的开源AI工具包。该工具包可以帮助完成诸如人脸检测、关键点识别、情感识别、年龄和性别估算以及属性分析等任务。 示例 !pip install tqdm !pip install numpy !pip install insightface !pip install opencv-python !pip install onnxruntime !pip install pandas 存储 embeddings #@title Iterate and create embeddings #@markdown iterate through the directory and foldername will be name of the person #@markdown create a directory called pics and add files there import os from tqdm import tqdm from glob import glob import numpy as np import cv2 as cv2 import insightface from insightface.app import FaceAnalysis from insightface.data import get_image as ins_get_image app = FaceAnalysis(name= 'buffalo_l' ) app.prepare(ctx_id= 0 , det_size=( 640 , 640 )) names ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览