├── README.md └── cv ├── __pycache__ ├── cv_tools.cpython-34.pyc ├── dlib_tools.cpython-34.pyc └── face_128D.cpython-34.pyc ├── cv_tools.py ├── data └── faces │ ├── cmp1.png │ ├── cmp2.png │ ├── harden1.jpeg │ ├── harden2.jpeg │ └── james.jpeg ├── dlib_face_recognition_resnet_model_v1.dat ├── dlib_tools.py ├── face_128D.py ├── face_recognition.py ├── face_register.py ├── feature └── 1.csv ├── requirements.txt └── shape_predictor_5_face_landmarks.dat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/README.md -------------------------------------------------------------------------------- /cv/__pycache__/cv_tools.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/__pycache__/cv_tools.cpython-34.pyc -------------------------------------------------------------------------------- /cv/__pycache__/dlib_tools.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/__pycache__/dlib_tools.cpython-34.pyc -------------------------------------------------------------------------------- /cv/__pycache__/face_128D.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/__pycache__/face_128D.cpython-34.pyc -------------------------------------------------------------------------------- /cv/cv_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/cv_tools.py -------------------------------------------------------------------------------- /cv/data/faces/cmp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/data/faces/cmp1.png -------------------------------------------------------------------------------- /cv/data/faces/cmp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/data/faces/cmp2.png -------------------------------------------------------------------------------- /cv/data/faces/harden1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/data/faces/harden1.jpeg -------------------------------------------------------------------------------- /cv/data/faces/harden2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/data/faces/harden2.jpeg -------------------------------------------------------------------------------- /cv/data/faces/james.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/data/faces/james.jpeg -------------------------------------------------------------------------------- /cv/dlib_face_recognition_resnet_model_v1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/dlib_face_recognition_resnet_model_v1.dat -------------------------------------------------------------------------------- /cv/dlib_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/dlib_tools.py -------------------------------------------------------------------------------- /cv/face_128D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/face_128D.py -------------------------------------------------------------------------------- /cv/face_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/face_recognition.py -------------------------------------------------------------------------------- /cv/face_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/face_register.py -------------------------------------------------------------------------------- /cv/feature/1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/feature/1.csv -------------------------------------------------------------------------------- /cv/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/requirements.txt -------------------------------------------------------------------------------- /cv/shape_predictor_5_face_landmarks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythondever/face-recognition/HEAD/cv/shape_predictor_5_face_landmarks.dat --------------------------------------------------------------------------------