Skip to main content

face detector

Project description

# [RetinaFace](https://github.com/heewinkim/retinaface)

tensorflow 2 - PyPI implement

reference : https://github.com/peteryuX/retinaface-tf2


### INSTALL

$pip3 install refinaface

### USEAGE

#pip3 install opencv-python import cv2

from retinaface import Retinaface()

detector = Retinaface(quality=”normal”)

# same with cv2.imread,cv2.cvtColor rgb_image = detector.read(“path/to/image”)

faces = detector.predict(rgb_image) # faces is list of face dictionary # each face dictionary contains x1 y1 x2 y2 left_eye right_eye nose left_lip right_lip # faces=[{“x1”:20,”y1”:32, … }, …]

result_img = detector.draw(rgb_image,faces)

# save # cv2.imwrite(“result_img.jpg”,result_img)

# show using cv2 # cv2.imshow(“result”,result_img) # cv2.waitKey()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

retinaface-0.0.5-py3-none-any.whl (5.9 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page