nndl course proj
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
447 B

from imutils import paths
import face_recognition
import argparse
import pickle
import cv2
import os
ap = argparse.ArgumentParser()
ap.add_argument("-i","--dataset",required=True, help="path to input data images folder")
ap.add_argument("-e","--encodings",required=True, help="path to pickle file of face embeddings to be created")
# ap.add_argument("-d","--detec",required=True, help="path to input data images")
args = vars(ap.parse_args())