├── .gitignore ├── README.md ├── __init__.py ├── aggregate_2p5d.py ├── aggregate_2p5d_util.py ├── aggregate_3d.py ├── aoi_config └── MVS3DM_Explorer.json ├── camera_approx.py ├── clean_data.py ├── colmap ├── __init__.py ├── database.py ├── extract_raw_matches.py ├── extract_sfm.py ├── read_dense.py └── read_model.py ├── colmap_mvs_commands.py ├── colmap_sfm_commands.py ├── colmap_sfm_perspective.py ├── colmap_sfm_utils.py ├── coordinate_system.py ├── debuggers ├── __init__.py ├── inspect_sfm.py └── sfm_debug_warping_subarea.py ├── image_crop.py ├── lib ├── __init__.py ├── blank_ratio.py ├── check_bbx.py ├── check_error.py ├── dsm_util.py ├── esti_linear.py ├── gen_grid.py ├── latlon_utm_converter.py ├── latlonalt_enu_converter.py ├── logger.py ├── parse_meta.py ├── ply_np_converter.py ├── plyfile.py ├── proj_to_grid.py ├── rpc_model.py ├── run_cmd.py ├── solve_affine.py ├── solve_perspective.py ├── timer.py └── tone_map.py ├── precompute_altitude_range.py ├── produce_dsm.py ├── reparam_depth.py ├── requirements.txt ├── stereo_pipeline.py └── visualization ├── __init__.py ├── colormap_height.txt ├── plot_error_map.py ├── plot_height_map.py └── save_image_only.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/__init__.py -------------------------------------------------------------------------------- /aggregate_2p5d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/aggregate_2p5d.py -------------------------------------------------------------------------------- /aggregate_2p5d_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/aggregate_2p5d_util.py -------------------------------------------------------------------------------- /aggregate_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/aggregate_3d.py -------------------------------------------------------------------------------- /aoi_config/MVS3DM_Explorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/aoi_config/MVS3DM_Explorer.json -------------------------------------------------------------------------------- /camera_approx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/camera_approx.py -------------------------------------------------------------------------------- /clean_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/clean_data.py -------------------------------------------------------------------------------- /colmap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/__init__.py -------------------------------------------------------------------------------- /colmap/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/database.py -------------------------------------------------------------------------------- /colmap/extract_raw_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/extract_raw_matches.py -------------------------------------------------------------------------------- /colmap/extract_sfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/extract_sfm.py -------------------------------------------------------------------------------- /colmap/read_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/read_dense.py -------------------------------------------------------------------------------- /colmap/read_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap/read_model.py -------------------------------------------------------------------------------- /colmap_mvs_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap_mvs_commands.py -------------------------------------------------------------------------------- /colmap_sfm_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap_sfm_commands.py -------------------------------------------------------------------------------- /colmap_sfm_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap_sfm_perspective.py -------------------------------------------------------------------------------- /colmap_sfm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/colmap_sfm_utils.py -------------------------------------------------------------------------------- /coordinate_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/coordinate_system.py -------------------------------------------------------------------------------- /debuggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/debuggers/__init__.py -------------------------------------------------------------------------------- /debuggers/inspect_sfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/debuggers/inspect_sfm.py -------------------------------------------------------------------------------- /debuggers/sfm_debug_warping_subarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/debuggers/sfm_debug_warping_subarea.py -------------------------------------------------------------------------------- /image_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/image_crop.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/blank_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/blank_ratio.py -------------------------------------------------------------------------------- /lib/check_bbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/check_bbx.py -------------------------------------------------------------------------------- /lib/check_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/check_error.py -------------------------------------------------------------------------------- /lib/dsm_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/dsm_util.py -------------------------------------------------------------------------------- /lib/esti_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/esti_linear.py -------------------------------------------------------------------------------- /lib/gen_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/gen_grid.py -------------------------------------------------------------------------------- /lib/latlon_utm_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/latlon_utm_converter.py -------------------------------------------------------------------------------- /lib/latlonalt_enu_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/latlonalt_enu_converter.py -------------------------------------------------------------------------------- /lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/logger.py -------------------------------------------------------------------------------- /lib/parse_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/parse_meta.py -------------------------------------------------------------------------------- /lib/ply_np_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/ply_np_converter.py -------------------------------------------------------------------------------- /lib/plyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/plyfile.py -------------------------------------------------------------------------------- /lib/proj_to_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/proj_to_grid.py -------------------------------------------------------------------------------- /lib/rpc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/rpc_model.py -------------------------------------------------------------------------------- /lib/run_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/run_cmd.py -------------------------------------------------------------------------------- /lib/solve_affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/solve_affine.py -------------------------------------------------------------------------------- /lib/solve_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/solve_perspective.py -------------------------------------------------------------------------------- /lib/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/timer.py -------------------------------------------------------------------------------- /lib/tone_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/lib/tone_map.py -------------------------------------------------------------------------------- /precompute_altitude_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/precompute_altitude_range.py -------------------------------------------------------------------------------- /produce_dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/produce_dsm.py -------------------------------------------------------------------------------- /reparam_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/reparam_depth.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/requirements.txt -------------------------------------------------------------------------------- /stereo_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/stereo_pipeline.py -------------------------------------------------------------------------------- /visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/visualization/__init__.py -------------------------------------------------------------------------------- /visualization/colormap_height.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/visualization/colormap_height.txt -------------------------------------------------------------------------------- /visualization/plot_error_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/visualization/plot_error_map.py -------------------------------------------------------------------------------- /visualization/plot_height_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/visualization/plot_height_map.py -------------------------------------------------------------------------------- /visualization/save_image_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kai-46/VisSatSatelliteStereo/HEAD/visualization/save_image_only.py --------------------------------------------------------------------------------