This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#code forked and tweaked from https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam_faster.py | |
#to extend, just add more people into the known_people folder | |
import face_recognition | |
import cv2 | |
import numpy as np | |
import os | |
import glob | |
# Get a reference to webcam #0 (the default one) |