# mtcnn-pytorch **Repository Path**: wizardyoung/mtcnn-pytorch ## Basic Information - **Project Name**: mtcnn-pytorch - **Description**: Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-13 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MTCNN `pytorch` implementation of **inference stage** of face detection algorithm described in [Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks](https://arxiv.org/abs/1604.02878). ## Example ![example of a face detection](images/example.png) ## How to use it Just download the repository and then do this ```python from src import detect_faces from PIL import Image image = Image.open('image.jpg') bounding_boxes, landmarks = detect_faces(image) ``` For examples see `test_on_images.ipynb`. ## Requirements * pytorch 0.2 * Pillow, numpy ## Credit This implementation is heavily inspired by: * [pangyupo/mxnet_mtcnn_face_detection](https://github.com/pangyupo/mxnet_mtcnn_face_detection)