All Projects → TropComplique → Mtcnn Pytorch

TropComplique / Mtcnn Pytorch

Licence: mit
Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks

Projects that are alternatives of or similar to Mtcnn Pytorch

Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-35.03%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Music recommender
Music recommender using deep learning with Keras and TensorFlow
Stars: ✭ 528 (-0.56%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
T81 558 deep learning
Washington University (in St. Louis) Course T81-558: Applications of Deep Neural Networks
Stars: ✭ 4,152 (+681.92%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Youtube Code Repository
Repository for most of the code from my YouTube channel
Stars: ✭ 317 (-40.3%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Food Recipe Cnn
food image to recipe with deep convolutional neural networks.
Stars: ✭ 448 (-15.63%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Keras Multi Label Image Classification
Keras- Multi Label Image Classification
Stars: ✭ 335 (-36.91%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Carnd Vehicle Detection
Vehicle detection using YOLO in Keras runs at 21FPS
Stars: ✭ 367 (-30.89%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Pytorch Image Classification
Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.
Stars: ✭ 272 (-48.78%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Deepface
Deep Learning Models for Face Detection/Recognition/Alignments, implemented in Tensorflow
Stars: ✭ 409 (-22.98%)
Mutual labels:  convolutional-neural-networks, face-detection
Computer Vision
Programming Assignments and Lectures for Stanford's CS 231: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 408 (-23.16%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Autocrop
😌 Automatically detects and crops faces from batches of pictures.
Stars: ✭ 320 (-39.74%)
Mutual labels:  jupyter-notebook, face-detection
Tensorflow Book
Accompanying source code for Machine Learning with TensorFlow. Refer to the book for step-by-step explanations.
Stars: ✭ 4,448 (+737.66%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Cs231
Complete Assignments for CS231n: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 317 (-40.3%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Artistic Style Transfer
Convolutional neural networks for artistic style transfer.
Stars: ✭ 341 (-35.78%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Zhihu
This repo contains the source code in my personal column (https://zhuanlan.zhihu.com/zhaoyeyu), implemented using Python 3.6. Including Natural Language Processing and Computer Vision projects, such as text generation, machine translation, deep convolution GAN and other actual combat code.
Stars: ✭ 3,307 (+522.79%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Easy Deep Learning With Keras
Keras tutorial for beginners (using TF backend)
Stars: ✭ 367 (-30.89%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Grad Cam Tensorflow
tensorflow implementation of Grad-CAM (CNN visualization)
Stars: ✭ 261 (-50.85%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Deeplearning.ai Assignments
Stars: ✭ 268 (-49.53%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (-28.06%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Pba
Efficient Learning of Augmentation Policy Schedules
Stars: ✭ 461 (-13.18%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks

MTCNN

pytorch implementation of inference stage of face detection algorithm described in
Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks.

Example

example of a face detection

How to use it

Just download the repository and then do this

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:

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].