├── LICENSE ├── README.md ├── checkpoints └── vae │ ├── humanact12 │ ├── vanila_vae_tf │ │ ├── joints │ │ │ ├── motion_class.npy │ │ │ └── motion_joints500000.npy │ │ ├── label_enc_rev_humanact12.txt │ │ ├── loss_curve.png │ │ ├── model │ │ │ └── latest.tar │ │ └── opt.txt │ └── vanilla_vae_lie_mse_kld001 │ │ ├── joints │ │ ├── motion_class.npy │ │ └── motion_joints30000.npy │ │ ├── label_enc_rev_humanact12.txt │ │ ├── loss_curve.png │ │ ├── model │ │ └── latest.tar │ │ └── opt.txt │ ├── mocap │ ├── vanila_vae_tf_2 │ │ ├── joints │ │ │ ├── motion_class.npy │ │ │ └── motion_joints210000.npy │ │ ├── label_enc_rev_mocap.txt │ │ ├── model │ │ │ └── latest.tar │ │ └── opt.txt │ └── vanilla_vae_lie_mse_kld01 │ │ ├── joints │ │ ├── motion_class.npy │ │ └── motion_joints50000.npy │ │ ├── label_enc_rev_mocap.txt │ │ ├── loss_curve.png │ │ ├── model │ │ └── latest.tar │ │ └── opt.txt │ └── ntu_rgbd_vibe │ ├── vanila_vae_tf_2 │ ├── joints │ │ ├── motion_class.npy │ │ └── motion_joints300000.npy │ ├── label_enc_rev_ntu_vibe.txt │ ├── loss_curve.png │ ├── model │ │ └── latest.tar │ └── opt.txt │ └── vanilla_vae_lie_mse_kld01 │ ├── joints │ ├── motion_class.npy │ └── motion_joints50000.npy │ ├── label_enc_rev_ntu_vibe.txt │ ├── loss_curve.png │ ├── model │ └── latest.tar │ └── opt.txt ├── dataProcessing ├── __init__.py └── dataset.py ├── environment.yaml ├── eval_scripts ├── fid.py ├── final_evaluation.py ├── get_opt.py ├── load_classifier.py └── statistics1.fish ├── evaluate_motion_vae.py ├── index.html ├── lie ├── __init__.py ├── lie_util.py └── pose_lie.py ├── model_file ├── action_recognition_model_humanact12.tar ├── action_recognition_model_humanact12_fineG.tar ├── action_recognition_model_mocap_new.tar └── action_recognition_model_vibe_v2.tar ├── models ├── __init__.py ├── motion_gan.py └── motion_vae.py ├── options ├── __init__.py ├── base_vae_options.py ├── evaluate_vae_options.py └── train_vae_options.py ├── train_motion_vae.py ├── trainer ├── __init__.py └── vae_trainer.py ├── utils ├── __init__.py ├── matrix_transformer.py ├── paramUtil.py ├── plot_script.py └── utils_.py └── website ├── .DS_Store ├── Architecture.jpg ├── bibtex.txt ├── jump1.gif ├── jump2.gif ├── jump3.gif ├── jump_1.gif ├── jump_2.gif ├── jump_3.gif ├── paper.png ├── phone.gif ├── phone2.gif ├── phone3.gif ├── teaser.png ├── throw1.gif ├── throw2.gif └── throw3.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/joints/motion_joints500000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/joints/motion_joints500000.npy -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/label_enc_rev_humanact12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/label_enc_rev_humanact12.txt -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/loss_curve.png -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanila_vae_tf/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanila_vae_tf/opt.txt -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/joints/motion_joints30000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/joints/motion_joints30000.npy -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/label_enc_rev_humanact12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/label_enc_rev_humanact12.txt -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/loss_curve.png -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/humanact12/vanilla_vae_lie_mse_kld001/opt.txt -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanila_vae_tf_2/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanila_vae_tf_2/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanila_vae_tf_2/joints/motion_joints210000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanila_vae_tf_2/joints/motion_joints210000.npy -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanila_vae_tf_2/label_enc_rev_mocap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanila_vae_tf_2/label_enc_rev_mocap.txt -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanila_vae_tf_2/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanila_vae_tf_2/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanila_vae_tf_2/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanila_vae_tf_2/opt.txt -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/joints/motion_joints50000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/joints/motion_joints50000.npy -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/label_enc_rev_mocap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/label_enc_rev_mocap.txt -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/loss_curve.png -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/mocap/vanilla_vae_lie_mse_kld01/opt.txt -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/joints/motion_joints300000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/joints/motion_joints300000.npy -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/label_enc_rev_ntu_vibe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/label_enc_rev_ntu_vibe.txt -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/loss_curve.png -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanila_vae_tf_2/opt.txt -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/joints/motion_class.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/joints/motion_class.npy -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/joints/motion_joints50000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/joints/motion_joints50000.npy -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/label_enc_rev_ntu_vibe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/label_enc_rev_ntu_vibe.txt -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/loss_curve.png -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/model/latest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/model/latest.tar -------------------------------------------------------------------------------- /checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/checkpoints/vae/ntu_rgbd_vibe/vanilla_vae_lie_mse_kld01/opt.txt -------------------------------------------------------------------------------- /dataProcessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataProcessing/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/dataProcessing/dataset.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/environment.yaml -------------------------------------------------------------------------------- /eval_scripts/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/eval_scripts/fid.py -------------------------------------------------------------------------------- /eval_scripts/final_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/eval_scripts/final_evaluation.py -------------------------------------------------------------------------------- /eval_scripts/get_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/eval_scripts/get_opt.py -------------------------------------------------------------------------------- /eval_scripts/load_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/eval_scripts/load_classifier.py -------------------------------------------------------------------------------- /eval_scripts/statistics1.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/eval_scripts/statistics1.fish -------------------------------------------------------------------------------- /evaluate_motion_vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/evaluate_motion_vae.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/index.html -------------------------------------------------------------------------------- /lie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lie/lie_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/lie/lie_util.py -------------------------------------------------------------------------------- /lie/pose_lie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/lie/pose_lie.py -------------------------------------------------------------------------------- /model_file/action_recognition_model_humanact12.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/model_file/action_recognition_model_humanact12.tar -------------------------------------------------------------------------------- /model_file/action_recognition_model_humanact12_fineG.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/model_file/action_recognition_model_humanact12_fineG.tar -------------------------------------------------------------------------------- /model_file/action_recognition_model_mocap_new.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/model_file/action_recognition_model_mocap_new.tar -------------------------------------------------------------------------------- /model_file/action_recognition_model_vibe_v2.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/model_file/action_recognition_model_vibe_v2.tar -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/motion_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/models/motion_gan.py -------------------------------------------------------------------------------- /models/motion_vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/models/motion_vae.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options/base_vae_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/options/base_vae_options.py -------------------------------------------------------------------------------- /options/evaluate_vae_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/options/evaluate_vae_options.py -------------------------------------------------------------------------------- /options/train_vae_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/options/train_vae_options.py -------------------------------------------------------------------------------- /train_motion_vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/train_motion_vae.py -------------------------------------------------------------------------------- /trainer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainer/vae_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/trainer/vae_trainer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/matrix_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/utils/matrix_transformer.py -------------------------------------------------------------------------------- /utils/paramUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/utils/paramUtil.py -------------------------------------------------------------------------------- /utils/plot_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/utils/plot_script.py -------------------------------------------------------------------------------- /utils/utils_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/utils/utils_.py -------------------------------------------------------------------------------- /website/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/.DS_Store -------------------------------------------------------------------------------- /website/Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/Architecture.jpg -------------------------------------------------------------------------------- /website/bibtex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/bibtex.txt -------------------------------------------------------------------------------- /website/jump1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump1.gif -------------------------------------------------------------------------------- /website/jump2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump2.gif -------------------------------------------------------------------------------- /website/jump3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump3.gif -------------------------------------------------------------------------------- /website/jump_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump_1.gif -------------------------------------------------------------------------------- /website/jump_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump_2.gif -------------------------------------------------------------------------------- /website/jump_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/jump_3.gif -------------------------------------------------------------------------------- /website/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/paper.png -------------------------------------------------------------------------------- /website/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/phone.gif -------------------------------------------------------------------------------- /website/phone2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/phone2.gif -------------------------------------------------------------------------------- /website/phone3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/phone3.gif -------------------------------------------------------------------------------- /website/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/teaser.png -------------------------------------------------------------------------------- /website/throw1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/throw1.gif -------------------------------------------------------------------------------- /website/throw2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/throw2.gif -------------------------------------------------------------------------------- /website/throw3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGuo5513/action-to-motion/HEAD/website/throw3.gif --------------------------------------------------------------------------------