Last active
October 18, 2019 15:25
-
-
Save anisayari/abe05fb60986a2c60eefedea46ff2c94 to your computer and use it in GitHub Desktop.
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
import cv2 | |
import dlib | |
import PIL.Image | |
import numpy as np | |
from imutils import face_utils | |
import argparse | |
from pathlib import Path | |
import os | |
import ntpath | |
parser = argparse.ArgumentParser(description='Easy Facial Recognition App') | |
parser.add_argument('-i', '--input', type=str, required=True, help='directory of input known faces') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment