A desktop application with facial recognition embedded. It's built with PyQt5 and using Azure Cognitive Service Face API.
A desktop application with facial recognition embedded. It’s built with PyQt5 and using Azure Cognitive Service Face API.
Some of the libraries used in this project, such as azure-cognitiveservices-vision-face, are only working up to Python 3.8. Hence, it is recommended to develop this project using only Python 3.8.
python3 -m venv venv
call venv/scripts/activate.bat
\source venv/bin/activate
pip install -r requirements.txt
;Note: The reason of setting the key and endpoint in the environment variables is to auto fill them into the app. You can choose not to set them in the environment but instead, manually key them to the app for every launch of the app;
SET AZURE_COGNITIVE_SERVICE_KEY=...
SET AZURE_COGNITIVE_SERVICE_ENDPOINT=...
python main.py
;This library is distributed under the GPL-3.0 License found in the LICENSE file.