├── Demo.m ├── DemoCofw.m ├── DemoLfw.m ├── DemoOfd.m ├── README.md ├── UCI_OFD ├── DetectionResults │ ├── HPM_HELEN68.txt │ ├── HPM_multi_res_worot_HELEN68.txt │ ├── HPM_multi_res_wrot_HELEN68.txt │ └── HPM_no_occ_HELEN68.txt ├── Evaluate.m ├── Main.m ├── OFD │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 3.jpg │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 34.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 37.jpg │ ├── 38.jpg │ ├── 39.jpg │ ├── 4.jpg │ ├── 40.jpg │ ├── 41.jpg │ ├── 42.jpg │ ├── 50.jpg │ ├── 52.jpg │ ├── 53.jpg │ ├── 54.jpg │ ├── 55.jpg │ ├── 57.jpg │ ├── 58.jpg │ ├── 59.jpg │ ├── 6.jpg │ ├── 60.jpg │ ├── 61.jpg │ ├── 62.jpg │ ├── 63.jpg │ ├── 66.jpg │ ├── 68.jpg │ ├── 72.jpg │ ├── 73.jpg │ ├── 74.jpg │ ├── 75.jpg │ ├── 76.jpg │ ├── 77.jpg │ ├── 78.jpg │ ├── 79.jpg │ ├── 8.jpg │ ├── 80.jpg │ ├── 82.jpg │ ├── 9.jpg │ └── annotations.mat ├── PlotCurves.m ├── ReadDetectionResults.m ├── ReadMe.md ├── ShowAnnotations.m ├── VaryColor.m └── plots │ ├── all faces.pdf │ ├── occluded faces.pdf │ ├── significant occluded faces.pdf │ └── visible faces.pdf ├── cache ├── HPM_OFD_boxes_interval5_incOB0_rot20_10.mat ├── HPM_afw_boxes_interval5_incOB0_ov8_rot15_5.mat ├── HPM_cofw_test_boxes_interval5_incOB0_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOB10_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOB20_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOB30_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn10_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn20_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn30_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn40_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn50_ov7_rot30_6.mat ├── HPM_cofw_test_boxes_interval5_incOBn60_ov7_rot30_6.mat ├── HPM_cofw_train_boxes_interval5_incOB0_ov7_rot0_1.mat ├── HPM_final.mat ├── HPM_final_bbox.mat ├── HPM_lfw_A_B_boxes_interval5_incOB0_ov2_rot30_6.mat ├── HPM_lfw_val_M_boxes_interval5_incOB0_ov2_rot10_5.mat └── HPM_multi_res_final.mat ├── compile.m ├── data ├── AfwTestData.m ├── CofwData.m └── LfwData.m ├── detection ├── BoxesFilename.m ├── BoxesInfo.m ├── DetectDetect.m ├── DetectGivendet.m ├── DetectionWRotation.m ├── FlipBoxesOfFlippedComp.m ├── LocalizationsWORotation.m ├── LocalizationsWRotation.m ├── NmsFaceWRotation.m ├── TestLocalization.m └── featpyramid.m ├── evaluation ├── LandmarkLocalizationEval.m ├── PrintDetectionResToFile.m └── multipie_eval_landmark.m ├── init.m ├── matlabPool ├── closematlabpool.m └── startmatlabpool.m ├── mex_unix ├── bounded_dt.mexa64 ├── bounded_shiftdt.mexa64 ├── bounded_shiftdt_.mexa64 ├── fast_bounded_dt.mexa64 ├── fast_bounded_shifdt.cc ├── fast_bounded_shifdt.mexa64 ├── fast_bounded_shifdt_nc.mexa64 ├── fast_bounded_shifdt_ncw.mexa64 ├── fast_update_score.cc ├── fast_update_score.mexa64 ├── fconv.cc ├── fconv.mexa64 ├── fconvMT.cc ├── fconvblas.cc ├── fconvblas_gcc445.cc ├── features.cc ├── features.mexa64 ├── passmessage.mexa64 ├── reduce.cc ├── reduce.mexa64 ├── resize.cc ├── resize.mexa64 ├── shiftdt.cc ├── shiftdt.mexa64 ├── update_score.cc ├── updatescore.mexa64 └── updatescore_ref.mexa64 ├── photos ├── .DS_Store ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg └── img5.jpg ├── utility ├── ApplyRegression.m ├── ChangeAlpha.m ├── ChangeBiasOfOccKeypoints.m ├── CofwKeypointsToHpmParts.m ├── ComputeReqLevels.m ├── LearnRegression.m ├── LfwKeypointsToHpmParts.m ├── Mapping68kToAfw.m ├── Mapping68kToCofw29.m ├── Mapping68kToLfw.m ├── RotateAround.m ├── RotateFace.m └── RotatePoints.m └── visualization ├── PlotGraphs.m ├── ShowPoints.m ├── VisualizeData.m ├── VisualizeDetectionRes.m ├── VisualizeLocalizationRes.m ├── VisualizeModel.m ├── distinguishable_colors.m └── ellipse.m /Demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/Demo.m -------------------------------------------------------------------------------- /DemoCofw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/DemoCofw.m -------------------------------------------------------------------------------- /DemoLfw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/DemoLfw.m -------------------------------------------------------------------------------- /DemoOfd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/DemoOfd.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/README.md -------------------------------------------------------------------------------- /UCI_OFD/DetectionResults/HPM_HELEN68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/DetectionResults/HPM_HELEN68.txt -------------------------------------------------------------------------------- /UCI_OFD/DetectionResults/HPM_multi_res_worot_HELEN68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/DetectionResults/HPM_multi_res_worot_HELEN68.txt -------------------------------------------------------------------------------- /UCI_OFD/DetectionResults/HPM_multi_res_wrot_HELEN68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/DetectionResults/HPM_multi_res_wrot_HELEN68.txt -------------------------------------------------------------------------------- /UCI_OFD/DetectionResults/HPM_no_occ_HELEN68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/DetectionResults/HPM_no_occ_HELEN68.txt -------------------------------------------------------------------------------- /UCI_OFD/Evaluate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/Evaluate.m -------------------------------------------------------------------------------- /UCI_OFD/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/Main.m -------------------------------------------------------------------------------- /UCI_OFD/OFD/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/1.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/10.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/11.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/12.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/14.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/15.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/16.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/17.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/18.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/19.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/20.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/21.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/22.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/23.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/24.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/25.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/26.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/27.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/28.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/3.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/30.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/31.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/32.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/33.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/34.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/35.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/36.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/37.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/38.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/39.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/4.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/40.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/41.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/42.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/50.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/52.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/53.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/54.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/55.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/57.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/58.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/59.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/6.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/60.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/61.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/62.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/63.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/66.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/68.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/72.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/73.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/74.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/75.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/76.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/77.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/78.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/79.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/8.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/80.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/82.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/9.jpg -------------------------------------------------------------------------------- /UCI_OFD/OFD/annotations.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/OFD/annotations.mat -------------------------------------------------------------------------------- /UCI_OFD/PlotCurves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/PlotCurves.m -------------------------------------------------------------------------------- /UCI_OFD/ReadDetectionResults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/ReadDetectionResults.m -------------------------------------------------------------------------------- /UCI_OFD/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/ReadMe.md -------------------------------------------------------------------------------- /UCI_OFD/ShowAnnotations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/ShowAnnotations.m -------------------------------------------------------------------------------- /UCI_OFD/VaryColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/VaryColor.m -------------------------------------------------------------------------------- /UCI_OFD/plots/all faces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/plots/all faces.pdf -------------------------------------------------------------------------------- /UCI_OFD/plots/occluded faces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/plots/occluded faces.pdf -------------------------------------------------------------------------------- /UCI_OFD/plots/significant occluded faces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/plots/significant occluded faces.pdf -------------------------------------------------------------------------------- /UCI_OFD/plots/visible faces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/UCI_OFD/plots/visible faces.pdf -------------------------------------------------------------------------------- /cache/HPM_OFD_boxes_interval5_incOB0_rot20_10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_OFD_boxes_interval5_incOB0_rot20_10.mat -------------------------------------------------------------------------------- /cache/HPM_afw_boxes_interval5_incOB0_ov8_rot15_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_afw_boxes_interval5_incOB0_ov8_rot15_5.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOB0_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOB0_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOB10_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOB10_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOB20_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOB20_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOB30_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOB30_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn10_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn10_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn20_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn20_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn30_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn30_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn40_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn40_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn50_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn50_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_test_boxes_interval5_incOBn60_ov7_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_test_boxes_interval5_incOBn60_ov7_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_cofw_train_boxes_interval5_incOB0_ov7_rot0_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_cofw_train_boxes_interval5_incOB0_ov7_rot0_1.mat -------------------------------------------------------------------------------- /cache/HPM_final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_final.mat -------------------------------------------------------------------------------- /cache/HPM_final_bbox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_final_bbox.mat -------------------------------------------------------------------------------- /cache/HPM_lfw_A_B_boxes_interval5_incOB0_ov2_rot30_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_lfw_A_B_boxes_interval5_incOB0_ov2_rot30_6.mat -------------------------------------------------------------------------------- /cache/HPM_lfw_val_M_boxes_interval5_incOB0_ov2_rot10_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_lfw_val_M_boxes_interval5_incOB0_ov2_rot10_5.mat -------------------------------------------------------------------------------- /cache/HPM_multi_res_final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/cache/HPM_multi_res_final.mat -------------------------------------------------------------------------------- /compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/compile.m -------------------------------------------------------------------------------- /data/AfwTestData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/data/AfwTestData.m -------------------------------------------------------------------------------- /data/CofwData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/data/CofwData.m -------------------------------------------------------------------------------- /data/LfwData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/data/LfwData.m -------------------------------------------------------------------------------- /detection/BoxesFilename.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/BoxesFilename.m -------------------------------------------------------------------------------- /detection/BoxesInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/BoxesInfo.m -------------------------------------------------------------------------------- /detection/DetectDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/DetectDetect.m -------------------------------------------------------------------------------- /detection/DetectGivendet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/DetectGivendet.m -------------------------------------------------------------------------------- /detection/DetectionWRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/DetectionWRotation.m -------------------------------------------------------------------------------- /detection/FlipBoxesOfFlippedComp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/FlipBoxesOfFlippedComp.m -------------------------------------------------------------------------------- /detection/LocalizationsWORotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/LocalizationsWORotation.m -------------------------------------------------------------------------------- /detection/LocalizationsWRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/LocalizationsWRotation.m -------------------------------------------------------------------------------- /detection/NmsFaceWRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/NmsFaceWRotation.m -------------------------------------------------------------------------------- /detection/TestLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/TestLocalization.m -------------------------------------------------------------------------------- /detection/featpyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/detection/featpyramid.m -------------------------------------------------------------------------------- /evaluation/LandmarkLocalizationEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/evaluation/LandmarkLocalizationEval.m -------------------------------------------------------------------------------- /evaluation/PrintDetectionResToFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/evaluation/PrintDetectionResToFile.m -------------------------------------------------------------------------------- /evaluation/multipie_eval_landmark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/evaluation/multipie_eval_landmark.m -------------------------------------------------------------------------------- /init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/init.m -------------------------------------------------------------------------------- /matlabPool/closematlabpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/matlabPool/closematlabpool.m -------------------------------------------------------------------------------- /matlabPool/startmatlabpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/matlabPool/startmatlabpool.m -------------------------------------------------------------------------------- /mex_unix/bounded_dt.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/bounded_dt.mexa64 -------------------------------------------------------------------------------- /mex_unix/bounded_shiftdt.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/bounded_shiftdt.mexa64 -------------------------------------------------------------------------------- /mex_unix/bounded_shiftdt_.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/bounded_shiftdt_.mexa64 -------------------------------------------------------------------------------- /mex_unix/fast_bounded_dt.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_bounded_dt.mexa64 -------------------------------------------------------------------------------- /mex_unix/fast_bounded_shifdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_bounded_shifdt.cc -------------------------------------------------------------------------------- /mex_unix/fast_bounded_shifdt.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_bounded_shifdt.mexa64 -------------------------------------------------------------------------------- /mex_unix/fast_bounded_shifdt_nc.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_bounded_shifdt_nc.mexa64 -------------------------------------------------------------------------------- /mex_unix/fast_bounded_shifdt_ncw.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_bounded_shifdt_ncw.mexa64 -------------------------------------------------------------------------------- /mex_unix/fast_update_score.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_update_score.cc -------------------------------------------------------------------------------- /mex_unix/fast_update_score.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fast_update_score.mexa64 -------------------------------------------------------------------------------- /mex_unix/fconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fconv.cc -------------------------------------------------------------------------------- /mex_unix/fconv.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fconv.mexa64 -------------------------------------------------------------------------------- /mex_unix/fconvMT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fconvMT.cc -------------------------------------------------------------------------------- /mex_unix/fconvblas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fconvblas.cc -------------------------------------------------------------------------------- /mex_unix/fconvblas_gcc445.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/fconvblas_gcc445.cc -------------------------------------------------------------------------------- /mex_unix/features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/features.cc -------------------------------------------------------------------------------- /mex_unix/features.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/features.mexa64 -------------------------------------------------------------------------------- /mex_unix/passmessage.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/passmessage.mexa64 -------------------------------------------------------------------------------- /mex_unix/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/reduce.cc -------------------------------------------------------------------------------- /mex_unix/reduce.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/reduce.mexa64 -------------------------------------------------------------------------------- /mex_unix/resize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/resize.cc -------------------------------------------------------------------------------- /mex_unix/resize.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/resize.mexa64 -------------------------------------------------------------------------------- /mex_unix/shiftdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/shiftdt.cc -------------------------------------------------------------------------------- /mex_unix/shiftdt.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/shiftdt.mexa64 -------------------------------------------------------------------------------- /mex_unix/update_score.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/update_score.cc -------------------------------------------------------------------------------- /mex_unix/updatescore.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/updatescore.mexa64 -------------------------------------------------------------------------------- /mex_unix/updatescore_ref.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/mex_unix/updatescore_ref.mexa64 -------------------------------------------------------------------------------- /photos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/.DS_Store -------------------------------------------------------------------------------- /photos/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/img1.jpg -------------------------------------------------------------------------------- /photos/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/img2.jpg -------------------------------------------------------------------------------- /photos/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/img3.jpg -------------------------------------------------------------------------------- /photos/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/img4.jpg -------------------------------------------------------------------------------- /photos/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/photos/img5.jpg -------------------------------------------------------------------------------- /utility/ApplyRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/ApplyRegression.m -------------------------------------------------------------------------------- /utility/ChangeAlpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/ChangeAlpha.m -------------------------------------------------------------------------------- /utility/ChangeBiasOfOccKeypoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/ChangeBiasOfOccKeypoints.m -------------------------------------------------------------------------------- /utility/CofwKeypointsToHpmParts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/CofwKeypointsToHpmParts.m -------------------------------------------------------------------------------- /utility/ComputeReqLevels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/ComputeReqLevels.m -------------------------------------------------------------------------------- /utility/LearnRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/LearnRegression.m -------------------------------------------------------------------------------- /utility/LfwKeypointsToHpmParts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/LfwKeypointsToHpmParts.m -------------------------------------------------------------------------------- /utility/Mapping68kToAfw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/Mapping68kToAfw.m -------------------------------------------------------------------------------- /utility/Mapping68kToCofw29.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/Mapping68kToCofw29.m -------------------------------------------------------------------------------- /utility/Mapping68kToLfw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/Mapping68kToLfw.m -------------------------------------------------------------------------------- /utility/RotateAround.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/RotateAround.m -------------------------------------------------------------------------------- /utility/RotateFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/RotateFace.m -------------------------------------------------------------------------------- /utility/RotatePoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/utility/RotatePoints.m -------------------------------------------------------------------------------- /visualization/PlotGraphs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/PlotGraphs.m -------------------------------------------------------------------------------- /visualization/ShowPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/ShowPoints.m -------------------------------------------------------------------------------- /visualization/VisualizeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/VisualizeData.m -------------------------------------------------------------------------------- /visualization/VisualizeDetectionRes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/VisualizeDetectionRes.m -------------------------------------------------------------------------------- /visualization/VisualizeLocalizationRes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/VisualizeLocalizationRes.m -------------------------------------------------------------------------------- /visualization/VisualizeModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/VisualizeModel.m -------------------------------------------------------------------------------- /visualization/distinguishable_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/distinguishable_colors.m -------------------------------------------------------------------------------- /visualization/ellipse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golnazghiasi/hpm-detection-code/HEAD/visualization/ellipse.m --------------------------------------------------------------------------------