rizmyabdulla / Facial-Recognition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Facial-Recognition

Packages Used

pip install face-recognition

pip install opencv-python

Features

  • when Face Recognized,Speaking That Face Name (Need Internet Connection).

  • Loading a Group images From a Folder.

  • Support ESP32 cam IP Camera

  • Very Fast Facial Recognition(Without Speech Recognition)

Bugs

  • Stucking When Speaking(Speech Recognition)

ESP32 cam With Face Recognition (Using IP)

  • Comment these lines Of Code

    cap = cv2.VideoCapture(0)

    ret, frame = cap.read()

  • And unComment these lines Of Code

    imgResponse = urllib.request.urlopen ('http://192.168.1.1:80/capture')#camera IP

    imgNp = np.array(bytearray(imgResponse.read()),dtype=np.uint8)

    frame= cv2.imdecode(imgNp,-1)

    RGB_Frame = frame[:, :, ::-1]

  • You Need To Upload This Code, ESP32 Camera Web Server/

Happy Coding ❤️‍🔥 🙊

About


Languages

Language:C 64.3%Language:C++ 30.4%Language:Python 5.3%