模型名称 | pyramidbox_face_detection |
---|---|
类别 | 图像 - 人脸检测 |
网络 | PyramidBox |
数据集 | WIDER FACE数据集 |
是否支持Fine-tuning | 否 |
模型大小 | 220MB |
最新更新日期 | 2021-02-26 |
数据指标 | - |
-
- PyramidBox是一种基于SSD的单阶段人脸检测器,它利用上下文信息解决困难人脸的检测问题。PyramidBox在六个尺度的特征图上进行不同层级的预测。该工作主要包括以下模块:LFPN、PyramidAnchors、CPM、Data-anchor-sampling。该PaddleHub Module的预训练数据集为WIDER FACE数据集,可支持预测。
-
-
paddlepaddle >= 1.6.2
-
paddlehub >= 1.6.0 | 如何安装paddlehub
-
-
-
$ hub install pyramidbox_face_detection
- 如您安装时遇到问题,可参考:零基础windows安装 | 零基础Linux安装 | 零基础MacOS安装
-
-
-
$ hub run pyramidbox_face_detection --input_path "/PATH/TO/IMAGE"
- 通过命令行方式实现人脸检测模型的调用,更多请见 PaddleHub命令行指令
-
-
-
import paddlehub as hub import cv2 face_detector = hub.Module(name="pyramidbox_face_detection") result = face_detector.face_detection(images=[cv2.imread('/PATH/TO/IMAGE')]) # or # result = face_detector.face_detection(paths=['/PATH/TO/IMAGE'])
-
-
-
def face_detection(images=None, paths=None, use_gpu=False, output_dir='detection_result', visualization=False, score_thresh=0.15)
-
检测输入图片中的所有人脸位置。
-
参数
- images (list[numpy.ndarray]): 图片数据,ndarray.shape 为 [H, W, C],BGR格式;
- paths (list[str]): 图片的路径;
- use_gpu (bool): 是否使用 GPU;
- output_dir (str): 图片的保存路径,默认设为 detection_result;
- visualization (bool): 是否将识别结果保存为图片文件;
- score_thresh (float): 置信度的阈值。
NOTE: paths和images两个参数选择其一进行提供数据
- images (list[numpy.ndarray]): 图片数据,ndarray.shape 为 [H, W, C],BGR格式;
-
返回
- res (list[dict]): 识别结果的列表,列表中每一个元素为 dict,各字段为:
- path (str): 原输入图片的路径
- data (list): 检测结果,list的每一个元素为 dict,各字段为:
- confidence (float): 识别的置信度
- left (int): 边界框的左上角x坐标
- top (int): 边界框的左上角y坐标
- right (int): 边界框的右下角x坐标
- bottom (int): 边界框的右下角y坐标
- res (list[dict]): 识别结果的列表,列表中每一个元素为 dict,各字段为:
-
-
def save_inference_model(dirname)
-
将模型保存到指定路径。
-
参数
- dirname: 模型保存路径
- dirname: 模型保存路径
-
-
-
PaddleHub Serving可以部署一个在线人脸检测服务。
-
-
运行启动命令:
-
$ hub serving start -m pyramidbox_face_detection
-
这样就完成了一个人脸检测服务化API的部署,默认端口号为8866。
-
NOTE: 如使用GPU预测,则需要在启动服务之前,请设置CUDA_VISIBLE_DEVICES环境变量,否则不用设置。
-
-
-
配置好服务端,以下数行代码即可实现发送预测请求,获取预测结果
-
import requests import json import cv2 import base64 def cv2_to_base64(image): data = cv2.imencode('.jpg', image)[1] return base64.b64encode(data.tostring()).decode('utf8') # 发送HTTP请求 data = {'images':[cv2_to_base64(cv2.imread("/PATH/TO/IMAGE"))]} headers = {"Content-type": "application/json"} url = "http://127.0.0.1:8866/predict/pyramidbox_face_detection" r = requests.post(url=url, headers=headers, data=json.dumps(data)) # 打印预测结果 print(r.json()["results"])
-
-
1.0.0
初始发布
-
1.1.0
修复numpy数据读取问题
-
1.2.0
修复无法导出推理模型的问题
-
$ hub install pyramidbox_face_detection==1.2.0
-