├── .gitignore ├── .idea ├── .gitignore ├── .name ├── Camera-control.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── [2020][SIG]_Example_driven ├── Cinematic_Estimation │ ├── Net.py │ ├── agent.py │ ├── data_processing.py │ ├── dataset.py │ └── main.py ├── Figure │ ├── feature.png │ └── teaser.png ├── Gating_Prediction │ ├── Net.py │ ├── agent.py │ ├── dataset.py │ └── main.py ├── Movie_analysis │ ├── Movie_data │ │ └── Dialogue │ │ │ ├── LCRKeypoint.zip │ │ │ └── raw │ │ │ └── 1.mp4 │ ├── Net.py │ ├── Readme.md │ ├── Synthetic_latent │ │ └── example_latent.txt │ ├── main.py │ └── movie_processing.py ├── README.md ├── Trajectory_generation │ ├── Prediction │ │ ├── Net.py │ │ ├── camera.py │ │ ├── different_shot_perfect.tar │ │ ├── predictor.py │ │ ├── readme.md │ │ └── style_weights.npy │ └── Unity │ │ └── readme.md ├── data_generation │ ├── data_processing.py │ └── readme.md └── requirements.txt ├── [2021][SIG Asia]_Style_and_keyframing ├── Keyframing │ ├── Net.py │ ├── Toric_prediction_model.py │ ├── Utils.py │ ├── dataset_skelet.py │ ├── main.py │ └── model │ │ └── latest.pth.tar ├── README.md └── requirements.txt └── [2024][EG]Text+keyframe ├── LSTM.py ├── README.md ├── classify.py ├── image ├── Unity_script.png └── unity.gif ├── main.py └── metric.py /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | data_processing.py -------------------------------------------------------------------------------- /.idea/Camera-control.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/Camera-control.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/README.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Cinematic_Estimation/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Cinematic_Estimation/Net.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Cinematic_Estimation/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Cinematic_Estimation/agent.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Cinematic_Estimation/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Cinematic_Estimation/data_processing.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Cinematic_Estimation/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Cinematic_Estimation/dataset.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Cinematic_Estimation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Cinematic_Estimation/main.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Figure/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Figure/feature.png -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Figure/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Figure/teaser.png -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Gating_Prediction/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Gating_Prediction/Net.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Gating_Prediction/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Gating_Prediction/agent.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Gating_Prediction/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Gating_Prediction/dataset.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Gating_Prediction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Gating_Prediction/main.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/Movie_data/Dialogue/LCRKeypoint.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/Movie_data/Dialogue/LCRKeypoint.zip -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/Movie_data/Dialogue/raw/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/Movie_data/Dialogue/raw/1.mp4 -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/Net.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/Readme.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/Synthetic_latent/example_latent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/Synthetic_latent/example_latent.txt -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/main.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Movie_analysis/movie_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Movie_analysis/movie_processing.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/README.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/Net.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/camera.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/different_shot_perfect.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/different_shot_perfect.tar -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/predictor.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/readme.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Prediction/style_weights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Prediction/style_weights.npy -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/Trajectory_generation/Unity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/Trajectory_generation/Unity/readme.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/data_generation/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/data_generation/data_processing.py -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/data_generation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/data_generation/readme.md -------------------------------------------------------------------------------- /[2020][SIG]_Example_driven/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2020][SIG]_Example_driven/requirements.txt -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/Net.py -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/Toric_prediction_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/Toric_prediction_model.py -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/Utils.py -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/dataset_skelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/dataset_skelet.py -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/main.py -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/Keyframing/model/latest.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/Keyframing/model/latest.pth.tar -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/README.md -------------------------------------------------------------------------------- /[2021][SIG Asia]_Style_and_keyframing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2021][SIG Asia]_Style_and_keyframing/requirements.txt -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/LSTM.py -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/README.md -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/classify.py -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/image/Unity_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/image/Unity_script.png -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/image/unity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/image/unity.gif -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/main.py -------------------------------------------------------------------------------- /[2024][EG]Text+keyframe/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghd1996/Camera-control/HEAD/[2024][EG]Text+keyframe/metric.py --------------------------------------------------------------------------------