Skip to content

Efficient face detection using SCRFD onnxruntime inference.

License

Notifications You must be signed in to change notification settings

cospectrum/scrfd

Repository files navigation

SCRFD

github

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=}")

face detection

About

Efficient face detection using SCRFD onnxruntime inference.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages