12a4e72
1
2
3
4
5
6
7
8
9
10
11
12
13
import face_recognition def recognize_face(image): # Simulate face match for now try: faces = face_recognition.face_encodings(image) if faces: return "Customer" else: return "Unknown" except: return "Error reading face"