cars 0.12.2__tar.gz → 0.12.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cars might be problematic. Click here for more details.
- {cars-0.12.2 → cars-0.12.3}/.gitlab-ci.yml +8 -10
- {cars-0.12.2 → cars-0.12.3}/CHANGELOG.md +5 -0
- {cars-0.12.2 → cars-0.12.3}/PKG-INFO +1 -1
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/dense_matching_tools.py +7 -2
- {cars-0.12.2 → cars-0.12.3}/meson.build +1 -1
- {cars-0.12.2 → cars-0.12.3}/.coveragerc +0 -0
- {cars-0.12.2 → cars-0.12.3}/.dockerignore +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitattributes +0 -0
- {cars-0.12.2 → cars-0.12.3}/.github/workflows/cars-ci.yml +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitignore +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitlab/issue_templates/Bug.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitlab/issue_templates/Proposal.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitlab/issue_templates/Refacto.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitlab/issue_templates/Release.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/.gitlab/merge_request_templates/MR.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/.pre-commit-config.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/.pylintrc +0 -0
- {cars-0.12.2 → cars-0.12.3}/.readthedocs.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/AUTHORS.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/CONTRIBUTING.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/Dockerfile +0 -0
- {cars-0.12.2 → cars-0.12.3}/LICENSE +0 -0
- {cars-0.12.2 → cars-0.12.3}/MANIFEST.in +0 -0
- {cars-0.12.2 → cars-0.12.3}/Makefile +0 -0
- {cars-0.12.2 → cars-0.12.3}/NOTICE +0 -0
- {cars-0.12.2 → cars-0.12.3}/README.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/application.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/application_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/application_template.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/auxiliary_filling/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/auxiliary_filling/auxiliary_filling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/auxiliary_filling/auxiliary_filling_from_sensors.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/auxiliary_filling/auxiliary_filling_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/bulldozer_config/base_config.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/dem_generation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/dem_generation_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/dem_generation_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/dichotomic_generation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/rasterization.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/dense_match_filling_cpp.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/includes/dense_match_filling.hpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/meson.build +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/src/bindings.cpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/src/dense_match_filling.cpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/dense_match_filling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/fill_disp_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/fill_disp_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/plane.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/zero_padding.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/census_mccnn_sgm.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/dense_matching_cpp.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/includes/dense_matching.hpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/meson.build +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/src/bindings.cpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/src/dense_matching.cpp +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/dense_matching.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/dense_matching_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_default.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_homogeneous.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_mountain_and_vegetation.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_shadow.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_sparse.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_urban.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_mccnn.json +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/pandora_loader.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/border_interpolation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/bulldozer_config/base_config.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/bulldozer_filling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/dsm_filling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/dsm_filling/exogenous_filling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/epipolar_grid_generation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/grid_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/grid_correction.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/grid_generation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/grid_generation/grids.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/direct_localization.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/ground_truth_reprojection.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/ground_truth_reprojection_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/hole_detection/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/hole_detection/cloud_to_bbox.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/hole_detection/hole_detection.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/hole_detection/hole_detection_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_denoising/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_denoising/point_cloud_denoising.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/cloud_fusion_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/mapping_to_terrain_tiles.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/pc_tif_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/point_cloud_fusion.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/point_cloud_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/outlier_removal_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/pc_out_removal.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/point_removal_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/small_components.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/statistical.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/rasterization/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/rasterization/point_cloud_rasterization.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/rasterization/rasterization_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/rasterization/rasterization_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/rasterization/simple_gaussian.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/resampling/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/resampling/bicubic_resampling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/resampling/resampling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/resampling/resampling_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/resampling/resampling_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/pandora_sparse_matching.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/sift.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/sparse_matching.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/sparse_matching_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/sparse_matching/sparse_matching_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/triangulation/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/triangulation/line_of_sight_intersection.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/triangulation/triangulation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/triangulation/triangulation_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/applications/triangulation/triangulation_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/bundleadjustment.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/cars.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/conf/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/conf/geoid/egm96.grd +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/conf/geoid/egm96.grd.hdr +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/conf/input_parameters.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/conf/mask_cst.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/cars_logging.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/constants_disparity.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/datasets.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/geometry/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/geometry/abstract_geometry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/geometry/shareloc_geometry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/inputs.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/outputs.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/preprocessing.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/projection.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/roi_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/tiling.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/core/utils.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/cars_dataset.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/cars_dict.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/corresponding_tiles_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/dataframe_converter.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/data_structures/format_transformation.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/devibrate.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/extractroi.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/achievement_tracker.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/abstract_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/abstract_dask_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_cluster_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/README.md +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/dask.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/distributed.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/jobqueue.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/dask-schema.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/dask.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/distributed-schema.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/distributed.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/jobqueue.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_jobqueue_utils.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/local_dask_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/log_wrapper.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/mp_factorizer.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/mp_objects.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/mp_tools.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/mp_wrapper.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/multiprocessing_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/multiprocessing_profiler.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/pbs_dask_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/sequential_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/slurm_dask_cluster.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/orchestrator.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/orchestrator_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/abstract_registry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/compute_registry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/id_generator.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/replacer_registry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/saver_registry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/registry/unseen_registry.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/orchestrator/tiles_profiler.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/default/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/default/default_pipeline.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/__init__.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/advanced_parameters.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/advanced_parameters_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/depth_map_inputs.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/depth_map_inputs_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/dsm_inputs.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/dsm_inputs_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/output_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/output_parameters.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/sensor_inputs.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/parameters/sensor_inputs_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/pipeline.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/pipeline_constants.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/pipelines/pipeline_template.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/cars/starter.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/ci/cars-deps-env/Dockerfile +0 -0
- {cars-0.12.2 → cars-0.12.3}/ci/cars-docker-build.yml +0 -0
- {cars-0.12.2 → cars-0.12.3}/ci/cars-no-docker-build.yml +0 -0
- {cars-0.12.2 → cars-0.12.3}/ci/hadolint_RNC_A_B_C_D.yaml +0 -0
- {cars-0.12.2 → cars-0.12.3}/pyproject.toml +0 -0
- {cars-0.12.2 → cars-0.12.3}/pytest.ini +0 -0
- {cars-0.12.2 → cars-0.12.3}/setup.py +0 -0
- {cars-0.12.2 → cars-0.12.3}/sonar-project.properties +0 -0
- {cars-0.12.2 → cars-0.12.3}/version.py +0 -0
|
@@ -35,16 +35,14 @@ include:
|
|
|
35
35
|
rules:
|
|
36
36
|
# do not trigger this case if env has changed(see second case)
|
|
37
37
|
- changes:
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
compare_to: 'refs/heads/master'
|
|
39
|
+
paths:
|
|
40
|
+
- "ci/cars-deps-env/Dockerfile"
|
|
41
|
+
- "pyproject.toml"
|
|
40
42
|
when: never
|
|
41
43
|
# do not trigger this case on master (see third case)
|
|
42
44
|
- if: $CI_COMMIT_REF_NAME == "master"
|
|
43
45
|
when: never
|
|
44
|
-
- if: $CI_COMMIT_REF_NAME == "cars_0_12_patches"
|
|
45
|
-
when: never
|
|
46
|
-
- if: $CI_COMMIT_REF_NAME == "release_0.12.2"
|
|
47
|
-
when: never
|
|
48
46
|
# Second case: env should be generated on a dev branch, create a temporary
|
|
49
47
|
# image
|
|
50
48
|
- local: '/ci/cars-docker-build.yml'
|
|
@@ -52,13 +50,13 @@ include:
|
|
|
52
50
|
tag: ${CI_COMMIT_REF_NAME}
|
|
53
51
|
rules:
|
|
54
52
|
- changes:
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
compare_to: 'refs/heads/master'
|
|
54
|
+
paths:
|
|
55
|
+
- "ci/cars-deps-env/Dockerfile"
|
|
56
|
+
- "pyproject.toml"
|
|
57
57
|
# do not trigger this case on master (see third case)
|
|
58
58
|
- if: $CI_COMMIT_REF_NAME == "master"
|
|
59
59
|
when: never
|
|
60
|
-
- if: $CI_COMMIT_REF_NAME == "cars_0_12_patches"
|
|
61
|
-
- if: $CI_COMMIT_REF_NAME == "release_0.12.2"
|
|
62
60
|
# Third case: master branch pipeline: generate a "latest" image
|
|
63
61
|
- local: '/ci/cars-docker-build.yml'
|
|
64
62
|
inputs:
|
|
@@ -25,6 +25,7 @@ This module is responsible for the dense matching algorithms:
|
|
|
25
25
|
|
|
26
26
|
# Standard imports
|
|
27
27
|
import logging
|
|
28
|
+
import math
|
|
28
29
|
from typing import Dict
|
|
29
30
|
|
|
30
31
|
import numpy as np
|
|
@@ -938,7 +939,7 @@ def optimal_tile_size_pandora_plugin_libsgm(
|
|
|
938
939
|
"""
|
|
939
940
|
|
|
940
941
|
memory = max_ram_per_worker
|
|
941
|
-
disp = disp_max - disp_min
|
|
942
|
+
disp = max(3, abs(disp_max - disp_min))
|
|
942
943
|
|
|
943
944
|
image = 32 * 2
|
|
944
945
|
disp_ref = 32
|
|
@@ -968,13 +969,17 @@ def optimal_tile_size_pandora_plugin_libsgm(
|
|
|
968
969
|
# but sqrt(nb_pixels + (disp/2)**2) - disp/2
|
|
969
970
|
tile_size = np.sqrt(row_or_col + (disp / 2) ** 2) - disp / 2
|
|
970
971
|
tile_size = (1.0 - margin / 100.0) * tile_size
|
|
971
|
-
|
|
972
|
+
|
|
973
|
+
if math.isinf(tile_size):
|
|
974
|
+
logging.warning("Tile size infinite")
|
|
972
975
|
|
|
973
976
|
if tile_size > max_tile_size:
|
|
974
977
|
tile_size = max_tile_size
|
|
975
978
|
elif tile_size < min_tile_size:
|
|
976
979
|
tile_size = min_tile_size
|
|
977
980
|
|
|
981
|
+
tile_size = tile_size_rounding * int(tile_size / tile_size_rounding)
|
|
982
|
+
|
|
978
983
|
return tile_size
|
|
979
984
|
|
|
980
985
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/auxiliary_filling/auxiliary_filling_from_sensors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dem_generation/bulldozer_config/base_config.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/dense_match_filling_cpp.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_match_filling/cpp/src/dense_match_filling.cpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/cpp/includes/dense_matching.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_default.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_shadow.json
RENAMED
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_sparse.json
RENAMED
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/dense_matching/loaders/config_census_sgm_urban.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/direct_localization.py
RENAMED
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/ground_truth_reprojection/ground_truth_reprojection.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_denoising/point_cloud_denoising.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_fusion/mapping_to_terrain_tiles.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/outlier_removal_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/point_removal_constants.py
RENAMED
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/applications/point_cloud_outlier_removal/small_components.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/dask-schema.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/distributed.yaml
RENAMED
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/dask_config/reference_confs/jobqueue.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cars-0.12.2 → cars-0.12.3}/cars/orchestrator/cluster/mp_cluster/multiprocessing_profiler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|