├── .gitignore ├── LICENSE ├── README.md ├── data └── config.py ├── demo.ipynb ├── demo.py ├── face_ssd_infer.py ├── imgs ├── 11_Meeting_Meeting_11_Meeting_Meeting_11_304.jpg ├── 12_Group_Group_12_Group_Group_12_128.jpg └── out.png ├── layers ├── __init__.py ├── detection.py ├── modules.py └── prior_box.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | weights/ 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/README.md -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/data/config.py -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/demo.ipynb -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/demo.py -------------------------------------------------------------------------------- /face_ssd_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/face_ssd_infer.py -------------------------------------------------------------------------------- /imgs/11_Meeting_Meeting_11_Meeting_Meeting_11_304.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/imgs/11_Meeting_Meeting_11_Meeting_Meeting_11_304.jpg -------------------------------------------------------------------------------- /imgs/12_Group_Group_12_Group_Group_12_128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/imgs/12_Group_Group_12_Group_Group_12_128.jpg -------------------------------------------------------------------------------- /imgs/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/imgs/out.png -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/layers/detection.py -------------------------------------------------------------------------------- /layers/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/layers/modules.py -------------------------------------------------------------------------------- /layers/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/layers/prior_box.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlad3996/FaceDetection-DSFD/HEAD/utils.py --------------------------------------------------------------------------------