├── .gitattributes ├── .gitignore ├── License ├── LICENSE ├── LICENSE_CAFFE ├── LICENSE_LIBLINEAR └── LICENSE_RCNN ├── README.md ├── bbox_regression ├── spp_predict_bbox_regressor.m ├── spp_test_bbox_regressor.m ├── spp_test_svm_bbox_regressor.m ├── spp_train_bbox_regressor.m └── trans_bbox_reg.m ├── data ├── fetch_model_data.m └── fetch_ss_data_voc2007.m ├── datasets └── VOCdevkit2007 │ └── VOCcode │ └── VOCevaldet.m ├── experiments ├── Script_spp_voc.m ├── spp_exp_bbox_reg_train_and_test_voc.m ├── spp_exp_cache_features_voc.m └── spp_exp_train_and_test_voc.m ├── external ├── fetch_caffe_mex_5_5.m └── liblinear-1.93_multicore │ ├── COPYRIGHT │ ├── README │ ├── blas │ ├── Makefile │ ├── blas.h │ ├── blasp.h │ ├── daxpy.c │ ├── ddot.c │ ├── dnrm2.c │ └── dscal.c │ ├── linear.cpp │ ├── linear.def │ ├── linear.h │ ├── matlab │ ├── Makefile │ ├── README │ ├── libsvmread.c │ ├── libsvmwrite.c │ ├── linear_model_matlab.cpp │ ├── linear_model_matlab.h │ ├── make.txt │ ├── predict.c │ ├── predict.m │ ├── train.cpp │ └── train.mexw64 │ ├── predict.c │ ├── train.c │ ├── tron.cpp │ └── tron.h ├── finetuning └── spp_finetune_voc.m ├── imdb ├── get_voc_opts.m ├── imdb_eval_voc.m ├── imdb_from_voc.m └── roidb_from_voc.m ├── model-defs ├── Zeiler_conv5.prototxt ├── pascal_finetune_fc_spm_solver.prototxt ├── pascal_finetune_fc_spm_solver_new.prototxt ├── pascal_finetune_fc_spm_test.prototxt ├── pascal_finetune_fc_spm_train.prototxt └── pascal_finetune_fc_spm_train_test_new.prototxt ├── nms ├── nms.m ├── nms_mex.cpp ├── nms_multiclass.m └── nms_multiclass_mex.cpp ├── selective_search ├── fetch_selective_search.m └── selective_search_boxes.m ├── spp_build.m ├── spp_cache_convX_features.m ├── spp_config.m ├── spp_create_model.m ├── spp_demo.m ├── spp_detect.m ├── spp_feature_stats.m ├── spp_features_convX.m ├── spp_features_convX_to_poolX.m ├── spp_layers_in_gpu.m ├── spp_load_cached_poolX_features.m ├── spp_load_model.m ├── spp_load_pooling_params.m ├── spp_locate_trans_fc.m ├── spp_poolX_to_fcX.m ├── spp_scale_features.m ├── spp_test.m ├── spp_train.m ├── startup.m ├── utils ├── boxoverlap.m ├── caffe_anysize_test.m ├── create_folds.m ├── link_train_val.m ├── mkdir_if_missing.m ├── procid.m ├── seed_rand.m ├── selective_search_split_trainval.m ├── spm_pool │ ├── spm_expected_scale.m │ ├── spm_pool.m │ ├── spm_pool_caffe_mex.cpp │ └── spm_response_boxes.m ├── subsample_images.m ├── test_2010_from_2012.m ├── tic_toc_print.m ├── verify_caffe_crops.m ├── x10VOCevaldet.m ├── xVOCap.m ├── xVOChash_init.m └── xVOChash_lookup.m └── vis ├── showboxes.m ├── showboxes_new.m └── showboxesc.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/.gitignore -------------------------------------------------------------------------------- /License/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/License/LICENSE -------------------------------------------------------------------------------- /License/LICENSE_CAFFE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/License/LICENSE_CAFFE -------------------------------------------------------------------------------- /License/LICENSE_LIBLINEAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/License/LICENSE_LIBLINEAR -------------------------------------------------------------------------------- /License/LICENSE_RCNN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/License/LICENSE_RCNN -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/README.md -------------------------------------------------------------------------------- /bbox_regression/spp_predict_bbox_regressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/bbox_regression/spp_predict_bbox_regressor.m -------------------------------------------------------------------------------- /bbox_regression/spp_test_bbox_regressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/bbox_regression/spp_test_bbox_regressor.m -------------------------------------------------------------------------------- /bbox_regression/spp_test_svm_bbox_regressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/bbox_regression/spp_test_svm_bbox_regressor.m -------------------------------------------------------------------------------- /bbox_regression/spp_train_bbox_regressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/bbox_regression/spp_train_bbox_regressor.m -------------------------------------------------------------------------------- /bbox_regression/trans_bbox_reg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/bbox_regression/trans_bbox_reg.m -------------------------------------------------------------------------------- /data/fetch_model_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/data/fetch_model_data.m -------------------------------------------------------------------------------- /data/fetch_ss_data_voc2007.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/data/fetch_ss_data_voc2007.m -------------------------------------------------------------------------------- /datasets/VOCdevkit2007/VOCcode/VOCevaldet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/datasets/VOCdevkit2007/VOCcode/VOCevaldet.m -------------------------------------------------------------------------------- /experiments/Script_spp_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/experiments/Script_spp_voc.m -------------------------------------------------------------------------------- /experiments/spp_exp_bbox_reg_train_and_test_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/experiments/spp_exp_bbox_reg_train_and_test_voc.m -------------------------------------------------------------------------------- /experiments/spp_exp_cache_features_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/experiments/spp_exp_cache_features_voc.m -------------------------------------------------------------------------------- /experiments/spp_exp_train_and_test_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/experiments/spp_exp_train_and_test_voc.m -------------------------------------------------------------------------------- /external/fetch_caffe_mex_5_5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/fetch_caffe_mex_5_5.m -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/COPYRIGHT -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/README -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/Makefile -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/blas.h -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/blasp.h -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/daxpy.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/ddot.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/dnrm2.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/blas/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/blas/dscal.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/linear.cpp -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/linear.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/linear.def -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/linear.h -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/Makefile -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/README -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/libsvmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/libsvmread.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/libsvmwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/libsvmwrite.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/linear_model_matlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/linear_model_matlab.cpp -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/linear_model_matlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/linear_model_matlab.h -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/make.txt -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/predict.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/predict.m -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/train.cpp -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/matlab/train.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/matlab/train.mexw64 -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/predict.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/train.c -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/tron.cpp -------------------------------------------------------------------------------- /external/liblinear-1.93_multicore/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/external/liblinear-1.93_multicore/tron.h -------------------------------------------------------------------------------- /finetuning/spp_finetune_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/finetuning/spp_finetune_voc.m -------------------------------------------------------------------------------- /imdb/get_voc_opts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/imdb/get_voc_opts.m -------------------------------------------------------------------------------- /imdb/imdb_eval_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/imdb/imdb_eval_voc.m -------------------------------------------------------------------------------- /imdb/imdb_from_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/imdb/imdb_from_voc.m -------------------------------------------------------------------------------- /imdb/roidb_from_voc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/imdb/roidb_from_voc.m -------------------------------------------------------------------------------- /model-defs/Zeiler_conv5.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/Zeiler_conv5.prototxt -------------------------------------------------------------------------------- /model-defs/pascal_finetune_fc_spm_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/pascal_finetune_fc_spm_solver.prototxt -------------------------------------------------------------------------------- /model-defs/pascal_finetune_fc_spm_solver_new.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/pascal_finetune_fc_spm_solver_new.prototxt -------------------------------------------------------------------------------- /model-defs/pascal_finetune_fc_spm_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/pascal_finetune_fc_spm_test.prototxt -------------------------------------------------------------------------------- /model-defs/pascal_finetune_fc_spm_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/pascal_finetune_fc_spm_train.prototxt -------------------------------------------------------------------------------- /model-defs/pascal_finetune_fc_spm_train_test_new.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/model-defs/pascal_finetune_fc_spm_train_test_new.prototxt -------------------------------------------------------------------------------- /nms/nms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/nms/nms.m -------------------------------------------------------------------------------- /nms/nms_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/nms/nms_mex.cpp -------------------------------------------------------------------------------- /nms/nms_multiclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/nms/nms_multiclass.m -------------------------------------------------------------------------------- /nms/nms_multiclass_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/nms/nms_multiclass_mex.cpp -------------------------------------------------------------------------------- /selective_search/fetch_selective_search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/selective_search/fetch_selective_search.m -------------------------------------------------------------------------------- /selective_search/selective_search_boxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/selective_search/selective_search_boxes.m -------------------------------------------------------------------------------- /spp_build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_build.m -------------------------------------------------------------------------------- /spp_cache_convX_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_cache_convX_features.m -------------------------------------------------------------------------------- /spp_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_config.m -------------------------------------------------------------------------------- /spp_create_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_create_model.m -------------------------------------------------------------------------------- /spp_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_demo.m -------------------------------------------------------------------------------- /spp_detect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_detect.m -------------------------------------------------------------------------------- /spp_feature_stats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_feature_stats.m -------------------------------------------------------------------------------- /spp_features_convX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_features_convX.m -------------------------------------------------------------------------------- /spp_features_convX_to_poolX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_features_convX_to_poolX.m -------------------------------------------------------------------------------- /spp_layers_in_gpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_layers_in_gpu.m -------------------------------------------------------------------------------- /spp_load_cached_poolX_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_load_cached_poolX_features.m -------------------------------------------------------------------------------- /spp_load_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_load_model.m -------------------------------------------------------------------------------- /spp_load_pooling_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_load_pooling_params.m -------------------------------------------------------------------------------- /spp_locate_trans_fc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_locate_trans_fc.m -------------------------------------------------------------------------------- /spp_poolX_to_fcX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_poolX_to_fcX.m -------------------------------------------------------------------------------- /spp_scale_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_scale_features.m -------------------------------------------------------------------------------- /spp_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_test.m -------------------------------------------------------------------------------- /spp_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/spp_train.m -------------------------------------------------------------------------------- /startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/startup.m -------------------------------------------------------------------------------- /utils/boxoverlap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/boxoverlap.m -------------------------------------------------------------------------------- /utils/caffe_anysize_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/caffe_anysize_test.m -------------------------------------------------------------------------------- /utils/create_folds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/create_folds.m -------------------------------------------------------------------------------- /utils/link_train_val.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/link_train_val.m -------------------------------------------------------------------------------- /utils/mkdir_if_missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/mkdir_if_missing.m -------------------------------------------------------------------------------- /utils/procid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/procid.m -------------------------------------------------------------------------------- /utils/seed_rand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/seed_rand.m -------------------------------------------------------------------------------- /utils/selective_search_split_trainval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/selective_search_split_trainval.m -------------------------------------------------------------------------------- /utils/spm_pool/spm_expected_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/spm_pool/spm_expected_scale.m -------------------------------------------------------------------------------- /utils/spm_pool/spm_pool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/spm_pool/spm_pool.m -------------------------------------------------------------------------------- /utils/spm_pool/spm_pool_caffe_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/spm_pool/spm_pool_caffe_mex.cpp -------------------------------------------------------------------------------- /utils/spm_pool/spm_response_boxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/spm_pool/spm_response_boxes.m -------------------------------------------------------------------------------- /utils/subsample_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/subsample_images.m -------------------------------------------------------------------------------- /utils/test_2010_from_2012.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/test_2010_from_2012.m -------------------------------------------------------------------------------- /utils/tic_toc_print.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/tic_toc_print.m -------------------------------------------------------------------------------- /utils/verify_caffe_crops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/verify_caffe_crops.m -------------------------------------------------------------------------------- /utils/x10VOCevaldet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/x10VOCevaldet.m -------------------------------------------------------------------------------- /utils/xVOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/xVOCap.m -------------------------------------------------------------------------------- /utils/xVOChash_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/xVOChash_init.m -------------------------------------------------------------------------------- /utils/xVOChash_lookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/utils/xVOChash_lookup.m -------------------------------------------------------------------------------- /vis/showboxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/vis/showboxes.m -------------------------------------------------------------------------------- /vis/showboxes_new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/vis/showboxes_new.m -------------------------------------------------------------------------------- /vis/showboxesc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaoqingRen/SPP_net/HEAD/vis/showboxesc.m --------------------------------------------------------------------------------