├── .gitignore ├── README.md ├── constants.py ├── data_cleaning ├── arrange.py ├── correct_body.py ├── make_3D.py └── merge_body.py ├── dataloader.py ├── image ├── play.png └── stop.png ├── preprocess.py └── viewer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/README.md -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/constants.py -------------------------------------------------------------------------------- /data_cleaning/arrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/data_cleaning/arrange.py -------------------------------------------------------------------------------- /data_cleaning/correct_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/data_cleaning/correct_body.py -------------------------------------------------------------------------------- /data_cleaning/make_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/data_cleaning/make_3D.py -------------------------------------------------------------------------------- /data_cleaning/merge_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/data_cleaning/merge_body.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/dataloader.py -------------------------------------------------------------------------------- /image/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/image/play.png -------------------------------------------------------------------------------- /image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/image/stop.png -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/preprocess.py -------------------------------------------------------------------------------- /viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4r/AIR-Act2Act/HEAD/viewer.py --------------------------------------------------------------------------------