├── .gitignore ├── LICENSE ├── README.md ├── blender ├── .gitignore ├── README.md ├── camera.py ├── configs │ ├── body_config │ └── main_config ├── io_utils.py ├── motion_mechanism.py ├── motion_surreal.py ├── parse_humans_from_trajectories.py ├── parse_static_scene.py ├── quick_run │ ├── render_humans_from_trajectories.sh │ ├── render_static_scenes.sh │ └── render_synthetic_humans.sh ├── render_bodies.py ├── render_humans_from_trajectories.py ├── render_static_scenes.py ├── run_BundleFusion.py ├── run_RefRESH.py ├── sphere_harmonic_lighting │ └── sh.osl └── utils.py ├── data ├── .gitignore └── refresh.png ├── miscs └── process_bundlefusion.py ├── pkl ├── idx_info.pickle └── segm_per_v_overlap.pkl ├── setup ├── blender_requirements.txt ├── conda_environment.yml └── download_BundleFusion.sh └── smpl_data ├── README.md ├── download_smpl_data.sh └── files └── files_smpl_data.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/README.md -------------------------------------------------------------------------------- /blender/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/README.md -------------------------------------------------------------------------------- /blender/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/camera.py -------------------------------------------------------------------------------- /blender/configs/body_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/configs/body_config -------------------------------------------------------------------------------- /blender/configs/main_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/configs/main_config -------------------------------------------------------------------------------- /blender/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/io_utils.py -------------------------------------------------------------------------------- /blender/motion_mechanism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/motion_mechanism.py -------------------------------------------------------------------------------- /blender/motion_surreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/motion_surreal.py -------------------------------------------------------------------------------- /blender/parse_humans_from_trajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/parse_humans_from_trajectories.py -------------------------------------------------------------------------------- /blender/parse_static_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/parse_static_scene.py -------------------------------------------------------------------------------- /blender/quick_run/render_humans_from_trajectories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/quick_run/render_humans_from_trajectories.sh -------------------------------------------------------------------------------- /blender/quick_run/render_static_scenes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/quick_run/render_static_scenes.sh -------------------------------------------------------------------------------- /blender/quick_run/render_synthetic_humans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/quick_run/render_synthetic_humans.sh -------------------------------------------------------------------------------- /blender/render_bodies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/render_bodies.py -------------------------------------------------------------------------------- /blender/render_humans_from_trajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/render_humans_from_trajectories.py -------------------------------------------------------------------------------- /blender/render_static_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/render_static_scenes.py -------------------------------------------------------------------------------- /blender/run_BundleFusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/run_BundleFusion.py -------------------------------------------------------------------------------- /blender/run_RefRESH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/run_RefRESH.py -------------------------------------------------------------------------------- /blender/sphere_harmonic_lighting/sh.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/sphere_harmonic_lighting/sh.osl -------------------------------------------------------------------------------- /blender/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/blender/utils.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | /RefRESH 2 | -------------------------------------------------------------------------------- /data/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/data/refresh.png -------------------------------------------------------------------------------- /miscs/process_bundlefusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/miscs/process_bundlefusion.py -------------------------------------------------------------------------------- /pkl/idx_info.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/pkl/idx_info.pickle -------------------------------------------------------------------------------- /pkl/segm_per_v_overlap.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/pkl/segm_per_v_overlap.pkl -------------------------------------------------------------------------------- /setup/blender_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/setup/blender_requirements.txt -------------------------------------------------------------------------------- /setup/conda_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/setup/conda_environment.yml -------------------------------------------------------------------------------- /setup/download_BundleFusion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/setup/download_BundleFusion.sh -------------------------------------------------------------------------------- /smpl_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/smpl_data/README.md -------------------------------------------------------------------------------- /smpl_data/download_smpl_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/smpl_data/download_smpl_data.sh -------------------------------------------------------------------------------- /smpl_data/files/files_smpl_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvzhaoyang/RefRESH/HEAD/smpl_data/files/files_smpl_data.txt --------------------------------------------------------------------------------