Face recognition using Python

Face detection In this machine learning example identify face using Python programming. PackageĀ  used in this example is opencv [computer vision]. To install this package simply use following syntax: pip install opencv-python import cv2 #pip install opencv-python # Load the cascade face_cascade = cv2.CascadeClassifier(‘face_detector.xml’) # Read the input image img = cv2.imread(‘test2.jpg’) # Detect faces […]

Share

Face recognition using Python Read More Ā»