Skip to content

Commit fce9b20

Browse files
committed
.
1 parent 6514d42 commit fce9b20

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Face Detection
2-
PyTorch implementations of various face detection algorithms (last updated on 2019-08-01).
2+
PyTorch implementations of various face detection algorithms (last updated on 2019-08-03).
33

44
### Usage Example
55
```python
@@ -35,10 +35,18 @@ img_thumb_bboxed = draw_bbox(img_thumb, bbox_thumb)
3535
./detectors/mtcnn/weights/rnet.npy
3636
./detectors/mtcnn/weights/onet.npy
3737
```
38+
* FaceBoxes
39+
```
40+
./detectors/faceboxes/weights/FaceBoxes.pth
41+
```
3842
* [Tiny Face (trained on WIDER FACE)](https://drive.google.com/open?id=1vdKzrfQ4cXeI157NEJoeI1ECZ66GFEKE)
3943
```
4044
./detectors/tinyface/weights/checkpoint_50.pth
4145
```
46+
* [PyramidBox (trained on WIDER FACE)](https://drive.google.com/open?id=1jLHIwN15u73qr-8rmthZEZWQfnAq6N9C)
47+
```
48+
./detectors/pyramidbox/weights/pyramidbox_120000_99.02.pth
49+
```
4250
* [S3FD (trained on WIDER FACE)](https://drive.google.com/open?id=1ktVh55p-Ynu6LonSyZtaUJxU23BS0Pdk)
4351
```
4452
./detectors/s3fd/weights/sfd_face.pth
@@ -82,9 +90,15 @@ python demo_crop.py
8290
* MTCNN
8391
* [arXiv : Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks](https://arxiv.org/abs/1604.02878)
8492
* [GitHub : mtcnn-pytorch](https://github.com/TropComplique/mtcnn-pytorch)
93+
* FaceBoxes
94+
* [arXiv : FaceBoxes: A CPU Real-time Face Detector with High Accuracy](https://arxiv.org/abs/1708.05234)
95+
* [GitHub : FaceBoxes.PyTorch](https://github.com/zisianw/FaceBoxes.PyTorch)
8596
* Tiny Face
8697
* [arXiv : Finding Tiny Faces](https://arxiv.org/abs/1612.04402)
8798
* [GitHub : tiny-faces-pytorch](https://github.com/varunagrawal/tiny-faces-pytorch)
99+
* PyramidBox
100+
* [arXiv : PyramidBox: A Context-assisted Single Shot Face Detector](https://arxiv.org/abs/1803.07737)
101+
* [GitHub : Pyramidbox.pytorch](https://github.com/yxlijun/Pyramidbox.pytorch)
88102
* S3FD
89103
* [arXiv : S³FD: Single Shot Scale-invariant Face Detector](https://arxiv.org/abs/1708.05237)
90104
* [GitHub : S3FD.pytorch](https://github.com/yxlijun/S3FD.pytorch)

0 commit comments

Comments
 (0)