├── .gitignore ├── LICENSE ├── README.md ├── dataset └── README.txt ├── models └── README.txt ├── render_human.py ├── render_pose.py ├── render_scene.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/README.md -------------------------------------------------------------------------------- /dataset/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/dataset/README.txt -------------------------------------------------------------------------------- /models/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/models/README.txt -------------------------------------------------------------------------------- /render_human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/render_human.py -------------------------------------------------------------------------------- /render_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/render_pose.py -------------------------------------------------------------------------------- /render_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/render_scene.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Junggy/SCRREAM/HEAD/requirements.txt --------------------------------------------------------------------------------