Deep Face Recognition within OpenCV in Python: OpenFace

OpenCV just wraps some legacy face recognition techniques, but we can still adopt deep learning based state-of-the-art face recognition models within it. In this video, we will deploy OpenFace face recognition model designed by Carnegie Mellon University within OpenCV. The model deploys inception model in the background. Even though this is a torch based model, we can build caffe and tensorflow models as well with deep neural networks module of OpenCV. Besides, neither torch nor caffe have to be installed o
Back to Top