├── .gitignore ├── LICENSE ├── README.md ├── data_sample └── spot │ ├── LICENSE.txt │ ├── colmap │ ├── cameras.txt │ ├── images.txt │ └── points3D.txt │ ├── spot.mtl │ ├── spot.obj │ └── spot_texture.png └── render_image_from_sfm.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # xgrids_games -------------------------------------------------------------------------------- /data_sample/spot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/LICENSE.txt -------------------------------------------------------------------------------- /data_sample/spot/colmap/cameras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/colmap/cameras.txt -------------------------------------------------------------------------------- /data_sample/spot/colmap/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/colmap/images.txt -------------------------------------------------------------------------------- /data_sample/spot/colmap/points3D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/colmap/points3D.txt -------------------------------------------------------------------------------- /data_sample/spot/spot.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/spot.mtl -------------------------------------------------------------------------------- /data_sample/spot/spot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/spot.obj -------------------------------------------------------------------------------- /data_sample/spot/spot_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/data_sample/spot/spot_texture.png -------------------------------------------------------------------------------- /render_image_from_sfm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgrids/xgrids_games/HEAD/render_image_from_sfm.ipynb --------------------------------------------------------------------------------