├── .backup ├── ProREG.py └── clean.sh ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .test ├── DEBUG.lst ├── data │ ├── 18489332_4.jpg │ ├── 18489332_4.pts │ ├── 2086996835_5.jpg │ ├── 2086996835_5.pts │ ├── 237815567_3.jpg │ ├── 237815567_3.pts │ ├── 2406586388_3.jpg │ ├── 2406586388_3.pts │ ├── 2863107962_3.jpg │ ├── 2863107962_3.pts │ ├── 3346359383_3.jpg │ ├── 3346359383_3.pts │ ├── 3854178896_1.jpg │ ├── 3854178896_1.pts │ ├── 3873491482_1.jpg │ ├── 3873491482_1.pts │ ├── 79378097_5.jpg │ ├── 79378097_5.pts │ ├── 9545523490_2.jpg │ ├── 9545523490_2.pts │ └── cameras.pth └── test-transformations.py ├── LICENSE.md ├── README.md ├── SAN ├── .gitignore ├── LICENSE ├── README.md ├── base_cluster.py ├── cache_data │ ├── .gitignore │ ├── AFLWinfo_release.mat │ ├── aflw_from_mat.py │ ├── cache │ │ ├── dataset.jpg │ │ ├── figure_1_68.jpg │ │ ├── test_1.jpg │ │ └── test_1.pts │ ├── generate_300W.py │ ├── init_path.py │ ├── parallel.cpp │ └── vis.py ├── cluster.py ├── crop_pic.py ├── gen_mean_face.py ├── init_path.py ├── lib │ ├── cluster │ │ ├── __init__.py │ │ └── cluster.py │ ├── datasets │ │ ├── CycleDataset.py │ │ ├── GeneralDataset.py │ │ ├── __init__.py │ │ ├── dataset_utils.py │ │ └── point_meta.py │ ├── debug │ │ ├── __init__.py │ │ ├── check.py │ │ └── debug_main.py │ ├── models │ │ ├── __init__.py │ │ ├── basic_batch.py │ │ ├── cycle_util.py │ │ ├── discriminator_model.py │ │ ├── gan_loss.py │ │ ├── generator_model.py │ │ ├── initialization.py │ │ ├── itn.py │ │ ├── itn_cpm.py │ │ ├── model_utils.py │ │ ├── resnet.py │ │ └── vgg16_base.py │ ├── options │ │ ├── __init__.py │ │ └── options.py │ ├── procedure │ │ ├── __init__.py │ │ ├── evaluate_detector.py │ │ ├── san_util.py │ │ ├── train_cycle.py │ │ └── train_detector.py │ ├── san_vision │ │ ├── __init__.py │ │ ├── common_eval.py │ │ ├── cpm_loss.py │ │ ├── evaluation_util.py │ │ └── transforms.py │ ├── utils │ │ ├── __init__.py │ │ ├── box_utils.py │ │ ├── config.py │ │ ├── convert_utils.py │ │ ├── file_utils.py │ │ ├── flop_benchmark.py │ │ ├── image_pool.py │ │ ├── image_utils.py │ │ ├── pts_utils.py │ │ ├── stn_utils.py │ │ └── time_utils.py │ └── visualization │ │ ├── __init__.py │ │ ├── draw_image_by_points.py │ │ ├── save_error_image.py │ │ └── visualize.py ├── san_api.py ├── san_eval.py ├── san_main.py └── scripts │ ├── .gitignore │ ├── 300W │ ├── 300W-EVAL.sh │ ├── 300W_Base_Cluster.sh │ ├── 300W_CYCLE_0-1.sh │ ├── 300W_CYCLE_0-2.sh │ ├── 300W_CYCLE_1-2.sh │ ├── 300W_CYCLE_128.sh │ ├── 300W_Cluster.sh │ ├── 300W_Cluster_Simple.sh │ ├── Gray2Other │ │ ├── 300W_CYCLE_G2G.sh │ │ ├── 300W_CYCLE_G2L.sh │ │ ├── 300W_CYCLE_G2O.sh │ │ └── 300W_CYCLE_G2S.sh │ ├── Light2Other │ │ ├── 300W_CYCLE_L2G.sh │ │ ├── 300W_CYCLE_L2L.sh │ │ ├── 300W_CYCLE_L2O.sh │ │ ├── 300W_CYCLE_L2S.sh │ │ └── 300W_VGG16_CPM.sh │ ├── Original2Other │ │ ├── 300W_CYCLE_O2G.sh │ │ ├── 300W_CYCLE_O2L.sh │ │ ├── 300W_CYCLE_O2O.sh │ │ └── 300W_CYCLE_O2S.sh │ └── Sketch2Other │ │ ├── 300W_CYCLE_S2G.sh │ │ ├── 300W_CYCLE_S2L.sh │ │ ├── 300W_CYCLE_S2O.sh │ │ └── 300W_CYCLE_S2S.sh │ └── AFLW │ ├── AFLW_Base_Cluster.sh │ ├── AFLW_CYCLE_128.FRONT.sh │ ├── AFLW_CYCLE_128.FULL-EVAL.sh │ ├── AFLW_CYCLE_128.FULL.sh │ └── AFLW_Cluster.sh ├── SBR ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cache_data │ ├── .gitignore │ ├── README.md │ ├── aflw_from_mat.py │ ├── cache │ │ ├── demo-sbr.mp4 │ │ ├── demo-sbrs │ │ │ └── .gitignore │ │ ├── demo.gif │ │ ├── dir-layout.png │ │ └── self.jpeg │ ├── demo_list.py │ ├── extrct_300VW.py │ ├── generate_300VW.py │ ├── generate_300W.py │ └── init_path.py ├── configs │ ├── Detector.config │ ├── LK.SGD.config │ ├── SGD.config │ ├── lk.config │ └── mix.lk.config ├── exps │ ├── basic_main.py │ ├── eval.py │ ├── lk_main.py │ └── vis.py ├── lib │ ├── config_utils │ │ ├── __init__.py │ │ ├── basic_args.py │ │ ├── configure_utils.py │ │ └── lk_args.py │ ├── datasets │ │ ├── GeneralDataset.py │ │ ├── VideoDataset.py │ │ ├── __init__.py │ │ ├── dataset_utils.py │ │ ├── file_utils.py │ │ ├── parse_utils.py │ │ └── point_meta.py │ ├── lk │ │ ├── __init__.py │ │ ├── basic_lk.py │ │ ├── basic_lk_batch.py │ │ ├── basic_utils.py │ │ └── basic_utils_batch.py │ ├── log_utils │ │ ├── __init__.py │ │ ├── logger.py │ │ ├── meter.py │ │ └── time_utils.py │ ├── models │ │ ├── LK.py │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── basic_batch.py │ │ ├── cpm_vgg16.py │ │ ├── initialization.py │ │ └── model_utils.py │ ├── optimizer │ │ ├── __init__.py │ │ └── opt_utils.py │ ├── procedure │ │ ├── __init__.py │ │ ├── basic_eval.py │ │ ├── basic_train.py │ │ ├── lk_loss.py │ │ ├── lk_train.py │ │ ├── losses.py │ │ ├── saver.py │ │ └── starts.py │ ├── pts_utils │ │ ├── __init__.py │ │ └── generation.py │ ├── utils │ │ ├── __init__.py │ │ ├── file_utils.py │ │ └── flop_benchmark.py │ └── xvision │ │ ├── __init__.py │ │ ├── common_eval.py │ │ ├── evaluation_util.py │ │ ├── transforms.py │ │ └── visualization.py └── scripts │ ├── 300W-DET.sh │ ├── AFLW-DET.sh │ ├── demo_pam.sh │ ├── demo_sbr.sh │ └── sbr_example.sh ├── SRT ├── .fonts │ └── freefont │ │ └── FreeMono.ttf ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cache_data │ ├── .gitignore │ ├── CREATE_DATA.py │ ├── GEN_300VW.py │ ├── GEN_300W.py │ ├── GEN_Human3.6M.py │ ├── GEN_MPII.py │ ├── GEN_Panoptic_XX.py │ ├── GEN_VoxCeleb2.py │ ├── GEN_WFLW.py │ ├── GEN_aflw.py │ ├── GEN_demo.py │ ├── GEN_list.py │ ├── README.md │ ├── cache │ │ ├── AFLWinfo_release.mat │ │ ├── Human3.6M-metadata.xml │ │ ├── MPII-Split │ │ │ ├── test.txt │ │ │ ├── train.txt │ │ │ └── valid.txt │ │ ├── Mugsy-Index.cache │ │ ├── aflw-sqlite.pth │ │ ├── analyze_aflw.py │ │ ├── demo-sbr.mp4 │ │ ├── demo-sbrs │ │ │ └── .gitignore │ │ ├── demo.gif │ │ ├── parallel.cpp │ │ ├── resize_mv.py │ │ ├── robust-args │ │ │ └── scale-0.2-offset-0.1-rotate-30.0-N100000.pth │ │ └── self.jpeg │ └── scripts │ │ ├── cache_for_panoptic │ │ └── .gitignore │ │ ├── download_300W.sh │ │ ├── download_MPII.py │ │ ├── download_Panoptic.py │ │ └── download_vox2.sh ├── configs │ ├── 300W-HEAT │ │ └── SBR-HEAT.300WVW.W05.config │ ├── 300W-V2 │ │ ├── ADAM.HG-300WVW.config │ │ ├── ADAM.HG-RD01.config │ │ ├── ADAM.HG-RD02.config │ │ ├── ADAM.HG-RD03.config │ │ ├── ADAM.HRNet-RD01.config │ │ ├── ADAM.HRNet.config │ │ ├── ADAM.REG.RD01.config │ │ ├── ADAM.REG.RD02.config │ │ ├── ADAM.REG.RD03.config │ │ ├── ADAM.REG.RD04.config │ │ ├── ADAM.REG.RD05.config │ │ ├── ADAM.REG.RD06.config │ │ ├── ADAM.REG.RD07.config │ │ ├── ADAM.REG.RD08.config │ │ ├── ADAM.REG.RD09.config │ │ ├── ADAM.REG.RD10.config │ │ ├── DEBUG-SBR-HEAT.config │ │ ├── SBR-HEAT.300WVW.W05.config │ │ ├── SBR-HEAT.300WVW.W10.config │ │ ├── SBR-HEAT.300WVW.W20.config │ │ └── SBR-HEAT.300WVW.W50.config │ ├── 300W │ │ ├── ADAM.HG-300W.config │ │ ├── ADAM.HG-300WVW.config │ │ ├── CPM.300W.config │ │ ├── HG.300W.config │ │ ├── HRNet.300W.config │ │ ├── RMSP.HG-300W.config │ │ ├── SBR-HEAT.300WVW.W05.config │ │ ├── SBR-HEAT.300WVW.W10.config │ │ └── SGD-CPM.300W.config │ ├── 3D-Face │ │ └── STM.DEMO.config │ ├── AFLW-V2 │ │ ├── ADAM.REG.300VW.config │ │ ├── ADAM.REG.PFACE.config │ │ ├── ADAM.REG.RD01.config │ │ ├── ADAM.REG.RD02.config │ │ ├── ADAM.REG.RD03.config │ │ ├── ADAM.REG.RD04.config │ │ ├── ADAM.REG.RD05.config │ │ ├── ADAM.REG.RD06.config │ │ ├── ADAM.REG.RD07.config │ │ ├── ADAM.REG.RD08.config │ │ ├── ADAM.REG.RD09.config │ │ ├── ADAM.REG.RD10.config │ │ ├── HG.config │ │ ├── HG.opt.config │ │ ├── HRNet.config │ │ └── HRNet.opt.config │ ├── AFLW │ │ ├── ADAM.config │ │ ├── HG.config │ │ └── RMSP.config │ ├── Mugsy-Flow │ │ ├── DISflow_fast.config │ │ ├── DISflow_medium.config │ │ ├── DISflow_ultrafast.config │ │ ├── deepflow.config │ │ ├── farneback.config │ │ ├── sparse2dense.config │ │ └── tvl1.config │ ├── Mugsy-HEAT │ │ ├── ADAM.config │ │ ├── HG-detector.config │ │ ├── RMSP.config │ │ ├── SBR.HEAT.W10.config │ │ ├── SBR.L1.W10.config │ │ ├── SBR.MSE.W10.config │ │ ├── SBT.HEAT.W05.config │ │ ├── SBT.L1.W05.config │ │ ├── SBT.MSE.W05.config │ │ └── SRT.HEAT.W05.W05.config │ ├── Mugsy-V2 │ │ ├── ADAM.HEAT-RD01.config │ │ ├── ADAM.HEAT-RD02.config │ │ ├── ADAM.HEAT-RD03.config │ │ ├── ADAM.HEAT-RD04.config │ │ ├── ADAM.HEAT-SBR.config │ │ ├── ADAM.HEAT-SBT.config │ │ ├── ADAM.HEAT-SRT.config │ │ ├── ADAM.REG-RD01.config │ │ ├── ADAM.REG-RD02.config │ │ ├── ADAM.REG-RD03.config │ │ ├── ADAM.REG-RD04.config │ │ ├── ADAM.REG-RD05.config │ │ ├── ADAM.REG-RD06.config │ │ ├── ADAM.REG-RD07.config │ │ ├── ADAM.REG-RD08.config │ │ ├── ADAM.REG-RD09.config │ │ ├── ADAM.REG-RD10.config │ │ ├── ADAM.REG-SBR.config │ │ ├── ADAM.REG-SBRSBT.config │ │ ├── ADAM.REG-SBT.config │ │ ├── ADAM.REG-SIM2.config │ │ └── ADAM.REG-SIM3.config │ ├── Mugsy-V3 │ │ └── SBR.REG.W10.config │ ├── Mugsy │ │ ├── ADAM.REG-SBR-V2.config │ │ ├── ADAM.REG-SBR.config │ │ ├── ADAM.REG-SBRSBT.config │ │ ├── ADAM.REG-SBT.config │ │ ├── ADAM.REG-detector.config │ │ ├── DEBUG │ │ │ ├── SBR.REG.DEBUGW0.config │ │ │ └── SBT.REG.DEBUGW0.config │ │ ├── REG-detector.config │ │ ├── RMSP.HG-detector.config │ │ ├── SBR.REG.L1.config │ │ ├── SBR.REG.MSE.config │ │ ├── SBR.REG.W01.config │ │ ├── SBR.REG.W02.config │ │ ├── SBR.REG.W05.config │ │ ├── SBR.REG.W10.config │ │ ├── SBR.REG.W20.config │ │ ├── SBT.REG.L1.config │ │ ├── SBT.REG.MSE.config │ │ ├── SBT.REG.W01.config │ │ ├── SBT.REG.W02.config │ │ ├── SBT.REG.W05.config │ │ ├── SBT.REG.W10.config │ │ ├── SBT.REG.W20.config │ │ ├── STM.REG.W01.W01.config │ │ ├── STM.REG.W01.W05.config │ │ ├── STM.REG.W05.W01.config │ │ ├── STM.REG.W05.W05.config │ │ ├── STM.REG.W05.W10.config │ │ ├── STM.REG.W05.W20.config │ │ ├── STM.REG.W10.W05.config │ │ ├── STM.REG.W10.W10.config │ │ ├── STM.REG.W20.W05.config │ │ └── STM.REG.W20.W10.config │ ├── Sync │ │ ├── ADAM.HG-detector.config │ │ ├── ADAM.REG-detector.config │ │ ├── HG-detector.config │ │ └── REG-detector.config │ ├── WFLW │ │ ├── ADAM.HG-WFLW.config │ │ ├── ADAM.HRNet-WFLW.config │ │ ├── ADAM.REG-SBR-300VW.config │ │ ├── ADAM.REG-SRT-PFACE.config │ │ ├── ADAM.REG.RD01.config │ │ ├── ADAM.REG.RD02.config │ │ ├── ADAM.REG.RD03.config │ │ ├── ADAM.REG.RD04.config │ │ ├── ADAM.REG.RD05.config │ │ ├── ADAM.REG.RD06.config │ │ ├── HG.config │ │ └── HRNet.config │ ├── X-300W │ │ ├── ADAM.L1.300WVW-REG.config │ │ ├── SBR.REG.300VW.W01.config │ │ ├── SBR.REG.300VW.W05.config │ │ ├── SBR.REG.300VW.W10.config │ │ ├── SBR.REG.300VW.W20.config │ │ ├── SBT.REG.PF.W01.config │ │ ├── SBT.REG.PF.W05.config │ │ ├── SBT.REG.PF.W10.config │ │ ├── SBT.REG.PF.W20.config │ │ ├── SRT.REG.PF.W01.W01.config │ │ ├── SRT.REG.PF.W05.W05.config │ │ ├── SRT.REG.PF.W05.W10.config │ │ ├── SRT.REG.PF.W10.W10.config │ │ └── SRT.REG.PF.W20.W20.config │ ├── face │ │ ├── HEAT │ │ │ ├── ADAM.HG-300W-PFaceS.config │ │ │ ├── ADAM.HG-300W.config │ │ │ ├── ADAM.HG-300WVW.config │ │ │ ├── HG.300W.config │ │ │ ├── HG.WFLW.config │ │ │ ├── RMSP.HG-300W.config │ │ │ ├── SBR-HEAT.HEAT.300VW.W01.config │ │ │ ├── SBR-HEAT.HEAT.300VW.W05.config │ │ │ ├── SBR-HEAT.HEAT.300VW.W10.config │ │ │ ├── SBR-L1.HEAT.300VW.W002.config │ │ │ ├── SBR-L1.HEAT.300VW.W01.config │ │ │ ├── SBR-L1.HEAT.300VW.W05.config │ │ │ ├── SBR.HEAT.300VW.W01.config │ │ │ ├── SBR.HEAT.300VW.W10.config │ │ │ ├── SBR.HEAT.WFLW-300VW.W10.config │ │ │ ├── SBT-HEAT.300W-PFaceS.W01.config │ │ │ └── SBT-L1.300W-PFaceS.W01.config │ │ ├── R128 │ │ │ └── RMSP.300W.config │ │ ├── R256 │ │ │ ├── HG-R3.300VW.config │ │ │ ├── MSPN-R3.300W.config │ │ │ ├── MSPN-R4.300W.config │ │ │ ├── RMSP.300W.config │ │ │ ├── RMSP.HG.300VW.config │ │ │ └── RMSP.MSPN.300W.config │ │ ├── REG │ │ │ ├── ADAM.L1.300W-REG-200.config │ │ │ ├── ADAM.L1.300W-REG-E400.config │ │ │ ├── ADAM.L1.300W-REG-Pface.config │ │ │ ├── ADAM.L1.300W-REG-PfaceS.config │ │ │ ├── ADAM.L1.300W-REG-VOX.config │ │ │ ├── ADAM.L1.300W-REG.config │ │ │ ├── ADAM.L1.300WVW-REG.config │ │ │ ├── ADAM.L1.AFLW-REG-300VW.config │ │ │ ├── ADAM.L1.AFLW-REG-VOX.config │ │ │ ├── ADAM.L1.AFLW-REG.config │ │ │ ├── ADAM.MSE.300W-REG.config │ │ │ ├── ADAM.SL1.300W-REG.config │ │ │ ├── REG.300W.config │ │ │ ├── REG.AFLW.config │ │ │ ├── REG.WFLW.config │ │ │ ├── SBR.REG.300VW.W01.config │ │ │ ├── SBR.REG.300VW.W05.config │ │ │ ├── SBR.REG.300VW.W10.config │ │ │ ├── SBR.REG.300VW.W20.config │ │ │ ├── SBR.REG.300VW.config │ │ │ ├── SBR.REG.300W-PFace.W01.config │ │ │ ├── SBR.REG.300W-PFace.W05.config │ │ │ ├── SBR.REG.300W-PFace.W10.config │ │ │ ├── SBR.REG.300W-VOX.config │ │ │ ├── SBR.REG.AFLW-PFACE.W10.config │ │ │ ├── SBR.REG.AFLW.config │ │ │ ├── SBR.REG.WFLW-300VW.W10.config │ │ │ ├── STM.REG.300W-300VW-PFace.W10.config │ │ │ ├── STM.REG.300W-PFace-NOV.W01.config │ │ │ ├── STM.REG.300W-PFace-NOV.W05.W05.config │ │ │ ├── STM.REG.300W-PFace-NOV.W05.W10.config │ │ │ ├── STM.REG.300W-PFace-NOV.W05.config │ │ │ ├── STM.REG.300W-PFace-NOV.W10.config │ │ │ ├── STM.REG.AFLW-PFace.W10.W10.config │ │ │ └── STM.REG.WFLW-PFace.W10.W10.config │ │ ├── WELL │ │ │ ├── ADAM.AFLW-REG.config │ │ │ ├── CPM.300W.config │ │ │ ├── CU.300W.config │ │ │ ├── HG.300W.config │ │ │ ├── RMSP.300W-CU.config │ │ │ ├── RMSP.300W.config │ │ │ └── SGD.300W.config │ │ └── backup │ │ │ ├── ADAM.V1.config │ │ │ ├── ADAM.V3.config │ │ │ ├── CPM.V1.config │ │ │ ├── HG.V1.config │ │ │ ├── RMSP.V1.config │ │ │ ├── RMSP.V2.config │ │ │ ├── SGD.V1.config │ │ │ └── SGD.sbr.config │ ├── iyu │ │ ├── CPM.ears.config │ │ ├── HG.ears.config │ │ ├── RMSP.ears.config │ │ └── SGD.ears.config │ └── pose │ │ ├── CPM.MPII.config │ │ ├── CU.MPII.config │ │ ├── HG.MPII.config │ │ ├── MSPN.MPII.config │ │ ├── RMSP.MPII.config │ │ └── SGD.MPII.config ├── exps │ ├── BASE-eval-image.py │ ├── BASE-eval-vis.py │ ├── BASE-main.py │ ├── PRO-vis.py │ ├── ROBUST-eval.py │ ├── SBR-main.py │ ├── STM-main.py │ ├── X-SBR-main.py │ ├── analysis-300VW.py │ ├── draw-300W.py │ ├── draw-ALL.py │ └── vis.py ├── lib │ ├── config_utils │ │ ├── __init__.py │ │ ├── basic_args_v2.py │ │ ├── configure_utils.py │ │ ├── robust_args.py │ │ ├── sbr_args_v2.py │ │ ├── share_args.py │ │ └── stm_args_v2.py │ ├── datasets │ │ ├── EvalDataset.py │ │ ├── GeneralDatasetV2.py │ │ ├── RobustDataset.py │ │ ├── STMDataset.py │ │ ├── VideoDatasetV2.py │ │ ├── WrapParallel.py │ │ ├── __init__.py │ │ ├── augmentation_utils.py │ │ ├── dataset_utils.py │ │ ├── file_utils.py │ │ ├── optflow_utils.py │ │ ├── point_meta_v1.py │ │ └── point_meta_v2.py │ ├── lk │ │ ├── __init__.py │ │ ├── basic_lk.py │ │ ├── basic_lk_batch.py │ │ ├── basic_utils.py │ │ └── basic_utils_batch.py │ ├── log_utils │ │ ├── __init__.py │ │ ├── logger.py │ │ ├── meter.py │ │ └── time_utils.py │ ├── models │ │ ├── ProCPM.py │ │ ├── ProCU.py │ │ ├── ProHG.py │ │ ├── ProHRNet.py │ │ ├── ProMSPN.py │ │ ├── ProREG.py │ │ ├── ProTemporal_HEAT.py │ │ ├── ProTemporal_REG.py │ │ ├── STM_HEAT.py │ │ ├── STM_REG.py │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── basic_batch.py │ │ ├── initialization.py │ │ ├── model_utils.py │ │ └── modules.py │ ├── multiview │ │ ├── __init__.py │ │ └── triangulate.py │ ├── optimizer │ │ ├── __init__.py │ │ ├── loss_module.py │ │ └── opt_utils.py │ ├── procedure │ │ ├── __init__.py │ │ ├── backup │ │ │ ├── temporal_loss_heatmap.py │ │ │ └── temporal_loss_regression.py │ │ ├── basic_eval_robust.py │ │ ├── basic_main_heatmap.py │ │ ├── basic_main_regression.py │ │ ├── debug_utils.py │ │ ├── losses.py │ │ ├── multiview_loss_heatmap.py │ │ ├── multiview_loss_regression.py │ │ ├── saver.py │ │ ├── sbr_main_heatmap.py │ │ ├── sbr_main_regression.py │ │ ├── starts.py │ │ ├── stm_main_heatmap.py │ │ ├── stm_main_regression.py │ │ ├── temporal_loss_heatmap.py │ │ ├── temporal_loss_regression.py │ │ ├── x_sbr_main_heatmap.py │ │ └── x_sbr_main_regression.py │ ├── pts_utils │ │ ├── __init__.py │ │ └── generation.py │ ├── sbr │ │ ├── __init__.py │ │ └── interpolate.py │ ├── utils │ │ ├── __init__.py │ │ ├── file_utils.py │ │ └── video_utils.py │ └── xvision │ │ ├── __init__.py │ │ ├── affine_utils.py │ │ ├── common_eval.py │ │ ├── evaluation_util.py │ │ ├── functional.py │ │ ├── style_trans.py │ │ ├── transforms1v.py │ │ ├── transforms2v.py │ │ ├── transforms3v.py │ │ ├── transformsImage.py │ │ ├── visualization.py │ │ ├── visualization_v2.py │ │ └── visualization_v3.py └── scripts │ ├── 300VW │ ├── HG-R3-256-P49.sh │ ├── HG-R3-256-P68.sh │ └── X-REG-300VW.sh │ ├── 300W-V2 │ ├── CPM-49.sh │ ├── CPM-68.sh │ ├── DET-HG-49.sh │ ├── DET-HG-68.sh │ ├── DET-HRNET-68.sh │ ├── REG-300W-P49.sh │ ├── REG-300W-P68.sh │ ├── SBR-HG-300VW-49.sh │ ├── SBR-REG-300VW.sh │ ├── analysis-300WVW.sh │ ├── draw-300WVW-49-F.sh │ └── draw-300WVW-49-I.sh │ ├── 300W │ ├── HEAT │ │ ├── DET-HG-49-V2.sh │ │ ├── DET-HG-49.sh │ │ ├── DET-HG-68-V2.sh │ │ ├── DET-HG-68.sh │ │ ├── SBR-HG-300VW-49-V2.sh │ │ ├── SBR-HG-300VW-49.sh │ │ ├── SBR-HG-300VW-68.sh │ │ └── SBT-HG-PF-49.sh │ ├── OK-CPM.sh │ ├── OK-CU-RMSP-V2.sh │ ├── OK-HG-RMSP-V2.sh │ ├── OK-HG-RMSP.sh │ ├── OK-MSPN-RMSP.sh │ ├── PRO-CPM-SGD.sh │ ├── PRO-HG-ADAM.sh │ ├── PRO-HG-RMSP-EVAL.sh │ ├── PRO-HG-RMSP.sh │ ├── REG │ │ ├── OK-SBR-REG-300VW.sh │ │ ├── OK-SBR-REG-PFace-S.sh │ │ ├── OK-SBR-REG-VOX.sh │ │ ├── OK-STM-REG-PFace-S.sh │ │ ├── OK-STM-REG-PFace.sh │ │ ├── OK-STM-SBR-REG-PFace-S.sh │ │ ├── OK-STM-SBR-REG-PFace.sh │ │ ├── REG-300W-E400.sh │ │ └── REG-300W.sh │ ├── SBR-DEMO-SGD.sh │ ├── SBR-HG-ADAM.sh │ ├── SBR-HG-RMSP.sh │ ├── SBR │ │ └── OK-SBR-REG-DEMO.sh │ └── eval-robust.sh │ ├── AFLW-V2 │ ├── HEAT-AFLW.sh │ ├── REG-DET.sh │ ├── REG-SBR-300VW.sh │ ├── REG-SBR-PFACE.sh │ └── REG-SRT-PFACE.sh │ ├── AFLW │ ├── HEAT-AFLW-V2.sh │ ├── HEAT-AFLW.sh │ ├── OK-REG.sh │ ├── PRO-HG-RMSP.sh │ ├── REG-AFLW.sh │ ├── REG-eval-Robust.sh │ ├── SBR-REG-300VW.sh │ └── SBR-REG-VOX.sh │ ├── MPII │ ├── DET-RMSP.sh │ ├── Eval-Robust.sh │ └── PRO-HG-RMSP.sh │ ├── Panoptic │ └── REG │ │ └── REG-L1.sh │ ├── WFLW │ ├── HEAT-DET.sh │ ├── HEAT-EVAL-VIS.sh │ ├── REG.sh │ ├── SBR-HEAT-300VW.sh │ ├── SBR-HEAT-PFACE.sh │ ├── SBR-REG-300VW.sh │ ├── SBR-REG-PFACE.sh │ └── SRT-REG-PFACE.sh │ ├── X-300W │ ├── REG-300W-P49.sh │ ├── REG-300W-P68.sh │ ├── REG-300W-SBR-300VW-P49.sh │ ├── REG-300W-SBR-300VW-P68.sh │ ├── REG-300W-SBR-PF-P49.sh │ ├── REG-300W-SBR-PF-P68.sh │ ├── REG-300W-SBR-VOX-P49.sh │ ├── REG-300W-SBR-VOX-P68.sh │ ├── REG-300W-SBT-PF-P49.sh │ ├── REG-300W-SBT-PF-P68.sh │ ├── REG-300W-SRT-PF-P49.sh │ ├── REG-300W-SRT-PF-P68.sh │ ├── REG-AFLW-SBR-300VW.sh │ ├── REG-AFLW-SBR-PF.sh │ ├── REG-AFLW-SBR-VOX.sh │ ├── REG-AFLW-SBT-PF.sh │ ├── REG-AFLW-SRT-PF.sh │ └── REG-AFLW.sh │ └── X-Mugsy │ ├── REG-DET-TEST.sh │ ├── REG-DET-VALID.sh │ └── REG-SBR-TEST.sh └── TS3 ├── README.md ├── models ├── __init__.py ├── basic_batch.py ├── flop_benchmark.py ├── initialization.py ├── layer_utils.py ├── model_utils.py ├── student_cpm.py ├── student_hg.py └── teacher.py └── test.py /.backup/ProREG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.backup/ProREG.py -------------------------------------------------------------------------------- /.backup/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.backup/clean.sh -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [D-X-Y] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.test/DEBUG.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/DEBUG.lst -------------------------------------------------------------------------------- /.test/data/18489332_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/18489332_4.jpg -------------------------------------------------------------------------------- /.test/data/18489332_4.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/18489332_4.pts -------------------------------------------------------------------------------- /.test/data/2086996835_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2086996835_5.jpg -------------------------------------------------------------------------------- /.test/data/2086996835_5.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2086996835_5.pts -------------------------------------------------------------------------------- /.test/data/237815567_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/237815567_3.jpg -------------------------------------------------------------------------------- /.test/data/237815567_3.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/237815567_3.pts -------------------------------------------------------------------------------- /.test/data/2406586388_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2406586388_3.jpg -------------------------------------------------------------------------------- /.test/data/2406586388_3.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2406586388_3.pts -------------------------------------------------------------------------------- /.test/data/2863107962_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2863107962_3.jpg -------------------------------------------------------------------------------- /.test/data/2863107962_3.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/2863107962_3.pts -------------------------------------------------------------------------------- /.test/data/3346359383_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3346359383_3.jpg -------------------------------------------------------------------------------- /.test/data/3346359383_3.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3346359383_3.pts -------------------------------------------------------------------------------- /.test/data/3854178896_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3854178896_1.jpg -------------------------------------------------------------------------------- /.test/data/3854178896_1.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3854178896_1.pts -------------------------------------------------------------------------------- /.test/data/3873491482_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3873491482_1.jpg -------------------------------------------------------------------------------- /.test/data/3873491482_1.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/3873491482_1.pts -------------------------------------------------------------------------------- /.test/data/79378097_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/79378097_5.jpg -------------------------------------------------------------------------------- /.test/data/79378097_5.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/79378097_5.pts -------------------------------------------------------------------------------- /.test/data/9545523490_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/9545523490_2.jpg -------------------------------------------------------------------------------- /.test/data/9545523490_2.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/9545523490_2.pts -------------------------------------------------------------------------------- /.test/data/cameras.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/data/cameras.pth -------------------------------------------------------------------------------- /.test/test-transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/.test/test-transformations.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/README.md -------------------------------------------------------------------------------- /SAN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/.gitignore -------------------------------------------------------------------------------- /SAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/LICENSE -------------------------------------------------------------------------------- /SAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/README.md -------------------------------------------------------------------------------- /SAN/base_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/base_cluster.py -------------------------------------------------------------------------------- /SAN/cache_data/.gitignore: -------------------------------------------------------------------------------- 1 | *.lst 2 | temp 3 | EX300.sh 4 | -------------------------------------------------------------------------------- /SAN/cache_data/AFLWinfo_release.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/AFLWinfo_release.mat -------------------------------------------------------------------------------- /SAN/cache_data/aflw_from_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/aflw_from_mat.py -------------------------------------------------------------------------------- /SAN/cache_data/cache/dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/cache/dataset.jpg -------------------------------------------------------------------------------- /SAN/cache_data/cache/figure_1_68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/cache/figure_1_68.jpg -------------------------------------------------------------------------------- /SAN/cache_data/cache/test_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/cache/test_1.jpg -------------------------------------------------------------------------------- /SAN/cache_data/cache/test_1.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/cache/test_1.pts -------------------------------------------------------------------------------- /SAN/cache_data/generate_300W.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/generate_300W.py -------------------------------------------------------------------------------- /SAN/cache_data/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/init_path.py -------------------------------------------------------------------------------- /SAN/cache_data/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/parallel.cpp -------------------------------------------------------------------------------- /SAN/cache_data/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cache_data/vis.py -------------------------------------------------------------------------------- /SAN/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/cluster.py -------------------------------------------------------------------------------- /SAN/crop_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/crop_pic.py -------------------------------------------------------------------------------- /SAN/gen_mean_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/gen_mean_face.py -------------------------------------------------------------------------------- /SAN/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/init_path.py -------------------------------------------------------------------------------- /SAN/lib/cluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/cluster/__init__.py -------------------------------------------------------------------------------- /SAN/lib/cluster/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/cluster/cluster.py -------------------------------------------------------------------------------- /SAN/lib/datasets/CycleDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/datasets/CycleDataset.py -------------------------------------------------------------------------------- /SAN/lib/datasets/GeneralDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/datasets/GeneralDataset.py -------------------------------------------------------------------------------- /SAN/lib/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/datasets/__init__.py -------------------------------------------------------------------------------- /SAN/lib/datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/datasets/dataset_utils.py -------------------------------------------------------------------------------- /SAN/lib/datasets/point_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/datasets/point_meta.py -------------------------------------------------------------------------------- /SAN/lib/debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/debug/__init__.py -------------------------------------------------------------------------------- /SAN/lib/debug/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/debug/check.py -------------------------------------------------------------------------------- /SAN/lib/debug/debug_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/debug/debug_main.py -------------------------------------------------------------------------------- /SAN/lib/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/__init__.py -------------------------------------------------------------------------------- /SAN/lib/models/basic_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/basic_batch.py -------------------------------------------------------------------------------- /SAN/lib/models/cycle_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/cycle_util.py -------------------------------------------------------------------------------- /SAN/lib/models/discriminator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/discriminator_model.py -------------------------------------------------------------------------------- /SAN/lib/models/gan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/gan_loss.py -------------------------------------------------------------------------------- /SAN/lib/models/generator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/generator_model.py -------------------------------------------------------------------------------- /SAN/lib/models/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/initialization.py -------------------------------------------------------------------------------- /SAN/lib/models/itn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/itn.py -------------------------------------------------------------------------------- /SAN/lib/models/itn_cpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/itn_cpm.py -------------------------------------------------------------------------------- /SAN/lib/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/model_utils.py -------------------------------------------------------------------------------- /SAN/lib/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/resnet.py -------------------------------------------------------------------------------- /SAN/lib/models/vgg16_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/models/vgg16_base.py -------------------------------------------------------------------------------- /SAN/lib/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/options/__init__.py -------------------------------------------------------------------------------- /SAN/lib/options/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/options/options.py -------------------------------------------------------------------------------- /SAN/lib/procedure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/procedure/__init__.py -------------------------------------------------------------------------------- /SAN/lib/procedure/evaluate_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/procedure/evaluate_detector.py -------------------------------------------------------------------------------- /SAN/lib/procedure/san_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/procedure/san_util.py -------------------------------------------------------------------------------- /SAN/lib/procedure/train_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/procedure/train_cycle.py -------------------------------------------------------------------------------- /SAN/lib/procedure/train_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/procedure/train_detector.py -------------------------------------------------------------------------------- /SAN/lib/san_vision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/san_vision/__init__.py -------------------------------------------------------------------------------- /SAN/lib/san_vision/common_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/san_vision/common_eval.py -------------------------------------------------------------------------------- /SAN/lib/san_vision/cpm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/san_vision/cpm_loss.py -------------------------------------------------------------------------------- /SAN/lib/san_vision/evaluation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/san_vision/evaluation_util.py -------------------------------------------------------------------------------- /SAN/lib/san_vision/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/san_vision/transforms.py -------------------------------------------------------------------------------- /SAN/lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/__init__.py -------------------------------------------------------------------------------- /SAN/lib/utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/box_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/config.py -------------------------------------------------------------------------------- /SAN/lib/utils/convert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/convert_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/file_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/flop_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/flop_benchmark.py -------------------------------------------------------------------------------- /SAN/lib/utils/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/image_pool.py -------------------------------------------------------------------------------- /SAN/lib/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/image_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/pts_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/pts_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/stn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/stn_utils.py -------------------------------------------------------------------------------- /SAN/lib/utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/utils/time_utils.py -------------------------------------------------------------------------------- /SAN/lib/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/visualization/__init__.py -------------------------------------------------------------------------------- /SAN/lib/visualization/draw_image_by_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/visualization/draw_image_by_points.py -------------------------------------------------------------------------------- /SAN/lib/visualization/save_error_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/visualization/save_error_image.py -------------------------------------------------------------------------------- /SAN/lib/visualization/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/lib/visualization/visualize.py -------------------------------------------------------------------------------- /SAN/san_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/san_api.py -------------------------------------------------------------------------------- /SAN/san_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/san_eval.py -------------------------------------------------------------------------------- /SAN/san_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/san_main.py -------------------------------------------------------------------------------- /SAN/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SAN/scripts/300W/300W-EVAL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W-EVAL.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_Base_Cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_Base_Cluster.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_CYCLE_0-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_CYCLE_0-1.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_CYCLE_0-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_CYCLE_0-2.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_CYCLE_1-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_CYCLE_1-2.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_CYCLE_128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_CYCLE_128.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_Cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_Cluster.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/300W_Cluster_Simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/300W_Cluster_Simple.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Gray2Other/300W_CYCLE_G2G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Gray2Other/300W_CYCLE_G2G.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Gray2Other/300W_CYCLE_G2L.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Gray2Other/300W_CYCLE_G2L.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Gray2Other/300W_CYCLE_G2O.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Gray2Other/300W_CYCLE_G2O.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Gray2Other/300W_CYCLE_G2S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Gray2Other/300W_CYCLE_G2S.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Light2Other/300W_CYCLE_L2G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Light2Other/300W_CYCLE_L2G.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Light2Other/300W_CYCLE_L2L.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Light2Other/300W_CYCLE_L2L.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Light2Other/300W_CYCLE_L2O.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Light2Other/300W_CYCLE_L2O.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Light2Other/300W_CYCLE_L2S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Light2Other/300W_CYCLE_L2S.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Light2Other/300W_VGG16_CPM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Light2Other/300W_VGG16_CPM.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Original2Other/300W_CYCLE_O2G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Original2Other/300W_CYCLE_O2G.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Original2Other/300W_CYCLE_O2L.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Original2Other/300W_CYCLE_O2L.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Original2Other/300W_CYCLE_O2O.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Original2Other/300W_CYCLE_O2O.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Original2Other/300W_CYCLE_O2S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Original2Other/300W_CYCLE_O2S.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2G.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2L.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2L.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2O.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2O.sh -------------------------------------------------------------------------------- /SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/300W/Sketch2Other/300W_CYCLE_S2S.sh -------------------------------------------------------------------------------- /SAN/scripts/AFLW/AFLW_Base_Cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/AFLW/AFLW_Base_Cluster.sh -------------------------------------------------------------------------------- /SAN/scripts/AFLW/AFLW_CYCLE_128.FRONT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/AFLW/AFLW_CYCLE_128.FRONT.sh -------------------------------------------------------------------------------- /SAN/scripts/AFLW/AFLW_CYCLE_128.FULL-EVAL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/AFLW/AFLW_CYCLE_128.FULL-EVAL.sh -------------------------------------------------------------------------------- /SAN/scripts/AFLW/AFLW_CYCLE_128.FULL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/AFLW/AFLW_CYCLE_128.FULL.sh -------------------------------------------------------------------------------- /SAN/scripts/AFLW/AFLW_Cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SAN/scripts/AFLW/AFLW_Cluster.sh -------------------------------------------------------------------------------- /SBR/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/.gitignore -------------------------------------------------------------------------------- /SBR/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/CHANGELOG.md -------------------------------------------------------------------------------- /SBR/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /SBR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/LICENSE -------------------------------------------------------------------------------- /SBR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/README.md -------------------------------------------------------------------------------- /SBR/cache_data/.gitignore: -------------------------------------------------------------------------------- 1 | *.lst 2 | temp 3 | EX300.sh 4 | -------------------------------------------------------------------------------- /SBR/cache_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/README.md -------------------------------------------------------------------------------- /SBR/cache_data/aflw_from_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/aflw_from_mat.py -------------------------------------------------------------------------------- /SBR/cache_data/cache/demo-sbr.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/cache/demo-sbr.mp4 -------------------------------------------------------------------------------- /SBR/cache_data/cache/demo-sbrs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SBR/cache_data/cache/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/cache/demo.gif -------------------------------------------------------------------------------- /SBR/cache_data/cache/dir-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/cache/dir-layout.png -------------------------------------------------------------------------------- /SBR/cache_data/cache/self.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/cache/self.jpeg -------------------------------------------------------------------------------- /SBR/cache_data/demo_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/demo_list.py -------------------------------------------------------------------------------- /SBR/cache_data/extrct_300VW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/extrct_300VW.py -------------------------------------------------------------------------------- /SBR/cache_data/generate_300VW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/generate_300VW.py -------------------------------------------------------------------------------- /SBR/cache_data/generate_300W.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/generate_300W.py -------------------------------------------------------------------------------- /SBR/cache_data/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/cache_data/init_path.py -------------------------------------------------------------------------------- /SBR/configs/Detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/configs/Detector.config -------------------------------------------------------------------------------- /SBR/configs/LK.SGD.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/configs/LK.SGD.config -------------------------------------------------------------------------------- /SBR/configs/SGD.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/configs/SGD.config -------------------------------------------------------------------------------- /SBR/configs/lk.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/configs/lk.config -------------------------------------------------------------------------------- /SBR/configs/mix.lk.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/configs/mix.lk.config -------------------------------------------------------------------------------- /SBR/exps/basic_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/exps/basic_main.py -------------------------------------------------------------------------------- /SBR/exps/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/exps/eval.py -------------------------------------------------------------------------------- /SBR/exps/lk_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/exps/lk_main.py -------------------------------------------------------------------------------- /SBR/exps/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/exps/vis.py -------------------------------------------------------------------------------- /SBR/lib/config_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/config_utils/__init__.py -------------------------------------------------------------------------------- /SBR/lib/config_utils/basic_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/config_utils/basic_args.py -------------------------------------------------------------------------------- /SBR/lib/config_utils/configure_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/config_utils/configure_utils.py -------------------------------------------------------------------------------- /SBR/lib/config_utils/lk_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/config_utils/lk_args.py -------------------------------------------------------------------------------- /SBR/lib/datasets/GeneralDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/GeneralDataset.py -------------------------------------------------------------------------------- /SBR/lib/datasets/VideoDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/VideoDataset.py -------------------------------------------------------------------------------- /SBR/lib/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/__init__.py -------------------------------------------------------------------------------- /SBR/lib/datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/dataset_utils.py -------------------------------------------------------------------------------- /SBR/lib/datasets/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/file_utils.py -------------------------------------------------------------------------------- /SBR/lib/datasets/parse_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/parse_utils.py -------------------------------------------------------------------------------- /SBR/lib/datasets/point_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/datasets/point_meta.py -------------------------------------------------------------------------------- /SBR/lib/lk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/lk/__init__.py -------------------------------------------------------------------------------- /SBR/lib/lk/basic_lk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/lk/basic_lk.py -------------------------------------------------------------------------------- /SBR/lib/lk/basic_lk_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/lk/basic_lk_batch.py -------------------------------------------------------------------------------- /SBR/lib/lk/basic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/lk/basic_utils.py -------------------------------------------------------------------------------- /SBR/lib/lk/basic_utils_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/lk/basic_utils_batch.py -------------------------------------------------------------------------------- /SBR/lib/log_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/log_utils/__init__.py -------------------------------------------------------------------------------- /SBR/lib/log_utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/log_utils/logger.py -------------------------------------------------------------------------------- /SBR/lib/log_utils/meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/log_utils/meter.py -------------------------------------------------------------------------------- /SBR/lib/log_utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/log_utils/time_utils.py -------------------------------------------------------------------------------- /SBR/lib/models/LK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/LK.py -------------------------------------------------------------------------------- /SBR/lib/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/__init__.py -------------------------------------------------------------------------------- /SBR/lib/models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/basic.py -------------------------------------------------------------------------------- /SBR/lib/models/basic_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/basic_batch.py -------------------------------------------------------------------------------- /SBR/lib/models/cpm_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/cpm_vgg16.py -------------------------------------------------------------------------------- /SBR/lib/models/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/initialization.py -------------------------------------------------------------------------------- /SBR/lib/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/models/model_utils.py -------------------------------------------------------------------------------- /SBR/lib/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/optimizer/__init__.py -------------------------------------------------------------------------------- /SBR/lib/optimizer/opt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/optimizer/opt_utils.py -------------------------------------------------------------------------------- /SBR/lib/procedure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/__init__.py -------------------------------------------------------------------------------- /SBR/lib/procedure/basic_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/basic_eval.py -------------------------------------------------------------------------------- /SBR/lib/procedure/basic_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/basic_train.py -------------------------------------------------------------------------------- /SBR/lib/procedure/lk_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/lk_loss.py -------------------------------------------------------------------------------- /SBR/lib/procedure/lk_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/lk_train.py -------------------------------------------------------------------------------- /SBR/lib/procedure/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/losses.py -------------------------------------------------------------------------------- /SBR/lib/procedure/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/saver.py -------------------------------------------------------------------------------- /SBR/lib/procedure/starts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/procedure/starts.py -------------------------------------------------------------------------------- /SBR/lib/pts_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/pts_utils/__init__.py -------------------------------------------------------------------------------- /SBR/lib/pts_utils/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/pts_utils/generation.py -------------------------------------------------------------------------------- /SBR/lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/utils/__init__.py -------------------------------------------------------------------------------- /SBR/lib/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/utils/file_utils.py -------------------------------------------------------------------------------- /SBR/lib/utils/flop_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/utils/flop_benchmark.py -------------------------------------------------------------------------------- /SBR/lib/xvision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/xvision/__init__.py -------------------------------------------------------------------------------- /SBR/lib/xvision/common_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/xvision/common_eval.py -------------------------------------------------------------------------------- /SBR/lib/xvision/evaluation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/xvision/evaluation_util.py -------------------------------------------------------------------------------- /SBR/lib/xvision/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/xvision/transforms.py -------------------------------------------------------------------------------- /SBR/lib/xvision/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/lib/xvision/visualization.py -------------------------------------------------------------------------------- /SBR/scripts/300W-DET.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/scripts/300W-DET.sh -------------------------------------------------------------------------------- /SBR/scripts/AFLW-DET.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/scripts/AFLW-DET.sh -------------------------------------------------------------------------------- /SBR/scripts/demo_pam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/scripts/demo_pam.sh -------------------------------------------------------------------------------- /SBR/scripts/demo_sbr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/scripts/demo_sbr.sh -------------------------------------------------------------------------------- /SBR/scripts/sbr_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SBR/scripts/sbr_example.sh -------------------------------------------------------------------------------- /SRT/.fonts/freefont/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/.fonts/freefont/FreeMono.ttf -------------------------------------------------------------------------------- /SRT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/.gitignore -------------------------------------------------------------------------------- /SRT/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /SRT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/LICENSE -------------------------------------------------------------------------------- /SRT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/README.md -------------------------------------------------------------------------------- /SRT/cache_data/.gitignore: -------------------------------------------------------------------------------- 1 | *.lst 2 | temp 3 | EX300.sh 4 | aflw-sqlite.pth 5 | -------------------------------------------------------------------------------- /SRT/cache_data/CREATE_DATA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/CREATE_DATA.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_300VW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_300VW.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_300W.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_300W.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_Human3.6M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_Human3.6M.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_MPII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_MPII.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_Panoptic_XX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_Panoptic_XX.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_VoxCeleb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_VoxCeleb2.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_WFLW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_WFLW.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_aflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_aflw.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_demo.py -------------------------------------------------------------------------------- /SRT/cache_data/GEN_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/GEN_list.py -------------------------------------------------------------------------------- /SRT/cache_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/README.md -------------------------------------------------------------------------------- /SRT/cache_data/cache/AFLWinfo_release.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/AFLWinfo_release.mat -------------------------------------------------------------------------------- /SRT/cache_data/cache/Human3.6M-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/Human3.6M-metadata.xml -------------------------------------------------------------------------------- /SRT/cache_data/cache/MPII-Split/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/MPII-Split/test.txt -------------------------------------------------------------------------------- /SRT/cache_data/cache/MPII-Split/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/MPII-Split/train.txt -------------------------------------------------------------------------------- /SRT/cache_data/cache/MPII-Split/valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/MPII-Split/valid.txt -------------------------------------------------------------------------------- /SRT/cache_data/cache/Mugsy-Index.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/Mugsy-Index.cache -------------------------------------------------------------------------------- /SRT/cache_data/cache/aflw-sqlite.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/aflw-sqlite.pth -------------------------------------------------------------------------------- /SRT/cache_data/cache/analyze_aflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/analyze_aflw.py -------------------------------------------------------------------------------- /SRT/cache_data/cache/demo-sbr.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/demo-sbr.mp4 -------------------------------------------------------------------------------- /SRT/cache_data/cache/demo-sbrs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SRT/cache_data/cache/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/demo.gif -------------------------------------------------------------------------------- /SRT/cache_data/cache/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/parallel.cpp -------------------------------------------------------------------------------- /SRT/cache_data/cache/resize_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/resize_mv.py -------------------------------------------------------------------------------- /SRT/cache_data/cache/robust-args/scale-0.2-offset-0.1-rotate-30.0-N100000.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/robust-args/scale-0.2-offset-0.1-rotate-30.0-N100000.pth -------------------------------------------------------------------------------- /SRT/cache_data/cache/self.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/cache/self.jpeg -------------------------------------------------------------------------------- /SRT/cache_data/scripts/cache_for_panoptic/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRT/cache_data/scripts/download_300W.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/scripts/download_300W.sh -------------------------------------------------------------------------------- /SRT/cache_data/scripts/download_MPII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/scripts/download_MPII.py -------------------------------------------------------------------------------- /SRT/cache_data/scripts/download_Panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/scripts/download_Panoptic.py -------------------------------------------------------------------------------- /SRT/cache_data/scripts/download_vox2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/cache_data/scripts/download_vox2.sh -------------------------------------------------------------------------------- /SRT/configs/300W-HEAT/SBR-HEAT.300WVW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-HEAT/SBR-HEAT.300WVW.W05.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HG-300WVW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HG-300WVW.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HG-RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HG-RD01.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HG-RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HG-RD02.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HG-RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HG-RD03.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HRNet-RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HRNet-RD01.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.HRNet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.HRNet.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD01.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD02.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD03.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD04.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD04.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD05.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD06.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD06.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD07.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD07.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD08.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD08.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD09.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD09.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/ADAM.REG.RD10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/ADAM.REG.RD10.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/DEBUG-SBR-HEAT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/DEBUG-SBR-HEAT.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/SBR-HEAT.300WVW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/SBR-HEAT.300WVW.W05.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/SBR-HEAT.300WVW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/SBR-HEAT.300WVW.W10.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/SBR-HEAT.300WVW.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/SBR-HEAT.300WVW.W20.config -------------------------------------------------------------------------------- /SRT/configs/300W-V2/SBR-HEAT.300WVW.W50.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W-V2/SBR-HEAT.300WVW.W50.config -------------------------------------------------------------------------------- /SRT/configs/300W/ADAM.HG-300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/ADAM.HG-300W.config -------------------------------------------------------------------------------- /SRT/configs/300W/ADAM.HG-300WVW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/ADAM.HG-300WVW.config -------------------------------------------------------------------------------- /SRT/configs/300W/CPM.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/CPM.300W.config -------------------------------------------------------------------------------- /SRT/configs/300W/HG.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/HG.300W.config -------------------------------------------------------------------------------- /SRT/configs/300W/HRNet.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/HRNet.300W.config -------------------------------------------------------------------------------- /SRT/configs/300W/RMSP.HG-300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/RMSP.HG-300W.config -------------------------------------------------------------------------------- /SRT/configs/300W/SBR-HEAT.300WVW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/SBR-HEAT.300WVW.W05.config -------------------------------------------------------------------------------- /SRT/configs/300W/SBR-HEAT.300WVW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/SBR-HEAT.300WVW.W10.config -------------------------------------------------------------------------------- /SRT/configs/300W/SGD-CPM.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/300W/SGD-CPM.300W.config -------------------------------------------------------------------------------- /SRT/configs/3D-Face/STM.DEMO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/3D-Face/STM.DEMO.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.300VW.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.PFACE.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.PFACE.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD01.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD02.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD03.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD04.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD04.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD05.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD06.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD06.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD07.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD07.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD08.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD08.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD09.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD09.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/ADAM.REG.RD10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/ADAM.REG.RD10.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/HG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/HG.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/HG.opt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/HG.opt.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/HRNet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/HRNet.config -------------------------------------------------------------------------------- /SRT/configs/AFLW-V2/HRNet.opt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW-V2/HRNet.opt.config -------------------------------------------------------------------------------- /SRT/configs/AFLW/ADAM.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW/ADAM.config -------------------------------------------------------------------------------- /SRT/configs/AFLW/HG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW/HG.config -------------------------------------------------------------------------------- /SRT/configs/AFLW/RMSP.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/AFLW/RMSP.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/DISflow_fast.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/DISflow_fast.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/DISflow_medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/DISflow_medium.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/DISflow_ultrafast.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/DISflow_ultrafast.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/deepflow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/deepflow.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/farneback.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/farneback.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/sparse2dense.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/sparse2dense.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-Flow/tvl1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-Flow/tvl1.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/ADAM.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/ADAM.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/HG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/HG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/RMSP.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/RMSP.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBR.HEAT.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBR.HEAT.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBR.L1.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBR.L1.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBR.MSE.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBR.MSE.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBT.HEAT.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBT.HEAT.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBT.L1.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBT.L1.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SBT.MSE.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SBT.MSE.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-HEAT/SRT.HEAT.W05.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-HEAT/SRT.HEAT.W05.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-RD01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-RD02.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-RD03.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-RD04.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-RD04.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-SBR.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-SBR.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-SBT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-SBT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.HEAT-SRT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.HEAT-SRT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD02.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD03.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD04.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD04.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD06.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD06.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD07.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD07.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD08.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD08.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD09.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD09.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-RD10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-RD10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-SBR.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-SBR.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-SBRSBT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-SBRSBT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-SBT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-SBT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-SIM2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-SIM2.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V2/ADAM.REG-SIM3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V2/ADAM.REG-SIM3.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy-V3/SBR.REG.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy-V3/SBR.REG.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/ADAM.REG-SBR-V2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/ADAM.REG-SBR-V2.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/ADAM.REG-SBR.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/ADAM.REG-SBR.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/ADAM.REG-SBRSBT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/ADAM.REG-SBRSBT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/ADAM.REG-SBT.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/ADAM.REG-SBT.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/ADAM.REG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/ADAM.REG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/DEBUG/SBR.REG.DEBUGW0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/DEBUG/SBR.REG.DEBUGW0.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/DEBUG/SBT.REG.DEBUGW0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/DEBUG/SBT.REG.DEBUGW0.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/REG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/REG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/RMSP.HG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/RMSP.HG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.L1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.L1.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.MSE.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.MSE.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.W01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.W02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.W02.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBR.REG.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBR.REG.W20.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.L1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.L1.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.MSE.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.MSE.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.W01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.W02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.W02.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/SBT.REG.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/SBT.REG.W20.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W01.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W01.W01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W01.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W01.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W05.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W05.W01.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W05.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W05.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W05.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W05.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W05.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W05.W20.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W10.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W10.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W10.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W10.W10.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W20.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W20.W05.config -------------------------------------------------------------------------------- /SRT/configs/Mugsy/STM.REG.W20.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Mugsy/STM.REG.W20.W10.config -------------------------------------------------------------------------------- /SRT/configs/Sync/ADAM.HG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Sync/ADAM.HG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Sync/ADAM.REG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Sync/ADAM.REG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Sync/HG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Sync/HG-detector.config -------------------------------------------------------------------------------- /SRT/configs/Sync/REG-detector.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/Sync/REG-detector.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.HG-WFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.HG-WFLW.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.HRNet-WFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.HRNet-WFLW.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG-SBR-300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG-SBR-300VW.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG-SRT-PFACE.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG-SRT-PFACE.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD01.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD02.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD02.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD03.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD03.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD04.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD04.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD05.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/ADAM.REG.RD06.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/ADAM.REG.RD06.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/HG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/HG.config -------------------------------------------------------------------------------- /SRT/configs/WFLW/HRNet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/WFLW/HRNet.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/ADAM.L1.300WVW-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/ADAM.L1.300WVW-REG.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBR.REG.300VW.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBR.REG.300VW.W01.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBR.REG.300VW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBR.REG.300VW.W05.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBR.REG.300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBR.REG.300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBR.REG.300VW.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBR.REG.300VW.W20.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBT.REG.PF.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBT.REG.PF.W01.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBT.REG.PF.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBT.REG.PF.W05.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBT.REG.PF.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBT.REG.PF.W10.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SBT.REG.PF.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SBT.REG.PF.W20.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SRT.REG.PF.W01.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SRT.REG.PF.W01.W01.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SRT.REG.PF.W05.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SRT.REG.PF.W05.W05.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SRT.REG.PF.W05.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SRT.REG.PF.W05.W10.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SRT.REG.PF.W10.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SRT.REG.PF.W10.W10.config -------------------------------------------------------------------------------- /SRT/configs/X-300W/SRT.REG.PF.W20.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/X-300W/SRT.REG.PF.W20.W20.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/ADAM.HG-300W-PFaceS.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/ADAM.HG-300W-PFaceS.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/ADAM.HG-300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/ADAM.HG-300W.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/ADAM.HG-300WVW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/ADAM.HG-300WVW.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/HG.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/HG.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/HG.WFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/HG.WFLW.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/RMSP.HG-300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/RMSP.HG-300W.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-HEAT.HEAT.300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W002.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W002.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR-L1.HEAT.300VW.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR.HEAT.300VW.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR.HEAT.300VW.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR.HEAT.300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR.HEAT.300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBR.HEAT.WFLW-300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBR.HEAT.WFLW-300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBT-HEAT.300W-PFaceS.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBT-HEAT.300W-PFaceS.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/HEAT/SBT-L1.300W-PFaceS.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/HEAT/SBT-L1.300W-PFaceS.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/R128/RMSP.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R128/RMSP.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/HG-R3.300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/HG-R3.300VW.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/MSPN-R3.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/MSPN-R3.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/MSPN-R4.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/MSPN-R4.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/RMSP.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/RMSP.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/RMSP.HG.300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/RMSP.HG.300VW.config -------------------------------------------------------------------------------- /SRT/configs/face/R256/RMSP.MSPN.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/R256/RMSP.MSPN.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG-200.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG-200.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG-E400.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG-E400.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG-Pface.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG-Pface.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG-PfaceS.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG-PfaceS.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG-VOX.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG-VOX.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300W-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300W-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.300WVW-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.300WVW-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.AFLW-REG-300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.AFLW-REG-300VW.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.AFLW-REG-VOX.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.AFLW-REG-VOX.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.L1.AFLW-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.L1.AFLW-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.MSE.300W-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.MSE.300W-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/ADAM.SL1.300W-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/ADAM.SL1.300W-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/REG.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/REG.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/REG.AFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/REG.AFLW.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/REG.WFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/REG.WFLW.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300VW.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300VW.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300VW.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300VW.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300VW.W20.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300VW.W20.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300VW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300VW.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300W-PFace.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300W-PFace.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300W-PFace.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300W-PFace.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300W-PFace.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300W-PFace.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.300W-VOX.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.300W-VOX.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.AFLW-PFACE.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.AFLW-PFACE.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.AFLW.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.AFLW.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/SBR.REG.WFLW-300VW.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/SBR.REG.WFLW-300VW.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-300VW-PFace.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-300VW-PFace.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W01.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W01.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W05.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.300W-PFace-NOV.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.AFLW-PFace.W10.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.AFLW-PFace.W10.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/REG/STM.REG.WFLW-PFace.W10.W10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/REG/STM.REG.WFLW-PFace.W10.W10.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/ADAM.AFLW-REG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/ADAM.AFLW-REG.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/CPM.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/CPM.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/CU.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/CU.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/HG.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/HG.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/RMSP.300W-CU.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/RMSP.300W-CU.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/RMSP.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/RMSP.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/WELL/SGD.300W.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/WELL/SGD.300W.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/ADAM.V1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/ADAM.V1.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/ADAM.V3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/ADAM.V3.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/CPM.V1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/CPM.V1.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/HG.V1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/HG.V1.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/RMSP.V1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/RMSP.V1.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/RMSP.V2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/RMSP.V2.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/SGD.V1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/SGD.V1.config -------------------------------------------------------------------------------- /SRT/configs/face/backup/SGD.sbr.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/face/backup/SGD.sbr.config -------------------------------------------------------------------------------- /SRT/configs/iyu/CPM.ears.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/iyu/CPM.ears.config -------------------------------------------------------------------------------- /SRT/configs/iyu/HG.ears.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/iyu/HG.ears.config -------------------------------------------------------------------------------- /SRT/configs/iyu/RMSP.ears.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/iyu/RMSP.ears.config -------------------------------------------------------------------------------- /SRT/configs/iyu/SGD.ears.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/iyu/SGD.ears.config -------------------------------------------------------------------------------- /SRT/configs/pose/CPM.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/CPM.MPII.config -------------------------------------------------------------------------------- /SRT/configs/pose/CU.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/CU.MPII.config -------------------------------------------------------------------------------- /SRT/configs/pose/HG.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/HG.MPII.config -------------------------------------------------------------------------------- /SRT/configs/pose/MSPN.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/MSPN.MPII.config -------------------------------------------------------------------------------- /SRT/configs/pose/RMSP.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/RMSP.MPII.config -------------------------------------------------------------------------------- /SRT/configs/pose/SGD.MPII.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/configs/pose/SGD.MPII.config -------------------------------------------------------------------------------- /SRT/exps/BASE-eval-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/BASE-eval-image.py -------------------------------------------------------------------------------- /SRT/exps/BASE-eval-vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/BASE-eval-vis.py -------------------------------------------------------------------------------- /SRT/exps/BASE-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/BASE-main.py -------------------------------------------------------------------------------- /SRT/exps/PRO-vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/PRO-vis.py -------------------------------------------------------------------------------- /SRT/exps/ROBUST-eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/ROBUST-eval.py -------------------------------------------------------------------------------- /SRT/exps/SBR-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/SBR-main.py -------------------------------------------------------------------------------- /SRT/exps/STM-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/STM-main.py -------------------------------------------------------------------------------- /SRT/exps/X-SBR-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/X-SBR-main.py -------------------------------------------------------------------------------- /SRT/exps/analysis-300VW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/analysis-300VW.py -------------------------------------------------------------------------------- /SRT/exps/draw-300W.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/draw-300W.py -------------------------------------------------------------------------------- /SRT/exps/draw-ALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/draw-ALL.py -------------------------------------------------------------------------------- /SRT/exps/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/exps/vis.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/__init__.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/basic_args_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/basic_args_v2.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/configure_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/configure_utils.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/robust_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/robust_args.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/sbr_args_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/sbr_args_v2.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/share_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/share_args.py -------------------------------------------------------------------------------- /SRT/lib/config_utils/stm_args_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/config_utils/stm_args_v2.py -------------------------------------------------------------------------------- /SRT/lib/datasets/EvalDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/EvalDataset.py -------------------------------------------------------------------------------- /SRT/lib/datasets/GeneralDatasetV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/GeneralDatasetV2.py -------------------------------------------------------------------------------- /SRT/lib/datasets/RobustDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/RobustDataset.py -------------------------------------------------------------------------------- /SRT/lib/datasets/STMDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/STMDataset.py -------------------------------------------------------------------------------- /SRT/lib/datasets/VideoDatasetV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/VideoDatasetV2.py -------------------------------------------------------------------------------- /SRT/lib/datasets/WrapParallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/WrapParallel.py -------------------------------------------------------------------------------- /SRT/lib/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/__init__.py -------------------------------------------------------------------------------- /SRT/lib/datasets/augmentation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/augmentation_utils.py -------------------------------------------------------------------------------- /SRT/lib/datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/dataset_utils.py -------------------------------------------------------------------------------- /SRT/lib/datasets/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/file_utils.py -------------------------------------------------------------------------------- /SRT/lib/datasets/optflow_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/optflow_utils.py -------------------------------------------------------------------------------- /SRT/lib/datasets/point_meta_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/point_meta_v1.py -------------------------------------------------------------------------------- /SRT/lib/datasets/point_meta_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/datasets/point_meta_v2.py -------------------------------------------------------------------------------- /SRT/lib/lk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/lk/__init__.py -------------------------------------------------------------------------------- /SRT/lib/lk/basic_lk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/lk/basic_lk.py -------------------------------------------------------------------------------- /SRT/lib/lk/basic_lk_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/lk/basic_lk_batch.py -------------------------------------------------------------------------------- /SRT/lib/lk/basic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/lk/basic_utils.py -------------------------------------------------------------------------------- /SRT/lib/lk/basic_utils_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/lk/basic_utils_batch.py -------------------------------------------------------------------------------- /SRT/lib/log_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/log_utils/__init__.py -------------------------------------------------------------------------------- /SRT/lib/log_utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/log_utils/logger.py -------------------------------------------------------------------------------- /SRT/lib/log_utils/meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/log_utils/meter.py -------------------------------------------------------------------------------- /SRT/lib/log_utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/log_utils/time_utils.py -------------------------------------------------------------------------------- /SRT/lib/models/ProCPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProCPM.py -------------------------------------------------------------------------------- /SRT/lib/models/ProCU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProCU.py -------------------------------------------------------------------------------- /SRT/lib/models/ProHG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProHG.py -------------------------------------------------------------------------------- /SRT/lib/models/ProHRNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProHRNet.py -------------------------------------------------------------------------------- /SRT/lib/models/ProMSPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProMSPN.py -------------------------------------------------------------------------------- /SRT/lib/models/ProREG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProREG.py -------------------------------------------------------------------------------- /SRT/lib/models/ProTemporal_HEAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProTemporal_HEAT.py -------------------------------------------------------------------------------- /SRT/lib/models/ProTemporal_REG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/ProTemporal_REG.py -------------------------------------------------------------------------------- /SRT/lib/models/STM_HEAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/STM_HEAT.py -------------------------------------------------------------------------------- /SRT/lib/models/STM_REG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/STM_REG.py -------------------------------------------------------------------------------- /SRT/lib/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/__init__.py -------------------------------------------------------------------------------- /SRT/lib/models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/basic.py -------------------------------------------------------------------------------- /SRT/lib/models/basic_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/basic_batch.py -------------------------------------------------------------------------------- /SRT/lib/models/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/initialization.py -------------------------------------------------------------------------------- /SRT/lib/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/model_utils.py -------------------------------------------------------------------------------- /SRT/lib/models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/models/modules.py -------------------------------------------------------------------------------- /SRT/lib/multiview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/multiview/__init__.py -------------------------------------------------------------------------------- /SRT/lib/multiview/triangulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/multiview/triangulate.py -------------------------------------------------------------------------------- /SRT/lib/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/optimizer/__init__.py -------------------------------------------------------------------------------- /SRT/lib/optimizer/loss_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/optimizer/loss_module.py -------------------------------------------------------------------------------- /SRT/lib/optimizer/opt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/optimizer/opt_utils.py -------------------------------------------------------------------------------- /SRT/lib/procedure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/__init__.py -------------------------------------------------------------------------------- /SRT/lib/procedure/backup/temporal_loss_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/backup/temporal_loss_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/backup/temporal_loss_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/backup/temporal_loss_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/basic_eval_robust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/basic_eval_robust.py -------------------------------------------------------------------------------- /SRT/lib/procedure/basic_main_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/basic_main_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/basic_main_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/basic_main_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/debug_utils.py -------------------------------------------------------------------------------- /SRT/lib/procedure/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/losses.py -------------------------------------------------------------------------------- /SRT/lib/procedure/multiview_loss_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/multiview_loss_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/multiview_loss_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/multiview_loss_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/saver.py -------------------------------------------------------------------------------- /SRT/lib/procedure/sbr_main_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/sbr_main_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/sbr_main_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/sbr_main_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/starts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/starts.py -------------------------------------------------------------------------------- /SRT/lib/procedure/stm_main_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/stm_main_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/stm_main_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/stm_main_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/temporal_loss_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/temporal_loss_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/temporal_loss_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/temporal_loss_regression.py -------------------------------------------------------------------------------- /SRT/lib/procedure/x_sbr_main_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/x_sbr_main_heatmap.py -------------------------------------------------------------------------------- /SRT/lib/procedure/x_sbr_main_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/procedure/x_sbr_main_regression.py -------------------------------------------------------------------------------- /SRT/lib/pts_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/pts_utils/__init__.py -------------------------------------------------------------------------------- /SRT/lib/pts_utils/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/pts_utils/generation.py -------------------------------------------------------------------------------- /SRT/lib/sbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/sbr/__init__.py -------------------------------------------------------------------------------- /SRT/lib/sbr/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/sbr/interpolate.py -------------------------------------------------------------------------------- /SRT/lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/utils/__init__.py -------------------------------------------------------------------------------- /SRT/lib/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/utils/file_utils.py -------------------------------------------------------------------------------- /SRT/lib/utils/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/utils/video_utils.py -------------------------------------------------------------------------------- /SRT/lib/xvision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/__init__.py -------------------------------------------------------------------------------- /SRT/lib/xvision/affine_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/affine_utils.py -------------------------------------------------------------------------------- /SRT/lib/xvision/common_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/common_eval.py -------------------------------------------------------------------------------- /SRT/lib/xvision/evaluation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/evaluation_util.py -------------------------------------------------------------------------------- /SRT/lib/xvision/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/functional.py -------------------------------------------------------------------------------- /SRT/lib/xvision/style_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/style_trans.py -------------------------------------------------------------------------------- /SRT/lib/xvision/transforms1v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/transforms1v.py -------------------------------------------------------------------------------- /SRT/lib/xvision/transforms2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/transforms2v.py -------------------------------------------------------------------------------- /SRT/lib/xvision/transforms3v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/transforms3v.py -------------------------------------------------------------------------------- /SRT/lib/xvision/transformsImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/transformsImage.py -------------------------------------------------------------------------------- /SRT/lib/xvision/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/visualization.py -------------------------------------------------------------------------------- /SRT/lib/xvision/visualization_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/visualization_v2.py -------------------------------------------------------------------------------- /SRT/lib/xvision/visualization_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/lib/xvision/visualization_v3.py -------------------------------------------------------------------------------- /SRT/scripts/300VW/HG-R3-256-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300VW/HG-R3-256-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/300VW/HG-R3-256-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300VW/HG-R3-256-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/300VW/X-REG-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300VW/X-REG-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/CPM-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/CPM-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/CPM-68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/CPM-68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/DET-HG-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/DET-HG-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/DET-HG-68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/DET-HG-68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/DET-HRNET-68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/DET-HRNET-68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/REG-300W-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/REG-300W-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/REG-300W-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/REG-300W-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/SBR-HG-300VW-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/SBR-HG-300VW-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/SBR-REG-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/SBR-REG-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/analysis-300WVW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/analysis-300WVW.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/draw-300WVW-49-F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/draw-300WVW-49-F.sh -------------------------------------------------------------------------------- /SRT/scripts/300W-V2/draw-300WVW-49-I.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W-V2/draw-300WVW-49-I.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/DET-HG-49-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/DET-HG-49-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/DET-HG-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/DET-HG-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/DET-HG-68-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/DET-HG-68-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/DET-HG-68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/DET-HG-68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/SBR-HG-300VW-49-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/SBR-HG-300VW-49-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/SBR-HG-300VW-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/SBR-HG-300VW-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/SBR-HG-300VW-68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/SBR-HG-300VW-68.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/HEAT/SBT-HG-PF-49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/HEAT/SBT-HG-PF-49.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/OK-CPM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/OK-CPM.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/OK-CU-RMSP-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/OK-CU-RMSP-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/OK-HG-RMSP-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/OK-HG-RMSP-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/OK-HG-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/OK-HG-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/OK-MSPN-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/OK-MSPN-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/PRO-CPM-SGD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/PRO-CPM-SGD.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/PRO-HG-ADAM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/PRO-HG-ADAM.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/PRO-HG-RMSP-EVAL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/PRO-HG-RMSP-EVAL.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/PRO-HG-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/PRO-HG-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-SBR-REG-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-SBR-REG-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-SBR-REG-PFace-S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-SBR-REG-PFace-S.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-SBR-REG-VOX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-SBR-REG-VOX.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-STM-REG-PFace-S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-STM-REG-PFace-S.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-STM-REG-PFace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-STM-REG-PFace.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-STM-SBR-REG-PFace-S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-STM-SBR-REG-PFace-S.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/OK-STM-SBR-REG-PFace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/OK-STM-SBR-REG-PFace.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/REG-300W-E400.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/REG-300W-E400.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/REG/REG-300W.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/REG/REG-300W.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/SBR-DEMO-SGD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/SBR-DEMO-SGD.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/SBR-HG-ADAM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/SBR-HG-ADAM.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/SBR-HG-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/SBR-HG-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/SBR/OK-SBR-REG-DEMO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/SBR/OK-SBR-REG-DEMO.sh -------------------------------------------------------------------------------- /SRT/scripts/300W/eval-robust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/300W/eval-robust.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW-V2/HEAT-AFLW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW-V2/HEAT-AFLW.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW-V2/REG-DET.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW-V2/REG-DET.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW-V2/REG-SBR-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW-V2/REG-SBR-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW-V2/REG-SBR-PFACE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW-V2/REG-SBR-PFACE.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW-V2/REG-SRT-PFACE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW-V2/REG-SRT-PFACE.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/HEAT-AFLW-V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/HEAT-AFLW-V2.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/HEAT-AFLW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/HEAT-AFLW.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/OK-REG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/OK-REG.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/PRO-HG-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/PRO-HG-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/REG-AFLW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/REG-AFLW.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/REG-eval-Robust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/REG-eval-Robust.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/SBR-REG-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/SBR-REG-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/AFLW/SBR-REG-VOX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/AFLW/SBR-REG-VOX.sh -------------------------------------------------------------------------------- /SRT/scripts/MPII/DET-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/MPII/DET-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/MPII/Eval-Robust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/MPII/Eval-Robust.sh -------------------------------------------------------------------------------- /SRT/scripts/MPII/PRO-HG-RMSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/MPII/PRO-HG-RMSP.sh -------------------------------------------------------------------------------- /SRT/scripts/Panoptic/REG/REG-L1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/Panoptic/REG/REG-L1.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/HEAT-DET.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/HEAT-DET.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/HEAT-EVAL-VIS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/HEAT-EVAL-VIS.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/REG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/REG.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/SBR-HEAT-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/SBR-HEAT-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/SBR-HEAT-PFACE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/SBR-HEAT-PFACE.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/SBR-REG-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/SBR-REG-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/SBR-REG-PFACE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/SBR-REG-PFACE.sh -------------------------------------------------------------------------------- /SRT/scripts/WFLW/SRT-REG-PFACE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/WFLW/SRT-REG-PFACE.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-300VW-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-300VW-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-300VW-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-300VW-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-PF-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-PF-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-PF-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-PF-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-VOX-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-VOX-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBR-VOX-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBR-VOX-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBT-PF-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBT-PF-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SBT-PF-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SBT-PF-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SRT-PF-P49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SRT-PF-P49.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-300W-SRT-PF-P68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-300W-SRT-PF-P68.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW-SBR-300VW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW-SBR-300VW.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW-SBR-PF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW-SBR-PF.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW-SBR-VOX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW-SBR-VOX.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW-SBT-PF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW-SBT-PF.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW-SRT-PF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW-SRT-PF.sh -------------------------------------------------------------------------------- /SRT/scripts/X-300W/REG-AFLW.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-300W/REG-AFLW.sh -------------------------------------------------------------------------------- /SRT/scripts/X-Mugsy/REG-DET-TEST.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-Mugsy/REG-DET-TEST.sh -------------------------------------------------------------------------------- /SRT/scripts/X-Mugsy/REG-DET-VALID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-Mugsy/REG-DET-VALID.sh -------------------------------------------------------------------------------- /SRT/scripts/X-Mugsy/REG-SBR-TEST.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/SRT/scripts/X-Mugsy/REG-SBR-TEST.sh -------------------------------------------------------------------------------- /TS3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/README.md -------------------------------------------------------------------------------- /TS3/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/__init__.py -------------------------------------------------------------------------------- /TS3/models/basic_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/basic_batch.py -------------------------------------------------------------------------------- /TS3/models/flop_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/flop_benchmark.py -------------------------------------------------------------------------------- /TS3/models/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/initialization.py -------------------------------------------------------------------------------- /TS3/models/layer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/layer_utils.py -------------------------------------------------------------------------------- /TS3/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/model_utils.py -------------------------------------------------------------------------------- /TS3/models/student_cpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/student_cpm.py -------------------------------------------------------------------------------- /TS3/models/student_hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/student_hg.py -------------------------------------------------------------------------------- /TS3/models/teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/models/teacher.py -------------------------------------------------------------------------------- /TS3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-X-Y/landmark-detection/HEAD/TS3/test.py --------------------------------------------------------------------------------