A simple wrapper for face detection and recognition
Project description
A wrapper for decent face feature detection and basic face recognition.
For more details please head over to our documentation.
from facelift import FullFaceDetector, iter_stream_frames
from facelift.render import draw_line
from facelift.window import opencv_window
detector = 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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
facelift-0.1.0.tar.gz
(92.7 MB
view details)
Built Distribution
facelift-0.1.0-py3-none-any.whl
(93.2 MB
view details)
File details
Details for the file facelift-0.1.0.tar.gz
.
File metadata
- Download URL: facelift-0.1.0.tar.gz
- Upload date:
- Size: 92.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0b2ab4fa102f5bf2753be9ee703a75864d72b20ec55537233c1eb5e54cfa3aa8
|
|
MD5 |
8bd59c10723ab2620e5208a0df5ebc4b
|
|
BLAKE2b-256 |
2d337acc0b539ac8e26a9f079207ee8f0b8585ccfaf1d5ff293339b84bc97605
|
File details
Details for the file facelift-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: facelift-0.1.0-py3-none-any.whl
- Upload date:
- Size: 93.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
73edaa69f17d5ca68b96634be993e21861b9ceea1f2bf5257310a2190300b154
|
|
MD5 |
baf3621fc10d9a254bc2bea14548e73e
|
|
BLAKE2b-256 |
d922715b06bc6f5b252ea46389886874e4154ff2aae557dae8df608c156aa76b
|