├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── LICENSE ├── README.md ├── README_en.md ├── configs └── examples │ ├── bing_dwen_dwen │ ├── README.md │ ├── bing_dwen_dwen.py │ └── resource-info.json │ ├── face_swap │ ├── README.md │ └── face_swap.py │ ├── new_year │ ├── README.md │ └── new_year.py │ ├── pose_estimation │ ├── pose_estimation.py │ ├── pose_tracking.py │ ├── test_camera.py │ └── webcam_demo.md │ └── valentine_magic │ ├── README.md │ └── valentine_magic.py ├── model_configs ├── mmdet │ └── ssdlite_mobilenetv2_scratch_600e_coco.py └── mmpose │ ├── _base_ │ ├── datasets │ │ ├── 300w.py │ │ ├── aflw.py │ │ ├── aic.py │ │ ├── animalpose.py │ │ ├── ap10k.py │ │ ├── atrw.py │ │ ├── campus.py │ │ ├── coco.py │ │ ├── coco_wholebody.py │ │ ├── coco_wholebody_face.py │ │ ├── coco_wholebody_hand.py │ │ ├── cofw.py │ │ ├── crowdpose.py │ │ ├── deepfashion_full.py │ │ ├── deepfashion_lower.py │ │ ├── deepfashion_upper.py │ │ ├── fly.py │ │ ├── freihand2d.py │ │ ├── h36m.py │ │ ├── halpe.py │ │ ├── horse10.py │ │ ├── interhand2d.py │ │ ├── interhand3d.py │ │ ├── jhmdb.py │ │ ├── locust.py │ │ ├── macaque.py │ │ ├── mhp.py │ │ ├── mpi_inf_3dhp.py │ │ ├── mpii.py │ │ ├── mpii_trb.py │ │ ├── ochuman.py │ │ ├── onehand10k.py │ │ ├── panoptic_body3d.py │ │ ├── panoptic_hand2d.py │ │ ├── posetrack18.py │ │ ├── rhd2d.py │ │ ├── shelf.py │ │ ├── wflw.py │ │ └── zebra.py │ ├── default_runtime.py │ └── filters │ │ ├── gaussian.py │ │ ├── one_euro.py │ │ ├── savizky_golay.py │ │ ├── smoothnet_h36m.md │ │ ├── smoothnet_t16_h36m.py │ │ ├── smoothnet_t32_h36m.py │ │ ├── smoothnet_t64_h36m.py │ │ └── smoothnet_t8_h36m.py │ ├── hrnet_w32_animalpose_256x256.py │ └── vipnas_mbv3_coco_wholebody_256x192_dark.py ├── run.py └── src ├── __init__.py └── nodes ├── __init__.py ├── bingdwendwen_node.py ├── faceswap_node.py ├── firecracker_effect_node.py ├── hat_effect_node.py ├── newyear_node.py └── valentine_magic_node.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/README_en.md -------------------------------------------------------------------------------- /configs/examples/bing_dwen_dwen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/bing_dwen_dwen/README.md -------------------------------------------------------------------------------- /configs/examples/bing_dwen_dwen/bing_dwen_dwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/bing_dwen_dwen/bing_dwen_dwen.py -------------------------------------------------------------------------------- /configs/examples/bing_dwen_dwen/resource-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/bing_dwen_dwen/resource-info.json -------------------------------------------------------------------------------- /configs/examples/face_swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/face_swap/README.md -------------------------------------------------------------------------------- /configs/examples/face_swap/face_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/face_swap/face_swap.py -------------------------------------------------------------------------------- /configs/examples/new_year/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/new_year/README.md -------------------------------------------------------------------------------- /configs/examples/new_year/new_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/new_year/new_year.py -------------------------------------------------------------------------------- /configs/examples/pose_estimation/pose_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/pose_estimation/pose_estimation.py -------------------------------------------------------------------------------- /configs/examples/pose_estimation/pose_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/pose_estimation/pose_tracking.py -------------------------------------------------------------------------------- /configs/examples/pose_estimation/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/pose_estimation/test_camera.py -------------------------------------------------------------------------------- /configs/examples/pose_estimation/webcam_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/pose_estimation/webcam_demo.md -------------------------------------------------------------------------------- /configs/examples/valentine_magic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/valentine_magic/README.md -------------------------------------------------------------------------------- /configs/examples/valentine_magic/valentine_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/configs/examples/valentine_magic/valentine_magic.py -------------------------------------------------------------------------------- /model_configs/mmdet/ssdlite_mobilenetv2_scratch_600e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmdet/ssdlite_mobilenetv2_scratch_600e_coco.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/300w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/300w.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/aflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/aflw.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/aic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/aic.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/animalpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/animalpose.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/ap10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/ap10k.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/atrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/atrw.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/campus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/campus.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/coco.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/coco_wholebody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/coco_wholebody.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/coco_wholebody_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/coco_wholebody_face.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/coco_wholebody_hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/coco_wholebody_hand.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/cofw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/cofw.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/crowdpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/crowdpose.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/deepfashion_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/deepfashion_full.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/deepfashion_lower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/deepfashion_lower.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/deepfashion_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/deepfashion_upper.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/fly.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/freihand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/freihand2d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/h36m.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/halpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/halpe.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/horse10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/horse10.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/interhand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/interhand2d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/interhand3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/interhand3d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/jhmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/jhmdb.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/locust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/locust.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/macaque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/macaque.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/mhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/mhp.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/mpi_inf_3dhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/mpi_inf_3dhp.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/mpii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/mpii.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/mpii_trb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/mpii_trb.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/ochuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/ochuman.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/onehand10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/onehand10k.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/panoptic_body3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/panoptic_body3d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/panoptic_hand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/panoptic_hand2d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/posetrack18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/posetrack18.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/rhd2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/rhd2d.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/shelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/shelf.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/wflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/wflw.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/datasets/zebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/datasets/zebra.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/default_runtime.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/gaussian.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/one_euro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/one_euro.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/savizky_golay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/savizky_golay.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/smoothnet_h36m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/smoothnet_h36m.md -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/smoothnet_t16_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/smoothnet_t16_h36m.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/smoothnet_t32_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/smoothnet_t32_h36m.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/smoothnet_t64_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/smoothnet_t64_h36m.py -------------------------------------------------------------------------------- /model_configs/mmpose/_base_/filters/smoothnet_t8_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/_base_/filters/smoothnet_t8_h36m.py -------------------------------------------------------------------------------- /model_configs/mmpose/hrnet_w32_animalpose_256x256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/hrnet_w32_animalpose_256x256.py -------------------------------------------------------------------------------- /model_configs/mmpose/vipnas_mbv3_coco_wholebody_256x192_dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/model_configs/mmpose/vipnas_mbv3_coco_wholebody_256x192_dark.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/run.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | from . import nodes # noqa 2 | -------------------------------------------------------------------------------- /src/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/__init__.py -------------------------------------------------------------------------------- /src/nodes/bingdwendwen_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/bingdwendwen_node.py -------------------------------------------------------------------------------- /src/nodes/faceswap_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/faceswap_node.py -------------------------------------------------------------------------------- /src/nodes/firecracker_effect_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/firecracker_effect_node.py -------------------------------------------------------------------------------- /src/nodes/hat_effect_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/hat_effect_node.py -------------------------------------------------------------------------------- /src/nodes/newyear_node.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nodes/valentine_magic_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmpose-webcam-demo/HEAD/src/nodes/valentine_magic_node.py --------------------------------------------------------------------------------