face detection algorithms
避免大家花费时间去折腾,说明如下,目前该仓库主要还是将faceboxes阅读修改,基本跑通但是性能等还未系统测试,大家可以直接参考作者实现。下一步将最近阅读的人脸检测框架尝试统一实现并能获得较好的性能,整体实现思路尝试我写的语义分割框架semseg的完善思路,有想法的可以一起来学习实现。
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实现。
- MobileFace
- facenet_caffe
- Person_reID_baseline_pytorch,使用pytorch实现的经典reid模型。
- deep-person-reid
- Face Alignment in Full Pose Range: A 3D Total Solution
- Is Faster R-CNN Doing Well for Pedestrian Detection?
- CityPersons: A Diverse Dataset for Pedestrian Detection
- Learning Efficient Single-stage Pedestrian Detectors by Asymptotic Localization Fitting,行人检测
- FaceBoxes,实现问题参考facebox_understanding,已实现
- CascadeCNN,实现问题参考cascadeface_understanding,未实现
- MTCNN,实现问题参考mtcnn_understanding,未实现。
- S3FD,实现问题可参考s3fd_understanding,未实现。
- Faster RCNN,参考技术报告Face Detection with the Faster R-CNN,和对应源代码face-py-faster-rcnn。
- SSH,实现代码可参考SSH。
人脸检测数据集可参考Face Detection Dataset 其中主要有WIDER FACE,IJBA-A,MALF,FDDB和AFW数据集。
详细数据集相关实现问题参考facedet_dataset_understanding
- WIDER FACE,实现问题参考wider_face_understanding
- FDDB,实现问题可参考fddb_understanding
- AFLW,实现问题可参考aflw_understanding
- CelebA,大尺度CelebFaces属性,实现问题可参考celeba_understanding
- IMDb-Face,IMBb人脸噪声数据,可查看IMDb-Face
可视化
# 在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
- ...