├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── RealityCaptureToColmap.py ├── RealityCaptureToColmap.v2.md ├── RealityCaptureToColmap.v2.py ├── WebGUI.py ├── kapture ├── __pycache__ │ └── path_to_kapture.cpython-312.pyc ├── kapture_data_date_ranges.py ├── kapture_download_dataset.py ├── kapture_export_4seasons_pairs.py ├── kapture_export_ETH_MS_LTVL.py ├── kapture_export_LTVL2020.py ├── kapture_export_colmap.py ├── kapture_export_depth_images.py ├── kapture_export_image_list.py ├── kapture_export_openmvg.py ├── kapture_export_opensfm.py ├── kapture_export_ply.py ├── kapture_extract_exif.py ├── kapture_import_12scenes.py ├── kapture_import_4seasons.py ├── kapture_import_7scenes.py ├── kapture_import_Extended_CMU_Seasons.py ├── kapture_import_IDL_dataset_cvpr17.py ├── kapture_import_RIO10.py ├── kapture_import_RobotCar_Seasons.py ├── kapture_import_bundler.py ├── kapture_import_colmap.py ├── kapture_import_image_folder.py ├── kapture_import_image_list.py ├── kapture_import_image_list_with_poses.py ├── kapture_import_nvm.py ├── kapture_import_openmvg.py ├── kapture_import_opensfm.py ├── kapture_import_rosbag.py ├── kapture_import_silda.py ├── kapture_import_stereolabs.py ├── kapture_import_symphony_seasons.py ├── kapture_import_utbm.py ├── kapture_import_virtual_gallery.py ├── kapture_merge.py ├── kapture_print.py ├── kapture_rename_features.py ├── kapture_upgrade_1_0_to_1_1.py ├── kapture_upgrade_1_0_to_1_1_inplace.py ├── kapture_upgrade_1_0_to_1_1_orphan_features.py └── path_to_kapture.py ├── media ├── bundler.png ├── camerabin.png ├── dragdrop.png ├── error.png ├── imagelist.png ├── path.png ├── poses.png ├── postshot.png ├── processdone.png ├── starttrainting.png └── webgui.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/README.md -------------------------------------------------------------------------------- /RealityCaptureToColmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/RealityCaptureToColmap.py -------------------------------------------------------------------------------- /RealityCaptureToColmap.v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/RealityCaptureToColmap.v2.md -------------------------------------------------------------------------------- /RealityCaptureToColmap.v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/RealityCaptureToColmap.v2.py -------------------------------------------------------------------------------- /WebGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/WebGUI.py -------------------------------------------------------------------------------- /kapture/__pycache__/path_to_kapture.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/__pycache__/path_to_kapture.cpython-312.pyc -------------------------------------------------------------------------------- /kapture/kapture_data_date_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_data_date_ranges.py -------------------------------------------------------------------------------- /kapture/kapture_download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_download_dataset.py -------------------------------------------------------------------------------- /kapture/kapture_export_4seasons_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_4seasons_pairs.py -------------------------------------------------------------------------------- /kapture/kapture_export_ETH_MS_LTVL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_ETH_MS_LTVL.py -------------------------------------------------------------------------------- /kapture/kapture_export_LTVL2020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_LTVL2020.py -------------------------------------------------------------------------------- /kapture/kapture_export_colmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_colmap.py -------------------------------------------------------------------------------- /kapture/kapture_export_depth_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_depth_images.py -------------------------------------------------------------------------------- /kapture/kapture_export_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_image_list.py -------------------------------------------------------------------------------- /kapture/kapture_export_openmvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_openmvg.py -------------------------------------------------------------------------------- /kapture/kapture_export_opensfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_opensfm.py -------------------------------------------------------------------------------- /kapture/kapture_export_ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_export_ply.py -------------------------------------------------------------------------------- /kapture/kapture_extract_exif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_extract_exif.py -------------------------------------------------------------------------------- /kapture/kapture_import_12scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_12scenes.py -------------------------------------------------------------------------------- /kapture/kapture_import_4seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_4seasons.py -------------------------------------------------------------------------------- /kapture/kapture_import_7scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_7scenes.py -------------------------------------------------------------------------------- /kapture/kapture_import_Extended_CMU_Seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_Extended_CMU_Seasons.py -------------------------------------------------------------------------------- /kapture/kapture_import_IDL_dataset_cvpr17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_IDL_dataset_cvpr17.py -------------------------------------------------------------------------------- /kapture/kapture_import_RIO10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_RIO10.py -------------------------------------------------------------------------------- /kapture/kapture_import_RobotCar_Seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_RobotCar_Seasons.py -------------------------------------------------------------------------------- /kapture/kapture_import_bundler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_bundler.py -------------------------------------------------------------------------------- /kapture/kapture_import_colmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_colmap.py -------------------------------------------------------------------------------- /kapture/kapture_import_image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_image_folder.py -------------------------------------------------------------------------------- /kapture/kapture_import_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_image_list.py -------------------------------------------------------------------------------- /kapture/kapture_import_image_list_with_poses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_image_list_with_poses.py -------------------------------------------------------------------------------- /kapture/kapture_import_nvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_nvm.py -------------------------------------------------------------------------------- /kapture/kapture_import_openmvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_openmvg.py -------------------------------------------------------------------------------- /kapture/kapture_import_opensfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_opensfm.py -------------------------------------------------------------------------------- /kapture/kapture_import_rosbag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_rosbag.py -------------------------------------------------------------------------------- /kapture/kapture_import_silda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_silda.py -------------------------------------------------------------------------------- /kapture/kapture_import_stereolabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_stereolabs.py -------------------------------------------------------------------------------- /kapture/kapture_import_symphony_seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_symphony_seasons.py -------------------------------------------------------------------------------- /kapture/kapture_import_utbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_utbm.py -------------------------------------------------------------------------------- /kapture/kapture_import_virtual_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_import_virtual_gallery.py -------------------------------------------------------------------------------- /kapture/kapture_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_merge.py -------------------------------------------------------------------------------- /kapture/kapture_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_print.py -------------------------------------------------------------------------------- /kapture/kapture_rename_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_rename_features.py -------------------------------------------------------------------------------- /kapture/kapture_upgrade_1_0_to_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_upgrade_1_0_to_1_1.py -------------------------------------------------------------------------------- /kapture/kapture_upgrade_1_0_to_1_1_inplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_upgrade_1_0_to_1_1_inplace.py -------------------------------------------------------------------------------- /kapture/kapture_upgrade_1_0_to_1_1_orphan_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/kapture_upgrade_1_0_to_1_1_orphan_features.py -------------------------------------------------------------------------------- /kapture/path_to_kapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/kapture/path_to_kapture.py -------------------------------------------------------------------------------- /media/bundler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/bundler.png -------------------------------------------------------------------------------- /media/camerabin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/camerabin.png -------------------------------------------------------------------------------- /media/dragdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/dragdrop.png -------------------------------------------------------------------------------- /media/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/error.png -------------------------------------------------------------------------------- /media/imagelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/imagelist.png -------------------------------------------------------------------------------- /media/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/path.png -------------------------------------------------------------------------------- /media/poses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/poses.png -------------------------------------------------------------------------------- /media/postshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/postshot.png -------------------------------------------------------------------------------- /media/processdone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/processdone.png -------------------------------------------------------------------------------- /media/starttrainting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/starttrainting.png -------------------------------------------------------------------------------- /media/webgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/RealityCapture-to-Postshot/HEAD/media/webgui.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | kapture 2 | streamlit --------------------------------------------------------------------------------