cars 0.12.1__tar.gz → 0.12.2__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.

Files changed (223) hide show
  1. {cars-0.12.1 → cars-0.12.2}/.gitlab-ci.yml +2 -2
  2. {cars-0.12.1 → cars-0.12.2}/CHANGELOG.md +5 -0
  3. {cars-0.12.1 → cars-0.12.2}/PKG-INFO +1 -1
  4. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/rasterization.py +7 -0
  5. {cars-0.12.1 → cars-0.12.2}/meson.build +1 -1
  6. {cars-0.12.1 → cars-0.12.2}/.coveragerc +0 -0
  7. {cars-0.12.1 → cars-0.12.2}/.dockerignore +0 -0
  8. {cars-0.12.1 → cars-0.12.2}/.gitattributes +0 -0
  9. {cars-0.12.1 → cars-0.12.2}/.github/workflows/cars-ci.yml +0 -0
  10. {cars-0.12.1 → cars-0.12.2}/.gitignore +0 -0
  11. {cars-0.12.1 → cars-0.12.2}/.gitlab/issue_templates/Bug.md +0 -0
  12. {cars-0.12.1 → cars-0.12.2}/.gitlab/issue_templates/Proposal.md +0 -0
  13. {cars-0.12.1 → cars-0.12.2}/.gitlab/issue_templates/Refacto.md +0 -0
  14. {cars-0.12.1 → cars-0.12.2}/.gitlab/issue_templates/Release.md +0 -0
  15. {cars-0.12.1 → cars-0.12.2}/.gitlab/merge_request_templates/MR.md +0 -0
  16. {cars-0.12.1 → cars-0.12.2}/.pre-commit-config.yaml +0 -0
  17. {cars-0.12.1 → cars-0.12.2}/.pylintrc +0 -0
  18. {cars-0.12.1 → cars-0.12.2}/.readthedocs.yaml +0 -0
  19. {cars-0.12.1 → cars-0.12.2}/AUTHORS.md +0 -0
  20. {cars-0.12.1 → cars-0.12.2}/CONTRIBUTING.md +0 -0
  21. {cars-0.12.1 → cars-0.12.2}/Dockerfile +0 -0
  22. {cars-0.12.1 → cars-0.12.2}/LICENSE +0 -0
  23. {cars-0.12.1 → cars-0.12.2}/MANIFEST.in +0 -0
  24. {cars-0.12.1 → cars-0.12.2}/Makefile +0 -0
  25. {cars-0.12.1 → cars-0.12.2}/NOTICE +0 -0
  26. {cars-0.12.1 → cars-0.12.2}/README.md +0 -0
  27. {cars-0.12.1 → cars-0.12.2}/cars/__init__.py +0 -0
  28. {cars-0.12.1 → cars-0.12.2}/cars/applications/__init__.py +0 -0
  29. {cars-0.12.1 → cars-0.12.2}/cars/applications/application.py +0 -0
  30. {cars-0.12.1 → cars-0.12.2}/cars/applications/application_constants.py +0 -0
  31. {cars-0.12.1 → cars-0.12.2}/cars/applications/application_template.py +0 -0
  32. {cars-0.12.1 → cars-0.12.2}/cars/applications/auxiliary_filling/__init__.py +0 -0
  33. {cars-0.12.1 → cars-0.12.2}/cars/applications/auxiliary_filling/auxiliary_filling.py +0 -0
  34. {cars-0.12.1 → cars-0.12.2}/cars/applications/auxiliary_filling/auxiliary_filling_from_sensors.py +0 -0
  35. {cars-0.12.1 → cars-0.12.2}/cars/applications/auxiliary_filling/auxiliary_filling_tools.py +0 -0
  36. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/__init__.py +0 -0
  37. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/bulldozer_config/base_config.yaml +0 -0
  38. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/dem_generation.py +0 -0
  39. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/dem_generation_constants.py +0 -0
  40. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/dem_generation_tools.py +0 -0
  41. {cars-0.12.1 → cars-0.12.2}/cars/applications/dem_generation/dichotomic_generation.py +0 -0
  42. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/__init__.py +0 -0
  43. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/__init__.py +0 -0
  44. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/dense_match_filling_cpp.py +0 -0
  45. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/includes/dense_match_filling.hpp +0 -0
  46. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/meson.build +0 -0
  47. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/src/bindings.cpp +0 -0
  48. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/cpp/src/dense_match_filling.cpp +0 -0
  49. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/dense_match_filling.py +0 -0
  50. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/fill_disp_constants.py +0 -0
  51. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/fill_disp_tools.py +0 -0
  52. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/plane.py +0 -0
  53. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_match_filling/zero_padding.py +0 -0
  54. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/__init__.py +0 -0
  55. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/census_mccnn_sgm.py +0 -0
  56. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/__init__.py +0 -0
  57. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/dense_matching_cpp.py +0 -0
  58. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/includes/dense_matching.hpp +0 -0
  59. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/meson.build +0 -0
  60. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/src/bindings.cpp +0 -0
  61. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/cpp/src/dense_matching.cpp +0 -0
  62. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/dense_matching.py +0 -0
  63. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/dense_matching_constants.py +0 -0
  64. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/dense_matching_tools.py +0 -0
  65. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/__init__.py +0 -0
  66. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_default.json +0 -0
  67. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_homogeneous.json +0 -0
  68. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_mountain_and_vegetation.json +0 -0
  69. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_shadow.json +0 -0
  70. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_sparse.json +0 -0
  71. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_census_sgm_urban.json +0 -0
  72. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/config_mccnn.json +0 -0
  73. {cars-0.12.1 → cars-0.12.2}/cars/applications/dense_matching/loaders/pandora_loader.py +0 -0
  74. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/__init__.py +0 -0
  75. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/border_interpolation.py +0 -0
  76. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/bulldozer_config/base_config.yaml +0 -0
  77. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/bulldozer_filling.py +0 -0
  78. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/dsm_filling.py +0 -0
  79. {cars-0.12.1 → cars-0.12.2}/cars/applications/dsm_filling/exogenous_filling.py +0 -0
  80. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/__init__.py +0 -0
  81. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/epipolar_grid_generation.py +0 -0
  82. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/grid_constants.py +0 -0
  83. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/grid_correction.py +0 -0
  84. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/grid_generation.py +0 -0
  85. {cars-0.12.1 → cars-0.12.2}/cars/applications/grid_generation/grids.py +0 -0
  86. {cars-0.12.1 → cars-0.12.2}/cars/applications/ground_truth_reprojection/__init__.py +0 -0
  87. {cars-0.12.1 → cars-0.12.2}/cars/applications/ground_truth_reprojection/direct_localization.py +0 -0
  88. {cars-0.12.1 → cars-0.12.2}/cars/applications/ground_truth_reprojection/ground_truth_reprojection.py +0 -0
  89. {cars-0.12.1 → cars-0.12.2}/cars/applications/ground_truth_reprojection/ground_truth_reprojection_tools.py +0 -0
  90. {cars-0.12.1 → cars-0.12.2}/cars/applications/hole_detection/__init__.py +0 -0
  91. {cars-0.12.1 → cars-0.12.2}/cars/applications/hole_detection/cloud_to_bbox.py +0 -0
  92. {cars-0.12.1 → cars-0.12.2}/cars/applications/hole_detection/hole_detection.py +0 -0
  93. {cars-0.12.1 → cars-0.12.2}/cars/applications/hole_detection/hole_detection_tools.py +0 -0
  94. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_denoising/__init__.py +0 -0
  95. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_denoising/point_cloud_denoising.py +0 -0
  96. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/__init__.py +0 -0
  97. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/cloud_fusion_constants.py +0 -0
  98. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/mapping_to_terrain_tiles.py +0 -0
  99. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/pc_tif_tools.py +0 -0
  100. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/point_cloud_fusion.py +0 -0
  101. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_fusion/point_cloud_tools.py +0 -0
  102. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/__init__.py +0 -0
  103. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/outlier_removal_tools.py +0 -0
  104. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/pc_out_removal.py +0 -0
  105. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/point_removal_constants.py +0 -0
  106. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/small_components.py +0 -0
  107. {cars-0.12.1 → cars-0.12.2}/cars/applications/point_cloud_outlier_removal/statistical.py +0 -0
  108. {cars-0.12.1 → cars-0.12.2}/cars/applications/rasterization/__init__.py +0 -0
  109. {cars-0.12.1 → cars-0.12.2}/cars/applications/rasterization/point_cloud_rasterization.py +0 -0
  110. {cars-0.12.1 → cars-0.12.2}/cars/applications/rasterization/rasterization_constants.py +0 -0
  111. {cars-0.12.1 → cars-0.12.2}/cars/applications/rasterization/rasterization_tools.py +0 -0
  112. {cars-0.12.1 → cars-0.12.2}/cars/applications/rasterization/simple_gaussian.py +0 -0
  113. {cars-0.12.1 → cars-0.12.2}/cars/applications/resampling/__init__.py +0 -0
  114. {cars-0.12.1 → cars-0.12.2}/cars/applications/resampling/bicubic_resampling.py +0 -0
  115. {cars-0.12.1 → cars-0.12.2}/cars/applications/resampling/resampling.py +0 -0
  116. {cars-0.12.1 → cars-0.12.2}/cars/applications/resampling/resampling_constants.py +0 -0
  117. {cars-0.12.1 → cars-0.12.2}/cars/applications/resampling/resampling_tools.py +0 -0
  118. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/__init__.py +0 -0
  119. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/pandora_sparse_matching.py +0 -0
  120. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/sift.py +0 -0
  121. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/sparse_matching.py +0 -0
  122. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/sparse_matching_constants.py +0 -0
  123. {cars-0.12.1 → cars-0.12.2}/cars/applications/sparse_matching/sparse_matching_tools.py +0 -0
  124. {cars-0.12.1 → cars-0.12.2}/cars/applications/triangulation/__init__.py +0 -0
  125. {cars-0.12.1 → cars-0.12.2}/cars/applications/triangulation/line_of_sight_intersection.py +0 -0
  126. {cars-0.12.1 → cars-0.12.2}/cars/applications/triangulation/triangulation.py +0 -0
  127. {cars-0.12.1 → cars-0.12.2}/cars/applications/triangulation/triangulation_constants.py +0 -0
  128. {cars-0.12.1 → cars-0.12.2}/cars/applications/triangulation/triangulation_tools.py +0 -0
  129. {cars-0.12.1 → cars-0.12.2}/cars/bundleadjustment.py +0 -0
  130. {cars-0.12.1 → cars-0.12.2}/cars/cars.py +0 -0
  131. {cars-0.12.1 → cars-0.12.2}/cars/conf/__init__.py +0 -0
  132. {cars-0.12.1 → cars-0.12.2}/cars/conf/geoid/egm96.grd +0 -0
  133. {cars-0.12.1 → cars-0.12.2}/cars/conf/geoid/egm96.grd.hdr +0 -0
  134. {cars-0.12.1 → cars-0.12.2}/cars/conf/input_parameters.py +0 -0
  135. {cars-0.12.1 → cars-0.12.2}/cars/conf/mask_cst.py +0 -0
  136. {cars-0.12.1 → cars-0.12.2}/cars/core/__init__.py +0 -0
  137. {cars-0.12.1 → cars-0.12.2}/cars/core/cars_logging.py +0 -0
  138. {cars-0.12.1 → cars-0.12.2}/cars/core/constants.py +0 -0
  139. {cars-0.12.1 → cars-0.12.2}/cars/core/constants_disparity.py +0 -0
  140. {cars-0.12.1 → cars-0.12.2}/cars/core/datasets.py +0 -0
  141. {cars-0.12.1 → cars-0.12.2}/cars/core/geometry/__init__.py +0 -0
  142. {cars-0.12.1 → cars-0.12.2}/cars/core/geometry/abstract_geometry.py +0 -0
  143. {cars-0.12.1 → cars-0.12.2}/cars/core/geometry/shareloc_geometry.py +0 -0
  144. {cars-0.12.1 → cars-0.12.2}/cars/core/inputs.py +0 -0
  145. {cars-0.12.1 → cars-0.12.2}/cars/core/outputs.py +0 -0
  146. {cars-0.12.1 → cars-0.12.2}/cars/core/preprocessing.py +0 -0
  147. {cars-0.12.1 → cars-0.12.2}/cars/core/projection.py +0 -0
  148. {cars-0.12.1 → cars-0.12.2}/cars/core/roi_tools.py +0 -0
  149. {cars-0.12.1 → cars-0.12.2}/cars/core/tiling.py +0 -0
  150. {cars-0.12.1 → cars-0.12.2}/cars/core/utils.py +0 -0
  151. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/__init__.py +0 -0
  152. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/cars_dataset.py +0 -0
  153. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/cars_dict.py +0 -0
  154. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/corresponding_tiles_tools.py +0 -0
  155. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/dataframe_converter.py +0 -0
  156. {cars-0.12.1 → cars-0.12.2}/cars/data_structures/format_transformation.py +0 -0
  157. {cars-0.12.1 → cars-0.12.2}/cars/devibrate.py +0 -0
  158. {cars-0.12.1 → cars-0.12.2}/cars/extractroi.py +0 -0
  159. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/__init__.py +0 -0
  160. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/achievement_tracker.py +0 -0
  161. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/__init__.py +0 -0
  162. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/abstract_cluster.py +0 -0
  163. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/abstract_dask_cluster.py +0 -0
  164. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_cluster_tools.py +0 -0
  165. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/README.md +0 -0
  166. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/dask.yaml +0 -0
  167. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/distributed.yaml +0 -0
  168. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/jobqueue.yaml +0 -0
  169. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/reference_confs/dask-schema.yaml +0 -0
  170. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/reference_confs/dask.yaml +0 -0
  171. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/reference_confs/distributed-schema.yaml +0 -0
  172. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/reference_confs/distributed.yaml +0 -0
  173. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_config/reference_confs/jobqueue.yaml +0 -0
  174. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/dask_jobqueue_utils.py +0 -0
  175. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/local_dask_cluster.py +0 -0
  176. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/log_wrapper.py +0 -0
  177. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/__init__.py +0 -0
  178. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/mp_factorizer.py +0 -0
  179. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/mp_objects.py +0 -0
  180. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/mp_tools.py +0 -0
  181. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/mp_wrapper.py +0 -0
  182. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/multiprocessing_cluster.py +0 -0
  183. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/mp_cluster/multiprocessing_profiler.py +0 -0
  184. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/pbs_dask_cluster.py +0 -0
  185. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/sequential_cluster.py +0 -0
  186. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/cluster/slurm_dask_cluster.py +0 -0
  187. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/orchestrator.py +0 -0
  188. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/orchestrator_constants.py +0 -0
  189. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/__init__.py +0 -0
  190. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/abstract_registry.py +0 -0
  191. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/compute_registry.py +0 -0
  192. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/id_generator.py +0 -0
  193. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/replacer_registry.py +0 -0
  194. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/saver_registry.py +0 -0
  195. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/registry/unseen_registry.py +0 -0
  196. {cars-0.12.1 → cars-0.12.2}/cars/orchestrator/tiles_profiler.py +0 -0
  197. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/__init__.py +0 -0
  198. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/default/__init__.py +0 -0
  199. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/default/default_pipeline.py +0 -0
  200. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/__init__.py +0 -0
  201. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/advanced_parameters.py +0 -0
  202. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/advanced_parameters_constants.py +0 -0
  203. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/depth_map_inputs.py +0 -0
  204. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/depth_map_inputs_constants.py +0 -0
  205. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/dsm_inputs.py +0 -0
  206. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/dsm_inputs_constants.py +0 -0
  207. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/output_constants.py +0 -0
  208. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/output_parameters.py +0 -0
  209. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/sensor_inputs.py +0 -0
  210. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/parameters/sensor_inputs_constants.py +0 -0
  211. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/pipeline.py +0 -0
  212. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/pipeline_constants.py +0 -0
  213. {cars-0.12.1 → cars-0.12.2}/cars/pipelines/pipeline_template.py +0 -0
  214. {cars-0.12.1 → cars-0.12.2}/cars/starter.py +0 -0
  215. {cars-0.12.1 → cars-0.12.2}/ci/cars-deps-env/Dockerfile +0 -0
  216. {cars-0.12.1 → cars-0.12.2}/ci/cars-docker-build.yml +0 -0
  217. {cars-0.12.1 → cars-0.12.2}/ci/cars-no-docker-build.yml +0 -0
  218. {cars-0.12.1 → cars-0.12.2}/ci/hadolint_RNC_A_B_C_D.yaml +0 -0
  219. {cars-0.12.1 → cars-0.12.2}/pyproject.toml +0 -0
  220. {cars-0.12.1 → cars-0.12.2}/pytest.ini +0 -0
  221. {cars-0.12.1 → cars-0.12.2}/setup.py +0 -0
  222. {cars-0.12.1 → cars-0.12.2}/sonar-project.properties +0 -0
  223. {cars-0.12.1 → cars-0.12.2}/version.py +0 -0
