Source code for bob.bio.face.annotator.bobipmtcnn

from . import Base, bounding_box_to_annotations


class BobIpMTCNN(Base):
    """Annotator using bob.ip.mtcnn"""

    def __init__(self, **kwargs):
        super(BobIpMTCNN, self).__init__(**kwargs)
        from bob.ip.mtcnn import FaceDetector
        self.detector = FaceDetector()

[docs] def annotate(self, image, **kwargs): """Annotates an image using bob.ip.mtcnn Parameters ---------- image : numpy.array An RGB image in Bob format. **kwargs Ignored. Returns ------- dict Annotations contain: (topleft, bottomright, leye, reye, nose, mouthleft, mouthright). """ bounding_box, landmarks = self.detector.detect_single_face(image) if not landmarks: return None landmarks.update(bounding_box_to_annotations(bounding_box)) return landmarks