├── CONTRIBUTING.md ├── License.txt ├── README.md ├── data ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── __init__.cpython-36.pyc │ ├── coco.cpython-36.pyc │ ├── config.cpython-34.pyc │ ├── config.cpython-36.pyc │ ├── voc0712.cpython-34.pyc │ ├── voc0712.cpython-36.pyc │ └── widerface.cpython-36.pyc ├── coco.py ├── coco.pyc ├── coco_labels.txt ├── config.py ├── config.pyc ├── scripts │ ├── COCO2014.sh │ ├── VOC2007.sh │ └── VOC2012.sh ├── voc0712.py ├── voc0712.pyc ├── widerface.py ├── widerface.pyc └── worlds-largest-selfie.jpg ├── demo.py ├── face_ssd.py ├── fddb_test.py ├── imgs ├── DSFD_CVPR2019_poster.pdf ├── DSFD_demo.PNG ├── DSFD_demo1.PNG ├── DSFD_demo2.PNG ├── DSFD_demo3.PNG ├── DSFD_fddb.PNG ├── DSFD_framework.PNG ├── DSFD_logo.PNG ├── DSFD_widerface.PNG └── dsfd_video.gif ├── layers ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── box_utils.cpython-36.pyc ├── box_utils.py ├── box_utils.pyc ├── functions │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── detection.cpython-36.pyc │ │ └── prior_box.cpython-36.pyc │ ├── detection.py │ ├── detection.pyc │ ├── prior_box.py │ └── prior_box.pyc └── modules │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── l2norm.cpython-36.pyc │ └── multibox_loss.cpython-36.pyc │ ├── l2norm.py │ ├── l2norm.pyc │ ├── multibox_loss.py │ └── multibox_loss.pyc ├── model ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── detnet_backbone.cpython-36.pyc ├── detnet_backbone.py ├── detnet_backbone.pyc ├── fpn.py └── resnet.py ├── utils ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── augmentations.cpython-36.pyc ├── augmentations.py └── augmentations.pyc └── widerface_val.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__init__.pyc -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/coco.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/coco.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/config.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/config.cpython-34.pyc -------------------------------------------------------------------------------- /data/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/voc0712.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/voc0712.cpython-34.pyc -------------------------------------------------------------------------------- /data/__pycache__/voc0712.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/voc0712.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/widerface.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/__pycache__/widerface.cpython-36.pyc -------------------------------------------------------------------------------- /data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/coco.py -------------------------------------------------------------------------------- /data/coco.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/coco.pyc -------------------------------------------------------------------------------- /data/coco_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/coco_labels.txt -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/config.py -------------------------------------------------------------------------------- /data/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/config.pyc -------------------------------------------------------------------------------- /data/scripts/COCO2014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/scripts/COCO2014.sh -------------------------------------------------------------------------------- /data/scripts/VOC2007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/scripts/VOC2007.sh -------------------------------------------------------------------------------- /data/scripts/VOC2012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/scripts/VOC2012.sh -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /data/voc0712.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/voc0712.pyc -------------------------------------------------------------------------------- /data/widerface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/widerface.py -------------------------------------------------------------------------------- /data/widerface.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/widerface.pyc -------------------------------------------------------------------------------- /data/worlds-largest-selfie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/data/worlds-largest-selfie.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/demo.py -------------------------------------------------------------------------------- /face_ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/face_ssd.py -------------------------------------------------------------------------------- /fddb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/fddb_test.py -------------------------------------------------------------------------------- /imgs/DSFD_CVPR2019_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_CVPR2019_poster.pdf -------------------------------------------------------------------------------- /imgs/DSFD_demo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_demo.PNG -------------------------------------------------------------------------------- /imgs/DSFD_demo1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_demo1.PNG -------------------------------------------------------------------------------- /imgs/DSFD_demo2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_demo2.PNG -------------------------------------------------------------------------------- /imgs/DSFD_demo3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_demo3.PNG -------------------------------------------------------------------------------- /imgs/DSFD_fddb.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_fddb.PNG -------------------------------------------------------------------------------- /imgs/DSFD_framework.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_framework.PNG -------------------------------------------------------------------------------- /imgs/DSFD_logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_logo.PNG -------------------------------------------------------------------------------- /imgs/DSFD_widerface.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/DSFD_widerface.PNG -------------------------------------------------------------------------------- /imgs/dsfd_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/imgs/dsfd_video.gif -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/__init__.pyc -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/box_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/__pycache__/box_utils.cpython-36.pyc -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/box_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/box_utils.pyc -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/__init__.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/detection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/__pycache__/detection.cpython-36.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/prior_box.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/__pycache__/prior_box.cpython-36.pyc -------------------------------------------------------------------------------- /layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/detection.py -------------------------------------------------------------------------------- /layers/functions/detection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/detection.pyc -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/functions/prior_box.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/functions/prior_box.pyc -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/__init__.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/l2norm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/__pycache__/l2norm.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/multibox_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/__pycache__/multibox_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/l2norm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/l2norm.pyc -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/layers/modules/multibox_loss.pyc -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/__init__.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/detnet_backbone.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/__pycache__/detnet_backbone.cpython-36.pyc -------------------------------------------------------------------------------- /model/detnet_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/detnet_backbone.py -------------------------------------------------------------------------------- /model/detnet_backbone.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/detnet_backbone.pyc -------------------------------------------------------------------------------- /model/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/fpn.py -------------------------------------------------------------------------------- /model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/model/resnet.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/__init__.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/__pycache__/augmentations.cpython-36.pyc -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/augmentations.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/utils/augmentations.pyc -------------------------------------------------------------------------------- /widerface_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/FaceDetection-DSFD/HEAD/widerface_val.py --------------------------------------------------------------------------------