@@ -43,7 +43,7 @@ include:
43
43
  when: never
44
44
  - if: $CI_COMMIT_REF_NAME == "cars_0_12_patches"
45
45
  when: never
46
- - if: $CI_COMMIT_REF_NAME == "release_0_12_1"
46
+ - if: $CI_COMMIT_REF_NAME == "release_0.12.2"
47
47
  when: never
48
48
  # Second case: env should be generated on a dev branch, create a temporary
49
49
  # image
@@ -58,7 +58,7 @@ include:
58
58
  - if: $CI_COMMIT_REF_NAME == "master"
59
59
  when: never
60
60
  - if: $CI_COMMIT_REF_NAME == "cars_0_12_patches"
61
- - if: $CI_COMMIT_REF_NAME == "release_0_12_1"
61
+ - if: $CI_COMMIT_REF_NAME == "release_0.12.2"
62
62
  # Third case: master branch pipeline: generate a "latest" image
63
63
  - local: '/ci/cars-docker-build.yml'
64
64
  inputs:
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.12.2 Bugfix release (October 2025)
4
+
5
+ - Fix a bug where the DEM min was higher than DEM max in dem generation [#1211]
6
+
7
+
3
8
  ## 0.12.1 Bugfix release (August 2025)
4
9
 
5
10
  - Cleanup sequential orchestrator [#1123].
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cars
3
- Version: 0.12.1
3
+ Version: 0.12.2
4
4
  Summary: A satellite multi view stereo pipeline
5
5
  Keywords: cars,3D,DEM,pandora,photogrammetry
6
6
  Author-Email: CNES <cars@cnes.fr>
@@ -552,6 +552,13 @@ class Rasterization(DemGeneration, short_name="bulldozer_on_raster"):
552
552
  dem_data + self.max_height_margin,
553
553
  dem_max,
554
554
  )
555
+ # Rectify pixels where DEM min > DEM max - margin, to ensure that
556
+ # DEM min < DEM max even on filled pixels
557
+ dem_min = np.where(
558
+ dem_min > dem_max - self.min_height_margin,
559
+ dem_max - self.min_height_margin,
560
+ dem_min,
561
+ )
555
562
 
556
563
  with rio.open(dem_min_path, "w", **dem_min_metadata) as out_dem:
557
564
  out_dem.write(dem_min)
@@ -1,7 +1,7 @@
1
1
  project(
2
2
  'cars',
3
3
  'cpp',
4
- version : '0.12.1',
4
+ version : '0.12.2',
5
5
  default_options : ['cpp_std=c++17']
6
6
  )
7
7
 
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