├── .circleci └── config.yml ├── .dev_scripts ├── benchmark │ ├── benchmark_cfg.yaml │ ├── benchmark_cfg_flops_speed.yaml │ ├── benchmark_regression.py │ ├── benchmark_regression_cfg_tmpl.yaml │ ├── dummy_dataset_cfg.yaml │ ├── flops_test.py │ └── speed_test.py └── github │ ├── update_copyright.py │ └── update_model_index.py ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── error-report.md │ ├── feature_request.md │ ├── general_questions.md │ └── reimplementation_questions.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── deploy.yml │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── CITATION.cff ├── MANIFEST.in ├── README.md ├── configs ├── Hand_dataset │ └── HTC_hand_dataset_608x480.py ├── Head_dataset │ └── HTC_head_dataset_608x480.py ├── ISBI2023_dataset │ └── HTC_ISBI2023_dataset_608x480.py └── _base_ │ ├── datasets │ ├── Hand_dataset.py │ ├── Head_dataset.py │ └── ISBI2023.py │ └── default_runtime.py ├── docker ├── Dockerfile └── serve │ ├── Dockerfile │ ├── Dockerfile_mmcls │ ├── config.properties │ └── entrypoint.sh ├── docs ├── en │ ├── Makefile │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── images │ │ │ └── mmpose-logo.png │ ├── api.rst │ ├── benchmark.md │ ├── changelog.md │ ├── collect.py │ ├── conf.py │ ├── data_preparation.md │ ├── faq.md │ ├── getting_started.md │ ├── imgs │ │ └── acc_curve.png │ ├── index.rst │ ├── inference_speed_summary.md │ ├── install.md │ ├── language.md │ ├── make.bat │ ├── merge_docs.sh │ ├── papers │ │ ├── algorithms │ │ │ ├── associative_embedding.md │ │ │ ├── awingloss.md │ │ │ ├── cpm.md │ │ │ ├── dark.md │ │ │ ├── deeppose.md │ │ │ ├── higherhrnet.md │ │ │ ├── hmr.md │ │ │ ├── hourglass.md │ │ │ ├── hrnet.md │ │ │ ├── hrnetv2.md │ │ │ ├── internet.md │ │ │ ├── litehrnet.md │ │ │ ├── mspn.md │ │ │ ├── posewarper.md │ │ │ ├── rsn.md │ │ │ ├── scnet.md │ │ │ ├── simplebaseline2d.md │ │ │ ├── simplebaseline3d.md │ │ │ ├── softwingloss.md │ │ │ ├── udp.md │ │ │ ├── videopose3d.md │ │ │ ├── vipnas.md │ │ │ ├── voxelpose.md │ │ │ └── wingloss.md │ │ ├── backbones │ │ │ ├── alexnet.md │ │ │ ├── cpm.md │ │ │ ├── higherhrnet.md │ │ │ ├── hourglass.md │ │ │ ├── hrnet.md │ │ │ ├── hrnetv2.md │ │ │ ├── litehrnet.md │ │ │ ├── mobilenetv2.md │ │ │ ├── mspn.md │ │ │ ├── resnest.md │ │ │ ├── resnet.md │ │ │ ├── resnetv1d.md │ │ │ ├── resnext.md │ │ │ ├── rsn.md │ │ │ ├── scnet.md │ │ │ ├── seresnet.md │ │ │ ├── shufflenetv1.md │ │ │ ├── shufflenetv2.md │ │ │ ├── vgg.md │ │ │ └── vipnas.md │ │ ├── datasets │ │ │ ├── 300w.md │ │ │ ├── aflw.md │ │ │ ├── aic.md │ │ │ ├── animalpose.md │ │ │ ├── ap10k.md │ │ │ ├── atrw.md │ │ │ ├── coco.md │ │ │ ├── coco_wholebody.md │ │ │ ├── coco_wholebody_face.md │ │ │ ├── coco_wholebody_hand.md │ │ │ ├── cofw.md │ │ │ ├── crowdpose.md │ │ │ ├── deepfashion.md │ │ │ ├── fly.md │ │ │ ├── freihand.md │ │ │ ├── h36m.md │ │ │ ├── halpe.md │ │ │ ├── horse10.md │ │ │ ├── interhand.md │ │ │ ├── jhmdb.md │ │ │ ├── locust.md │ │ │ ├── macaque.md │ │ │ ├── mhp.md │ │ │ ├── mpi_inf_3dhp.md │ │ │ ├── mpii.md │ │ │ ├── mpii_trb.md │ │ │ ├── ochuman.md │ │ │ ├── onehand10k.md │ │ │ ├── panoptic.md │ │ │ ├── panoptic_body3d.md │ │ │ ├── posetrack18.md │ │ │ ├── rhd.md │ │ │ ├── wflw.md │ │ │ └── zebra.md │ │ └── techniques │ │ │ ├── albumentations.md │ │ │ ├── awingloss.md │ │ │ ├── dark.md │ │ │ ├── fp16.md │ │ │ ├── softwingloss.md │ │ │ ├── udp.md │ │ │ └── wingloss.md │ ├── stats.py │ ├── tasks │ │ ├── 2d_animal_keypoint.md │ │ ├── 2d_body_keypoint.md │ │ ├── 2d_face_keypoint.md │ │ ├── 2d_fashion_landmark.md │ │ ├── 2d_hand_keypoint.md │ │ ├── 2d_wholebody_keypoint.md │ │ ├── 3d_body_keypoint.md │ │ ├── 3d_body_mesh.md │ │ └── 3d_hand_keypoint.md │ ├── tutorials │ │ ├── 0_config.md │ │ ├── 1_finetune.md │ │ ├── 2_new_dataset.md │ │ ├── 3_data_pipeline.md │ │ ├── 4_new_modules.md │ │ ├── 5_export_model.md │ │ └── 6_customize_runtime.md │ └── useful_tools.md └── zh_cn │ ├── Makefile │ ├── _static │ ├── css │ │ └── readthedocs.css │ └── images │ │ └── mmpose-logo.png │ ├── api.rst │ ├── benchmark.md │ ├── collect.py │ ├── conf.py │ ├── data_preparation.md │ ├── faq.md │ ├── getting_started.md │ ├── index.rst │ ├── inference_speed_summary.md │ ├── install.md │ ├── language.md │ ├── make.bat │ ├── merge_docs.sh │ ├── stats.py │ ├── tasks │ ├── 2d_animal_keypoint.md │ ├── 2d_body_keypoint.md │ ├── 2d_face_keypoint.md │ ├── 2d_fashion_landmark.md │ ├── 2d_hand_keypoint.md │ ├── 2d_wholebody_keypoint.md │ ├── 3d_body_keypoint.md │ ├── 3d_body_mesh.md │ └── 3d_hand_keypoint.md │ ├── tutorials │ ├── 0_config.md │ ├── 1_finetune.md │ ├── 2_new_dataset.md │ ├── 3_data_pipeline.md │ ├── 4_new_modules.md │ ├── 5_export_model.md │ └── 6_customize_runtime.md │ └── useful_tools.md ├── mmpose ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── inference_3d.py │ ├── inference_tracking.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── camera │ │ ├── __init__.py │ │ ├── camera_base.py │ │ ├── single_camera.py │ │ └── single_camera_torch.py │ ├── distributed_wrapper.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── bottom_up_eval.py │ │ ├── eval_hooks.py │ │ ├── mesh_eval.py │ │ ├── pose3d_eval.py │ │ └── top_down_eval.py │ ├── fp16 │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── hooks.py │ │ └── utils.py │ ├── optimizer │ │ ├── __init__.py │ │ └── builder.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── group.py │ │ ├── nms.py │ │ ├── one_euro_filter.py │ │ └── post_transforms.py │ ├── utils │ │ ├── __init__.py │ │ ├── dist_utils.py │ │ └── regularizations.py │ └── visualization │ │ ├── __init__.py │ │ ├── effects.py │ │ └── image.py ├── datasets │ ├── __init__.py │ ├── builder.py │ ├── dataset_info.py │ ├── dataset_wrappers.py │ ├── datasets │ │ ├── __init__.py │ │ ├── animal │ │ │ ├── __init__.py │ │ │ ├── animal_ap10k_dataset.py │ │ │ ├── animal_atrw_dataset.py │ │ │ ├── animal_base_dataset.py │ │ │ ├── animal_fly_dataset.py │ │ │ ├── animal_horse10_dataset.py │ │ │ ├── animal_locust_dataset.py │ │ │ ├── animal_macaque_dataset.py │ │ │ ├── animal_pose_dataset.py │ │ │ └── animal_zebra_dataset.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── kpt_2d_sview_rgb_img_bottom_up_dataset.py │ │ │ ├── kpt_2d_sview_rgb_img_top_down_dataset.py │ │ │ ├── kpt_2d_sview_rgb_vid_top_down_dataset.py │ │ │ ├── kpt_3d_mview_rgb_img_direct_dataset.py │ │ │ ├── kpt_3d_sview_kpt_2d_dataset.py │ │ │ └── kpt_3d_sview_rgb_img_top_down_dataset.py │ │ ├── body3d │ │ │ ├── Head3d_mview_dataset.py │ │ │ ├── Head3d_mview_dataset_2d.py │ │ │ ├── Head_3d_dataset.py │ │ │ ├── __init__.py │ │ │ ├── body3d_base_dataset.py │ │ │ ├── body3d_h36m_dataset.py │ │ │ ├── body3d_mpi_inf_3dhp_dataset.py │ │ │ ├── body3d_mview_direct_panoptic_dataset.py │ │ │ └── body3d_semi_supervision_dataset.py │ │ ├── bottom_up │ │ │ ├── __init__.py │ │ │ ├── bottom_up_aic.py │ │ │ ├── bottom_up_base_dataset.py │ │ │ ├── bottom_up_coco.py │ │ │ ├── bottom_up_coco_wholebody.py │ │ │ ├── bottom_up_crowdpose.py │ │ │ └── bottom_up_mhp.py │ │ ├── face │ │ │ ├── __init__.py │ │ │ ├── face_300w_dataset.py │ │ │ ├── face_aflw_dataset.py │ │ │ ├── face_base_dataset.py │ │ │ ├── face_coco_wholebody_dataset.py │ │ │ ├── face_cofw_dataset.py │ │ │ └── face_wflw_dataset.py │ │ ├── fashion │ │ │ ├── __init__.py │ │ │ ├── deepfashion_dataset.py │ │ │ └── fashion_base_dataset.py │ │ ├── hand │ │ │ ├── __init__.py │ │ │ ├── freihand_dataset.py │ │ │ ├── hand_base_dataset.py │ │ │ ├── hand_coco_wholebody_dataset.py │ │ │ ├── interhand2d_dataset.py │ │ │ ├── interhand3d_dataset.py │ │ │ ├── onehand10k_dataset.py │ │ │ ├── panoptic_hand2d_dataset.py │ │ │ └── rhd2d_dataset.py │ │ ├── mesh │ │ │ ├── __init__.py │ │ │ ├── mesh_adv_dataset.py │ │ │ ├── mesh_base_dataset.py │ │ │ ├── mesh_h36m_dataset.py │ │ │ ├── mesh_mix_dataset.py │ │ │ └── mosh_dataset.py │ │ └── top_down │ │ │ ├── __init__.py │ │ │ ├── topdown_aic_dataset.py │ │ │ ├── topdown_base_dataset.py │ │ │ ├── topdown_coco_dataset.py │ │ │ ├── topdown_coco_wholebody_dataset.py │ │ │ ├── topdown_crowdpose_dataset.py │ │ │ ├── topdown_h36m_dataset.py │ │ │ ├── topdown_halpe_dataset.py │ │ │ ├── topdown_hand_dataset.py │ │ │ ├── topdown_head_dataset.py │ │ │ ├── topdown_isbi2023_dataset.py │ │ │ ├── topdown_jhmdb_dataset.py │ │ │ ├── topdown_mhp_dataset.py │ │ │ ├── topdown_mpii_dataset.py │ │ │ ├── topdown_mpii_trb_dataset.py │ │ │ ├── topdown_ochuman_dataset.py │ │ │ ├── topdown_posetrack18_dataset.py │ │ │ └── topdown_posetrack18_video_dataset.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── bottom_up_transform.py │ │ ├── hand_transform.py │ │ ├── loading.py │ │ ├── mesh_transform.py │ │ ├── pose3d_transform.py │ │ ├── shared_transform.py │ │ ├── top_down_transform.py │ │ └── volume_transform.py │ ├── registry.py │ └── samplers │ │ ├── __init__.py │ │ └── distributed_sampler.py ├── deprecated.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── Hybrid_Transformer_CNN.py │ │ ├── __init__.py │ │ ├── base_backbone.py │ │ ├── resnet.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── channel_shuffle.py │ │ │ ├── inverted_residual.py │ │ │ ├── make_divisible.py │ │ │ ├── se_layer.py │ │ │ └── utils.py │ ├── builder.py │ ├── detectors │ │ ├── __init__.py │ │ ├── associative_embedding.py │ │ ├── base.py │ │ ├── interhand_3d.py │ │ ├── mesh.py │ │ ├── pose_lifter.py │ │ ├── posewarper.py │ │ ├── top_down.py │ │ ├── top_down_2head_neck.py │ │ └── voxelpose.py │ ├── heads │ │ ├── __init__.py │ │ ├── ae_higher_resolution_head.py │ │ ├── ae_multi_stage_head.py │ │ ├── ae_simple_head.py │ │ ├── deconv_head.py │ │ ├── deeppose_regression_head.py │ │ ├── hmr_head.py │ │ ├── interhand_3d_head.py │ │ ├── temporal_regression_head.py │ │ ├── topdown_convhead_heatmap.py │ │ ├── topdown_distance_deconvhead.py │ │ ├── topdown_heatmap_base_head.py │ │ ├── topdown_heatmap_multi_stage_head.py │ │ ├── topdown_heatmap_simple_head.py │ │ ├── vipnas_heatmap_simple_head.py │ │ └── voxelpose_head.py │ ├── losses │ │ ├── __init__.py │ │ ├── classfication_loss.py │ │ ├── heatmap_loss.py │ │ ├── mesh_loss.py │ │ ├── mse_loss.py │ │ ├── multi_loss_factory.py │ │ └── regression_loss.py │ ├── misc │ │ ├── __init__.py │ │ ├── discriminator.py │ │ └── misc.py │ ├── necks │ │ ├── Deconv_fpn_neck.py │ │ ├── __init__.py │ │ └── gap_neck.py │ ├── registry.py │ └── utils │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── ckpt_convert.py │ │ ├── embed.py │ │ ├── filters.py │ │ ├── geometry.py │ │ ├── helpers.py │ │ ├── misc.py │ │ ├── ops.py │ │ ├── shape_convert.py │ │ ├── smpl.py │ │ ├── transformer.py │ │ └── up_conv_block.py ├── ops │ ├── __init__.py │ ├── encoding.py │ └── wrappers.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ ├── hooks.py │ ├── logger.py │ ├── setup_env.py │ └── timer.py └── version.py ├── model-index.yml ├── pytest.ini ├── requirements.txt ├── requirements ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── Hybrid_Transformer_CNN.png ├── Multiresolution_learning_HTC.png ├── Table1.PNG └── Table2.PNG ├── setup.cfg ├── setup.py ├── test.sh ├── tests ├── __init__.py ├── data │ ├── 300w │ │ ├── indoor_020.png │ │ ├── indoor_029.png │ │ └── test_300w.json │ ├── aflw │ │ ├── image04476.jpg │ │ ├── image22568.jpg │ │ └── test_aflw.json │ ├── aic │ │ ├── 054d9ce9201beffc76e5ff2169d2af2f027002ca.jpg │ │ ├── fa436c914fe4a8ec1ec5474af4d3820b84d17561.jpg │ │ ├── ff945ae2e729f24eea992814639d59b3bdec8bd8.jpg │ │ └── test_aic.json │ ├── animalpose │ │ ├── ca110.jpeg │ │ ├── ho105.jpeg │ │ └── test_animalpose.json │ ├── ap10k │ │ ├── 000000000004.jpg │ │ ├── 000000037516.jpg │ │ └── test_ap10k.json │ ├── atrw │ │ ├── 000061.jpg │ │ ├── 003464.jpg │ │ └── test_atrw.json │ ├── coco │ │ ├── 000000000785.jpg │ │ ├── 000000040083.jpg │ │ ├── 000000196141.jpg │ │ ├── 000000197388.jpg │ │ ├── test_coco.json │ │ ├── test_coco_det_AP_H_56.json │ │ └── test_coco_wholebody.json │ ├── cofw │ │ ├── 001766.jpg │ │ ├── 001805.jpg │ │ └── test_cofw.json │ ├── crowdpose │ │ ├── 103319.jpg │ │ ├── 106848.jpg │ │ ├── test_crowdpose.json │ │ └── test_crowdpose_det_AP_40.json │ ├── fld │ │ ├── img_00000128.jpg │ │ ├── img_00000132.jpg │ │ └── test_fld.json │ ├── fly │ │ ├── 1400.jpg │ │ ├── 1450.jpg │ │ └── test_fly.json │ ├── freihand │ │ ├── 00000355.jpg │ │ ├── 00017620.jpg │ │ ├── 00032915.jpg │ │ ├── 00050180.jpg │ │ ├── 00065475.jpg │ │ ├── 00082740.jpg │ │ ├── 00098035.jpg │ │ ├── 00115300.jpg │ │ └── test_freihand.json │ ├── h36m │ │ ├── BF_IUV_gt │ │ │ ├── S1_Directions_1.54138969_000001_467_466.png │ │ │ ├── S5_SittingDown.54138969_002061_478_619.png │ │ │ ├── S7_Greeting.55011271_000396_365_433.png │ │ │ └── S8_WalkDog_1.55011271_000026_592_382.png │ │ ├── S1_Directions_1.54138969_000001.jpg │ │ ├── S5_SittingDown.54138969_002061.jpg │ │ ├── S7_Greeting.55011271_000396.jpg │ │ ├── S8_WalkDog_1.55011271_000026.jpg │ │ ├── cameras.pkl │ │ ├── h36m_coco.json │ │ ├── test_h36m.npz │ │ ├── test_h36m_2d_detection.npy │ │ └── test_h36m_body3d.npz │ ├── halpe │ │ └── test_halpe.json │ ├── horse10 │ │ ├── 0244.png │ │ ├── 0292.png │ │ ├── 0465.png │ │ └── test_horse10.json │ ├── interhand2.6m │ │ ├── image2017.jpg │ │ ├── image29590.jpg │ │ ├── image44669.jpg │ │ ├── image69148.jpg │ │ ├── test_interhand2.6m_camera.json │ │ ├── test_interhand2.6m_data.json │ │ └── test_interhand2.6m_joint_3d.json │ ├── jhmdb │ │ ├── Frisbee_catch_f_cm_np1_ri_med_0 │ │ │ └── 00001.png │ │ ├── Frisbee_catch_f_cm_np1_ri_med_1 │ │ │ └── 00001.png │ │ ├── Goalkeeper_Training_Day_@_7_catch_f_cm_np1_ri_med_0 │ │ │ └── 00001.png │ │ └── test_jhmdb_sub1.json │ ├── locust │ │ ├── 630.jpg │ │ ├── 650.jpg │ │ └── test_locust.json │ ├── macaque │ │ ├── PRI_1473.jpg │ │ ├── d47f1b1ee9d3217e.jpg │ │ └── test_macaque.json │ ├── mhp │ │ ├── 10084.jpg │ │ ├── 10112.jpg │ │ └── test_mhp.json │ ├── mosh │ │ └── test_mosh.npz │ ├── mpi_inf_3dhp │ │ ├── S4_Seq2_Cam0_001033.jpg │ │ ├── S8_Seq1_Cam8_002165.jpg │ │ ├── TS1_002001.jpg │ │ ├── TS2_001850.jpg │ │ ├── cameras_test.pkl │ │ ├── cameras_train.pkl │ │ ├── test_3dhp_test.npz │ │ └── test_3dhp_train.npz │ ├── mpii │ │ ├── 004645041.jpg │ │ ├── 005808361.jpg │ │ ├── 051423444.jpg │ │ ├── 052475643.jpg │ │ ├── 060754485.jpg │ │ ├── test_mpii.json │ │ └── test_mpii_trb.json │ ├── ochuman │ │ ├── 000817.jpg │ │ ├── 003799.jpg │ │ ├── 003896.jpg │ │ └── test_ochuman.json │ ├── onehand10k │ │ ├── 1402.jpg │ │ ├── 33.jpg │ │ ├── 784.jpg │ │ ├── 9.jpg │ │ └── test_onehand10k.json │ ├── panoptic │ │ ├── 005880453_01_l.jpg │ │ ├── 005880453_01_r.jpg │ │ ├── ex2_2.flv_000040_l.jpg │ │ ├── ex2_2.flv_000040_r.jpg │ │ └── test_panoptic.json │ ├── panoptic_body3d │ │ ├── 160906_band1 │ │ │ ├── calibration_160906_band1.json │ │ │ └── hdPose3d_stage1_coco19 │ │ │ │ ├── body3DScene_00000168.json │ │ │ │ └── body3DScene_00000169.json │ │ └── 160906_band2 │ │ │ ├── calibration_160906_band2.json │ │ │ └── hdPose3d_stage1_coco19 │ │ │ ├── body3DScene_00000139.json │ │ │ └── body3DScene_00000140.json │ ├── posetrack18 │ │ ├── annotations │ │ │ ├── test_posetrack18_human_detections.json │ │ │ ├── test_posetrack18_val.json │ │ │ └── val │ │ │ │ ├── 003418_mpii_test.json │ │ │ │ ├── 009473_mpii_test.json │ │ │ │ └── 012834_mpii_test.json │ │ ├── images │ │ │ └── val │ │ │ │ ├── 003418_mpii_test │ │ │ │ └── 000000.jpg │ │ │ │ ├── 009473_mpii_test │ │ │ │ └── 000000.jpg │ │ │ │ └── 012834_mpii_test │ │ │ │ └── 000000.jpg │ │ └── mask │ │ │ └── val │ │ │ ├── 003418_mpii_test │ │ │ └── 000000.jpg │ │ │ ├── 009473_mpii_test │ │ │ └── 000000.jpg │ │ │ └── 012834_mpii_test │ │ │ └── 000000.jpg │ ├── rhd │ │ ├── 00111.png │ │ ├── 01111.png │ │ ├── 11111.png │ │ └── test_rhd.json │ ├── smpl │ │ └── smpl_mean_params.npz │ ├── wflw │ │ ├── 36_Football_americanfootball_ball_36_415.jpg │ │ ├── 7_Cheering_Cheering_7_16.jpg │ │ └── test_wflw.json │ └── zebra │ │ ├── 810.jpg │ │ ├── 850.jpg │ │ └── test_zebra.json ├── test_apis │ ├── test_inference.py │ ├── test_inference_3d.py │ └── test_inference_tracking.py ├── test_backbones │ ├── test_alexnet.py │ ├── test_backbones_utils.py │ ├── test_cpm.py │ ├── test_hourglass.py │ ├── test_hrnet.py │ ├── test_litehrnet.py │ ├── test_mobilenet_v2.py │ ├── test_mobilenet_v3.py │ ├── test_mspn.py │ ├── test_regnet.py │ ├── test_resnest.py │ ├── test_resnet.py │ ├── test_resnext.py │ ├── test_rsn.py │ ├── test_scnet.py │ ├── test_seresnet.py │ ├── test_seresnext.py │ ├── test_shufflenet_v1.py │ ├── test_shufflenet_v2.py │ ├── test_tcn.py │ ├── test_v2v_net.py │ ├── test_vgg.py │ ├── test_vipnas_mbv3.py │ └── test_vipnas_resnet.py ├── test_backward_compatibility │ ├── test_dataset_info_compatibility │ │ ├── test_animal_dataset_compatibility.py │ │ ├── test_body3d_dataset_compatibility.py │ │ ├── test_bottom_up_dataset_compatibility.py │ │ ├── test_deprecated_dataset_base.py │ │ ├── test_face_dataset_compatibility.py │ │ ├── test_fashion_dataset_compatibility.py │ │ ├── test_hand_dataset_compatibility.py │ │ ├── test_inference_compatibility.py │ │ └── test_top_down_dataset_compatibility.py │ ├── test_eval_hook_compatibility.py │ └── test_registry_compatibility.py ├── test_compose.py ├── test_config.py ├── test_datasets │ ├── test_animal_dataset.py │ ├── test_body3d_dataset.py │ ├── test_bottom_up_dataset.py │ ├── test_dataset_info.py │ ├── test_dataset_wrapper.py │ ├── test_face_dataset.py │ ├── test_fashion_dataset.py │ ├── test_hand_dataset.py │ ├── test_mesh_dataset.py │ └── test_top_down_dataset.py ├── test_eval_hook.py ├── test_evaluation │ ├── test_bottom_up_eval.py │ ├── test_mesh_eval.py │ ├── test_pose3d_eval.py │ └── test_top_down_eval.py ├── test_external │ └── test_smpl.py ├── test_losses │ ├── test_bottom_up_losses.py │ ├── test_classification_loss.py │ ├── test_mesh_losses.py │ ├── test_regression_losses.py │ └── test_top_down_losses.py ├── test_models │ ├── test_bottom_up_forward.py │ ├── test_bottom_up_head.py │ ├── test_interhand_3d_forward.py │ ├── test_interhand_3d_head.py │ ├── test_layer.py │ ├── test_mesh_forward.py │ ├── test_mesh_head.py │ ├── test_multitask_forward.py │ ├── test_pose_lifter_forward.py │ ├── test_temporal_regression_head.py │ ├── test_top_down_forward.py │ ├── test_top_down_head.py │ └── test_voxelpose.py ├── test_necks │ ├── test_gap_neck.py │ └── test_posewarper_neck.py ├── test_onnx.py ├── test_optimizer.py ├── test_pipelines │ ├── test_bottom_up_pipelines.py │ ├── test_hand_transform.py │ ├── test_mesh_pipelines.py │ ├── test_pose3d_transform.py │ ├── test_shared_transform.py │ └── test_top_down_pipelines.py ├── test_post_processing.py ├── test_post_processing │ ├── test_filter.py │ ├── test_group.py │ └── test_nms.py ├── test_regularization.py ├── test_utils.py ├── test_version.py ├── test_visualization.py └── utils │ ├── data_utils.py │ └── mesh_utils.py ├── tools ├── analysis │ ├── analyze_logs.py │ ├── benchmark_inference.py │ ├── benchmark_processing.py │ ├── get_flops.py │ └── print_config.py ├── dataset │ ├── h36m_to_coco.py │ ├── mat2json.py │ ├── parse_animalpose_dataset.py │ ├── parse_cofw_dataset.py │ ├── parse_deepposekit_dataset.py │ ├── parse_macaquepose_dataset.py │ ├── preprocess_h36m.py │ └── preprocess_mpi_inf_3dhp.py ├── deployment │ ├── mmpose2torchserve.py │ ├── mmpose_handler.py │ ├── pytorch2onnx.py │ └── test_torchserver.py ├── dist_test.sh ├── dist_train.sh ├── misc │ ├── keypoints2coco_without_mmdet.py │ └── publish_model.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── train.py └── webcam │ ├── README.md │ ├── configs │ ├── background │ │ ├── README.md │ │ └── background.py │ ├── examples │ │ ├── README.md │ │ ├── pose_estimation.py │ │ └── test_camera.py │ ├── eyes │ │ ├── README.md │ │ └── eyes.py │ ├── face_swap │ │ ├── README.md │ │ └── face_swap.py │ ├── meow_dwen_dwen │ │ ├── README.md │ │ ├── meow_dwen_dwen.py │ │ └── resource-info.json │ ├── newyear │ │ ├── README.md │ │ └── new_year.py │ ├── supersaiyan │ │ ├── README.md │ │ └── saiyan.py │ └── valentinemagic │ │ ├── README.md │ │ └── valentinemagic.py │ ├── docs │ ├── example_cn.md │ └── get_started_cn.md │ ├── run_webcam.py │ └── webcam_apis │ ├── __init__.py │ ├── nodes │ ├── __init__.py │ ├── builder.py │ ├── faceswap_node.py │ ├── frame_drawing_node.py │ ├── frame_effect_node.py │ ├── helper_node.py │ ├── mmdet_node.py │ ├── mmpose_node.py │ ├── node.py │ ├── valentinemagic_node.py │ └── xdwendwen_node.py │ ├── utils │ ├── __init__.py │ ├── buffer.py │ ├── event.py │ ├── message.py │ ├── misc.py │ └── pose.py │ └── webcam_runner.py └── train.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dev_scripts/benchmark/benchmark_cfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/benchmark_cfg.yaml -------------------------------------------------------------------------------- /.dev_scripts/benchmark/benchmark_cfg_flops_speed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/benchmark_cfg_flops_speed.yaml -------------------------------------------------------------------------------- /.dev_scripts/benchmark/benchmark_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/benchmark_regression.py -------------------------------------------------------------------------------- /.dev_scripts/benchmark/benchmark_regression_cfg_tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/benchmark_regression_cfg_tmpl.yaml -------------------------------------------------------------------------------- /.dev_scripts/benchmark/dummy_dataset_cfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/dummy_dataset_cfg.yaml -------------------------------------------------------------------------------- /.dev_scripts/benchmark/flops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/flops_test.py -------------------------------------------------------------------------------- /.dev_scripts/benchmark/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/benchmark/speed_test.py -------------------------------------------------------------------------------- /.dev_scripts/github/update_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/github/update_copyright.py -------------------------------------------------------------------------------- /.dev_scripts/github/update_model_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.dev_scripts/github/update_model_index.py -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/ISSUE_TEMPLATE/general_questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reimplementation_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/ISSUE_TEMPLATE/reimplementation_questions.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/CITATION.cff -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/README.md -------------------------------------------------------------------------------- /configs/Hand_dataset/HTC_hand_dataset_608x480.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/Hand_dataset/HTC_hand_dataset_608x480.py -------------------------------------------------------------------------------- /configs/Head_dataset/HTC_head_dataset_608x480.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/Head_dataset/HTC_head_dataset_608x480.py -------------------------------------------------------------------------------- /configs/ISBI2023_dataset/HTC_ISBI2023_dataset_608x480.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/ISBI2023_dataset/HTC_ISBI2023_dataset_608x480.py -------------------------------------------------------------------------------- /configs/_base_/datasets/Hand_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/_base_/datasets/Hand_dataset.py -------------------------------------------------------------------------------- /configs/_base_/datasets/Head_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/_base_/datasets/Head_dataset.py -------------------------------------------------------------------------------- /configs/_base_/datasets/ISBI2023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/_base_/datasets/ISBI2023.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docker/serve/Dockerfile -------------------------------------------------------------------------------- /docker/serve/Dockerfile_mmcls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docker/serve/Dockerfile_mmcls -------------------------------------------------------------------------------- /docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docker/serve/config.properties -------------------------------------------------------------------------------- /docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/en/_static/images/mmpose-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/_static/images/mmpose-logo.png -------------------------------------------------------------------------------- /docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/api.rst -------------------------------------------------------------------------------- /docs/en/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/benchmark.md -------------------------------------------------------------------------------- /docs/en/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/changelog.md -------------------------------------------------------------------------------- /docs/en/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/collect.py -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/data_preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/data_preparation.md -------------------------------------------------------------------------------- /docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/faq.md -------------------------------------------------------------------------------- /docs/en/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/getting_started.md -------------------------------------------------------------------------------- /docs/en/imgs/acc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/imgs/acc_curve.png -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/inference_speed_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/inference_speed_summary.md -------------------------------------------------------------------------------- /docs/en/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/install.md -------------------------------------------------------------------------------- /docs/en/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/language.md -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/merge_docs.sh -------------------------------------------------------------------------------- /docs/en/papers/algorithms/associative_embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/associative_embedding.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/awingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/awingloss.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/cpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/cpm.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/dark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/dark.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/deeppose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/deeppose.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/higherhrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/higherhrnet.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/hmr.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/hourglass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/hourglass.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/hrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/hrnet.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/hrnetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/hrnetv2.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/internet.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/litehrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/litehrnet.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/mspn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/mspn.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/posewarper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/posewarper.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/rsn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/rsn.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/scnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/scnet.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/simplebaseline2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/simplebaseline2d.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/simplebaseline3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/simplebaseline3d.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/softwingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/softwingloss.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/udp.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/videopose3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/videopose3d.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/vipnas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/vipnas.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/voxelpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/voxelpose.md -------------------------------------------------------------------------------- /docs/en/papers/algorithms/wingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/algorithms/wingloss.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/alexnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/alexnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/cpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/cpm.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/higherhrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/higherhrnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/hourglass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/hourglass.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/hrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/hrnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/hrnetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/hrnetv2.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/litehrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/litehrnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/mobilenetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/mobilenetv2.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/mspn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/mspn.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/resnest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/resnest.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/resnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/resnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/resnetv1d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/resnetv1d.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/resnext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/resnext.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/rsn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/rsn.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/scnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/scnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/seresnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/seresnet.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/shufflenetv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/shufflenetv1.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/shufflenetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/shufflenetv2.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/vgg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/vgg.md -------------------------------------------------------------------------------- /docs/en/papers/backbones/vipnas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/backbones/vipnas.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/300w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/300w.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/aflw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/aflw.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/aic.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/animalpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/animalpose.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/ap10k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/ap10k.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/atrw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/atrw.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/coco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/coco.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/coco_wholebody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/coco_wholebody.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/coco_wholebody_face.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/coco_wholebody_face.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/coco_wholebody_hand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/coco_wholebody_hand.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/cofw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/cofw.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/crowdpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/crowdpose.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/deepfashion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/deepfashion.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/fly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/fly.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/freihand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/freihand.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/h36m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/h36m.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/halpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/halpe.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/horse10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/horse10.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/interhand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/interhand.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/jhmdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/jhmdb.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/locust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/locust.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/macaque.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/macaque.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/mhp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/mhp.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/mpi_inf_3dhp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/mpi_inf_3dhp.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/mpii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/mpii.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/mpii_trb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/mpii_trb.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/ochuman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/ochuman.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/onehand10k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/onehand10k.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/panoptic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/panoptic.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/panoptic_body3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/panoptic_body3d.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/posetrack18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/posetrack18.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/rhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/rhd.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/wflw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/wflw.md -------------------------------------------------------------------------------- /docs/en/papers/datasets/zebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/datasets/zebra.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/albumentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/albumentations.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/awingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/awingloss.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/dark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/dark.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/fp16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/fp16.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/softwingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/softwingloss.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/udp.md -------------------------------------------------------------------------------- /docs/en/papers/techniques/wingloss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/papers/techniques/wingloss.md -------------------------------------------------------------------------------- /docs/en/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/stats.py -------------------------------------------------------------------------------- /docs/en/tasks/2d_animal_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_animal_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/2d_body_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_body_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/2d_face_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_face_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/2d_fashion_landmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_fashion_landmark.md -------------------------------------------------------------------------------- /docs/en/tasks/2d_hand_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_hand_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/2d_wholebody_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/2d_wholebody_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/3d_body_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/3d_body_keypoint.md -------------------------------------------------------------------------------- /docs/en/tasks/3d_body_mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/3d_body_mesh.md -------------------------------------------------------------------------------- /docs/en/tasks/3d_hand_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tasks/3d_hand_keypoint.md -------------------------------------------------------------------------------- /docs/en/tutorials/0_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/0_config.md -------------------------------------------------------------------------------- /docs/en/tutorials/1_finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/1_finetune.md -------------------------------------------------------------------------------- /docs/en/tutorials/2_new_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/2_new_dataset.md -------------------------------------------------------------------------------- /docs/en/tutorials/3_data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/3_data_pipeline.md -------------------------------------------------------------------------------- /docs/en/tutorials/4_new_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/4_new_modules.md -------------------------------------------------------------------------------- /docs/en/tutorials/5_export_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/5_export_model.md -------------------------------------------------------------------------------- /docs/en/tutorials/6_customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/tutorials/6_customize_runtime.md -------------------------------------------------------------------------------- /docs/en/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/en/useful_tools.md -------------------------------------------------------------------------------- /docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /docs/zh_cn/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/zh_cn/_static/images/mmpose-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/_static/images/mmpose-logo.png -------------------------------------------------------------------------------- /docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /docs/zh_cn/benchmark.md: -------------------------------------------------------------------------------- 1 | # 基准测试 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/collect.py -------------------------------------------------------------------------------- /docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /docs/zh_cn/data_preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/data_preparation.md -------------------------------------------------------------------------------- /docs/zh_cn/faq.md: -------------------------------------------------------------------------------- 1 | # 常见问题 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/getting_started.md -------------------------------------------------------------------------------- /docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/inference_speed_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/inference_speed_summary.md -------------------------------------------------------------------------------- /docs/zh_cn/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/install.md -------------------------------------------------------------------------------- /docs/zh_cn/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/language.md -------------------------------------------------------------------------------- /docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /docs/zh_cn/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/merge_docs.sh -------------------------------------------------------------------------------- /docs/zh_cn/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/stats.py -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_animal_keypoint.md: -------------------------------------------------------------------------------- 1 | # 2D动物关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_body_keypoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tasks/2d_body_keypoint.md -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_face_keypoint.md: -------------------------------------------------------------------------------- 1 | # 2D人脸关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_fashion_landmark.md: -------------------------------------------------------------------------------- 1 | # 2D服装关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_hand_keypoint.md: -------------------------------------------------------------------------------- 1 | # 2D手部关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/2d_wholebody_keypoint.md: -------------------------------------------------------------------------------- 1 | # 2D全身人体关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/3d_body_keypoint.md: -------------------------------------------------------------------------------- 1 | # 3D人体关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/3d_body_mesh.md: -------------------------------------------------------------------------------- 1 | # 3D人体网格模型数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tasks/3d_hand_keypoint.md: -------------------------------------------------------------------------------- 1 | # 3D手部关键点数据集 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/0_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/0_config.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/1_finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/1_finetune.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/2_new_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/2_new_dataset.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/3_data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/3_data_pipeline.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/4_new_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/4_new_modules.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/5_export_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/docs/zh_cn/tutorials/5_export_model.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorials/6_customize_runtime.md: -------------------------------------------------------------------------------- 1 | # 教程 6: 自定义运行时设置 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /docs/zh_cn/useful_tools.md: -------------------------------------------------------------------------------- 1 | # 常用工具 2 | 3 | 内容建设中…… 4 | -------------------------------------------------------------------------------- /mmpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/__init__.py -------------------------------------------------------------------------------- /mmpose/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/__init__.py -------------------------------------------------------------------------------- /mmpose/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/inference.py -------------------------------------------------------------------------------- /mmpose/apis/inference_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/inference_3d.py -------------------------------------------------------------------------------- /mmpose/apis/inference_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/inference_tracking.py -------------------------------------------------------------------------------- /mmpose/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/test.py -------------------------------------------------------------------------------- /mmpose/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/apis/train.py -------------------------------------------------------------------------------- /mmpose/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/__init__.py -------------------------------------------------------------------------------- /mmpose/core/camera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/camera/__init__.py -------------------------------------------------------------------------------- /mmpose/core/camera/camera_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/camera/camera_base.py -------------------------------------------------------------------------------- /mmpose/core/camera/single_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/camera/single_camera.py -------------------------------------------------------------------------------- /mmpose/core/camera/single_camera_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/camera/single_camera_torch.py -------------------------------------------------------------------------------- /mmpose/core/distributed_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/distributed_wrapper.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/bottom_up_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/bottom_up_eval.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/mesh_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/mesh_eval.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/pose3d_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/pose3d_eval.py -------------------------------------------------------------------------------- /mmpose/core/evaluation/top_down_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/evaluation/top_down_eval.py -------------------------------------------------------------------------------- /mmpose/core/fp16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/fp16/__init__.py -------------------------------------------------------------------------------- /mmpose/core/fp16/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/fp16/decorators.py -------------------------------------------------------------------------------- /mmpose/core/fp16/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/fp16/hooks.py -------------------------------------------------------------------------------- /mmpose/core/fp16/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/fp16/utils.py -------------------------------------------------------------------------------- /mmpose/core/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/optimizer/__init__.py -------------------------------------------------------------------------------- /mmpose/core/optimizer/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/optimizer/builder.py -------------------------------------------------------------------------------- /mmpose/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmpose/core/post_processing/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/post_processing/group.py -------------------------------------------------------------------------------- /mmpose/core/post_processing/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/post_processing/nms.py -------------------------------------------------------------------------------- /mmpose/core/post_processing/one_euro_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/post_processing/one_euro_filter.py -------------------------------------------------------------------------------- /mmpose/core/post_processing/post_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/post_processing/post_transforms.py -------------------------------------------------------------------------------- /mmpose/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmpose/core/utils/regularizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/utils/regularizations.py -------------------------------------------------------------------------------- /mmpose/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/visualization/__init__.py -------------------------------------------------------------------------------- /mmpose/core/visualization/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/visualization/effects.py -------------------------------------------------------------------------------- /mmpose/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/core/visualization/image.py -------------------------------------------------------------------------------- /mmpose/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/builder.py -------------------------------------------------------------------------------- /mmpose/datasets/dataset_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/dataset_info.py -------------------------------------------------------------------------------- /mmpose/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_ap10k_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_ap10k_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_atrw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_atrw_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_fly_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_fly_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_horse10_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_horse10_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_locust_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_locust_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_macaque_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_macaque_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_pose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_pose_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/animal/animal_zebra_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/animal/animal_zebra_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_2d_sview_rgb_img_bottom_up_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_2d_sview_rgb_img_bottom_up_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_2d_sview_rgb_img_top_down_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_2d_sview_rgb_img_top_down_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_2d_sview_rgb_vid_top_down_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_2d_sview_rgb_vid_top_down_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_3d_mview_rgb_img_direct_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_3d_mview_rgb_img_direct_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_3d_sview_kpt_2d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_3d_sview_kpt_2d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/base/kpt_3d_sview_rgb_img_top_down_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/base/kpt_3d_sview_rgb_img_top_down_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/Head3d_mview_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/Head3d_mview_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/Head3d_mview_dataset_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/Head3d_mview_dataset_2d.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/Head_3d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/Head_3d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/body3d_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/body3d_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/body3d_h36m_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/body3d_h36m_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/body3d_mpi_inf_3dhp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/body3d_mpi_inf_3dhp_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/body3d_mview_direct_panoptic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/body3d_mview_direct_panoptic_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/body3d/body3d_semi_supervision_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/body3d/body3d_semi_supervision_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_aic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_aic.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_coco.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_coco_wholebody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_coco_wholebody.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_crowdpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_crowdpose.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/bottom_up/bottom_up_mhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/bottom_up/bottom_up_mhp.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_300w_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_300w_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_aflw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_aflw_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_coco_wholebody_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_coco_wholebody_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_cofw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_cofw_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/face/face_wflw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/face/face_wflw_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/fashion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/fashion/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/fashion/deepfashion_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/fashion/deepfashion_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/fashion/fashion_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/fashion/fashion_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/freihand_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/freihand_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/hand_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/hand_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/hand_coco_wholebody_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/hand_coco_wholebody_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/interhand2d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/interhand2d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/interhand3d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/interhand3d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/onehand10k_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/onehand10k_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/panoptic_hand2d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/panoptic_hand2d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/hand/rhd2d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/hand/rhd2d_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/mesh_adv_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/mesh_adv_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/mesh_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/mesh_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/mesh_h36m_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/mesh_h36m_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/mesh_mix_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/mesh_mix_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/mesh/mosh_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/mesh/mosh_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_aic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_aic_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_base_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_coco_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_coco_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_coco_wholebody_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_coco_wholebody_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_crowdpose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_crowdpose_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_h36m_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_h36m_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_halpe_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_halpe_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_hand_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_hand_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_head_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_head_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_isbi2023_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_isbi2023_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_jhmdb_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_jhmdb_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_mhp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_mhp_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_mpii_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_mpii_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_mpii_trb_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_mpii_trb_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_ochuman_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_ochuman_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_posetrack18_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_posetrack18_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/datasets/top_down/topdown_posetrack18_video_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/datasets/top_down/topdown_posetrack18_video_dataset.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/bottom_up_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/bottom_up_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/hand_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/hand_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/mesh_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/mesh_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/pose3d_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/pose3d_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/shared_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/shared_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/top_down_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/top_down_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/pipelines/volume_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/pipelines/volume_transform.py -------------------------------------------------------------------------------- /mmpose/datasets/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/registry.py -------------------------------------------------------------------------------- /mmpose/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmpose/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /mmpose/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/deprecated.py -------------------------------------------------------------------------------- /mmpose/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/__init__.py -------------------------------------------------------------------------------- /mmpose/models/backbones/Hybrid_Transformer_CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/Hybrid_Transformer_CNN.py -------------------------------------------------------------------------------- /mmpose/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmpose/models/backbones/base_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/base_backbone.py -------------------------------------------------------------------------------- /mmpose/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/channel_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/channel_shuffle.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/make_divisible.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/se_layer.py -------------------------------------------------------------------------------- /mmpose/models/backbones/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/backbones/utils/utils.py -------------------------------------------------------------------------------- /mmpose/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/builder.py -------------------------------------------------------------------------------- /mmpose/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmpose/models/detectors/associative_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/associative_embedding.py -------------------------------------------------------------------------------- /mmpose/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/base.py -------------------------------------------------------------------------------- /mmpose/models/detectors/interhand_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/interhand_3d.py -------------------------------------------------------------------------------- /mmpose/models/detectors/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/mesh.py -------------------------------------------------------------------------------- /mmpose/models/detectors/pose_lifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/pose_lifter.py -------------------------------------------------------------------------------- /mmpose/models/detectors/posewarper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/posewarper.py -------------------------------------------------------------------------------- /mmpose/models/detectors/top_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/top_down.py -------------------------------------------------------------------------------- /mmpose/models/detectors/top_down_2head_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/top_down_2head_neck.py -------------------------------------------------------------------------------- /mmpose/models/detectors/voxelpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/detectors/voxelpose.py -------------------------------------------------------------------------------- /mmpose/models/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/__init__.py -------------------------------------------------------------------------------- /mmpose/models/heads/ae_higher_resolution_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/ae_higher_resolution_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/ae_multi_stage_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/ae_multi_stage_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/ae_simple_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/ae_simple_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/deconv_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/deconv_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/deeppose_regression_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/deeppose_regression_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/hmr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/hmr_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/interhand_3d_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/interhand_3d_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/temporal_regression_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/temporal_regression_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/topdown_convhead_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/topdown_convhead_heatmap.py -------------------------------------------------------------------------------- /mmpose/models/heads/topdown_distance_deconvhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/topdown_distance_deconvhead.py -------------------------------------------------------------------------------- /mmpose/models/heads/topdown_heatmap_base_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/topdown_heatmap_base_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/topdown_heatmap_multi_stage_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/topdown_heatmap_multi_stage_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/topdown_heatmap_simple_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/topdown_heatmap_simple_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/vipnas_heatmap_simple_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/vipnas_heatmap_simple_head.py -------------------------------------------------------------------------------- /mmpose/models/heads/voxelpose_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/heads/voxelpose_head.py -------------------------------------------------------------------------------- /mmpose/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/__init__.py -------------------------------------------------------------------------------- /mmpose/models/losses/classfication_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/classfication_loss.py -------------------------------------------------------------------------------- /mmpose/models/losses/heatmap_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/heatmap_loss.py -------------------------------------------------------------------------------- /mmpose/models/losses/mesh_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/mesh_loss.py -------------------------------------------------------------------------------- /mmpose/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmpose/models/losses/multi_loss_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/multi_loss_factory.py -------------------------------------------------------------------------------- /mmpose/models/losses/regression_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/losses/regression_loss.py -------------------------------------------------------------------------------- /mmpose/models/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/misc/__init__.py -------------------------------------------------------------------------------- /mmpose/models/misc/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/misc/discriminator.py -------------------------------------------------------------------------------- /mmpose/models/misc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/misc/misc.py -------------------------------------------------------------------------------- /mmpose/models/necks/Deconv_fpn_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/necks/Deconv_fpn_neck.py -------------------------------------------------------------------------------- /mmpose/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/necks/__init__.py -------------------------------------------------------------------------------- /mmpose/models/necks/gap_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/necks/gap_neck.py -------------------------------------------------------------------------------- /mmpose/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/registry.py -------------------------------------------------------------------------------- /mmpose/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/models/utils/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/attention.py -------------------------------------------------------------------------------- /mmpose/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /mmpose/models/utils/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/embed.py -------------------------------------------------------------------------------- /mmpose/models/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/filters.py -------------------------------------------------------------------------------- /mmpose/models/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/geometry.py -------------------------------------------------------------------------------- /mmpose/models/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/helpers.py -------------------------------------------------------------------------------- /mmpose/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/misc.py -------------------------------------------------------------------------------- /mmpose/models/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/ops.py -------------------------------------------------------------------------------- /mmpose/models/utils/shape_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/shape_convert.py -------------------------------------------------------------------------------- /mmpose/models/utils/smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/smpl.py -------------------------------------------------------------------------------- /mmpose/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/transformer.py -------------------------------------------------------------------------------- /mmpose/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /mmpose/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/ops/__init__.py -------------------------------------------------------------------------------- /mmpose/ops/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/ops/encoding.py -------------------------------------------------------------------------------- /mmpose/ops/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/ops/wrappers.py -------------------------------------------------------------------------------- /mmpose/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/collect_env.py -------------------------------------------------------------------------------- /mmpose/utils/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/hooks.py -------------------------------------------------------------------------------- /mmpose/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/logger.py -------------------------------------------------------------------------------- /mmpose/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/setup_env.py -------------------------------------------------------------------------------- /mmpose/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/utils/timer.py -------------------------------------------------------------------------------- /mmpose/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/mmpose/version.py -------------------------------------------------------------------------------- /model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/model-index.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- 1 | # These must be installed before building mmpose 2 | numpy 3 | torch>=1.3 4 | -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/mminstall.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/optional.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/Hybrid_Transformer_CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/resources/Hybrid_Transformer_CNN.png -------------------------------------------------------------------------------- /resources/Multiresolution_learning_HTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/resources/Multiresolution_learning_HTC.png -------------------------------------------------------------------------------- /resources/Table1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/resources/Table1.PNG -------------------------------------------------------------------------------- /resources/Table2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/resources/Table2.PNG -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/setup.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/300w/indoor_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/300w/indoor_020.png -------------------------------------------------------------------------------- /tests/data/300w/indoor_029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/300w/indoor_029.png -------------------------------------------------------------------------------- /tests/data/300w/test_300w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/300w/test_300w.json -------------------------------------------------------------------------------- /tests/data/aflw/image04476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aflw/image04476.jpg -------------------------------------------------------------------------------- /tests/data/aflw/image22568.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aflw/image22568.jpg -------------------------------------------------------------------------------- /tests/data/aflw/test_aflw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aflw/test_aflw.json -------------------------------------------------------------------------------- /tests/data/aic/054d9ce9201beffc76e5ff2169d2af2f027002ca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aic/054d9ce9201beffc76e5ff2169d2af2f027002ca.jpg -------------------------------------------------------------------------------- /tests/data/aic/fa436c914fe4a8ec1ec5474af4d3820b84d17561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aic/fa436c914fe4a8ec1ec5474af4d3820b84d17561.jpg -------------------------------------------------------------------------------- /tests/data/aic/ff945ae2e729f24eea992814639d59b3bdec8bd8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aic/ff945ae2e729f24eea992814639d59b3bdec8bd8.jpg -------------------------------------------------------------------------------- /tests/data/aic/test_aic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/aic/test_aic.json -------------------------------------------------------------------------------- /tests/data/animalpose/ca110.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/animalpose/ca110.jpeg -------------------------------------------------------------------------------- /tests/data/animalpose/ho105.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/animalpose/ho105.jpeg -------------------------------------------------------------------------------- /tests/data/animalpose/test_animalpose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/animalpose/test_animalpose.json -------------------------------------------------------------------------------- /tests/data/ap10k/000000000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ap10k/000000000004.jpg -------------------------------------------------------------------------------- /tests/data/ap10k/000000037516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ap10k/000000037516.jpg -------------------------------------------------------------------------------- /tests/data/ap10k/test_ap10k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ap10k/test_ap10k.json -------------------------------------------------------------------------------- /tests/data/atrw/000061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/atrw/000061.jpg -------------------------------------------------------------------------------- /tests/data/atrw/003464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/atrw/003464.jpg -------------------------------------------------------------------------------- /tests/data/atrw/test_atrw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/atrw/test_atrw.json -------------------------------------------------------------------------------- /tests/data/coco/000000000785.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/000000000785.jpg -------------------------------------------------------------------------------- /tests/data/coco/000000040083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/000000040083.jpg -------------------------------------------------------------------------------- /tests/data/coco/000000196141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/000000196141.jpg -------------------------------------------------------------------------------- /tests/data/coco/000000197388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/000000197388.jpg -------------------------------------------------------------------------------- /tests/data/coco/test_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/test_coco.json -------------------------------------------------------------------------------- /tests/data/coco/test_coco_det_AP_H_56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/test_coco_det_AP_H_56.json -------------------------------------------------------------------------------- /tests/data/coco/test_coco_wholebody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/coco/test_coco_wholebody.json -------------------------------------------------------------------------------- /tests/data/cofw/001766.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/cofw/001766.jpg -------------------------------------------------------------------------------- /tests/data/cofw/001805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/cofw/001805.jpg -------------------------------------------------------------------------------- /tests/data/cofw/test_cofw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/cofw/test_cofw.json -------------------------------------------------------------------------------- /tests/data/crowdpose/103319.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/crowdpose/103319.jpg -------------------------------------------------------------------------------- /tests/data/crowdpose/106848.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/crowdpose/106848.jpg -------------------------------------------------------------------------------- /tests/data/crowdpose/test_crowdpose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/crowdpose/test_crowdpose.json -------------------------------------------------------------------------------- /tests/data/crowdpose/test_crowdpose_det_AP_40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/crowdpose/test_crowdpose_det_AP_40.json -------------------------------------------------------------------------------- /tests/data/fld/img_00000128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fld/img_00000128.jpg -------------------------------------------------------------------------------- /tests/data/fld/img_00000132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fld/img_00000132.jpg -------------------------------------------------------------------------------- /tests/data/fld/test_fld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fld/test_fld.json -------------------------------------------------------------------------------- /tests/data/fly/1400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fly/1400.jpg -------------------------------------------------------------------------------- /tests/data/fly/1450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fly/1450.jpg -------------------------------------------------------------------------------- /tests/data/fly/test_fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/fly/test_fly.json -------------------------------------------------------------------------------- /tests/data/freihand/00000355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00000355.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00017620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00017620.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00032915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00032915.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00050180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00050180.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00065475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00065475.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00082740.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00082740.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00098035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00098035.jpg -------------------------------------------------------------------------------- /tests/data/freihand/00115300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/00115300.jpg -------------------------------------------------------------------------------- /tests/data/freihand/test_freihand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/freihand/test_freihand.json -------------------------------------------------------------------------------- /tests/data/h36m/BF_IUV_gt/S1_Directions_1.54138969_000001_467_466.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/BF_IUV_gt/S1_Directions_1.54138969_000001_467_466.png -------------------------------------------------------------------------------- /tests/data/h36m/BF_IUV_gt/S5_SittingDown.54138969_002061_478_619.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/BF_IUV_gt/S5_SittingDown.54138969_002061_478_619.png -------------------------------------------------------------------------------- /tests/data/h36m/BF_IUV_gt/S7_Greeting.55011271_000396_365_433.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/BF_IUV_gt/S7_Greeting.55011271_000396_365_433.png -------------------------------------------------------------------------------- /tests/data/h36m/BF_IUV_gt/S8_WalkDog_1.55011271_000026_592_382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/BF_IUV_gt/S8_WalkDog_1.55011271_000026_592_382.png -------------------------------------------------------------------------------- /tests/data/h36m/S1_Directions_1.54138969_000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/S1_Directions_1.54138969_000001.jpg -------------------------------------------------------------------------------- /tests/data/h36m/S5_SittingDown.54138969_002061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/S5_SittingDown.54138969_002061.jpg -------------------------------------------------------------------------------- /tests/data/h36m/S7_Greeting.55011271_000396.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/S7_Greeting.55011271_000396.jpg -------------------------------------------------------------------------------- /tests/data/h36m/S8_WalkDog_1.55011271_000026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/S8_WalkDog_1.55011271_000026.jpg -------------------------------------------------------------------------------- /tests/data/h36m/cameras.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/cameras.pkl -------------------------------------------------------------------------------- /tests/data/h36m/h36m_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/h36m_coco.json -------------------------------------------------------------------------------- /tests/data/h36m/test_h36m.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/test_h36m.npz -------------------------------------------------------------------------------- /tests/data/h36m/test_h36m_2d_detection.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/test_h36m_2d_detection.npy -------------------------------------------------------------------------------- /tests/data/h36m/test_h36m_body3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/h36m/test_h36m_body3d.npz -------------------------------------------------------------------------------- /tests/data/halpe/test_halpe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/halpe/test_halpe.json -------------------------------------------------------------------------------- /tests/data/horse10/0244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/horse10/0244.png -------------------------------------------------------------------------------- /tests/data/horse10/0292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/horse10/0292.png -------------------------------------------------------------------------------- /tests/data/horse10/0465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/horse10/0465.png -------------------------------------------------------------------------------- /tests/data/horse10/test_horse10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/horse10/test_horse10.json -------------------------------------------------------------------------------- /tests/data/interhand2.6m/image2017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/image2017.jpg -------------------------------------------------------------------------------- /tests/data/interhand2.6m/image29590.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/image29590.jpg -------------------------------------------------------------------------------- /tests/data/interhand2.6m/image44669.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/image44669.jpg -------------------------------------------------------------------------------- /tests/data/interhand2.6m/image69148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/image69148.jpg -------------------------------------------------------------------------------- /tests/data/interhand2.6m/test_interhand2.6m_camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/test_interhand2.6m_camera.json -------------------------------------------------------------------------------- /tests/data/interhand2.6m/test_interhand2.6m_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/test_interhand2.6m_data.json -------------------------------------------------------------------------------- /tests/data/interhand2.6m/test_interhand2.6m_joint_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/interhand2.6m/test_interhand2.6m_joint_3d.json -------------------------------------------------------------------------------- /tests/data/jhmdb/Frisbee_catch_f_cm_np1_ri_med_0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/jhmdb/Frisbee_catch_f_cm_np1_ri_med_0/00001.png -------------------------------------------------------------------------------- /tests/data/jhmdb/Frisbee_catch_f_cm_np1_ri_med_1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/jhmdb/Frisbee_catch_f_cm_np1_ri_med_1/00001.png -------------------------------------------------------------------------------- /tests/data/jhmdb/Goalkeeper_Training_Day_@_7_catch_f_cm_np1_ri_med_0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/jhmdb/Goalkeeper_Training_Day_@_7_catch_f_cm_np1_ri_med_0/00001.png -------------------------------------------------------------------------------- /tests/data/jhmdb/test_jhmdb_sub1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/jhmdb/test_jhmdb_sub1.json -------------------------------------------------------------------------------- /tests/data/locust/630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/locust/630.jpg -------------------------------------------------------------------------------- /tests/data/locust/650.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/locust/650.jpg -------------------------------------------------------------------------------- /tests/data/locust/test_locust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/locust/test_locust.json -------------------------------------------------------------------------------- /tests/data/macaque/PRI_1473.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/macaque/PRI_1473.jpg -------------------------------------------------------------------------------- /tests/data/macaque/d47f1b1ee9d3217e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/macaque/d47f1b1ee9d3217e.jpg -------------------------------------------------------------------------------- /tests/data/macaque/test_macaque.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/macaque/test_macaque.json -------------------------------------------------------------------------------- /tests/data/mhp/10084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mhp/10084.jpg -------------------------------------------------------------------------------- /tests/data/mhp/10112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mhp/10112.jpg -------------------------------------------------------------------------------- /tests/data/mhp/test_mhp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mhp/test_mhp.json -------------------------------------------------------------------------------- /tests/data/mosh/test_mosh.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mosh/test_mosh.npz -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/S4_Seq2_Cam0_001033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/S4_Seq2_Cam0_001033.jpg -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/S8_Seq1_Cam8_002165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/S8_Seq1_Cam8_002165.jpg -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/TS1_002001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/TS1_002001.jpg -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/TS2_001850.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/TS2_001850.jpg -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/cameras_test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/cameras_test.pkl -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/cameras_train.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/cameras_train.pkl -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/test_3dhp_test.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/test_3dhp_test.npz -------------------------------------------------------------------------------- /tests/data/mpi_inf_3dhp/test_3dhp_train.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpi_inf_3dhp/test_3dhp_train.npz -------------------------------------------------------------------------------- /tests/data/mpii/004645041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/004645041.jpg -------------------------------------------------------------------------------- /tests/data/mpii/005808361.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/005808361.jpg -------------------------------------------------------------------------------- /tests/data/mpii/051423444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/051423444.jpg -------------------------------------------------------------------------------- /tests/data/mpii/052475643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/052475643.jpg -------------------------------------------------------------------------------- /tests/data/mpii/060754485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/060754485.jpg -------------------------------------------------------------------------------- /tests/data/mpii/test_mpii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/test_mpii.json -------------------------------------------------------------------------------- /tests/data/mpii/test_mpii_trb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/mpii/test_mpii_trb.json -------------------------------------------------------------------------------- /tests/data/ochuman/000817.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ochuman/000817.jpg -------------------------------------------------------------------------------- /tests/data/ochuman/003799.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ochuman/003799.jpg -------------------------------------------------------------------------------- /tests/data/ochuman/003896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ochuman/003896.jpg -------------------------------------------------------------------------------- /tests/data/ochuman/test_ochuman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/ochuman/test_ochuman.json -------------------------------------------------------------------------------- /tests/data/onehand10k/1402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/onehand10k/1402.jpg -------------------------------------------------------------------------------- /tests/data/onehand10k/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/onehand10k/33.jpg -------------------------------------------------------------------------------- /tests/data/onehand10k/784.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/onehand10k/784.jpg -------------------------------------------------------------------------------- /tests/data/onehand10k/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/onehand10k/9.jpg -------------------------------------------------------------------------------- /tests/data/onehand10k/test_onehand10k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/onehand10k/test_onehand10k.json -------------------------------------------------------------------------------- /tests/data/panoptic/005880453_01_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic/005880453_01_l.jpg -------------------------------------------------------------------------------- /tests/data/panoptic/005880453_01_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic/005880453_01_r.jpg -------------------------------------------------------------------------------- /tests/data/panoptic/ex2_2.flv_000040_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic/ex2_2.flv_000040_l.jpg -------------------------------------------------------------------------------- /tests/data/panoptic/ex2_2.flv_000040_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic/ex2_2.flv_000040_r.jpg -------------------------------------------------------------------------------- /tests/data/panoptic/test_panoptic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic/test_panoptic.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band1/calibration_160906_band1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band1/calibration_160906_band1.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band1/hdPose3d_stage1_coco19/body3DScene_00000168.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band1/hdPose3d_stage1_coco19/body3DScene_00000168.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band1/hdPose3d_stage1_coco19/body3DScene_00000169.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band1/hdPose3d_stage1_coco19/body3DScene_00000169.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band2/calibration_160906_band2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band2/calibration_160906_band2.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band2/hdPose3d_stage1_coco19/body3DScene_00000139.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band2/hdPose3d_stage1_coco19/body3DScene_00000139.json -------------------------------------------------------------------------------- /tests/data/panoptic_body3d/160906_band2/hdPose3d_stage1_coco19/body3DScene_00000140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/panoptic_body3d/160906_band2/hdPose3d_stage1_coco19/body3DScene_00000140.json -------------------------------------------------------------------------------- /tests/data/posetrack18/annotations/test_posetrack18_human_detections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/annotations/test_posetrack18_human_detections.json -------------------------------------------------------------------------------- /tests/data/posetrack18/annotations/test_posetrack18_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/annotations/test_posetrack18_val.json -------------------------------------------------------------------------------- /tests/data/posetrack18/annotations/val/003418_mpii_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/annotations/val/003418_mpii_test.json -------------------------------------------------------------------------------- /tests/data/posetrack18/annotations/val/009473_mpii_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/annotations/val/009473_mpii_test.json -------------------------------------------------------------------------------- /tests/data/posetrack18/annotations/val/012834_mpii_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/annotations/val/012834_mpii_test.json -------------------------------------------------------------------------------- /tests/data/posetrack18/images/val/003418_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/images/val/003418_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/posetrack18/images/val/009473_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/images/val/009473_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/posetrack18/images/val/012834_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/images/val/012834_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/posetrack18/mask/val/003418_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/mask/val/003418_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/posetrack18/mask/val/009473_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/mask/val/009473_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/posetrack18/mask/val/012834_mpii_test/000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/posetrack18/mask/val/012834_mpii_test/000000.jpg -------------------------------------------------------------------------------- /tests/data/rhd/00111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/rhd/00111.png -------------------------------------------------------------------------------- /tests/data/rhd/01111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/rhd/01111.png -------------------------------------------------------------------------------- /tests/data/rhd/11111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/rhd/11111.png -------------------------------------------------------------------------------- /tests/data/rhd/test_rhd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/rhd/test_rhd.json -------------------------------------------------------------------------------- /tests/data/smpl/smpl_mean_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/smpl/smpl_mean_params.npz -------------------------------------------------------------------------------- /tests/data/wflw/36_Football_americanfootball_ball_36_415.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/wflw/36_Football_americanfootball_ball_36_415.jpg -------------------------------------------------------------------------------- /tests/data/wflw/7_Cheering_Cheering_7_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/wflw/7_Cheering_Cheering_7_16.jpg -------------------------------------------------------------------------------- /tests/data/wflw/test_wflw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/wflw/test_wflw.json -------------------------------------------------------------------------------- /tests/data/zebra/810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/zebra/810.jpg -------------------------------------------------------------------------------- /tests/data/zebra/850.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/zebra/850.jpg -------------------------------------------------------------------------------- /tests/data/zebra/test_zebra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/data/zebra/test_zebra.json -------------------------------------------------------------------------------- /tests/test_apis/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_apis/test_inference.py -------------------------------------------------------------------------------- /tests/test_apis/test_inference_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_apis/test_inference_3d.py -------------------------------------------------------------------------------- /tests/test_apis/test_inference_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_apis/test_inference_tracking.py -------------------------------------------------------------------------------- /tests/test_backbones/test_alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_alexnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_backbones_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_backbones_utils.py -------------------------------------------------------------------------------- /tests/test_backbones/test_cpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_cpm.py -------------------------------------------------------------------------------- /tests/test_backbones/test_hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_hourglass.py -------------------------------------------------------------------------------- /tests/test_backbones/test_hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_hrnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_litehrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_litehrnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_mobilenet_v2.py -------------------------------------------------------------------------------- /tests/test_backbones/test_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_mobilenet_v3.py -------------------------------------------------------------------------------- /tests/test_backbones/test_mspn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_mspn.py -------------------------------------------------------------------------------- /tests/test_backbones/test_regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_regnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_resnest.py -------------------------------------------------------------------------------- /tests/test_backbones/test_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_resnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_resnext.py -------------------------------------------------------------------------------- /tests/test_backbones/test_rsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_rsn.py -------------------------------------------------------------------------------- /tests/test_backbones/test_scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_scnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_seresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_seresnet.py -------------------------------------------------------------------------------- /tests/test_backbones/test_seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_seresnext.py -------------------------------------------------------------------------------- /tests/test_backbones/test_shufflenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_shufflenet_v1.py -------------------------------------------------------------------------------- /tests/test_backbones/test_shufflenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_shufflenet_v2.py -------------------------------------------------------------------------------- /tests/test_backbones/test_tcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_tcn.py -------------------------------------------------------------------------------- /tests/test_backbones/test_v2v_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_v2v_net.py -------------------------------------------------------------------------------- /tests/test_backbones/test_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_vgg.py -------------------------------------------------------------------------------- /tests/test_backbones/test_vipnas_mbv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_vipnas_mbv3.py -------------------------------------------------------------------------------- /tests/test_backbones/test_vipnas_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backbones/test_vipnas_resnet.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_animal_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_animal_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_body3d_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_body3d_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_bottom_up_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_bottom_up_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_deprecated_dataset_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_deprecated_dataset_base.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_face_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_face_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_fashion_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_fashion_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_hand_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_hand_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_inference_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_inference_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_dataset_info_compatibility/test_top_down_dataset_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_dataset_info_compatibility/test_top_down_dataset_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_eval_hook_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_eval_hook_compatibility.py -------------------------------------------------------------------------------- /tests/test_backward_compatibility/test_registry_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_backward_compatibility/test_registry_compatibility.py -------------------------------------------------------------------------------- /tests/test_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_compose.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_datasets/test_animal_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_animal_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_body3d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_body3d_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_bottom_up_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_bottom_up_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_dataset_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_dataset_info.py -------------------------------------------------------------------------------- /tests/test_datasets/test_dataset_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_dataset_wrapper.py -------------------------------------------------------------------------------- /tests/test_datasets/test_face_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_face_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_fashion_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_fashion_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_hand_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_hand_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_mesh_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_mesh_dataset.py -------------------------------------------------------------------------------- /tests/test_datasets/test_top_down_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_datasets/test_top_down_dataset.py -------------------------------------------------------------------------------- /tests/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_eval_hook.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_bottom_up_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_evaluation/test_bottom_up_eval.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_mesh_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_evaluation/test_mesh_eval.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_pose3d_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_evaluation/test_pose3d_eval.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_top_down_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_evaluation/test_top_down_eval.py -------------------------------------------------------------------------------- /tests/test_external/test_smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_external/test_smpl.py -------------------------------------------------------------------------------- /tests/test_losses/test_bottom_up_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_losses/test_bottom_up_losses.py -------------------------------------------------------------------------------- /tests/test_losses/test_classification_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_losses/test_classification_loss.py -------------------------------------------------------------------------------- /tests/test_losses/test_mesh_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_losses/test_mesh_losses.py -------------------------------------------------------------------------------- /tests/test_losses/test_regression_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_losses/test_regression_losses.py -------------------------------------------------------------------------------- /tests/test_losses/test_top_down_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_losses/test_top_down_losses.py -------------------------------------------------------------------------------- /tests/test_models/test_bottom_up_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_bottom_up_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_bottom_up_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_bottom_up_head.py -------------------------------------------------------------------------------- /tests/test_models/test_interhand_3d_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_interhand_3d_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_interhand_3d_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_interhand_3d_head.py -------------------------------------------------------------------------------- /tests/test_models/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_layer.py -------------------------------------------------------------------------------- /tests/test_models/test_mesh_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_mesh_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_mesh_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_mesh_head.py -------------------------------------------------------------------------------- /tests/test_models/test_multitask_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_multitask_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_pose_lifter_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_pose_lifter_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_temporal_regression_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_temporal_regression_head.py -------------------------------------------------------------------------------- /tests/test_models/test_top_down_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_top_down_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_top_down_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_top_down_head.py -------------------------------------------------------------------------------- /tests/test_models/test_voxelpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_models/test_voxelpose.py -------------------------------------------------------------------------------- /tests/test_necks/test_gap_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_necks/test_gap_neck.py -------------------------------------------------------------------------------- /tests/test_necks/test_posewarper_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_necks/test_posewarper_neck.py -------------------------------------------------------------------------------- /tests/test_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_onnx.py -------------------------------------------------------------------------------- /tests/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_optimizer.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_bottom_up_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_bottom_up_pipelines.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_hand_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_hand_transform.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_mesh_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_mesh_pipelines.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_pose3d_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_pose3d_transform.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_shared_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_shared_transform.py -------------------------------------------------------------------------------- /tests/test_pipelines/test_top_down_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_pipelines/test_top_down_pipelines.py -------------------------------------------------------------------------------- /tests/test_post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_post_processing.py -------------------------------------------------------------------------------- /tests/test_post_processing/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_post_processing/test_filter.py -------------------------------------------------------------------------------- /tests/test_post_processing/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_post_processing/test_group.py -------------------------------------------------------------------------------- /tests/test_post_processing/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_post_processing/test_nms.py -------------------------------------------------------------------------------- /tests/test_regularization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_regularization.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/test_visualization.py -------------------------------------------------------------------------------- /tests/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/utils/data_utils.py -------------------------------------------------------------------------------- /tests/utils/mesh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tests/utils/mesh_utils.py -------------------------------------------------------------------------------- /tools/analysis/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/analysis/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis/benchmark_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/analysis/benchmark_inference.py -------------------------------------------------------------------------------- /tools/analysis/benchmark_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/analysis/benchmark_processing.py -------------------------------------------------------------------------------- /tools/analysis/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/analysis/get_flops.py -------------------------------------------------------------------------------- /tools/analysis/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/analysis/print_config.py -------------------------------------------------------------------------------- /tools/dataset/h36m_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/h36m_to_coco.py -------------------------------------------------------------------------------- /tools/dataset/mat2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/mat2json.py -------------------------------------------------------------------------------- /tools/dataset/parse_animalpose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/parse_animalpose_dataset.py -------------------------------------------------------------------------------- /tools/dataset/parse_cofw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/parse_cofw_dataset.py -------------------------------------------------------------------------------- /tools/dataset/parse_deepposekit_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/parse_deepposekit_dataset.py -------------------------------------------------------------------------------- /tools/dataset/parse_macaquepose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/parse_macaquepose_dataset.py -------------------------------------------------------------------------------- /tools/dataset/preprocess_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/preprocess_h36m.py -------------------------------------------------------------------------------- /tools/dataset/preprocess_mpi_inf_3dhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dataset/preprocess_mpi_inf_3dhp.py -------------------------------------------------------------------------------- /tools/deployment/mmpose2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/deployment/mmpose2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmpose_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/deployment/mmpose_handler.py -------------------------------------------------------------------------------- /tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/misc/keypoints2coco_without_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/misc/keypoints2coco_without_mmdet.py -------------------------------------------------------------------------------- /tools/misc/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/misc/publish_model.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/webcam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/background/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/background/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/background/background.py -------------------------------------------------------------------------------- /tools/webcam/configs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/examples/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/examples/pose_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/examples/pose_estimation.py -------------------------------------------------------------------------------- /tools/webcam/configs/examples/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/examples/test_camera.py -------------------------------------------------------------------------------- /tools/webcam/configs/eyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/eyes/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/eyes/eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/eyes/eyes.py -------------------------------------------------------------------------------- /tools/webcam/configs/face_swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/face_swap/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/face_swap/face_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/face_swap/face_swap.py -------------------------------------------------------------------------------- /tools/webcam/configs/meow_dwen_dwen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/meow_dwen_dwen/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/meow_dwen_dwen/meow_dwen_dwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/meow_dwen_dwen/meow_dwen_dwen.py -------------------------------------------------------------------------------- /tools/webcam/configs/meow_dwen_dwen/resource-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/meow_dwen_dwen/resource-info.json -------------------------------------------------------------------------------- /tools/webcam/configs/newyear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/newyear/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/newyear/new_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/newyear/new_year.py -------------------------------------------------------------------------------- /tools/webcam/configs/supersaiyan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/supersaiyan/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/supersaiyan/saiyan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/supersaiyan/saiyan.py -------------------------------------------------------------------------------- /tools/webcam/configs/valentinemagic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/valentinemagic/README.md -------------------------------------------------------------------------------- /tools/webcam/configs/valentinemagic/valentinemagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/configs/valentinemagic/valentinemagic.py -------------------------------------------------------------------------------- /tools/webcam/docs/example_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/docs/example_cn.md -------------------------------------------------------------------------------- /tools/webcam/docs/get_started_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/docs/get_started_cn.md -------------------------------------------------------------------------------- /tools/webcam/run_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/run_webcam.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/__init__.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/__init__.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/builder.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/faceswap_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/faceswap_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/frame_drawing_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/frame_drawing_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/frame_effect_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/frame_effect_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/helper_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/helper_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/mmdet_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/mmdet_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/mmpose_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/mmpose_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/valentinemagic_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/valentinemagic_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/nodes/xdwendwen_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/nodes/xdwendwen_node.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/__init__.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/buffer.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/event.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/message.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/misc.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/utils/pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/utils/pose.py -------------------------------------------------------------------------------- /tools/webcam/webcam_apis/webcam_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriee/Multiresolution-HTC/HEAD/tools/webcam/webcam_apis/webcam_runner.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- 1 | CUDA_VISIBLE_DEVICES=gpu_id PORT=29504 ./tools/dist_train.sh \ 2 | config_file_path num_gpus --------------------------------------------------------------------------------