pepper.framework.component.face_detection module

class pepper.framework.component.face_detection.FaceRecognitionComponent(backend)[source]

Bases: pepper.framework.abstract.component.AbstractComponent

Perform Face Detection using OpenFace and FaceClassifier on every AbstractCamera on_image event.

Parameters:backend (AbstractBackend) – Application Backend
on_face(faces)[source]

On Face Event. Called with all faces in Image

Parameters:faces (List[Face]) – List of all faces in Image
on_face_known(faces)[source]

On Face Known Event. Called with all known faces in Image

Parameters:faces (List[Face]) – List of all Known Faces in Image
on_face_new(faces)[source]

On Face New Event. Called with all new faces in Image

Parameters:faces (List[Face]) – List of all New Faces in Image