This demo shows how to use Taipy with a custom GUI component to capture video from your webcam and do realtime face detection.
What this application demonstrates:
- How to build a complex custom UI component for Taipy.
- How to detect and recognize faces in the image in real time using OpenCV.
A Webcam component is shown at the center of the application. It can detect faces and identify them. To be able to recognize your face, capture multiple photos of your face (click on the "Capture" button) and write your name when the dialog appears. At the end, click "Retrain" and the model should now recognize your face.
- Level: Advanced
- Topic: Taipy-GUI, Computer Vision
- Components/Controls:
- Taipy GUI: custom GUI component
- Other: OpenCV
Want to install this demo? Check out our INSTALLATION.md
file.
Check out our GETTING_STARTED.md
file.
src/
: Main folder for the application codemain.py
: Main file containing the demo application code.demo/
: Contains additional demo source code.demo/faces.py
: Contains the code to do face detection and face recognition.src/image.py
: Contains shared facility functions.
webcam/
: Contains custom component code. The directory contains the Python files to declare the custom component to Taipy.webcam/webui
: Contains the TypeScript source code for the custom React component.
classifiers
: Contains the OpenCV classifiers used in the app for face detection.images
: Contains the files to train the face detection of the demo. This folder is created at first startup. All image captures will go into this directory.
docs/
: contains the images for the documentationCODE_OF_CONDUCT.md
: Code of conduct for members and contributors of demo-covid-dashboard.CONTRIBUTING.md
: Instructions to contribute to demo-covid-dashboard.INSTALLATION.md
: Instructions to install demo-covid-dashboard.LICENSE
: The Apache 2.0 License.Pipfile
: File used by the Pipenv virtual environment to manage project dependencies.README.md
: Current file.
Want to help build this demo? Check out our CONTRIBUTING.md
file.
Licensed under the Apache License, Version 2.0. See LICENSE.md
.