Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stephen-bunn/facelift
Simple face extraction and recognition
https://github.com/stephen-bunn/facelift
Last synced: 29 days ago
JSON representation
Simple face extraction and recognition
- Host: GitHub
- URL: https://github.com/stephen-bunn/facelift
- Owner: stephen-bunn
- License: isc
- Created: 2020-08-29T10:35:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-30T22:12:59.000Z (about 4 years ago)
- Last Synced: 2024-11-15T01:48:48.718Z (2 months ago)
- Language: Python
- Homepage:
- Size: 114 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.rst
Awesome Lists containing this project
README
**A wrapper for decent face feature detection and basic face recognition.**
[![Supported Versions](https://img.shields.io/pypi/pyversions/facelift.svg)](https://pypi.org/project/facelift/)
[![Test Status](https://github.com/stephen-bunn/facelift/workflows/Test%20Package/badge.svg)](https://github.com/stephen-bunn/facelift)
[![Codecov](https://codecov.io/gh/stephen-bunn/facelift/branch/master/graph/badge.svg?token=xhhZQr8l76)](https://codecov.io/gh/stephen-bunn/facelift)
[![Documentation Status](https://readthedocs.org/projects/facelift/badge/?version=latest)](https://facelift.readthedocs.io/)
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)For more details please head over to our [documentation](https://facelift.readthedocs.io/).
```python
from facelift import FullFaceDetector, iter_stream_frames
from facelift.render import draw_line
from facelift.window import opencv_windowdetector = FullFaceDetector()
with opencv_window() as window:
for frame in iter_stream_frames():
for face in detector.iter_faces(frame):
for feature, points in face.landmarks.items():
frame = draw_line(frame, points)window.render(frame)
```