Efficient face detection using SCRFD onnxruntime inference
Project description
SCRFD
Efficient face detection using SCRFD onnxruntime inference.
Requires python >= 3.10
pip install scrfd
from scrfd import SCRFD, Threshold
from PIL import Image
face_detector = SCRFD.from_path("./models/scrfd.onnx")
threshold = Threshold(probability=0.4)
image = Image.open("./images/solvay_conference_1927.jpg")
faces = face_detector.detect(image, threshold=threshold)
for face in faces:
bbox = face.bbox
kps = face.keypoints
score = face.probability
print(f"{bbox=}, {kps=}, {score=}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
scrfd-0.2.1.tar.gz
(8.3 kB
view hashes)
Built Distribution
scrfd-0.2.1-py3-none-any.whl
(9.5 kB
view hashes)