├── .coveragerc ├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── cars-ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── Bug.md │ ├── Proposal.md │ ├── Refacto.md │ └── Release.md └── merge_request_templates │ └── MR.md ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.md ├── cars ├── __init__.py ├── applications │ ├── __init__.py │ ├── application.py │ ├── application_constants.py │ ├── application_template.py │ ├── auxiliary_filling │ │ ├── __init__.py │ │ ├── abstract_auxiliary_filling_app.py │ │ ├── auxiliary_filling_algo.py │ │ ├── auxiliary_filling_from_sensors_app.py │ │ └── auxiliary_filling_wrappers.py │ ├── dem_generation │ │ ├── __init__.py │ │ ├── abstract_dem_generation_app.py │ │ ├── bulldozer_config │ │ │ └── base_config.yaml │ │ ├── bulldozer_dem_app.py │ │ ├── bulldozer_memory.py │ │ ├── dem_generation_algo.py │ │ ├── dem_generation_constants.py │ │ └── dem_generation_wrappers.py │ ├── dense_match_filling │ │ ├── __init__.py │ │ ├── abstract_dense_match_filling_app.py │ │ ├── fill_disp_algo.py │ │ ├── fill_disp_constants.py │ │ ├── fill_disp_wrappers.py │ │ └── zero_padding_app.py │ ├── dense_matching │ │ ├── __init__.py │ │ ├── abstract_dense_matching_app.py │ │ ├── census_mccnn_sgm_app.py │ │ ├── cpp │ │ │ ├── __init__.py │ │ │ ├── dense_matching_cpp.py │ │ │ ├── includes │ │ │ │ └── dense_matching.hpp │ │ │ ├── meson.build │ │ │ └── src │ │ │ │ ├── bindings.cpp │ │ │ │ └── dense_matching.cpp │ │ ├── dense_matching_algo.py │ │ ├── dense_matching_constants.py │ │ ├── dense_matching_wrappers.py │ │ ├── disparity_grid_algo.py │ │ └── loaders │ │ │ ├── __init__.py │ │ │ ├── config_census_sgm_default.json │ │ │ ├── config_census_sgm_homogeneous.json │ │ │ ├── config_census_sgm_mountain_and_vegetation.json │ │ │ ├── config_census_sgm_shadow.json │ │ │ ├── config_census_sgm_sparse.json │ │ │ ├── config_census_sgm_urban.json │ │ │ ├── config_mapping.json │ │ │ ├── config_mccnn.json │ │ │ ├── global_land_cover_map.tif │ │ │ └── pandora_loader.py │ ├── dsm_filling │ │ ├── __init__.py │ │ ├── abstract_dsm_filling_app.py │ │ ├── border_interpolation_app.py │ │ ├── bulldozer_config │ │ │ └── base_config.yaml │ │ ├── bulldozer_filling_app.py │ │ └── exogenous_filling_app.py │ ├── grid_generation │ │ ├── __init__.py │ │ ├── abstract_grid_generation_app.py │ │ ├── epipolar_grid_generation_app.py │ │ ├── grid_correction_app.py │ │ ├── grid_generation_algo.py │ │ ├── grid_generation_constants.py │ │ └── transform_grid.py │ ├── ground_truth_reprojection │ │ ├── __init__.py │ │ ├── abstract_ground_truth_reprojection_app.py │ │ ├── direct_localization_app.py │ │ └── ground_truth_reprojection_algo.py │ ├── point_cloud_outlier_removal │ │ ├── __init__.py │ │ ├── abstract_outlier_removal_app.py │ │ ├── outlier_removal_algo.py │ │ ├── outlier_removal_constants.py │ │ ├── small_components_app.py │ │ └── statistical_app.py │ ├── rasterization │ │ ├── __init__.py │ │ ├── abstract_pc_rasterization_app.py │ │ ├── rasterization_algo.py │ │ ├── rasterization_constants.py │ │ ├── rasterization_wrappers.py │ │ └── simple_gaussian_app.py │ ├── resampling │ │ ├── __init__.py │ │ ├── abstract_resampling_app.py │ │ ├── bicubic_resampling_app.py │ │ ├── resampling_algo.py │ │ ├── resampling_constants.py │ │ └── resampling_wrappers.py │ ├── sparse_matching │ │ ├── __init__.py │ │ ├── abstract_sparse_matching_app.py │ │ ├── sift_app.py │ │ ├── sparse_matching_algo.py │ │ ├── sparse_matching_constants.py │ │ └── sparse_matching_wrappers.py │ └── triangulation │ │ ├── __init__.py │ │ ├── abstract_triangulation_app.py │ │ ├── line_of_sight_intersection_app.py │ │ ├── pc_transform.py │ │ ├── triangulation_algo.py │ │ ├── triangulation_constants.py │ │ └── triangulation_wrappers.py ├── bundleadjustment.py ├── cars.py ├── conf │ ├── __init__.py │ ├── geoid │ │ ├── egm96.grd │ │ └── egm96.grd.hdr │ ├── input_parameters.py │ └── mask_cst.py ├── core │ ├── __init__.py │ ├── cars_logging.py │ ├── constants.py │ ├── constants_disparity.py │ ├── datasets.py │ ├── geometry │ │ ├── __init__.py │ │ ├── abstract_geometry.py │ │ └── shareloc_geometry.py │ ├── inputs.py │ ├── outputs.py │ ├── preprocessing.py │ ├── projection.py │ ├── roi_tools.py │ ├── tiling.py │ └── utils.py ├── data_structures │ ├── __init__.py │ ├── cars_dataset.py │ ├── cars_dict.py │ ├── corresponding_tiles_tools.py │ ├── dataframe_converter.py │ └── format_transformation.py ├── devibrate.py ├── extractroi.py ├── orchestrator │ ├── __init__.py │ ├── achievement_tracker.py │ ├── cluster │ │ ├── __init__.py │ │ ├── abstract_cluster.py │ │ ├── abstract_dask_cluster.py │ │ ├── dask_cluster_tools.py │ │ ├── dask_config │ │ │ ├── README.md │ │ │ ├── dask.yaml │ │ │ ├── distributed.yaml │ │ │ ├── jobqueue.yaml │ │ │ └── reference_confs │ │ │ │ ├── dask-schema.yaml │ │ │ │ ├── dask.yaml │ │ │ │ ├── distributed-schema.yaml │ │ │ │ ├── distributed.yaml │ │ │ │ └── jobqueue.yaml │ │ ├── dask_jobqueue_utils.py │ │ ├── local_dask_cluster.py │ │ ├── log_wrapper.py │ │ ├── mp_cluster │ │ │ ├── __init__.py │ │ │ ├── mp_factorizer.py │ │ │ ├── mp_objects.py │ │ │ ├── mp_tools.py │ │ │ ├── mp_wrapper.py │ │ │ ├── multiprocessing_cluster.py │ │ │ └── multiprocessing_profiler.py │ │ ├── pbs_dask_cluster.py │ │ ├── sequential_cluster.py │ │ └── slurm_dask_cluster.py │ ├── orchestrator.py │ ├── orchestrator_constants.py │ ├── registry │ │ ├── __init__.py │ │ ├── abstract_registry.py │ │ ├── compute_registry.py │ │ ├── id_generator.py │ │ ├── replacer_registry.py │ │ ├── saver_registry.py │ │ └── unseen_registry.py │ └── tiles_profiler.py ├── pipelines │ ├── __init__.py │ ├── conf_resolution │ │ ├── conf_final_resolution.yaml │ │ ├── conf_first_resolution.yaml │ │ └── conf_intermediate_resolution.yaml │ ├── default │ │ ├── __init__.py │ │ └── default_pipeline.py │ ├── parameters │ │ ├── __init__.py │ │ ├── advanced_parameters.py │ │ ├── advanced_parameters_constants.py │ │ ├── application_parameters.py │ │ ├── depth_map_inputs.py │ │ ├── dsm_inputs.py │ │ ├── dsm_inputs_constants.py │ │ ├── output_constants.py │ │ ├── output_parameters.py │ │ ├── sensor_inputs.py │ │ ├── sensor_inputs_constants.py │ │ └── sensor_loaders │ │ │ ├── __init__.py │ │ │ ├── basic_classif_loader.py │ │ │ ├── basic_image_loader.py │ │ │ ├── pivot_classif_loader.py │ │ │ ├── pivot_image_loader.py │ │ │ ├── sensor_loader.py │ │ │ ├── sensor_loader_template.py │ │ │ └── slurp_classif_loader.py │ ├── pipeline.py │ ├── pipeline_constants.py │ ├── pipeline_template.py │ └── unit │ │ ├── __init__.py │ │ └── unit_pipeline.py └── starter.py ├── ci ├── cars-deps-env │ └── Dockerfile ├── cars-docker-build.yml ├── cars-no-docker-build.yml └── hadolint_RNC_A_B_C_D.yaml ├── meson.build ├── pyproject.toml ├── pytest.ini ├── ref_updating.py ├── setup.py ├── sonar-project.properties └── version.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cars-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.github/workflows/cars-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab/issue_templates/Proposal.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Refacto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab/issue_templates/Refacto.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab/issue_templates/Release.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/MR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.gitlab/merge_request_templates/MR.md -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/README.md -------------------------------------------------------------------------------- /cars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/__init__.py -------------------------------------------------------------------------------- /cars/applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/__init__.py -------------------------------------------------------------------------------- /cars/applications/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/application.py -------------------------------------------------------------------------------- /cars/applications/application_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/application_constants.py -------------------------------------------------------------------------------- /cars/applications/application_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/application_template.py -------------------------------------------------------------------------------- /cars/applications/auxiliary_filling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/auxiliary_filling/__init__.py -------------------------------------------------------------------------------- /cars/applications/auxiliary_filling/abstract_auxiliary_filling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/auxiliary_filling/abstract_auxiliary_filling_app.py -------------------------------------------------------------------------------- /cars/applications/auxiliary_filling/auxiliary_filling_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/auxiliary_filling/auxiliary_filling_algo.py -------------------------------------------------------------------------------- /cars/applications/auxiliary_filling/auxiliary_filling_from_sensors_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/auxiliary_filling/auxiliary_filling_from_sensors_app.py -------------------------------------------------------------------------------- /cars/applications/auxiliary_filling/auxiliary_filling_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/auxiliary_filling/auxiliary_filling_wrappers.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/__init__.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/abstract_dem_generation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/abstract_dem_generation_app.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/bulldozer_config/base_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/bulldozer_config/base_config.yaml -------------------------------------------------------------------------------- /cars/applications/dem_generation/bulldozer_dem_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/bulldozer_dem_app.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/bulldozer_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/bulldozer_memory.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/dem_generation_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/dem_generation_algo.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/dem_generation_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/dem_generation_constants.py -------------------------------------------------------------------------------- /cars/applications/dem_generation/dem_generation_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dem_generation/dem_generation_wrappers.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/__init__.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/abstract_dense_match_filling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/abstract_dense_match_filling_app.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/fill_disp_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/fill_disp_algo.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/fill_disp_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/fill_disp_constants.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/fill_disp_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/fill_disp_wrappers.py -------------------------------------------------------------------------------- /cars/applications/dense_match_filling/zero_padding_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_match_filling/zero_padding_app.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/__init__.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/abstract_dense_matching_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/abstract_dense_matching_app.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/census_mccnn_sgm_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/census_mccnn_sgm_app.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/dense_matching_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/cpp/dense_matching_cpp.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/includes/dense_matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/cpp/includes/dense_matching.hpp -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/cpp/meson.build -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/src/bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/cpp/src/bindings.cpp -------------------------------------------------------------------------------- /cars/applications/dense_matching/cpp/src/dense_matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/cpp/src/dense_matching.cpp -------------------------------------------------------------------------------- /cars/applications/dense_matching/dense_matching_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/dense_matching_algo.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/dense_matching_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/dense_matching_constants.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/dense_matching_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/dense_matching_wrappers.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/disparity_grid_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/disparity_grid_algo.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/__init__.py -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_default.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_homogeneous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_homogeneous.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_mountain_and_vegetation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_mountain_and_vegetation.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_shadow.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_sparse.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_census_sgm_urban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_census_sgm_urban.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_mapping.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/config_mccnn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/config_mccnn.json -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/global_land_cover_map.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/global_land_cover_map.tif -------------------------------------------------------------------------------- /cars/applications/dense_matching/loaders/pandora_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dense_matching/loaders/pandora_loader.py -------------------------------------------------------------------------------- /cars/applications/dsm_filling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/__init__.py -------------------------------------------------------------------------------- /cars/applications/dsm_filling/abstract_dsm_filling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/abstract_dsm_filling_app.py -------------------------------------------------------------------------------- /cars/applications/dsm_filling/border_interpolation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/border_interpolation_app.py -------------------------------------------------------------------------------- /cars/applications/dsm_filling/bulldozer_config/base_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/bulldozer_config/base_config.yaml -------------------------------------------------------------------------------- /cars/applications/dsm_filling/bulldozer_filling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/bulldozer_filling_app.py -------------------------------------------------------------------------------- /cars/applications/dsm_filling/exogenous_filling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/dsm_filling/exogenous_filling_app.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/__init__.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/abstract_grid_generation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/abstract_grid_generation_app.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/epipolar_grid_generation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/epipolar_grid_generation_app.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/grid_correction_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/grid_correction_app.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/grid_generation_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/grid_generation_algo.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/grid_generation_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/grid_generation_constants.py -------------------------------------------------------------------------------- /cars/applications/grid_generation/transform_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/grid_generation/transform_grid.py -------------------------------------------------------------------------------- /cars/applications/ground_truth_reprojection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/ground_truth_reprojection/__init__.py -------------------------------------------------------------------------------- /cars/applications/ground_truth_reprojection/abstract_ground_truth_reprojection_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/ground_truth_reprojection/abstract_ground_truth_reprojection_app.py -------------------------------------------------------------------------------- /cars/applications/ground_truth_reprojection/direct_localization_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/ground_truth_reprojection/direct_localization_app.py -------------------------------------------------------------------------------- /cars/applications/ground_truth_reprojection/ground_truth_reprojection_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/ground_truth_reprojection/ground_truth_reprojection_algo.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/__init__.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/abstract_outlier_removal_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/abstract_outlier_removal_app.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/outlier_removal_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/outlier_removal_algo.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/outlier_removal_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/outlier_removal_constants.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/small_components_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/small_components_app.py -------------------------------------------------------------------------------- /cars/applications/point_cloud_outlier_removal/statistical_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/point_cloud_outlier_removal/statistical_app.py -------------------------------------------------------------------------------- /cars/applications/rasterization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/__init__.py -------------------------------------------------------------------------------- /cars/applications/rasterization/abstract_pc_rasterization_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/abstract_pc_rasterization_app.py -------------------------------------------------------------------------------- /cars/applications/rasterization/rasterization_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/rasterization_algo.py -------------------------------------------------------------------------------- /cars/applications/rasterization/rasterization_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/rasterization_constants.py -------------------------------------------------------------------------------- /cars/applications/rasterization/rasterization_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/rasterization_wrappers.py -------------------------------------------------------------------------------- /cars/applications/rasterization/simple_gaussian_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/rasterization/simple_gaussian_app.py -------------------------------------------------------------------------------- /cars/applications/resampling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/__init__.py -------------------------------------------------------------------------------- /cars/applications/resampling/abstract_resampling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/abstract_resampling_app.py -------------------------------------------------------------------------------- /cars/applications/resampling/bicubic_resampling_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/bicubic_resampling_app.py -------------------------------------------------------------------------------- /cars/applications/resampling/resampling_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/resampling_algo.py -------------------------------------------------------------------------------- /cars/applications/resampling/resampling_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/resampling_constants.py -------------------------------------------------------------------------------- /cars/applications/resampling/resampling_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/resampling/resampling_wrappers.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/__init__.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/abstract_sparse_matching_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/abstract_sparse_matching_app.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/sift_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/sift_app.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/sparse_matching_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/sparse_matching_algo.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/sparse_matching_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/sparse_matching_constants.py -------------------------------------------------------------------------------- /cars/applications/sparse_matching/sparse_matching_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/sparse_matching/sparse_matching_wrappers.py -------------------------------------------------------------------------------- /cars/applications/triangulation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/__init__.py -------------------------------------------------------------------------------- /cars/applications/triangulation/abstract_triangulation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/abstract_triangulation_app.py -------------------------------------------------------------------------------- /cars/applications/triangulation/line_of_sight_intersection_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/line_of_sight_intersection_app.py -------------------------------------------------------------------------------- /cars/applications/triangulation/pc_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/pc_transform.py -------------------------------------------------------------------------------- /cars/applications/triangulation/triangulation_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/triangulation_algo.py -------------------------------------------------------------------------------- /cars/applications/triangulation/triangulation_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/triangulation_constants.py -------------------------------------------------------------------------------- /cars/applications/triangulation/triangulation_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/applications/triangulation/triangulation_wrappers.py -------------------------------------------------------------------------------- /cars/bundleadjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/bundleadjustment.py -------------------------------------------------------------------------------- /cars/cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/cars.py -------------------------------------------------------------------------------- /cars/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/conf/__init__.py -------------------------------------------------------------------------------- /cars/conf/geoid/egm96.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/conf/geoid/egm96.grd -------------------------------------------------------------------------------- /cars/conf/geoid/egm96.grd.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/conf/geoid/egm96.grd.hdr -------------------------------------------------------------------------------- /cars/conf/input_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/conf/input_parameters.py -------------------------------------------------------------------------------- /cars/conf/mask_cst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/conf/mask_cst.py -------------------------------------------------------------------------------- /cars/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/__init__.py -------------------------------------------------------------------------------- /cars/core/cars_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/cars_logging.py -------------------------------------------------------------------------------- /cars/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/constants.py -------------------------------------------------------------------------------- /cars/core/constants_disparity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/constants_disparity.py -------------------------------------------------------------------------------- /cars/core/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/datasets.py -------------------------------------------------------------------------------- /cars/core/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/geometry/__init__.py -------------------------------------------------------------------------------- /cars/core/geometry/abstract_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/geometry/abstract_geometry.py -------------------------------------------------------------------------------- /cars/core/geometry/shareloc_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/geometry/shareloc_geometry.py -------------------------------------------------------------------------------- /cars/core/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/inputs.py -------------------------------------------------------------------------------- /cars/core/outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/outputs.py -------------------------------------------------------------------------------- /cars/core/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/preprocessing.py -------------------------------------------------------------------------------- /cars/core/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/projection.py -------------------------------------------------------------------------------- /cars/core/roi_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/roi_tools.py -------------------------------------------------------------------------------- /cars/core/tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/tiling.py -------------------------------------------------------------------------------- /cars/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/core/utils.py -------------------------------------------------------------------------------- /cars/data_structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/__init__.py -------------------------------------------------------------------------------- /cars/data_structures/cars_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/cars_dataset.py -------------------------------------------------------------------------------- /cars/data_structures/cars_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/cars_dict.py -------------------------------------------------------------------------------- /cars/data_structures/corresponding_tiles_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/corresponding_tiles_tools.py -------------------------------------------------------------------------------- /cars/data_structures/dataframe_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/dataframe_converter.py -------------------------------------------------------------------------------- /cars/data_structures/format_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/data_structures/format_transformation.py -------------------------------------------------------------------------------- /cars/devibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/devibrate.py -------------------------------------------------------------------------------- /cars/extractroi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/extractroi.py -------------------------------------------------------------------------------- /cars/orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/__init__.py -------------------------------------------------------------------------------- /cars/orchestrator/achievement_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/achievement_tracker.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/__init__.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/abstract_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/abstract_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/abstract_dask_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/abstract_dask_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_cluster_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_cluster_tools.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/README.md -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/dask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/dask.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/distributed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/distributed.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/jobqueue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/jobqueue.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/reference_confs/dask-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/reference_confs/dask-schema.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/reference_confs/dask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/reference_confs/dask.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/reference_confs/distributed-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/reference_confs/distributed-schema.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/reference_confs/distributed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/reference_confs/distributed.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_config/reference_confs/jobqueue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_config/reference_confs/jobqueue.yaml -------------------------------------------------------------------------------- /cars/orchestrator/cluster/dask_jobqueue_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/dask_jobqueue_utils.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/local_dask_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/local_dask_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/log_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/log_wrapper.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/__init__.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/mp_factorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/mp_factorizer.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/mp_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/mp_objects.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/mp_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/mp_tools.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/mp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/mp_wrapper.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/multiprocessing_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/multiprocessing_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/mp_cluster/multiprocessing_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/mp_cluster/multiprocessing_profiler.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/pbs_dask_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/pbs_dask_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/sequential_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/sequential_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/cluster/slurm_dask_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/cluster/slurm_dask_cluster.py -------------------------------------------------------------------------------- /cars/orchestrator/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/orchestrator.py -------------------------------------------------------------------------------- /cars/orchestrator/orchestrator_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/orchestrator_constants.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/__init__.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/abstract_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/abstract_registry.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/compute_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/compute_registry.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/id_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/id_generator.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/replacer_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/replacer_registry.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/saver_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/saver_registry.py -------------------------------------------------------------------------------- /cars/orchestrator/registry/unseen_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/registry/unseen_registry.py -------------------------------------------------------------------------------- /cars/orchestrator/tiles_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/orchestrator/tiles_profiler.py -------------------------------------------------------------------------------- /cars/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/__init__.py -------------------------------------------------------------------------------- /cars/pipelines/conf_resolution/conf_final_resolution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/conf_resolution/conf_final_resolution.yaml -------------------------------------------------------------------------------- /cars/pipelines/conf_resolution/conf_first_resolution.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | {} 3 | -------------------------------------------------------------------------------- /cars/pipelines/conf_resolution/conf_intermediate_resolution.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | {} 3 | -------------------------------------------------------------------------------- /cars/pipelines/default/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/default/__init__.py -------------------------------------------------------------------------------- /cars/pipelines/default/default_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/default/default_pipeline.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cars/pipelines/parameters/advanced_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/advanced_parameters.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/advanced_parameters_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/advanced_parameters_constants.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/application_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/application_parameters.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/depth_map_inputs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cars/pipelines/parameters/dsm_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/dsm_inputs.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/dsm_inputs_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/dsm_inputs_constants.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/output_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/output_constants.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/output_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/output_parameters.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_inputs.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_inputs_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_inputs_constants.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/__init__.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/basic_classif_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/basic_classif_loader.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/basic_image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/basic_image_loader.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/pivot_classif_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/pivot_classif_loader.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/pivot_image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/pivot_image_loader.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/sensor_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/sensor_loader.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/sensor_loader_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/sensor_loader_template.py -------------------------------------------------------------------------------- /cars/pipelines/parameters/sensor_loaders/slurp_classif_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/parameters/sensor_loaders/slurp_classif_loader.py -------------------------------------------------------------------------------- /cars/pipelines/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/pipeline.py -------------------------------------------------------------------------------- /cars/pipelines/pipeline_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/pipeline_constants.py -------------------------------------------------------------------------------- /cars/pipelines/pipeline_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/pipeline_template.py -------------------------------------------------------------------------------- /cars/pipelines/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/unit/__init__.py -------------------------------------------------------------------------------- /cars/pipelines/unit/unit_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/pipelines/unit/unit_pipeline.py -------------------------------------------------------------------------------- /cars/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/cars/starter.py -------------------------------------------------------------------------------- /ci/cars-deps-env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/ci/cars-deps-env/Dockerfile -------------------------------------------------------------------------------- /ci/cars-docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/ci/cars-docker-build.yml -------------------------------------------------------------------------------- /ci/cars-no-docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/ci/cars-no-docker-build.yml -------------------------------------------------------------------------------- /ci/hadolint_RNC_A_B_C_D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/ci/hadolint_RNC_A_B_C_D.yaml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/meson.build -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/pytest.ini -------------------------------------------------------------------------------- /ref_updating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/ref_updating.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNES/cars/HEAD/version.py --------------------------------------------------------------------------------