├── .gitignore ├── README.md ├── afw_gtmiss.mat ├── predict ├── model │ ├── ResNet_3b_s16_f2r │ │ ├── solver_test.prototxt │ │ └── test.prototxt │ ├── ResNet_3b_s16_fm2fm_pool2_deep │ │ ├── solver_test.prototxt │ │ └── test.prototxt │ └── res_pool2 │ │ ├── solver_test.prototxt │ │ └── test.prototxt ├── output │ ├── ResNet_3b_s16 │ │ ├── param.mat │ │ └── tot_wometa_1epoch │ └── ResNet_3b_s16_fm2fm_pool2_deep │ │ └── 65w ├── result1.jpg ├── result2.jpg ├── result3.jpg ├── result4.jpg ├── scale_fddb.mat ├── script_baseline_rpn.m ├── script_featmap_2_result.m ├── script_featmap_transfer.m ├── script_gen_featmap.m ├── script_start.m ├── testimg1.jpg ├── testimg2.jpg ├── testimg3.jpg ├── testimg4.jpg └── utils │ ├── configure.m │ ├── convert_caffe2img.m │ ├── convert_caffe2mat.m │ ├── convert_ignore.m │ ├── convert_img2caffe.m │ ├── convert_input_to_struct.m │ ├── convert_mat2caffe.m │ ├── convert_output_to_struct.m │ ├── convert_pts.m │ ├── convert_rect.m │ ├── cpu_cores.m │ ├── detect_all.m │ ├── detect_all_by_featmap.m │ ├── detect_img.m │ ├── detect_large_img.m │ ├── draw_missed.m │ ├── dump_error.m │ ├── fetch_output.m │ ├── gen_featmap.m │ ├── gen_trans_featmap.m │ ├── get_net_attr.m │ ├── get_overlap_1toN.m │ ├── get_overlap_MtoN.m │ ├── get_rect_from_pts.m │ ├── get_subset_of_struct.m │ ├── new_parpool.m │ ├── nms.m │ ├── nms_gpu_mex.cu │ ├── nms_mex.cpp │ ├── nms_mex.mexw64 │ ├── nms_multiclass.m │ ├── nms_parsed.m │ ├── nms_pts.m │ ├── nvmex.m │ ├── plot_detected.m │ ├── plot_parsed.m │ ├── plot_result.m │ ├── prepare_data_for_input.m │ ├── prepare_data_for_test.m │ ├── randomid.m │ ├── scale_img_to_target.m │ ├── script_analyze_dataset.m │ ├── script_diagnosis.m │ └── script_from_parsed_to_pts.m └── result.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | train/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/README.md -------------------------------------------------------------------------------- /afw_gtmiss.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/afw_gtmiss.mat -------------------------------------------------------------------------------- /predict/model/ResNet_3b_s16_f2r/solver_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/ResNet_3b_s16_f2r/solver_test.prototxt -------------------------------------------------------------------------------- /predict/model/ResNet_3b_s16_f2r/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/ResNet_3b_s16_f2r/test.prototxt -------------------------------------------------------------------------------- /predict/model/ResNet_3b_s16_fm2fm_pool2_deep/solver_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/ResNet_3b_s16_fm2fm_pool2_deep/solver_test.prototxt -------------------------------------------------------------------------------- /predict/model/ResNet_3b_s16_fm2fm_pool2_deep/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/ResNet_3b_s16_fm2fm_pool2_deep/test.prototxt -------------------------------------------------------------------------------- /predict/model/res_pool2/solver_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/res_pool2/solver_test.prototxt -------------------------------------------------------------------------------- /predict/model/res_pool2/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/model/res_pool2/test.prototxt -------------------------------------------------------------------------------- /predict/output/ResNet_3b_s16/param.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/output/ResNet_3b_s16/param.mat -------------------------------------------------------------------------------- /predict/output/ResNet_3b_s16/tot_wometa_1epoch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/output/ResNet_3b_s16/tot_wometa_1epoch -------------------------------------------------------------------------------- /predict/output/ResNet_3b_s16_fm2fm_pool2_deep/65w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/output/ResNet_3b_s16_fm2fm_pool2_deep/65w -------------------------------------------------------------------------------- /predict/result1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/result1.jpg -------------------------------------------------------------------------------- /predict/result2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/result2.jpg -------------------------------------------------------------------------------- /predict/result3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/result3.jpg -------------------------------------------------------------------------------- /predict/result4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/result4.jpg -------------------------------------------------------------------------------- /predict/scale_fddb.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/scale_fddb.mat -------------------------------------------------------------------------------- /predict/script_baseline_rpn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/script_baseline_rpn.m -------------------------------------------------------------------------------- /predict/script_featmap_2_result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/script_featmap_2_result.m -------------------------------------------------------------------------------- /predict/script_featmap_transfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/script_featmap_transfer.m -------------------------------------------------------------------------------- /predict/script_gen_featmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/script_gen_featmap.m -------------------------------------------------------------------------------- /predict/script_start.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/script_start.m -------------------------------------------------------------------------------- /predict/testimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/testimg1.jpg -------------------------------------------------------------------------------- /predict/testimg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/testimg2.jpg -------------------------------------------------------------------------------- /predict/testimg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/testimg3.jpg -------------------------------------------------------------------------------- /predict/testimg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/testimg4.jpg -------------------------------------------------------------------------------- /predict/utils/configure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/configure.m -------------------------------------------------------------------------------- /predict/utils/convert_caffe2img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_caffe2img.m -------------------------------------------------------------------------------- /predict/utils/convert_caffe2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_caffe2mat.m -------------------------------------------------------------------------------- /predict/utils/convert_ignore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_ignore.m -------------------------------------------------------------------------------- /predict/utils/convert_img2caffe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_img2caffe.m -------------------------------------------------------------------------------- /predict/utils/convert_input_to_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_input_to_struct.m -------------------------------------------------------------------------------- /predict/utils/convert_mat2caffe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_mat2caffe.m -------------------------------------------------------------------------------- /predict/utils/convert_output_to_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_output_to_struct.m -------------------------------------------------------------------------------- /predict/utils/convert_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_pts.m -------------------------------------------------------------------------------- /predict/utils/convert_rect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/convert_rect.m -------------------------------------------------------------------------------- /predict/utils/cpu_cores.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/cpu_cores.m -------------------------------------------------------------------------------- /predict/utils/detect_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/detect_all.m -------------------------------------------------------------------------------- /predict/utils/detect_all_by_featmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/detect_all_by_featmap.m -------------------------------------------------------------------------------- /predict/utils/detect_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/detect_img.m -------------------------------------------------------------------------------- /predict/utils/detect_large_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/detect_large_img.m -------------------------------------------------------------------------------- /predict/utils/draw_missed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/draw_missed.m -------------------------------------------------------------------------------- /predict/utils/dump_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/dump_error.m -------------------------------------------------------------------------------- /predict/utils/fetch_output.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/fetch_output.m -------------------------------------------------------------------------------- /predict/utils/gen_featmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/gen_featmap.m -------------------------------------------------------------------------------- /predict/utils/gen_trans_featmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/gen_trans_featmap.m -------------------------------------------------------------------------------- /predict/utils/get_net_attr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/get_net_attr.m -------------------------------------------------------------------------------- /predict/utils/get_overlap_1toN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/get_overlap_1toN.m -------------------------------------------------------------------------------- /predict/utils/get_overlap_MtoN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/get_overlap_MtoN.m -------------------------------------------------------------------------------- /predict/utils/get_rect_from_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/get_rect_from_pts.m -------------------------------------------------------------------------------- /predict/utils/get_subset_of_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/get_subset_of_struct.m -------------------------------------------------------------------------------- /predict/utils/new_parpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/new_parpool.m -------------------------------------------------------------------------------- /predict/utils/nms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms.m -------------------------------------------------------------------------------- /predict/utils/nms_gpu_mex.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_gpu_mex.cu -------------------------------------------------------------------------------- /predict/utils/nms_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_mex.cpp -------------------------------------------------------------------------------- /predict/utils/nms_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_mex.mexw64 -------------------------------------------------------------------------------- /predict/utils/nms_multiclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_multiclass.m -------------------------------------------------------------------------------- /predict/utils/nms_parsed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_parsed.m -------------------------------------------------------------------------------- /predict/utils/nms_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nms_pts.m -------------------------------------------------------------------------------- /predict/utils/nvmex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/nvmex.m -------------------------------------------------------------------------------- /predict/utils/plot_detected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/plot_detected.m -------------------------------------------------------------------------------- /predict/utils/plot_parsed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/plot_parsed.m -------------------------------------------------------------------------------- /predict/utils/plot_result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/plot_result.m -------------------------------------------------------------------------------- /predict/utils/prepare_data_for_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/prepare_data_for_input.m -------------------------------------------------------------------------------- /predict/utils/prepare_data_for_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/prepare_data_for_test.m -------------------------------------------------------------------------------- /predict/utils/randomid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/randomid.m -------------------------------------------------------------------------------- /predict/utils/scale_img_to_target.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/scale_img_to_target.m -------------------------------------------------------------------------------- /predict/utils/script_analyze_dataset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/script_analyze_dataset.m -------------------------------------------------------------------------------- /predict/utils/script_diagnosis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/script_diagnosis.m -------------------------------------------------------------------------------- /predict/utils/script_from_parsed_to_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/predict/utils/script_from_parsed_to_pts.m -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyuisanai/RSA-for-object-detection/HEAD/result.jpg --------------------------------------------------------------------------------