├── .gitignore ├── LICENSE ├── README.md ├── compile_mex.m ├── demo.m ├── demo_Casablanca.m ├── demo_new_images.m ├── globalModel ├── cnn_computeScores_globalModel.m ├── cnn_getBatch_globalModel.m ├── cnn_globalModel.m ├── cnn_initNet_globalModel.m ├── cnn_train_globalModel.m ├── run_computeScores_globalModel.m ├── run_computeScores_globalModel_Casablanca.m ├── run_training_globalModel.m ├── vl_nnreshape.m └── vl_simplenn_globalModel.m ├── localModel ├── cnn_computeScores_localModel.m ├── cnn_getBatch_localModel.m ├── cnn_initNet_localModel.m ├── cnn_localModel.m ├── cnn_prepareData_localModel.m ├── cnn_train_localModel.m ├── run_computeScores_localModel.m ├── run_computeScores_localModel_Casablanca.m ├── run_training_localModel.m └── vl_simplenn_localModel.m ├── pairwiseModel ├── assignPointsToClusters.m ├── clusterCandidatePairs_3logFeatures_normalized_kmeans.m ├── cnn_computeScores_pairwiseModel.m ├── cnn_getBatch_pairwiseModel.m ├── cnn_initNet_pairwiseModel.m ├── cnn_pairwiseModel.m ├── cnn_prepareData_pairwiseModel.m ├── cnn_train_pairwiseModel.m ├── computeMinMarginalsBinaryMex │ ├── build_computeMinMarginalsBinaryMex.m │ ├── computeMinMarginalsBinaryMex.cpp │ └── example_computeMinMarginalsBinaryMex.m ├── energyMinimization │ ├── bruteForceBinaryPairwiseMex │ │ ├── bruteForceBinaryPairwiseMex.cpp │ │ ├── build_bruteForceBinaryPairwiseMex.m │ │ └── example_bruteForceBinaryPairwiseMex.m │ ├── computeEnergyBinaryPairwise.m │ ├── computeMinMarginalsPairwiseBinary.m │ ├── minimizeEnergyPairwiseBinary.m │ ├── projectEnergyBinaryPairwise.m │ ├── qpboMex │ │ ├── LICENSE │ │ ├── QPBO-v1.32.src │ │ │ ├── CHANGES.TXT │ │ │ ├── QPBO.cpp │ │ │ ├── QPBO.h │ │ │ ├── QPBO_extra.cpp │ │ │ ├── QPBO_maxflow.cpp │ │ │ ├── QPBO_postprocessing.cpp │ │ │ ├── block.h │ │ │ └── instances.inc │ │ ├── README.TXT │ │ ├── build_qpboMex.m │ │ ├── example_qpboMex.m │ │ ├── qpboMex.cpp │ │ └── qpboMex.m │ ├── reparameterizeEnergy.m │ └── trwsMex │ │ ├── build_trwsMex.m │ │ ├── example_trwsMex.m │ │ ├── src │ │ ├── CHANGES.TXT │ │ ├── LICENSE.TXT │ │ ├── MRFEnergy.cpp │ │ ├── MRFEnergy.h │ │ ├── README.TXT │ │ ├── example.cpp │ │ ├── instances.h │ │ ├── instances.inc │ │ ├── minimize.cpp │ │ ├── ordering.cpp │ │ ├── treeProbabilities.cpp │ │ ├── typeBinary.h │ │ ├── typeBinaryFast.h │ │ ├── typeGeneral.h │ │ ├── typePotts.h │ │ ├── typeTruncatedLinear.h │ │ ├── typeTruncatedLinear2D.h │ │ ├── typeTruncatedQuadratic.h │ │ └── typeTruncatedQuadratic2D.h │ │ ├── trwsMex.cpp │ │ └── trwsMex.m ├── pruneCandidatesNms.m ├── run_computeScores_pairwiseModel.m ├── run_computeScores_pairwiseModel_Casablanca.m ├── run_training_pairwiseModel.m ├── vl_logisticScoreLoss_pairwiseCompactModel.m ├── vl_logisticScoreLoss_pairwiseCompactModel_test_derivative.m ├── vl_simplenn_pairwiseModel_backwardPass.m ├── vl_simplenn_pairwiseModel_forwardPass.m ├── vl_structuredNetwork_pairwiseModel.m ├── vl_structuredNetwork_pairwiseModel_test_derivative.m ├── vl_svmStructLoss_pairwiseCompactModel.m ├── vl_svmStructLoss_pairwiseCompactModel_test_derivative.m └── vl_svmStructLoss_pairwiseCompactModel_test_derivative.mat ├── setup.m └── utils ├── Casablanca ├── VOCevaldet_Casablanca.m ├── VOChash_init_Casablanca.m ├── VOChash_lookup_Casablanca.m ├── VOCinit_Casablanca.m └── evaluate_detection_Casablanca.m ├── HollywoodHeads ├── VOCevaldet_HH.m ├── VOChash_init_HH.m ├── VOChash_lookup_HH.m ├── VOCinit_HH.m └── evaluate_detection_HH.m ├── VOCcode ├── VOCap.m ├── VOCreadrecxml.m ├── VOCreadxml.m └── VOCxml2struct.m ├── bbIntersection.m ├── bbIntersectionArea.m ├── bbIntersectionOverArea.m ├── bbIntersectionOverUnion.m ├── combine_global.m ├── convertBb_X1Y1WH_to_X1Y1X2Y2.m ├── convertBb_X1Y1WH_to_Y1X1Y2X2.m ├── convertBb_X1Y1X2Y2_to_X1Y1WH.m ├── convertBb_Y1X1Y2X2_to_X1Y1WH.m ├── cropImagePatches.m ├── cropRectanglesMex ├── LICENSE ├── README.txt ├── build_cropRectanglesMex.m ├── cropRectanglesMex.cu ├── cropRectanglesMex.m └── example_cropRectanglesMex.m ├── do_regression.m ├── hex2rgb.m ├── load_BB.m ├── load_det.m ├── load_det_local_pairwise_global.m ├── readLines.m ├── selectBoundingBoxesNonMaxSup.m ├── selective_search_boxes.m ├── showBoundingBoxes.m ├── showFirstLayerFilters.m ├── vl_argparse.m └── writeLines.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/README.md -------------------------------------------------------------------------------- /compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/compile_mex.m -------------------------------------------------------------------------------- /demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/demo.m -------------------------------------------------------------------------------- /demo_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/demo_Casablanca.m -------------------------------------------------------------------------------- /demo_new_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/demo_new_images.m -------------------------------------------------------------------------------- /globalModel/cnn_computeScores_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/cnn_computeScores_globalModel.m -------------------------------------------------------------------------------- /globalModel/cnn_getBatch_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/cnn_getBatch_globalModel.m -------------------------------------------------------------------------------- /globalModel/cnn_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/cnn_globalModel.m -------------------------------------------------------------------------------- /globalModel/cnn_initNet_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/cnn_initNet_globalModel.m -------------------------------------------------------------------------------- /globalModel/cnn_train_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/cnn_train_globalModel.m -------------------------------------------------------------------------------- /globalModel/run_computeScores_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/run_computeScores_globalModel.m -------------------------------------------------------------------------------- /globalModel/run_computeScores_globalModel_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/run_computeScores_globalModel_Casablanca.m -------------------------------------------------------------------------------- /globalModel/run_training_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/run_training_globalModel.m -------------------------------------------------------------------------------- /globalModel/vl_nnreshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/vl_nnreshape.m -------------------------------------------------------------------------------- /globalModel/vl_simplenn_globalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/globalModel/vl_simplenn_globalModel.m -------------------------------------------------------------------------------- /localModel/cnn_computeScores_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_computeScores_localModel.m -------------------------------------------------------------------------------- /localModel/cnn_getBatch_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_getBatch_localModel.m -------------------------------------------------------------------------------- /localModel/cnn_initNet_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_initNet_localModel.m -------------------------------------------------------------------------------- /localModel/cnn_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_localModel.m -------------------------------------------------------------------------------- /localModel/cnn_prepareData_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_prepareData_localModel.m -------------------------------------------------------------------------------- /localModel/cnn_train_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/cnn_train_localModel.m -------------------------------------------------------------------------------- /localModel/run_computeScores_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/run_computeScores_localModel.m -------------------------------------------------------------------------------- /localModel/run_computeScores_localModel_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/run_computeScores_localModel_Casablanca.m -------------------------------------------------------------------------------- /localModel/run_training_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/run_training_localModel.m -------------------------------------------------------------------------------- /localModel/vl_simplenn_localModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/localModel/vl_simplenn_localModel.m -------------------------------------------------------------------------------- /pairwiseModel/assignPointsToClusters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/assignPointsToClusters.m -------------------------------------------------------------------------------- /pairwiseModel/clusterCandidatePairs_3logFeatures_normalized_kmeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/clusterCandidatePairs_3logFeatures_normalized_kmeans.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_computeScores_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_computeScores_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_getBatch_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_getBatch_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_initNet_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_initNet_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_prepareData_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_prepareData_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/cnn_train_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/cnn_train_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/computeMinMarginalsBinaryMex/build_computeMinMarginalsBinaryMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/computeMinMarginalsBinaryMex/build_computeMinMarginalsBinaryMex.m -------------------------------------------------------------------------------- /pairwiseModel/computeMinMarginalsBinaryMex/computeMinMarginalsBinaryMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/computeMinMarginalsBinaryMex/computeMinMarginalsBinaryMex.cpp -------------------------------------------------------------------------------- /pairwiseModel/computeMinMarginalsBinaryMex/example_computeMinMarginalsBinaryMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/computeMinMarginalsBinaryMex/example_computeMinMarginalsBinaryMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/bruteForceBinaryPairwiseMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/bruteForceBinaryPairwiseMex.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/build_bruteForceBinaryPairwiseMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/build_bruteForceBinaryPairwiseMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/example_bruteForceBinaryPairwiseMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/bruteForceBinaryPairwiseMex/example_bruteForceBinaryPairwiseMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/computeEnergyBinaryPairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/computeEnergyBinaryPairwise.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/computeMinMarginalsPairwiseBinary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/computeMinMarginalsPairwiseBinary.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/minimizeEnergyPairwiseBinary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/minimizeEnergyPairwiseBinary.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/projectEnergyBinaryPairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/projectEnergyBinaryPairwise.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/LICENSE -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/CHANGES.TXT -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_extra.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_maxflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_maxflow.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_postprocessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/QPBO_postprocessing.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/block.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/instances.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/QPBO-v1.32.src/instances.inc -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/README.TXT -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/build_qpboMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/build_qpboMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/example_qpboMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/example_qpboMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/qpboMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/qpboMex.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/qpboMex/qpboMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/qpboMex/qpboMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/reparameterizeEnergy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/reparameterizeEnergy.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/build_trwsMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/build_trwsMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/example_trwsMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/example_trwsMex.m -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/CHANGES.TXT -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/LICENSE.TXT -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/MRFEnergy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/MRFEnergy.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/MRFEnergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/MRFEnergy.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/README.TXT -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/example.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/instances.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/instances.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/instances.inc -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/minimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/minimize.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/ordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/ordering.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/treeProbabilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/treeProbabilities.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeBinary.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeBinaryFast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeBinaryFast.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeGeneral.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typePotts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typePotts.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedLinear.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedLinear2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedLinear2D.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedQuadratic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedQuadratic.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedQuadratic2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/src/typeTruncatedQuadratic2D.h -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/trwsMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/trwsMex.cpp -------------------------------------------------------------------------------- /pairwiseModel/energyMinimization/trwsMex/trwsMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/energyMinimization/trwsMex/trwsMex.m -------------------------------------------------------------------------------- /pairwiseModel/pruneCandidatesNms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/pruneCandidatesNms.m -------------------------------------------------------------------------------- /pairwiseModel/run_computeScores_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/run_computeScores_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/run_computeScores_pairwiseModel_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/run_computeScores_pairwiseModel_Casablanca.m -------------------------------------------------------------------------------- /pairwiseModel/run_training_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/run_training_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/vl_logisticScoreLoss_pairwiseCompactModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_logisticScoreLoss_pairwiseCompactModel.m -------------------------------------------------------------------------------- /pairwiseModel/vl_logisticScoreLoss_pairwiseCompactModel_test_derivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_logisticScoreLoss_pairwiseCompactModel_test_derivative.m -------------------------------------------------------------------------------- /pairwiseModel/vl_simplenn_pairwiseModel_backwardPass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_simplenn_pairwiseModel_backwardPass.m -------------------------------------------------------------------------------- /pairwiseModel/vl_simplenn_pairwiseModel_forwardPass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_simplenn_pairwiseModel_forwardPass.m -------------------------------------------------------------------------------- /pairwiseModel/vl_structuredNetwork_pairwiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_structuredNetwork_pairwiseModel.m -------------------------------------------------------------------------------- /pairwiseModel/vl_structuredNetwork_pairwiseModel_test_derivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_structuredNetwork_pairwiseModel_test_derivative.m -------------------------------------------------------------------------------- /pairwiseModel/vl_svmStructLoss_pairwiseCompactModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_svmStructLoss_pairwiseCompactModel.m -------------------------------------------------------------------------------- /pairwiseModel/vl_svmStructLoss_pairwiseCompactModel_test_derivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_svmStructLoss_pairwiseCompactModel_test_derivative.m -------------------------------------------------------------------------------- /pairwiseModel/vl_svmStructLoss_pairwiseCompactModel_test_derivative.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/pairwiseModel/vl_svmStructLoss_pairwiseCompactModel_test_derivative.mat -------------------------------------------------------------------------------- /setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/setup.m -------------------------------------------------------------------------------- /utils/Casablanca/VOCevaldet_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/Casablanca/VOCevaldet_Casablanca.m -------------------------------------------------------------------------------- /utils/Casablanca/VOChash_init_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/Casablanca/VOChash_init_Casablanca.m -------------------------------------------------------------------------------- /utils/Casablanca/VOChash_lookup_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/Casablanca/VOChash_lookup_Casablanca.m -------------------------------------------------------------------------------- /utils/Casablanca/VOCinit_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/Casablanca/VOCinit_Casablanca.m -------------------------------------------------------------------------------- /utils/Casablanca/evaluate_detection_Casablanca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/Casablanca/evaluate_detection_Casablanca.m -------------------------------------------------------------------------------- /utils/HollywoodHeads/VOCevaldet_HH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/HollywoodHeads/VOCevaldet_HH.m -------------------------------------------------------------------------------- /utils/HollywoodHeads/VOChash_init_HH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/HollywoodHeads/VOChash_init_HH.m -------------------------------------------------------------------------------- /utils/HollywoodHeads/VOChash_lookup_HH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/HollywoodHeads/VOChash_lookup_HH.m -------------------------------------------------------------------------------- /utils/HollywoodHeads/VOCinit_HH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/HollywoodHeads/VOCinit_HH.m -------------------------------------------------------------------------------- /utils/HollywoodHeads/evaluate_detection_HH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/HollywoodHeads/evaluate_detection_HH.m -------------------------------------------------------------------------------- /utils/VOCcode/VOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/VOCcode/VOCap.m -------------------------------------------------------------------------------- /utils/VOCcode/VOCreadrecxml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/VOCcode/VOCreadrecxml.m -------------------------------------------------------------------------------- /utils/VOCcode/VOCreadxml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/VOCcode/VOCreadxml.m -------------------------------------------------------------------------------- /utils/VOCcode/VOCxml2struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/VOCcode/VOCxml2struct.m -------------------------------------------------------------------------------- /utils/bbIntersection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/bbIntersection.m -------------------------------------------------------------------------------- /utils/bbIntersectionArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/bbIntersectionArea.m -------------------------------------------------------------------------------- /utils/bbIntersectionOverArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/bbIntersectionOverArea.m -------------------------------------------------------------------------------- /utils/bbIntersectionOverUnion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/bbIntersectionOverUnion.m -------------------------------------------------------------------------------- /utils/combine_global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/combine_global.m -------------------------------------------------------------------------------- /utils/convertBb_X1Y1WH_to_X1Y1X2Y2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/convertBb_X1Y1WH_to_X1Y1X2Y2.m -------------------------------------------------------------------------------- /utils/convertBb_X1Y1WH_to_Y1X1Y2X2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/convertBb_X1Y1WH_to_Y1X1Y2X2.m -------------------------------------------------------------------------------- /utils/convertBb_X1Y1X2Y2_to_X1Y1WH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/convertBb_X1Y1X2Y2_to_X1Y1WH.m -------------------------------------------------------------------------------- /utils/convertBb_Y1X1Y2X2_to_X1Y1WH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/convertBb_Y1X1Y2X2_to_X1Y1WH.m -------------------------------------------------------------------------------- /utils/cropImagePatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropImagePatches.m -------------------------------------------------------------------------------- /utils/cropRectanglesMex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/LICENSE -------------------------------------------------------------------------------- /utils/cropRectanglesMex/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/README.txt -------------------------------------------------------------------------------- /utils/cropRectanglesMex/build_cropRectanglesMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/build_cropRectanglesMex.m -------------------------------------------------------------------------------- /utils/cropRectanglesMex/cropRectanglesMex.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/cropRectanglesMex.cu -------------------------------------------------------------------------------- /utils/cropRectanglesMex/cropRectanglesMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/cropRectanglesMex.m -------------------------------------------------------------------------------- /utils/cropRectanglesMex/example_cropRectanglesMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/cropRectanglesMex/example_cropRectanglesMex.m -------------------------------------------------------------------------------- /utils/do_regression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/do_regression.m -------------------------------------------------------------------------------- /utils/hex2rgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/hex2rgb.m -------------------------------------------------------------------------------- /utils/load_BB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/load_BB.m -------------------------------------------------------------------------------- /utils/load_det.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/load_det.m -------------------------------------------------------------------------------- /utils/load_det_local_pairwise_global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/load_det_local_pairwise_global.m -------------------------------------------------------------------------------- /utils/readLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/readLines.m -------------------------------------------------------------------------------- /utils/selectBoundingBoxesNonMaxSup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/selectBoundingBoxesNonMaxSup.m -------------------------------------------------------------------------------- /utils/selective_search_boxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/selective_search_boxes.m -------------------------------------------------------------------------------- /utils/showBoundingBoxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/showBoundingBoxes.m -------------------------------------------------------------------------------- /utils/showFirstLayerFilters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/showFirstLayerFilters.m -------------------------------------------------------------------------------- /utils/vl_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/vl_argparse.m -------------------------------------------------------------------------------- /utils/writeLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosokin/cnn_head_detection/HEAD/utils/writeLines.m --------------------------------------------------------------------------------