From 158f337b20a2b6d3dfb8e41d2dbb5a662890e69d Mon Sep 17 00:00:00 2001 From: Marie Leconte Date: Tue, 4 Jun 2024 13:40:58 +0200 Subject: [PATCH] copyright update --- AUTHORS.md | 2 +- docs/Makefile | 2 +- docs/make.bat | 2 +- docs/source/conf.py | 4 ++-- pandora/Pandora.py | 2 +- pandora/__init__.py | 2 +- pandora/aggregation/__init__.py | 2 +- pandora/aggregation/aggregation.py | 2 +- pandora/aggregation/cbca.py | 2 +- pandora/check_configuration.py | 2 +- pandora/common.py | 2 +- pandora/constants.py | 2 +- pandora/cost_volume_confidence/__init__.py | 2 +- pandora/cost_volume_confidence/ambiguity.py | 2 +- .../cost_volume_confidence.py | 2 +- pandora/cost_volume_confidence/risk.py | 2 +- pandora/cost_volume_confidence/std_intensity.py | 2 +- pandora/criteria.py | 2 +- pandora/disparity/__init__.py | 2 +- pandora/disparity/disparity.py | 2 +- pandora/filter/__init__.py | 2 +- pandora/filter/bilateral.py | 2 +- pandora/filter/filter.py | 2 +- pandora/filter/median.py | 2 +- pandora/img_tools.py | 2 +- pandora/marge.py | 2 +- pandora/margins/__init__.py | 2 +- pandora/margins/descriptors.py | 14 +++++++++----- pandora/margins/margins.py | 2 +- pandora/matching_cost/__init__.py | 2 +- pandora/matching_cost/census.py | 2 +- pandora/matching_cost/matching_cost.py | 2 +- pandora/matching_cost/sad_ssd.py | 2 +- pandora/matching_cost/zncc.py | 2 +- pandora/multiscale/__init__.py | 2 +- pandora/multiscale/fixed_zoom_pyramid.py | 2 +- pandora/multiscale/multiscale.py | 2 +- pandora/optimization/__init__.py | 2 +- pandora/optimization/optimization.py | 2 +- pandora/output_tree_design.py | 2 +- pandora/refinement/__init__.py | 2 +- pandora/refinement/quadratic.py | 2 +- pandora/refinement/refinement.py | 2 +- pandora/refinement/vfit.py | 2 +- pandora/semantic_segmentation/__init__.py | 2 +- .../semantic_segmentation/semantic_segmentation.py | 2 +- pandora/state_machine.py | 2 +- pandora/validation/__init__.py | 2 +- pandora/validation/interpolated_disparity.py | 2 +- pandora/validation/validation.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- tests/common.py | 2 +- tests/test_aggregation.py | 2 +- tests/test_check_configuration.py | 2 +- tests/test_confidence.py | 2 +- tests/test_config.py | 2 +- tests/test_criteria.py | 2 +- tests/test_disparity.py | 2 +- tests/test_disparity_mask.py | 2 +- tests/test_filter.py | 2 +- tests/test_marge.py | 2 +- tests/test_margins/test_margins.py | 2 +- .../test_mask_column_interval.py | 2 +- tests/test_matching_cost/test_matching_cost.py | 2 +- .../test_matching_cost_census.py | 2 +- tests/test_matching_cost/test_matching_cost_sad.py | 2 +- tests/test_matching_cost/test_matching_cost_ssd.py | 2 +- .../test_matching_cost/test_matching_cost_zncc.py | 2 +- tests/test_multiscale.py | 2 +- tests/test_notebooks.py | 2 +- tests/test_pandora.py | 2 +- tests/test_pandora_image.py | 2 +- tests/test_pandora_machine.py | 2 +- tests/test_plugins.py | 2 +- tests/test_refinement.py | 2 +- tests/test_validation.py | 2 +- 77 files changed, 86 insertions(+), 82 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index e521593..6cb27c6 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -1,6 +1,6 @@ # Credits -Copyright (c) 2023 Centre National d'Etudes Spatiales (CNES). +Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). Pandora is licensed under permissive Apache 2 license (See LICENSE file). The copyright is kept CNES only for long term maintenance ease. diff --git a/docs/Makefile b/docs/Makefile index 9e823a5..d709727 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,5 +1,5 @@ # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/docs/make.bat b/docs/make.bat index aeeeb20..4081c50 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -1,5 +1,5 @@ :: -:: Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +:: Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). :: :: This file is part of PANDORA :: diff --git a/docs/source/conf.py b/docs/source/conf.py index a69de07..348f57e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,7 @@ # pylint: skip-file # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # @@ -42,7 +42,7 @@ # -- Project information ----------------------------------------------------- project = "Pandora" -copyright = "2022, CNES" +copyright = "2024, CNES" author = "CNES" # The full version, including alpha/beta/rc tags diff --git a/pandora/Pandora.py b/pandora/Pandora.py index e0d33e1..53cbe57 100755 --- a/pandora/Pandora.py +++ b/pandora/Pandora.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/__init__.py b/pandora/__init__.py index 484757e..0bade72 100644 --- a/pandora/__init__.py +++ b/pandora/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/aggregation/__init__.py b/pandora/aggregation/__init__.py index 1f59872..adef559 100644 --- a/pandora/aggregation/__init__.py +++ b/pandora/aggregation/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/aggregation/aggregation.py b/pandora/aggregation/aggregation.py index e831784..2b1a923 100644 --- a/pandora/aggregation/aggregation.py +++ b/pandora/aggregation/aggregation.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/aggregation/cbca.py b/pandora/aggregation/cbca.py index d700bde..3de87b3 100644 --- a/pandora/aggregation/cbca.py +++ b/pandora/aggregation/cbca.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/check_configuration.py b/pandora/check_configuration.py index 43a3535..5970158 100644 --- a/pandora/check_configuration.py +++ b/pandora/check_configuration.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/common.py b/pandora/common.py index e750eaf..9e17b96 100644 --- a/pandora/common.py +++ b/pandora/common.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/constants.py b/pandora/constants.py index d380528..2411b3c 100644 --- a/pandora/constants.py +++ b/pandora/constants.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/cost_volume_confidence/__init__.py b/pandora/cost_volume_confidence/__init__.py index f2e477d..969576a 100644 --- a/pandora/cost_volume_confidence/__init__.py +++ b/pandora/cost_volume_confidence/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/cost_volume_confidence/ambiguity.py b/pandora/cost_volume_confidence/ambiguity.py index 5d677d0..f280c52 100644 --- a/pandora/cost_volume_confidence/ambiguity.py +++ b/pandora/cost_volume_confidence/ambiguity.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/cost_volume_confidence/cost_volume_confidence.py b/pandora/cost_volume_confidence/cost_volume_confidence.py index 2ec0d17..a132779 100644 --- a/pandora/cost_volume_confidence/cost_volume_confidence.py +++ b/pandora/cost_volume_confidence/cost_volume_confidence.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/cost_volume_confidence/risk.py b/pandora/cost_volume_confidence/risk.py index a209712..1e930fb 100644 --- a/pandora/cost_volume_confidence/risk.py +++ b/pandora/cost_volume_confidence/risk.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/cost_volume_confidence/std_intensity.py b/pandora/cost_volume_confidence/std_intensity.py index 6f943e8..9d4449a 100644 --- a/pandora/cost_volume_confidence/std_intensity.py +++ b/pandora/cost_volume_confidence/std_intensity.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/criteria.py b/pandora/criteria.py index 1c90673..fe2d628 100644 --- a/pandora/criteria.py +++ b/pandora/criteria.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/disparity/__init__.py b/pandora/disparity/__init__.py index e3a137a..6865e46 100644 --- a/pandora/disparity/__init__.py +++ b/pandora/disparity/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/disparity/disparity.py b/pandora/disparity/disparity.py index 7a3fd4e..d027db7 100644 --- a/pandora/disparity/disparity.py +++ b/pandora/disparity/disparity.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/filter/__init__.py b/pandora/filter/__init__.py index 9a4988b..c6c7d6c 100644 --- a/pandora/filter/__init__.py +++ b/pandora/filter/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/filter/bilateral.py b/pandora/filter/bilateral.py index 7abcf92..083e9a9 100644 --- a/pandora/filter/bilateral.py +++ b/pandora/filter/bilateral.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/filter/filter.py b/pandora/filter/filter.py index d1dc5ef..0dbda41 100644 --- a/pandora/filter/filter.py +++ b/pandora/filter/filter.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/filter/median.py b/pandora/filter/median.py index 11309ae..45c2a64 100644 --- a/pandora/filter/median.py +++ b/pandora/filter/median.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/img_tools.py b/pandora/img_tools.py index e25d7ea..27457c9 100644 --- a/pandora/img_tools.py +++ b/pandora/img_tools.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/marge.py b/pandora/marge.py index 15e73db..88e079b 100644 --- a/pandora/marge.py +++ b/pandora/marge.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/margins/__init__.py b/pandora/margins/__init__.py index 61bfa6d..b205855 100644 --- a/pandora/margins/__init__.py +++ b/pandora/margins/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/margins/descriptors.py b/pandora/margins/descriptors.py index be3e543..3ece860 100644 --- a/pandora/margins/descriptors.py +++ b/pandora/margins/descriptors.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # @@ -63,10 +63,12 @@ def __init__(self, left: int, up: int, right: int, down: int) -> None: self.value = Margins(left, up, right, down) @overload - def __get__(self, instance: None, owner: None) -> FixedMargins: ... + def __get__(self, instance: None, owner: None) -> FixedMargins: + ... @overload - def __get__(self, instance: object, owner: type[object]) -> Margins: ... + def __get__(self, instance: object, owner: type[object]) -> Margins: + ... def __get__(self, instance: object | None, owner: type[object] | None = None) -> FixedMargins | Margins: if instance is None: @@ -101,10 +103,12 @@ class HalfWindowMargins(ReadOnlyDescriptor): # pylint:disable=too-few-public-methods @overload - def __get__(self, instance: None, owner: None) -> HalfWindowMargins: ... + def __get__(self, instance: None, owner: None) -> HalfWindowMargins: + ... @overload - def __get__(self, instance: object, owner: type[object]) -> Margins: ... + def __get__(self, instance: object, owner: type[object]) -> Margins: + ... def __get__(self, instance: object | None, owner: type[object] | None = None) -> HalfWindowMargins | Margins: if instance is None: diff --git a/pandora/margins/margins.py b/pandora/margins/margins.py index 0b0ac04..bb73eba 100644 --- a/pandora/margins/margins.py +++ b/pandora/margins/margins.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/matching_cost/__init__.py b/pandora/matching_cost/__init__.py index 62fd33c..7e837ca 100644 --- a/pandora/matching_cost/__init__.py +++ b/pandora/matching_cost/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/matching_cost/census.py b/pandora/matching_cost/census.py index a066aa6..37b0c38 100644 --- a/pandora/matching_cost/census.py +++ b/pandora/matching_cost/census.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/matching_cost/matching_cost.py b/pandora/matching_cost/matching_cost.py index 73961e9..16b543f 100644 --- a/pandora/matching_cost/matching_cost.py +++ b/pandora/matching_cost/matching_cost.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/matching_cost/sad_ssd.py b/pandora/matching_cost/sad_ssd.py index 14245cf..07e4602 100644 --- a/pandora/matching_cost/sad_ssd.py +++ b/pandora/matching_cost/sad_ssd.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/matching_cost/zncc.py b/pandora/matching_cost/zncc.py index b984e7d..da7db7e 100644 --- a/pandora/matching_cost/zncc.py +++ b/pandora/matching_cost/zncc.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/multiscale/__init__.py b/pandora/multiscale/__init__.py index 06e6175..80a3e58 100644 --- a/pandora/multiscale/__init__.py +++ b/pandora/multiscale/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/multiscale/fixed_zoom_pyramid.py b/pandora/multiscale/fixed_zoom_pyramid.py index eeb3177..3deb3de 100644 --- a/pandora/multiscale/fixed_zoom_pyramid.py +++ b/pandora/multiscale/fixed_zoom_pyramid.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/multiscale/multiscale.py b/pandora/multiscale/multiscale.py index c3c7d54..52c57df 100644 --- a/pandora/multiscale/multiscale.py +++ b/pandora/multiscale/multiscale.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/optimization/__init__.py b/pandora/optimization/__init__.py index 21a58b1..e64158c 100644 --- a/pandora/optimization/__init__.py +++ b/pandora/optimization/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/optimization/optimization.py b/pandora/optimization/optimization.py index 3dce5e8..77418f3 100644 --- a/pandora/optimization/optimization.py +++ b/pandora/optimization/optimization.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/output_tree_design.py b/pandora/output_tree_design.py index a75d7ec..2231dff 100644 --- a/pandora/output_tree_design.py +++ b/pandora/output_tree_design.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/refinement/__init__.py b/pandora/refinement/__init__.py index eebc87d..b51c14d 100644 --- a/pandora/refinement/__init__.py +++ b/pandora/refinement/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/refinement/quadratic.py b/pandora/refinement/quadratic.py index 908af3f..6e4bd8a 100644 --- a/pandora/refinement/quadratic.py +++ b/pandora/refinement/quadratic.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/refinement/refinement.py b/pandora/refinement/refinement.py index 3f73cab..ab42792 100644 --- a/pandora/refinement/refinement.py +++ b/pandora/refinement/refinement.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/refinement/vfit.py b/pandora/refinement/vfit.py index 1276ab4..a2f818a 100644 --- a/pandora/refinement/vfit.py +++ b/pandora/refinement/vfit.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/semantic_segmentation/__init__.py b/pandora/semantic_segmentation/__init__.py index c1c71a9..3bb7204 100644 --- a/pandora/semantic_segmentation/__init__.py +++ b/pandora/semantic_segmentation/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring # # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/semantic_segmentation/semantic_segmentation.py b/pandora/semantic_segmentation/semantic_segmentation.py index 208dd99..04168a0 100644 --- a/pandora/semantic_segmentation/semantic_segmentation.py +++ b/pandora/semantic_segmentation/semantic_segmentation.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/state_machine.py b/pandora/state_machine.py index 5853301..f3accf6 100644 --- a/pandora/state_machine.py +++ b/pandora/state_machine.py @@ -4,7 +4,7 @@ # !/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/validation/__init__.py b/pandora/validation/__init__.py index 166790b..07900dd 100644 --- a/pandora/validation/__init__.py +++ b/pandora/validation/__init__.py @@ -1,6 +1,6 @@ # pylint: disable=missing-module-docstring # coding: utf8 -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/validation/interpolated_disparity.py b/pandora/validation/interpolated_disparity.py index e7f319c..832bc21 100644 --- a/pandora/validation/interpolated_disparity.py +++ b/pandora/validation/interpolated_disparity.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/pandora/validation/validation.py b/pandora/validation/validation.py index dd60192..3cc6d14 100644 --- a/pandora/validation/validation.py +++ b/pandora/validation/validation.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/setup.cfg b/setup.cfg index 09f9591..0f5d8fe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/setup.py b/setup.py index eaaf80c..584f3c6 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2022 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/common.py b/tests/common.py index d338298..dd8cac9 100644 --- a/tests/common.py +++ b/tests/common.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_aggregation.py b/tests/test_aggregation.py index ed68620..415292c 100644 --- a/tests/test_aggregation.py +++ b/tests/test_aggregation.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_check_configuration.py b/tests/test_check_configuration.py index e5c9a08..2f39607 100644 --- a/tests/test_check_configuration.py +++ b/tests/test_check_configuration.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_confidence.py b/tests/test_confidence.py index a6b0890..7e2b3a7 100644 --- a/tests/test_confidence.py +++ b/tests/test_confidence.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_config.py b/tests/test_config.py index e37db19..7a48c53 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_criteria.py b/tests/test_criteria.py index c0fb537..425c353 100644 --- a/tests/test_criteria.py +++ b/tests/test_criteria.py @@ -3,7 +3,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_disparity.py b/tests/test_disparity.py index 51c7fbf..bdc2b2a 100644 --- a/tests/test_disparity.py +++ b/tests/test_disparity.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_disparity_mask.py b/tests/test_disparity_mask.py index 3240987..54e585a 100644 --- a/tests/test_disparity_mask.py +++ b/tests/test_disparity_mask.py @@ -4,7 +4,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_filter.py b/tests/test_filter.py index 6ce3819..a141471 100644 --- a/tests/test_filter.py +++ b/tests/test_filter.py @@ -1,7 +1,7 @@ # type:ignore # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_marge.py b/tests/test_marge.py index a46fd0b..733710c 100644 --- a/tests/test_marge.py +++ b/tests/test_marge.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_margins/test_margins.py b/tests/test_margins/test_margins.py index efaa7d4..4b71799 100644 --- a/tests/test_margins/test_margins.py +++ b/tests/test_margins/test_margins.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_mask_column_interval.py b/tests/test_matching_cost/test_mask_column_interval.py index c0e547d..28eecea 100644 --- a/tests/test_matching_cost/test_mask_column_interval.py +++ b/tests/test_matching_cost/test_mask_column_interval.py @@ -1,7 +1,7 @@ # type:ignore #!/usr/bin/env python # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_matching_cost.py b/tests/test_matching_cost/test_matching_cost.py index e27beb9..26abe6d 100644 --- a/tests/test_matching_cost/test_matching_cost.py +++ b/tests/test_matching_cost/test_matching_cost.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_matching_cost_census.py b/tests/test_matching_cost/test_matching_cost_census.py index a09c9a9..d7b6d75 100644 --- a/tests/test_matching_cost/test_matching_cost_census.py +++ b/tests/test_matching_cost/test_matching_cost_census.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_matching_cost_sad.py b/tests/test_matching_cost/test_matching_cost_sad.py index a67c1aa..a6b00a4 100644 --- a/tests/test_matching_cost/test_matching_cost_sad.py +++ b/tests/test_matching_cost/test_matching_cost_sad.py @@ -4,7 +4,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_matching_cost_ssd.py b/tests/test_matching_cost/test_matching_cost_ssd.py index 460d9b5..09c301d 100644 --- a/tests/test_matching_cost/test_matching_cost_ssd.py +++ b/tests/test_matching_cost/test_matching_cost_ssd.py @@ -3,7 +3,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_matching_cost/test_matching_cost_zncc.py b/tests/test_matching_cost/test_matching_cost_zncc.py index b0af71f..145b24e 100644 --- a/tests/test_matching_cost/test_matching_cost_zncc.py +++ b/tests/test_matching_cost/test_matching_cost_zncc.py @@ -3,7 +3,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_multiscale.py b/tests/test_multiscale.py index c6270e3..9ea41de 100644 --- a/tests/test_multiscale.py +++ b/tests/test_multiscale.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_notebooks.py b/tests/test_notebooks.py index 137f9dc..c57fdbf 100644 --- a/tests/test_notebooks.py +++ b/tests/test_notebooks.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_pandora.py b/tests/test_pandora.py index 987b39f..2925ed3 100644 --- a/tests/test_pandora.py +++ b/tests/test_pandora.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_pandora_image.py b/tests/test_pandora_image.py index d73e0d6..9e8c7a8 100644 --- a/tests/test_pandora_image.py +++ b/tests/test_pandora_image.py @@ -3,7 +3,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_pandora_machine.py b/tests/test_pandora_machine.py index a22b479..b033a42 100644 --- a/tests/test_pandora_machine.py +++ b/tests/test_pandora_machine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 85aa934..a71e66a 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_refinement.py b/tests/test_refinement.py index eebc59c..605ae9e 100644 --- a/tests/test_refinement.py +++ b/tests/test_refinement.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA # diff --git a/tests/test_validation.py b/tests/test_validation.py index 41f138f..9a6f201 100644 --- a/tests/test_validation.py +++ b/tests/test_validation.py @@ -2,7 +2,7 @@ #!/usr/bin/env python # coding: utf8 # -# Copyright (c) 2020 Centre National d'Etudes Spatiales (CNES). +# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES). # # This file is part of PANDORA #