All Projects → polarisZhao → mtcnn-pytorch

polarisZhao / mtcnn-pytorch

Licence: other
pytorch implementation of face detection algorithm MTCNN

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mtcnn-pytorch

Awesome Face Detection
Compare with various detectors - s3fd, dlib, ocv, ocv-dnn, mtcnn-pytorch, face_recognition
Stars: ✭ 106 (+73.77%)
Mutual labels:  face-detection, mtcnn
Facenet Pytorch
Pretrained Pytorch face detection (MTCNN) and facial recognition (InceptionResnet) models
Stars: ✭ 2,564 (+4103.28%)
Mutual labels:  face-detection, mtcnn
Tensorflow Mtcnn
C++ and python Inference only for MTCNN face detector on Tensorflow. Based on davidsandberg's facenet project:
Stars: ✭ 106 (+73.77%)
Mutual labels:  face-detection, mtcnn
Mtcnn
全平台实时人脸检测和姿态估计,提供无需任何框架实现Realtime Face Detection and Head pose estimation on Windows、Ubuntu、Mac、Android and iOS
Stars: ✭ 351 (+475.41%)
Mutual labels:  face-detection, mtcnn
PaddlePaddle-MTCNN
基于PaddlePaddle复现的MTCNN人脸检测模型
Stars: ✭ 23 (-62.3%)
Mutual labels:  face-detection, mtcnn
Opencv Mtcnn
An implementation of MTCNN Face detector using OpenCV's DNN module
Stars: ✭ 59 (-3.28%)
Mutual labels:  face-detection, mtcnn
Facenet
Face recognition using Tensorflow
Stars: ✭ 12,189 (+19881.97%)
Mutual labels:  face-detection, mtcnn
Facerecognition
This is an implematation project of face detection and recognition. The face detection using MTCNN algorithm, and recognition using LightenenCNN algorithm.
Stars: ✭ 137 (+124.59%)
Mutual labels:  face-detection, mtcnn
Face-Recognition-Jetson-Nano
Recognize 2000+ faces on your Jetson Nano with database auto-fill and anti-spoofing
Stars: ✭ 63 (+3.28%)
Mutual labels:  face-detection, mtcnn
FaceRecognitionCpp
Large input size REAL-TIME Face Detector on Cpp. It can also support face verification using MobileFaceNet+Arcface with real-time inference. 480P Over 30FPS on CPU
Stars: ✭ 40 (-34.43%)
Mutual labels:  face-detection, mtcnn
Tensorflow Mtcnn
人脸检测MTCNN算法,采用tensorflow框架编写,从理解到训练,中文注释完全,含测试和训练,支持摄像头
Stars: ✭ 302 (+395.08%)
Mutual labels:  face-detection, mtcnn
Face
I have published my face related codes in this repository
Stars: ✭ 53 (-13.11%)
Mutual labels:  face-detection, mtcnn
Facedetection
C++ project to implement MTCNN, a perfect face detect algorithm, on different DL frameworks. The most popular frameworks: caffe/mxnet/tensorflow, are all suppported now
Stars: ✭ 255 (+318.03%)
Mutual labels:  face-detection, mtcnn
Face Recognition Cpp
Real Time Face Recognition Detector. Over 30FPS on CPU!
Stars: ✭ 68 (+11.48%)
Mutual labels:  face-detection, mtcnn
FaceIDLight
A lightweight face-recognition toolbox and pipeline based on tensorflow-lite
Stars: ✭ 17 (-72.13%)
Mutual labels:  face-detection, mtcnn
face-detection-mtcnn
face-detection based on MTCNN and TensorFlow
Stars: ✭ 33 (-45.9%)
Mutual labels:  face-detection, mtcnn
MTCNN TRAIN
MTCNN_Training Scripts For Face Detection with PyTorch 0.4.0
Stars: ✭ 56 (-8.2%)
Mutual labels:  face-detection, mtcnn
emotion-detector.js
👹 Emotion recognition in Node.js
Stars: ✭ 30 (-50.82%)
Mutual labels:  face-detection
clockon-clockoff-face-recognition
Face Recognize application. Using FaceNet and CoreML
Stars: ✭ 21 (-65.57%)
Mutual labels:  face-detection
Contactless-Attendance-System
✨ A Contactless Attendance System where your face is identified for Attendance.
Stars: ✭ 20 (-67.21%)
Mutual labels:  face-detection

mtcnn-pytorch

pytorch implementation of face detection algorithm MTCNN

Usage MTCNN

Just download the repository and then do this

from src.detector import detect_faces
from src.utils import show_bboxes
from PIL import Image

image = Image.open('images/test3.jpg')
bounding_boxes, landmarks = detect_faces(image)
image = show_bboxes(image, bounding_boxes, landmarks)
image.show()

Requirements

  • pytorch 0.4
  • Pillow, numpy

Credit

This implementation is heavily inspired by:

Reference

MTCNN: Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].