File size: 215 Bytes
6233336
 
 
 
 
1
2
3
4
5
6
from deepface import DeepFace

def compare_faces(id_card_image_path, face_image_path):
    result = DeepFace.verify(id_card_image_path, face_image_path)
    return "Match" if result["verified"] else "No Match"