Face detection Project using OpenCv in python - ManalFallatah/Face-Detection GitHub Wiki
Introduction
This project is targeting AI engineers. Face detection system is one of the smart systems for the AI robot to let them detect/recognize peoples' faces in-order some action.
There are some steps to set up your python and install some packages before start writing the code.
First You need to download Python -Latest Version Python 3.8.3 from the link https://www.python.org/downloads/
(When installing Python make sure to check the customize installation to change python directory path to C:/ directly). You can check your python is working by typing
python
in the command window and get no errors.
- Check the update of you python version.
python --version
- Install the opencv package -CV2 with the command line.
pip install OpenCV-python
To check that opencv package is properly installed write the command
python
->import cv2
and get no error.
- If pip version needed an upgrade use the command.
python -m pip install --upgrade pip
- Install numpy package with the command line.
pip install numpy-python
Now you are ready to start writing your code and impress your friends 😎!