Python | Machine Learning | Coding | R
66.4K subscribers
1.2K photos
82 videos
150 files
865 links
Help and ads: @hussein_sheikho

Discover powerful insights with Python, Machine Learning, Coding, and R—your essential toolkit for data-driven solutions, smart alg

List of our channels:
https://t.me/addlist/8_rRW2scgfRhOTc0

https://telega.io/?r=nikapsOH
Download Telegram
Python library RetinaFace for face detection and working with key points (eyes, nose, mouth)

Supports face alignment, easily installed via pip install retina-face, and works based on deep models from the insightface project.

An excellent tool for tasks in computer vision and face recognition.

Usage examples:

from retinaface import RetinaFace

resp = RetinaFace.detect_faces("img1.jpg")
print(resp)

{
"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]
}
}
}


👉 @DataScienceN
Please open Telegram to view this post
VIEW IN TELEGRAM
2