This file contains hidden or 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 os | |
from io import BytesIO | |
import tarfile | |
import tempfile | |
from six.moves import urllib | |
from matplotlib import gridspec | |
from matplotlib import pyplot as plt | |
import numpy as np | |
from PIL import Image |
This file contains hidden or 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 numpy as np | |
import pandas as pd | |
from os import system,name | |
from tqdm import tqdm | |
import time | |
import segment | |
def click_and_crop(event, x, y, flags, param): |
This file contains hidden or 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 pickle as pk | |
import cv2 | |
from pickle import dump | |
import os | |
import dlib | |
import face_recognition | |
import numpy as np | |
import time | |
path = os.path.dirname(os.path.abspath(__file__)) |
This file contains hidden or 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
from centroidtracker import CentroidTracker | |
from face_recognizer import FaceRecognizer | |
from imutils.video import FPS | |
import numpy as np | |
import imutils | |
import time | |
import dlib | |
import cv2 | |
This file contains hidden or 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
from imutils.video import FPS | |
import numpy as np | |
import argparse | |
import imutils | |
import dlib | |
import cv2 | |
from face_recognizer import FaceRecognizer | |
import time | |