├── .gitignore ├── LICENSE ├── README.md ├── config └── config.json ├── image_list.txt ├── srn ├── extensions │ ├── __init__.py │ ├── _nms │ │ ├── __init__.py │ │ ├── _ext │ │ │ ├── __init__.py │ │ │ └── nms │ │ │ │ └── __init__.py │ │ ├── build.py │ │ ├── build.sh │ │ ├── pth_nms.py │ │ └── src │ │ │ ├── cuda │ │ │ ├── nms_kernel.cu │ │ │ └── nms_kernel.h │ │ │ ├── nms.c │ │ │ ├── nms.h │ │ │ ├── nms_cuda.c │ │ │ └── nms_cuda.h │ └── build_ext.sh ├── model │ ├── __init__.py │ ├── resnet_srn.py │ ├── rpn_proposal.py │ └── srn.py └── utils │ ├── __init__.py │ ├── anchor_helper.py │ ├── bbox_helper.py │ ├── load_helper.py │ └── log_helper.py └── tools ├── test.py ├── val.sh └── widerface_eval ├── boxoverlap.m ├── evaluation.m ├── ground_truth ├── wider_easy_val.mat ├── wider_face_val.mat ├── wider_hard_val.mat └── wider_medium_val.mat ├── nms.m ├── norm_score.m ├── plot ├── VOCap.m ├── plot_pr.m ├── saveTightFigure.m └── wider_plot.m ├── read_pred.m └── wider_eval.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/config/config.json -------------------------------------------------------------------------------- /image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/image_list.txt -------------------------------------------------------------------------------- /srn/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/__init__.py -------------------------------------------------------------------------------- /srn/extensions/_nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srn/extensions/_nms/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srn/extensions/_nms/_ext/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/_ext/nms/__init__.py -------------------------------------------------------------------------------- /srn/extensions/_nms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/build.py -------------------------------------------------------------------------------- /srn/extensions/_nms/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/build.sh -------------------------------------------------------------------------------- /srn/extensions/_nms/pth_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/pth_nms.py -------------------------------------------------------------------------------- /srn/extensions/_nms/src/cuda/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/cuda/nms_kernel.cu -------------------------------------------------------------------------------- /srn/extensions/_nms/src/cuda/nms_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/cuda/nms_kernel.h -------------------------------------------------------------------------------- /srn/extensions/_nms/src/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/nms.c -------------------------------------------------------------------------------- /srn/extensions/_nms/src/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/nms.h -------------------------------------------------------------------------------- /srn/extensions/_nms/src/nms_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/nms_cuda.c -------------------------------------------------------------------------------- /srn/extensions/_nms/src/nms_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/_nms/src/nms_cuda.h -------------------------------------------------------------------------------- /srn/extensions/build_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/extensions/build_ext.sh -------------------------------------------------------------------------------- /srn/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srn/model/resnet_srn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/model/resnet_srn.py -------------------------------------------------------------------------------- /srn/model/rpn_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/model/rpn_proposal.py -------------------------------------------------------------------------------- /srn/model/srn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/model/srn.py -------------------------------------------------------------------------------- /srn/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srn/utils/anchor_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/utils/anchor_helper.py -------------------------------------------------------------------------------- /srn/utils/bbox_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/utils/bbox_helper.py -------------------------------------------------------------------------------- /srn/utils/load_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/utils/load_helper.py -------------------------------------------------------------------------------- /srn/utils/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/srn/utils/log_helper.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/val.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/val.sh -------------------------------------------------------------------------------- /tools/widerface_eval/boxoverlap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/boxoverlap.m -------------------------------------------------------------------------------- /tools/widerface_eval/evaluation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/evaluation.m -------------------------------------------------------------------------------- /tools/widerface_eval/ground_truth/wider_easy_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/ground_truth/wider_easy_val.mat -------------------------------------------------------------------------------- /tools/widerface_eval/ground_truth/wider_face_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/ground_truth/wider_face_val.mat -------------------------------------------------------------------------------- /tools/widerface_eval/ground_truth/wider_hard_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/ground_truth/wider_hard_val.mat -------------------------------------------------------------------------------- /tools/widerface_eval/ground_truth/wider_medium_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/ground_truth/wider_medium_val.mat -------------------------------------------------------------------------------- /tools/widerface_eval/nms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/nms.m -------------------------------------------------------------------------------- /tools/widerface_eval/norm_score.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/norm_score.m -------------------------------------------------------------------------------- /tools/widerface_eval/plot/VOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/plot/VOCap.m -------------------------------------------------------------------------------- /tools/widerface_eval/plot/plot_pr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/plot/plot_pr.m -------------------------------------------------------------------------------- /tools/widerface_eval/plot/saveTightFigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/plot/saveTightFigure.m -------------------------------------------------------------------------------- /tools/widerface_eval/plot/wider_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/plot/wider_plot.m -------------------------------------------------------------------------------- /tools/widerface_eval/read_pred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/read_pred.m -------------------------------------------------------------------------------- /tools/widerface_eval/wider_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiCheng123/SRN/HEAD/tools/widerface_eval/wider_eval.m --------------------------------------------------------------------------------