for (top, right, bottom, left), name in zip(face_locations, face_names):
# Escala nuevamente el fotograma a la resolucion original
top *= 4
right *= 4
bottom *= 4
left *= 4
# Dibuja un rectangulo al rededor del rostro
cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2)
# Dibuja el nombre del rostro encontrado
cv2.rectangle(frame, (left, bottom - 35), (right, bottom), (0, 0, 255), cv2.FILLED)
font = cv2.FONT_HERSHEY_DUPLEX
cv2.putText(frame, name, (left + 6, bottom - 6), font, 1.0, (255, 255, 255), 1)
# Muestra el resultado de la imagen
cv2.imshow('Video', frame)
Deja una respuesta