All Projects → guanfuchen → Facedet

guanfuchen / Facedet

实现常用基于深度学习的人脸检测算法

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Facedet

Binary Face Alignment
Real time face alignment
Stars: ✭ 145 (+33.03%)
Mutual labels:  convolutional-neural-networks, face-alignment
Deep Alignment Network Tensorflow
A re-implementation of Deep-Alignment-Network using TensorFlow
Stars: ✭ 107 (-1.83%)
Mutual labels:  face-alignment
Awslambdaface
Perform deep neural network based face detection and recognition in the cloud (via AWS lambda) with zero model configuration or tuning.
Stars: ✭ 98 (-10.09%)
Mutual labels:  convolutional-neural-networks
Wav2letter.pytorch
A fully convolution-network for speech-to-text, built on pytorch.
Stars: ✭ 104 (-4.59%)
Mutual labels:  convolutional-neural-networks
Lsuvinit
Reference caffe implementation of LSUV initialization
Stars: ✭ 99 (-9.17%)
Mutual labels:  convolutional-neural-networks
Tiny Faces Pytorch
Finding Tiny Faces in PyTorch
Stars: ✭ 105 (-3.67%)
Mutual labels:  convolutional-neural-networks
Har Keras Cnn
Human Activity Recognition (HAR) with 1D Convolutional Neural Network in Python and Keras
Stars: ✭ 97 (-11.01%)
Mutual labels:  convolutional-neural-networks
Exermote
Using Machine Learning to predict the type of exercise from movement data
Stars: ✭ 108 (-0.92%)
Mutual labels:  convolutional-neural-networks
Mp Cnn Torch
Multi-Perspective Convolutional Neural Networks for modeling textual similarity (He et al., EMNLP 2015)
Stars: ✭ 106 (-2.75%)
Mutual labels:  convolutional-neural-networks
Sigmoidal ai
Tutoriais de Python, Data Science, Machine Learning e Deep Learning - Sigmoidal
Stars: ✭ 103 (-5.5%)
Mutual labels:  convolutional-neural-networks
Top Deep Learning
Top 200 deep learning Github repositories sorted by the number of stars.
Stars: ✭ 1,365 (+1152.29%)
Mutual labels:  convolutional-neural-networks
Antialiased Cnns
pip install antialiased-cnns to improve stability and accuracy
Stars: ✭ 1,363 (+1150.46%)
Mutual labels:  convolutional-neural-networks
Self Driving Car
Automated Driving in NFS using CNN.
Stars: ✭ 105 (-3.67%)
Mutual labels:  convolutional-neural-networks
Cutmix
a Ready-to-use PyTorch Extension of Unofficial CutMix Implementations with more improved performance.
Stars: ✭ 99 (-9.17%)
Mutual labels:  convolutional-neural-networks
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+1239.45%)
Mutual labels:  convolutional-neural-networks
Bayesian cnn
Bayes by Backprop implemented in a CNN in PyTorch
Stars: ✭ 98 (-10.09%)
Mutual labels:  convolutional-neural-networks
Keras Video Classifier
Keras implementation of video classifier
Stars: ✭ 100 (-8.26%)
Mutual labels:  convolutional-neural-networks
Idn Caffe
Caffe implementation of "Fast and Accurate Single Image Super-Resolution via Information Distillation Network" (CVPR 2018)
Stars: ✭ 104 (-4.59%)
Mutual labels:  convolutional-neural-networks
Shot Type Classifier
Detecting cinema shot types using a ResNet-50
Stars: ✭ 109 (+0%)
Mutual labels:  convolutional-neural-networks
Steady State Flow With Neural Nets
A Tensorflow re-implementation of the paper Convolutional Neural Networks for Steady Flow Approximation
Stars: ✭ 107 (-1.83%)
Mutual labels:  convolutional-neural-networks

facedet

face detection algorithms


公告

避免大家花费时间去折腾,说明如下,目前该仓库主要还是将faceboxes阅读修改,基本跑通但是性能等还未系统测试,大家可以直接参考作者实现。下一步将最近阅读的人脸检测框架尝试统一实现并能获得较好的性能,整体实现思路尝试我写的语义分割框架semseg的完善思路,有想法的可以一起来学习实现。


Announcement

Avoid everyone spending time to toss, as explained below, the current warehouse is still mainly faceboxes read and modify, basically run through but performance has not been systematically tested, you can directly refer to The author realizes that the next step is to try to implement the face detection framework recently and achieve better performance. Try the perfect idea of the semantic segmentation framework semseg, and have ideas. Can be learned together to achieve.


概述

这个仓库旨在实现常用的人脸检测算法,主要参考如下:

  • faceboxes 使用multi scale one shot的CNN网络实现人脸检测。
  • face_classification,实时的人脸检测(OpenCV)和分类(情感和性别)。
  • Face-Resources,其中有相关人脸模型和数据集资源。
  • awesome-face,整理过的人脸检测论文和数据集。
  • mxnet-face,常用的face相关论文的mxnet实现。

人脸识别


行人检测


网络


数据

人脸检测数据集可参考Face Detection Dataset 其中主要有WIDER FACE,IJBA-A,MALF,FDDB和AFW数据集。

详细数据集相关实现问题参考facedet_dataset_understanding


用法

可视化

visdom 开发相关问题

# 在tmux或者另一个终端中开启可视化服务器visdom
python -m visdom.server
# 然后在浏览器中查看127.0.0.1:9097

训练

# 训练模型
python train.py

校验

# 校验模型
python validate.py

测试

# 测试模型
python test.py

demo

# 读取摄像头实时检测人脸
python demo.py

依赖

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