https://github.com/serengil/retinaface
RetinaFace: Deep Face Detection Library for Python
https://github.com/serengil/retinaface
face-alignment face-detection face-detector face-recognition insightface python retinaface retinaface-detector tensorflow
Last synced: 8 days ago
JSON representation
RetinaFace: Deep Face Detection Library for Python
- Host: GitHub
- URL: https://github.com/serengil/retinaface
- Owner: serengil
- License: mit
- Created: 2021-04-25T20:34:22.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-31T11:38:25.000Z (about 1 month ago)
- Last Synced: 2025-04-25T18:23:08.174Z (9 days ago)
- Topics: face-alignment, face-detection, face-detector, face-recognition, insightface, python, retinaface, retinaface-detector, tensorflow
- Language: Python
- Homepage: https://www.youtube.com/watch?v=Wm1DucuQk70&list=PLsS_1RYmYQQFdWqxQggXHynP1rqaYXv_E&index=3
- Size: 13.4 MB
- Stars: 1,490
- Watchers: 8
- Forks: 169
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# RetinaFace
[](https://pepy.tech/project/retina-face)
[](https://github.com/serengil/retinaface/stargazers)
[](https://github.com/serengil/retinaface/blob/master/LICENSE)
[](https://github.com/serengil/retinaface/actions/workflows/tests.yml)
[](https://doi.org/10.17671/gazibtd.1399077)[](https://sefiks.com)
[](https://www.youtube.com/@sefiks?sub_confirmation=1)
[](https://twitter.com/intent/user?screen_name=serengil)[](https://www.patreon.com/serengil?repo=retinaface)
[](https://github.com/sponsors/serengil)
[](https://buymeacoffee.com/serengil)RetinaFace is a deep learning based cutting-edge facial detector for Python coming with facial landmarks. Its detection performance is amazing even in the crowd as shown in the following illustration.
RetinaFace is the face detection module of [insightface](https://github.com/deepinsight/insightface) project. The original implementation is mainly based on mxnet. Then, its tensorflow based [re-implementation](https://github.com/StanislasBertrand/RetinaFace-tf2) is published by [Stanislas Bertrand](https://github.com/StanislasBertrand). So, this repo is heavily inspired from the study of Stanislas Bertrand. Its source code is simplified and it is transformed to pip compatible but the main structure of the reference model and its pre-trained weights are same.
![]()
The Yellow Angels - Fenerbahce Women's Volleyball Team## Installation [](https://pypi.org/project/retina-face/)
The easiest way to install retinaface is to download it from [PyPI](https://pypi.org/project/retina-face/). It's going to install the library itself and its prerequisites as well.
```shell
$ pip install retina-face
```Then, you will be able to import the library and use its functionalities.
```python
from retinaface import RetinaFace
```**Face Detection** - [`Demo`](https://youtu.be/Wm1DucuQk70)
RetinaFace offers a face detection function. It expects an exact path of an image as input.
```python
resp = RetinaFace.detect_faces("img1.jpg")
```Then, it will return the facial area coordinates and some landmarks (eyes, nose and mouth) with a confidence score.
```json
{
"face_1": {
"score": 0.9993440508842468,
"facial_area": [155, 81, 434, 443],
"landmarks": {
"right_eye": [257.82974, 209.64787],
"left_eye": [374.93427, 251.78687],
"nose": [303.4773, 299.91144],
"mouth_right": [228.37329, 338.73193],
"mouth_left": [320.21982, 374.58798]
}
}
}
```**Alignment** - [`Tutorial`](https://sefiks.com/2020/02/23/face-alignment-for-face-recognition-in-python-within-opencv/), [`Demo`](https://youtu.be/WA9i68g4meI)
A modern face recognition [pipeline](https://sefiks.com/2020/05/01/a-gentle-introduction-to-face-recognition-in-deep-learning/) consists of 4 common stages: detect, [align](https://sefiks.com/2020/02/23/face-alignment-for-face-recognition-in-python-within-opencv/), [normalize](https://sefiks.com/2020/11/20/facial-landmarks-for-face-recognition-with-dlib/), [represent](https://sefiks.com/2020/12/14/deep-face-recognition-with-arcface-in-keras-and-python/) and [verify](https://sefiks.com/2020/05/22/fine-tuning-the-threshold-in-face-recognition/). Experiments show that alignment increases the face recognition accuracy almost 1%. Here, retinaface can find the facial landmarks including eye coordinates. In this way, it can apply alignment to detected faces with its extracting faces function.
```python
import matplotlib.pyplot as plt
faces = RetinaFace.extract_faces(img_path = "img.jpg", align = True)
for face in faces:
plt.imshow(face)
plt.show()
```
**Face Recognition** - [`Demo`](https://youtu.be/WnUVYQP4h44)
Notice that face recognition module of insightface project is [ArcFace](https://sefiks.com/2020/12/14/deep-face-recognition-with-arcface-in-keras-and-python/), and face detection module is RetinaFace. ArcFace and RetinaFace pair is wrapped in [deepface](https://github.com/serengil/deepface) library for Python. Consider to use deepface if you need an end-to-end face recognition pipeline.
```python
#!pip install deepface
from deepface import DeepFace
obj = DeepFace.verify("img1.jpg", "img2.jpg"
, model_name = 'ArcFace', detector_backend = 'retinaface')
print(obj["verified"])
```
Notice that ArcFace got 99.40% accuracy on [LFW data set](https://sefiks.com/2020/08/27/labeled-faces-in-the-wild-for-face-recognition/) whereas human beings just have 97.53% confidence.
## Contribution [](https://github.com/serengil/retinaface/actions/workflows/tests.yml)
Pull requests are more than welcome! You should run the unit tests and linting locally before creating a PR. Commands `make test` and `make lint` will help you to run it locally. Once a PR created, GitHub test workflow will be run automatically and unit test results will be available in [GitHub actions](https://github.com/serengil/retinaface/actions) before approval.
## Support
There are many ways to support a project. Starring⭐️ the repo is just one 🙏
You can also support this work on [Patreon](https://www.patreon.com/serengil?repo=retinaface), [GitHub Sponsors](https://github.com/sponsors/serengil), or [Buy Me a Coffee](https://buymeacoffee.com/serengil).
Also, your company's logo will be shown on README on GitHub if you become sponsor in gold, silver or bronze tiers.
## Acknowledgements
This work is mainly based on the [insightface](https://github.com/deepinsight/insightface) project and [retinaface](https://arxiv.org/pdf/1905.00641.pdf) paper; and it is heavily inspired from the re-implementation of [retinaface-tf2](https://github.com/StanislasBertrand/RetinaFace-tf2) by [Stanislas Bertrand](https://github.com/StanislasBertrand). Finally, Bertrand's [implementation](https://github.com/StanislasBertrand/RetinaFace-tf2/blob/master/rcnn/cython/cpu_nms.pyx) uses [Fast R-CNN](https://arxiv.org/abs/1504.08083) written by [Ross Girshick](https://github.com/rbgirshick/fast-rcnn) in the background. All of those reference studies are licensed under MIT license.
## Citation
If you are using RetinaFace in your research, please consider to cite its [original research paper](https://arxiv.org/abs/1905.00641). Besides, if you are using this re-implementation of retinaface, please consider to cite the following research papers as well. Here are examples of its BibTeX entries:
```BibTeX
@article{serengil2024lightface,
title = {A Benchmark of Facial Recognition Pipelines and Co-Usability Performances of Modules},
author = {Serengil, Sefik and Ozpinar, Alper},
journal = {Journal of Information Technologies},
volume = {17},
number = {2},
pages = {95-107},
year = {2024},
doi = {10.17671/gazibtd.1399077},
url = {https://dergipark.org.tr/en/pub/gazibtd/issue/84331/1399077},
publisher = {Gazi University}
}
``````BibTeX
@inproceedings{serengil2020lightface,
title = {LightFace: A Hybrid Deep Face Recognition Framework},
author = {Serengil, Sefik Ilkin and Ozpinar, Alper},
booktitle = {2020 Innovations in Intelligent Systems and Applications Conference (ASYU)},
pages = {23-27},
year = {2020},
doi = {10.1109/ASYU50717.2020.9259802},
url = {https://doi.org/10.1109/ASYU50717.2020.9259802},
organization = {IEEE}
}
```Finally, if you use this RetinaFace re-implementation in your GitHub projects, please add `retina-face` dependency in the requirements.txt.
## Licence
This project is licensed under the MIT License - see [`LICENSE`](https://github.com/serengil/retinaface/blob/master/LICENSE) for more details.