From 1d9601a412ccc1bc19d8d62ab8957a52927e1d37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= Date: Tue, 5 Oct 2021 23:04:05 +0200 Subject: [PATCH 001/117] REFAC: update OTB version to 8.0.0 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b77fbfcad..7f092884a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,8 +132,8 @@ set(main_project_name ${_OTBModuleMacros_DEFAULT_LABEL}) #----------------------------------------------------------------------------- # OTB version number. -set(OTB_VERSION_MAJOR "7") -set(OTB_VERSION_MINOR "4") +set(OTB_VERSION_MAJOR "8") +set(OTB_VERSION_MINOR "0") set(OTB_VERSION_PATCH "0") set(OTB_VERSION_STRING "${OTB_VERSION_MAJOR}.${OTB_VERSION_MINOR}.${OTB_VERSION_PATCH}") -- GitLab From 4440becd3da144ddd02637210f0a2034c7be698f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= Date: Tue, 12 Oct 2021 00:15:33 +0200 Subject: [PATCH 002/117] BUG: add missing prefix in SARCalib::FromKeywordlist --- Modules/Core/Metadata/src/otbSARMetadata.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Core/Metadata/src/otbSARMetadata.cxx b/Modules/Core/Metadata/src/otbSARMetadata.cxx index f257ed3328..efe33ca189 100644 --- a/Modules/Core/Metadata/src/otbSARMetadata.cxx +++ b/Modules/Core/Metadata/src/otbSARMetadata.cxx @@ -535,13 +535,13 @@ void SARCalib::FromKeywordlist(const MetaData::Keywordlist & kwl, const std::str if (sensor == "Sentinel1") { auto lut = Sentinel1CalibrationLookupData::New(); - lut->FromKeywordlist(kwl, "CalibrationLookupData_" + id + "_"); + lut->FromKeywordlist(kwl, prefix + "CalibrationLookupData_" + id + "_"); calibrationLookupData[id_short] = lut; } else { auto lut = SarCalibrationLookupData::New(); - lut->FromKeywordlist(kwl, "CalibrationLookupData_" + id + "_"); + lut->FromKeywordlist(kwl, prefix + "CalibrationLookupData_" + id + "_"); calibrationLookupData[id_short] = lut; } } -- GitLab From 77675cbd3ce34a3cfce401a00743118dd2296974 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Wed, 3 Nov 2021 18:09:25 +0100 Subject: [PATCH 003/117] DOC: Update the release notes --- RELEASE_NOTES.txt | 70 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index d2606528ff..f9d128aff0 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -1,3 +1,73 @@ +OTB-v 8.0.0-alpha - Changes since version 7.4.0 (November 03rd, 2021) +--------------------------------------------------------------------- + +Features added: + + * !862: Add INFO message about metadata source by Julien Osman + * !795: Improve opticalibration pleiades by Thibaut Romain + * !793: Add a high level OTB_WRAP_QGIS cmake option and Fix BUILD_DEFAULT_MODULE bug when listing module dependencies by Thibaut Romain + * !769: Missing kernels parameters in libsvm by Rémi Cresson + * !767: Improve QGIS interface for ExtractROI application by Julien Cabieces + * !697: Use Boost.SmallVec in BCO interpolator by Laurențiu Nicola + +Bugs fixed: + + * !857: Resolve "OTB stand alone package not support the virtual filesystem" by Mickael Savinaud + * !842: Superbuild: compatibility between QT5 and MySQL by Cédric Traizet + * !826: Treat Parameter_RAM as an integer parameter in SetParameterValue (Swig Wrapper) by Cédric Traizet + * !775: Fix CosmoSkyMed ImageMetadataInterface by Cédric Traizet + * !764: Deactivate PROJ's test building in the Superbuild by Julien Osman + * !752: Fix output image from orthorectification having no projection by Cédric Traizet + * !751: Disable noisy std output message by Brad Hards + +Refactoring: + + * !863: Use ImageMetadata to manage NoData and TileHint by Cédric Traizet + * !858: Optimize coordinate transformations in SARSensorModel by Cédric Traizet" + * !851: Remove Ossim by Cédric Traizet and Julien Osman + * !845: Refactor GeocentricTransform and remove EllipsoidAdapter by Cédric Traizet + * !844: Refactor the superimpose PHR mode by Cédric Traizet + * !830: Implement otb::SarTransformBase, otb::SarForwardTransform and otb::SarInverseTransform by Julien Osman + * !823: Implement Deburst algorithms by Cédric Traizet + * !815: Update expat version in Superbuild by Cédric Traizet + * !808: Implement SARSensorModel forward and inverse transforms by Cédric Traizet + * !807: Use SAR metadata in SarRadiometricCalibrationToImageFilter by Julien Osman + * !806: Implement a factory for sensor transforms by Thibaut Romain + * !803: Implement SAR metadata parsing from geom files by Julien Osman + * !796: Import capability for OTB metadata by Cédric Traizet + * !778: Remove OSSIM dependency from SensorModel tests by Julien Osman + * !776: Improve tests prTvTestCreateInverseForwardSensorModel by Julien Osman + * !773: Refactor the OpticalCalibration application by Cédric Traizet + * !770: Parse optical metadata from geom by Cédric Traizet + * !768: Improve qgis parameter integration by Julien Cabieces + * !765: Refactor optical image metadata interface by Cédric Traizet + * !763: Compare image metadata in --compare-metadata by Cédric Traizet + * !761: SAR metadata interfaces by Julie Brossard + * !759: Reading the metadata from the geom files without OSSIM by Julien Osman + * !744: Implementing an interface for sensor models and the RPC model by Julien Osman and Cédric Traizet + * !729: DEM handler based on GDAL by Cédric Traizet + * !707: Metadata refactoring by Guillaume Pasero, Julien Osman and Cédric Traizet + +CI: + + * !856: Update Python to 3.8 on CI builds by Thibaut Romain + * !832: Simplification of the CI : remove jobs CentOS, Debian and Windows8 by Julien Osman + * !824: Set new URL for FFTW download by Julien Osman + * !822: Update openCV version to 4.5.1 for the SuperBuild, update the baseline for GEOS by Julien Osman + * !798: Fix CI launches tests when a build fails by Thibaut Romain + * !794: Superbuild archive CI job by Cédric Traizet + * !740: Develop package names by Julie Brossard + +Documentation: + + * !862: Add INFO message about metadata source by Julien Osman + * !860: Fix warning message related to metadata reading by Julien Osman + * !802: Deprecate the qgis plugin by Julien Osman + * !800: Add legend for output colored images of Hoover Compare Segmentation by Julien Osman + * !781: Update the documentation about Remote Modules by Thibaut ROMAIN + * !780: Updating the documentation in preparation for OTB 8.0.0-alpha1 by Julien Osman + + OTB-v 7.4.0 - Changes since version 7.3.0 (September 3rd, 2021) ---------------------------------------------------------------- -- GitLab From 3b81e3815bb3787c375ae44eb8766f5febb54420 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 4 Nov 2021 09:38:21 +0100 Subject: [PATCH 004/117] FIX: Don't test MDStr::OtbVersion in RegressionTestMetaData --- Modules/IO/TestKernel/src/otbTestHelper.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/IO/TestKernel/src/otbTestHelper.cxx b/Modules/IO/TestKernel/src/otbTestHelper.cxx index 607f220665..a444ffa91b 100644 --- a/Modules/IO/TestKernel/src/otbTestHelper.cxx +++ b/Modules/IO/TestKernel/src/otbTestHelper.cxx @@ -1675,10 +1675,12 @@ int TestHelper::RegressionTestMetaData(const char* testImageFilename, const char const auto & testImageMetadata = testImPtr->GetImageMetadata(); // Compare string keys (strict equality) + // Don't test OTB_VERSION, as it change with the version of OTB used + std::vector untestedMDStr = {MDStr::OtbVersion}; errcount += CompareMetadataDict(baselineImageMetadata.StringKeys, testImageMetadata.StringKeys, m_ReportErrors, - {}); + untestedMDStr); // Compare numeric keys auto compareDouble = [tolerance](double lhs, double rhs) @@ -1713,12 +1715,10 @@ int TestHelper::RegressionTestMetaData(const char* testImageFilename, const char // Compare extra keys - // Don't test OTB_VERSION, as it change with the version of OTB used - std::vector untestedExtra = {"OTB_VERSION"}; errcount += CompareMetadataDict(baselineImageMetadata.ExtraKeys, testImageMetadata.ExtraKeys, m_ReportErrors, - untestedExtra); + {}); if (baselineImageMetadata.Has(MDGeom::RPC)) -- GitLab From 1a9767d71efe0171157f249e4b9ed9ef5717cd03 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 5 Nov 2021 09:29:43 +0100 Subject: [PATCH 005/117] CI: New URL for PCRE --- SuperBuild/CMake/External_pcre.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SuperBuild/CMake/External_pcre.cmake b/SuperBuild/CMake/External_pcre.cmake index ac47ae00c2..b53791db5b 100644 --- a/SuperBuild/CMake/External_pcre.cmake +++ b/SuperBuild/CMake/External_pcre.cmake @@ -25,7 +25,7 @@ if(MSVC) else() ExternalProject_Add(PCRE PREFIX PCRE - URL "https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz" + URL "https://sourceforge.net/projects/pcre/files/pcre/8.44/pcre-8.44.tar.gz" URL_MD5 3bcd2441024d00009a5fee43f058987c BINARY_DIR ${PCRE_SB_BUILD_DIR} INSTALL_DIR ${SB_INSTALL_PREFIX} -- GitLab From 25e4ec76a9e58af837eca413c8ec3b34ee645c1a Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 5 Nov 2021 12:23:10 +0100 Subject: [PATCH 006/117] BUG: Looking for python only when OTB_WRAP_PYTHON is enabled --- CMakeLists.txt | 60 ++++++++++++++++++++++++++------------------------ 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d4a2a830b..45cc505c36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,35 +101,37 @@ reset_qt_i18n_sources() repository_status(${PROJECT_SOURCE_DIR} OTB_GIT_STATUS_MESSAGE) -# Find python stuff -# Version 3 is preferred before 2 -if(CMAKE_VERSION VERSION_LESS 3.12.0) - set ( Python_ADDITIONAL_VERSIONS "3;2" ) - set ( PythonInterp_FIND_REQUIRED ${OTB_WRAP_PYTHON} ) - set ( PythonLibs_FIND_REQUIRED ${OTB_WRAP_PYTHON} ) - find_package( PythonInterp ) - if ( OTB_WRAP_PYTHON AND ( "x${PYTHON_VERSION_MAJOR}" STREQUAL "x2" ) ) - message (WARNING "Python3 not found. There is no longer support of \ - wrapping in python2 in OTB, but it can still be used.") - endif() - # Now that we have a python version the addditional versions should only - # contain the version we have to get the corresponding libs - set (Python_ADDITIONAL_VERSIONS "${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}") - find_package ( PythonLibs ) -else() - if(WIN32) - set(Python_ROOT_DIR "C:/tools/Python37-x64") - endif() - find_package(Python REQUIRED COMPONENTS Interpreter Development) - if(Python_FOUND) - message(STATUS "Python Library directory : ${Python_LIBRARY_DIRS}") - message(STATUS "Python Headers directory : ${Python_INCLUDE_DIRS}") - #For compatibility reason, we have to define these variables - set(PYTHON_LIBRARIES ${Python_LIBRARIES}) - set(PYTHON_INCLUDE_DIR ${Python_INCLUDE_DIRS}) - set(PYTHON_LIBRARY_DIR ${Python_LIBRARY_DIRS}) - set(PYTHON_VERSION_STRING ${Python_VERSION}) - set(PYTHON_EXECUTABLE ${Python_EXECUTABLE}) +if(OTB_WRAP_PYTHON) + # Find python stuff + # Version 3 is preferred before 2 + if(CMAKE_VERSION VERSION_LESS 3.12.0) + set ( Python_ADDITIONAL_VERSIONS "3;2" ) + set ( PythonInterp_FIND_REQUIRED ${OTB_WRAP_PYTHON} ) + set ( PythonLibs_FIND_REQUIRED ${OTB_WRAP_PYTHON} ) + find_package( PythonInterp ) + if ( OTB_WRAP_PYTHON AND ( "x${PYTHON_VERSION_MAJOR}" STREQUAL "x2" ) ) + message (WARNING "Python3 not found. There is no longer support of \ + wrapping in python2 in OTB, but it can still be used.") + endif() + # Now that we have a python version the addditional versions should only + # contain the version we have to get the corresponding libs + set (Python_ADDITIONAL_VERSIONS "${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}") + find_package ( PythonLibs ) + else() + if(WIN32) + set(Python_ROOT_DIR "C:/tools/Python37-x64") + endif() + find_package(Python REQUIRED COMPONENTS Interpreter Development) + if(Python_FOUND) + message(STATUS "Python Library directory : ${Python_LIBRARY_DIRS}") + message(STATUS "Python Headers directory : ${Python_INCLUDE_DIRS}") + #For compatibility reason, we have to define these variables + set(PYTHON_LIBRARIES ${Python_LIBRARIES}) + set(PYTHON_INCLUDE_DIR ${Python_INCLUDE_DIRS}) + set(PYTHON_LIBRARY_DIR ${Python_LIBRARY_DIRS}) + set(PYTHON_VERSION_STRING ${Python_VERSION}) + set(PYTHON_EXECUTABLE ${Python_EXECUTABLE}) + endif() endif() endif() -- GitLab From 4a927475193ee5b3fa6f0206328b317f63fcaac7 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 28 Oct 2021 16:26:32 +0200 Subject: [PATCH 007/117] ENH: Add ImageMetadata to SWIG --- .../Core/Metadata/include/otbMetaDataEnum.h | 132 ++++++++++ .../Core/Metadata/include/otbMetaDataKey.h | 110 +------- Modules/Core/Metadata/src/otbMetaDataKey.cxx | 2 - Modules/Wrappers/SWIG/src/otbApplication.i | 18 +- Modules/Wrappers/SWIG/src/otbImageMetadata.i | 238 ++++++++++++++++++ 5 files changed, 377 insertions(+), 123 deletions(-) create mode 100644 Modules/Core/Metadata/include/otbMetaDataEnum.h create mode 100644 Modules/Wrappers/SWIG/src/otbImageMetadata.i diff --git a/Modules/Core/Metadata/include/otbMetaDataEnum.h b/Modules/Core/Metadata/include/otbMetaDataEnum.h new file mode 100644 index 0000000000..686013ed29 --- /dev/null +++ b/Modules/Core/Metadata/include/otbMetaDataEnum.h @@ -0,0 +1,132 @@ +/* + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) + * + * This file is part of Orfeo Toolbox + * + * https://www.orfeo-toolbox.org/ + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef otbMetaDataEnum_h +#define otbMetaDataEnum_h + +namespace otb +{ +/** Metadata as double*/ +enum class MDNum +{ +// generic + TileHintX, + TileHintY, + DataType, + NoData, + OrbitNumber, + NumberOfLines, + NumberOfColumns, + AverageSceneHeight, +// Display + RedDisplayChannel, + GreenDisplayChannel, + BlueDisplayChannel, +// optical section + PhysicalGain, + PhysicalBias, + SolarIrradiance, + SunElevation, + SunAzimuth, + SatElevation, + SatAzimuth, + SpectralStep, + SpectralMin, + SpectralMax, +// SAR section + CalScale, + CalFactor, + PRF, + RSF, + RadarFrequency, + CenterIncidenceAngle, + RescalingFactor, + LineSpacing, + PixelSpacing, + RangeTimeFirstPixel, + RangeTimeLastPixel, + END +}; + +/** Metadata as std::string */ +enum class MDStr +{ + SensorID, + Mission, + Instrument, + InstrumentIndex, + BandName, + EnhancedBandName, + ProductType, + GeometricLevel, + RadiometricLevel, + Polarization, + Mode, + Swath, + OrbitDirection, + BeamMode, + BeamSwath, + AreaOrPoint, + LayerType, + MetadataType, + OtbVersion, + END +}; + +/** Metadata as LUT 1D */ +enum class MDL1D +{ + SpectralSensitivity, + END +}; + +/** Metadata as LUT 2D */ +enum class MDL2D +{ + // Sar calibration lut ... + END +}; + +/** Metadata as Time */ +enum class MDTime +{ + AcquisitionDate, + ProductionDate, + AcquisitionStartTime, + AcquisitionStopTime, + END +}; + +enum class MDGeom +{ + ProjectionWKT, // -> string + ProjectionEPSG, // -> int + ProjectionProj, // -> string + RPC, // -> RPCParam + SAR, // -> SARParam + SARCalib, // -> SARCalib + SensorGeometry, // -> boost::any + GCP, // -> GCPParam + Adjustment, // -> ? + END +}; +} + +#endif diff --git a/Modules/Core/Metadata/include/otbMetaDataKey.h b/Modules/Core/Metadata/include/otbMetaDataKey.h index 512698711e..b1414e23b4 100644 --- a/Modules/Core/Metadata/include/otbMetaDataKey.h +++ b/Modules/Core/Metadata/include/otbMetaDataKey.h @@ -24,17 +24,18 @@ #include #include #include +#include #include #include #include "itkDataObject.h" #include "itkVariableLengthVector.h" + #include "OTBMetadataExport.h" #include "otbStringUtils.h" #include "otbJoinContainer.h" - -#include +#include "otbMetaDataEnum.h" namespace otb { @@ -121,111 +122,6 @@ typedef std::vector BoolVectorType; typedef itk::VariableLengthVector VariableLengthVectorType; } -/** Metadata as double*/ -enum class MDNum -{ -// generic - TileHintX, - TileHintY, - DataType, - NoData, - OrbitNumber, - NumberOfLines, - NumberOfColumns, - AverageSceneHeight, -// Display - RedDisplayChannel, - GreenDisplayChannel, - BlueDisplayChannel, -// optical section - PhysicalGain, - PhysicalBias, - SolarIrradiance, - SunElevation, - SunAzimuth, - SatElevation, - SatAzimuth, - SpectralStep, - SpectralMin, - SpectralMax, -// SAR section - CalScale, - CalFactor, - PRF, - RSF, - RadarFrequency, - CenterIncidenceAngle, - RescalingFactor, - LineSpacing, - PixelSpacing, - RangeTimeFirstPixel, - RangeTimeLastPixel, - END -}; - -/** Metadata as std::string */ -enum class MDStr -{ - SensorID, - Mission, - Instrument, - InstrumentIndex, - BandName, - EnhancedBandName, - ProductType, - GeometricLevel, - RadiometricLevel, - Polarization, - Mode, - Swath, - OrbitDirection, - BeamMode, - BeamSwath, - AreaOrPoint, - LayerType, - MetadataType, - OtbVersion, - END -}; - -/** Metadata as LUT 1D */ -enum class MDL1D -{ - SpectralSensitivity, - END -}; - -/** Metadata as LUT 2D */ -enum class MDL2D -{ - // Sar calibration lut ... - END -}; - -/** Metadata as Time */ -enum class MDTime -{ - AcquisitionDate, - ProductionDate, - AcquisitionStartTime, - AcquisitionStopTime, - END -}; - -enum class MDGeom -{ - ProjectionWKT, // -> string - ProjectionEPSG, // -> int - ProjectionProj, // -> string - RPC, // -> RPCParam - SAR, // -> SARParam - SARCalib, // -> SARCalib - SensorGeometry, // -> boost::any - GCP, // -> GCPParam - Adjustment, // -> ? - END -}; - namespace MetaData { diff --git a/Modules/Core/Metadata/src/otbMetaDataKey.cxx b/Modules/Core/Metadata/src/otbMetaDataKey.cxx index 65f9afb66f..28610ac1b6 100644 --- a/Modules/Core/Metadata/src/otbMetaDataKey.cxx +++ b/Modules/Core/Metadata/src/otbMetaDataKey.cxx @@ -369,8 +369,6 @@ void LUT::FromString(std::string str) template class LUT<1>; template class LUT<2>; -// array > -// boost::flat_map<> MDNumBmType MDNumNames = bimapGenerator(std::map { {MDNum::TileHintX,"TileHintX"}, {MDNum::TileHintY,"TileHintY"}, diff --git a/Modules/Wrappers/SWIG/src/otbApplication.i b/Modules/Wrappers/SWIG/src/otbApplication.i index e23b06c64d..72188c5cb9 100644 --- a/Modules/Wrappers/SWIG/src/otbApplication.i +++ b/Modules/Wrappers/SWIG/src/otbApplication.i @@ -34,6 +34,8 @@ %include "itkMacro.i" %include "itkBase.i" +%include "otbImageMetadata.i" + #if OTB_SWIGNUMPY %include "numpy.i" @@ -146,20 +148,6 @@ public: // TODO : finish wrapping }; -class GCP -{ -public: - std::string m_Id; - std::string m_Info; - double m_GCPCol; - double m_GCPRow; - double m_GCPX; - double m_GCPY; - double m_GCPZ; - GCP(); - void Print(std::ostream& os) const; -}; - } // end of namespace otb #if SWIGPYTHON @@ -310,6 +298,8 @@ public: std::string GetImageProjection(const std::string & key, unsigned int idx = 0); unsigned long PropagateRequestedRegion(const std::string & key, itk::ImageRegion<2> region, unsigned int idx = 0); itk::ImageRegion<2> GetImageRequestedRegion(const std::string & key, unsigned int idx = 0); + const otb::ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); + void SetImageMetadata(const otb::ImageMetadata & imd, const std::string& key, unsigned int idx = 0); itkMetaDataDictionary GetImageMetaData(const std::string & key, unsigned int idx = 0); otb::Wrapper::ImagePixelType GetImageBasePixelType(const std::string & key, unsigned int idx = 0); diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i new file mode 100644 index 0000000000..8e9abd7159 --- /dev/null +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -0,0 +1,238 @@ +/* + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) + * + * This file is part of Orfeo Toolbox + * + * https://www.orfeo-toolbox.org/ + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +%module("threads"=1) otbImageMetadata + +%{ +#include "itkBase.includes" +#include "otbWrapperSWIGIncludes.h" +#include // std::string +#include +#include "otbMetaDataEnum.h" +#include "otbImageMetadata.h" +#define SWIG_FILE_WITH_INIT +%} + +// Language specific extension +%include "Python.i" +%include "itkMacro.i" +%include "itkBase.i" + +%include "otbMetaDataEnum.h" + +namespace otb +{ + +class GCP +{ +public: + std::string m_Id; + std::string m_Info; + double m_GCPCol; + double m_GCPRow; + double m_GCPX; + double m_GCPY; + double m_GCPZ; + GCP(); + void Print(std::ostream& os) const; +}; + +namespace MetaData +{ + +struct LUTAxis +{ + int Size; + double Origin; + double Spacing; + std::vector Values; + std::string ToJSON(bool multiline=false) const; +}; + +template class LUT +{ +public: + LUTAxis Axis[VDim]; + std::vector Array; + std::string ToJSON(bool multiline=false) const; + std::string ToString() const; + void FromString(std::string); +}; + +%template(lut1d) LUT<1>; +%template(lut2d) LUT<2>; +} // end namespace MetaData + +class ImageMetadataBase +{ +}; + +class ImageMetadata: public ImageMetadataBase +{ +public: + std::vector Bands; +}; + +}; + +%extend otb::ImageMetadataBase{ + + bool is_num(const std::string& key) { + auto it = otb::MetaData::MDNumNames.right.find(key); + return it != otb::MetaData::MDNumNames.right.end(); + } + + double get_num(const std::string& key) { + auto it = otb::MetaData::MDNumNames.right.find(key); + return $self->operator[](it->second); + } + + bool is_str(const std::string& key) { + auto it = otb::MetaData::MDStrNames.right.find(key); + return it != otb::MetaData::MDStrNames.right.end(); + } + + std::string get_str(const std::string& key) { + auto it = otb::MetaData::MDStrNames.right.find(key); + return $self->operator[](it->second); + } + + bool is_l1d(const std::string& key) { + auto it = otb::MetaData::MDL1DNames.right.find(key); + return it != otb::MetaData::MDL1DNames.right.end(); + } + + otb::MetaData::LUT1D get_l1d(const std::string& key) { + auto it = otb::MetaData::MDL1DNames.right.find(key); + return $self->operator[](it->second); + } + + bool is_l2d(const std::string& key) { + auto it = otb::MetaData::MDL2DNames.right.find(key); + return it != otb::MetaData::MDL2DNames.right.end(); + } + + otb::MetaData::LUT2D get_l2d(const std::string& key) { + auto it = otb::MetaData::MDL2DNames.right.find(key); + return $self->operator[](it->second); + } + + bool is_time(const std::string& key) { + auto it = otb::MetaData::MDTimeNames.right.find(key); + return it != otb::MetaData::MDTimeNames.right.end(); + } + + otb::MetaData::Time get_time(const std::string& key) { + auto it = otb::MetaData::MDTimeNames.right.find(key); + return $self->operator[](it->second); + } + + bool is_geom(const std::string& key) { + auto it = otb::MetaData::MDGeomNames.right.find(key); + return it != otb::MetaData::MDGeomNames.right.end(); + } + + bool has(const std::string& key) const { + auto it_num = otb::MetaData::MDNumNames.right.find(key); + if (it_num != otb::MetaData::MDNumNames.right.end()) + return $self->Has(it_num->second); + + auto it_str = otb::MetaData::MDStrNames.right.find(key); + if (it_str != otb::MetaData::MDStrNames.right.end()) + return $self->Has(it_str->second); + + auto it_l1d = otb::MetaData::MDL1DNames.right.find(key); + if (it_l1d != otb::MetaData::MDL1DNames.right.end()) + return $self->Has(it_l1d->second); + + auto it_l2d = otb::MetaData::MDL2DNames.right.find(key); + if (it_l2d != otb::MetaData::MDL2DNames.right.end()) + return $self->Has(it_l2d->second); + + auto it_time = otb::MetaData::MDTimeNames.right.find(key); + if (it_time != otb::MetaData::MDTimeNames.right.end()) + return $self->Has(it_time->second); + + /* TODO: the geom part of the Imagemetadata is not wrapped yet + auto it_geom = otb::MetaData::MDGeomNames.right.find(key); + if (it_geom != otb::MetaData::MDGeomNames.right.end()) + return $self->Has(it_geom->second);*/ + + return false; + } + + void __setitem__(const std::string& key, const double val) { + auto it = otb::MetaData::MDNumNames.right.find(key); + if (it != otb::MetaData::MDNumNames.right.end()) + $self->Add(it->second, val); + else + $self->Add(key, std::to_string(val)); + } + void __setitem__(const std::string& key, const std::string& val) { + auto it = otb::MetaData::MDStrNames.right.find(key); + if (it != otb::MetaData::MDStrNames.right.end()) + $self->Add(it->second, val); + else + $self->Add(key, val); + } + void __setitem__(const std::string& key, const otb::MetaData::LUT1D& val) { + auto it = otb::MetaData::MDL1DNames.right.find(key); + if (it != otb::MetaData::MDL1DNames.right.end()) + $self->Add(it->second, val); + else + $self->Add(key, val.ToString()); + } + void __setitem__(const std::string& key, const otb::MetaData::LUT2D& val) { + auto it = otb::MetaData::MDL2DNames.right.find(key); + if (it != otb::MetaData::MDL2DNames.right.end()) + $self->Add(it->second, val); + else + $self->Add(key, val.ToString()); + } + void __setitem__(const std::string& key, const otb::MetaData::Time& val) { + auto it = otb::MetaData::MDTimeNames.right.find(key); + if (it != otb::MetaData::MDTimeNames.right.end()) + $self->Add(it->second, val); + else + { + std::ostringstream timeStream; + timeStream << val; + $self->Add(key, timeStream.str()); + } + } + + %pythoncode { + def __getitem__(self, key): + if self.is_num(key): + return self.get_num(key) + elif self.is_str(key): + return self.get_str(key) + elif self.is_l1d(key): + return self.get_l1d(key) + elif self.is_l2d(key): + return self.get_l2d(key) + elif self.is_time(key): + return self.get_time(key) + elif self.is_geom(key): + return None # TODO: the geom part of the Imagemetadata is not wrapped yet + else: + return None + } +} -- GitLab From f0429ba56959411abdc133b27c0b3f623471b1fd Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Wed, 24 Nov 2021 06:39:33 +0100 Subject: [PATCH 008/117] ENH: Add Get/SetImageMetadata to otbWrapperApplication --- .../include/otbWrapperApplication.h | 5 +++++ .../ApplicationEngine/src/otbWrapperApplication.cxx | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h index 35330b327e..18879d3fc3 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h @@ -825,6 +825,11 @@ public: * the index of the largest possible region starts at (0,0).*/ ImageBaseType::RegionType GetImageRequestedRegion(const std::string& key, unsigned int idx = 0); + /** Get/Set the ImageMetadata of the image parameter 'key'. The optional 'idx' + * allows selecting the image in an InputImageList.*/ + const ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); + void SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx = 0); + /** Returns a copy of the metadata dictionary of the image */ itk::MetaDataDictionary GetImageMetaData(const std::string& key, unsigned int idx = 0); diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index 021e763dde..c9a62a8bb0 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1670,6 +1670,18 @@ ImageBaseType::RegionType Application::GetImageRequestedRegion(const std::string return requested; } +const otb::ImageMetadata& Application::GetImageMetadata(const std::string& key, unsigned int idx) +{ + ImageBaseType* image = this->GetParameterImageBase(key, idx); + return dynamic_cast(image)->GetImageMetadata(); +} + +void Application::SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx) +{ + ImageBaseType* image = this->GetParameterImageBase(key, idx); + dynamic_cast(image)->SetImageMetadata(imd); +} + itk::MetaDataDictionary Application::GetImageMetaData(const std::string& key, unsigned int idx) { ImageBaseType* image = this->GetParameterImageBase(key, idx); -- GitLab From ea860e81aebf8ed0f625055ce5c0fa9a0f0f7691 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Wed, 24 Nov 2021 11:46:30 +0100 Subject: [PATCH 009/117] FIX: Remove otbMetaDataEnum --- .../Core/Metadata/include/otbMetaDataEnum.h | 132 ------------------ .../Core/Metadata/include/otbMetaDataKey.h | 106 +++++++++++++- Modules/Wrappers/SWIG/src/otbImageMetadata.i | 4 +- 3 files changed, 106 insertions(+), 136 deletions(-) delete mode 100644 Modules/Core/Metadata/include/otbMetaDataEnum.h diff --git a/Modules/Core/Metadata/include/otbMetaDataEnum.h b/Modules/Core/Metadata/include/otbMetaDataEnum.h deleted file mode 100644 index 686013ed29..0000000000 --- a/Modules/Core/Metadata/include/otbMetaDataEnum.h +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) - * - * This file is part of Orfeo Toolbox - * - * https://www.orfeo-toolbox.org/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef otbMetaDataEnum_h -#define otbMetaDataEnum_h - -namespace otb -{ -/** Metadata as double*/ -enum class MDNum -{ -// generic - TileHintX, - TileHintY, - DataType, - NoData, - OrbitNumber, - NumberOfLines, - NumberOfColumns, - AverageSceneHeight, -// Display - RedDisplayChannel, - GreenDisplayChannel, - BlueDisplayChannel, -// optical section - PhysicalGain, - PhysicalBias, - SolarIrradiance, - SunElevation, - SunAzimuth, - SatElevation, - SatAzimuth, - SpectralStep, - SpectralMin, - SpectralMax, -// SAR section - CalScale, - CalFactor, - PRF, - RSF, - RadarFrequency, - CenterIncidenceAngle, - RescalingFactor, - LineSpacing, - PixelSpacing, - RangeTimeFirstPixel, - RangeTimeLastPixel, - END -}; - -/** Metadata as std::string */ -enum class MDStr -{ - SensorID, - Mission, - Instrument, - InstrumentIndex, - BandName, - EnhancedBandName, - ProductType, - GeometricLevel, - RadiometricLevel, - Polarization, - Mode, - Swath, - OrbitDirection, - BeamMode, - BeamSwath, - AreaOrPoint, - LayerType, - MetadataType, - OtbVersion, - END -}; - -/** Metadata as LUT 1D */ -enum class MDL1D -{ - SpectralSensitivity, - END -}; - -/** Metadata as LUT 2D */ -enum class MDL2D -{ - // Sar calibration lut ... - END -}; - -/** Metadata as Time */ -enum class MDTime -{ - AcquisitionDate, - ProductionDate, - AcquisitionStartTime, - AcquisitionStopTime, - END -}; - -enum class MDGeom -{ - ProjectionWKT, // -> string - ProjectionEPSG, // -> int - ProjectionProj, // -> string - RPC, // -> RPCParam - SAR, // -> SARParam - SARCalib, // -> SARCalib - SensorGeometry, // -> boost::any - GCP, // -> GCPParam - Adjustment, // -> ? - END -}; -} - -#endif diff --git a/Modules/Core/Metadata/include/otbMetaDataKey.h b/Modules/Core/Metadata/include/otbMetaDataKey.h index b1414e23b4..2cc23e3898 100644 --- a/Modules/Core/Metadata/include/otbMetaDataKey.h +++ b/Modules/Core/Metadata/include/otbMetaDataKey.h @@ -35,7 +35,6 @@ #include "OTBMetadataExport.h" #include "otbStringUtils.h" #include "otbJoinContainer.h" -#include "otbMetaDataEnum.h" namespace otb { @@ -122,6 +121,111 @@ typedef std::vector BoolVectorType; typedef itk::VariableLengthVector VariableLengthVectorType; } +/** Metadata as double*/ +enum class MDNum +{ +// generic + TileHintX, + TileHintY, + DataType, + NoData, + OrbitNumber, + NumberOfLines, + NumberOfColumns, + AverageSceneHeight, +// Display + RedDisplayChannel, + GreenDisplayChannel, + BlueDisplayChannel, +// optical section + PhysicalGain, + PhysicalBias, + SolarIrradiance, + SunElevation, + SunAzimuth, + SatElevation, + SatAzimuth, + SpectralStep, + SpectralMin, + SpectralMax, +// SAR section + CalScale, + CalFactor, + PRF, + RSF, + RadarFrequency, + CenterIncidenceAngle, + RescalingFactor, + LineSpacing, + PixelSpacing, + RangeTimeFirstPixel, + RangeTimeLastPixel, + END +}; + +/** Metadata as std::string */ +enum class MDStr +{ + SensorID, + Mission, + Instrument, + InstrumentIndex, + BandName, + EnhancedBandName, + ProductType, + GeometricLevel, + RadiometricLevel, + Polarization, + Mode, + Swath, + OrbitDirection, + BeamMode, + BeamSwath, + AreaOrPoint, + LayerType, + MetadataType, + OtbVersion, + END +}; + +/** Metadata as LUT 1D */ +enum class MDL1D +{ + SpectralSensitivity, + END +}; + +/** Metadata as LUT 2D */ +enum class MDL2D +{ + // Sar calibration lut ... + END +}; + +/** Metadata as Time */ +enum class MDTime +{ + AcquisitionDate, + ProductionDate, + AcquisitionStartTime, + AcquisitionStopTime, + END +}; + +enum class MDGeom +{ + ProjectionWKT, // -> string + ProjectionEPSG, // -> int + ProjectionProj, // -> string + RPC, // -> RPCParam + SAR, // -> SARParam + SARCalib, // -> SARCalib + SensorGeometry, // -> boost::any + GCP, // -> GCPParam + Adjustment, // -> ? + END +}; + namespace MetaData { diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i index 8e9abd7159..33acb81fbd 100644 --- a/Modules/Wrappers/SWIG/src/otbImageMetadata.i +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -25,7 +25,7 @@ #include "otbWrapperSWIGIncludes.h" #include // std::string #include -#include "otbMetaDataEnum.h" +#include "otbMetaDataKey.h" #include "otbImageMetadata.h" #define SWIG_FILE_WITH_INIT %} @@ -35,8 +35,6 @@ %include "itkMacro.i" %include "itkBase.i" -%include "otbMetaDataEnum.h" - namespace otb { -- GitLab From de5d23ff867a3eced7cf1cfab6cfe9f9095b40d9 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Wed, 24 Nov 2021 12:04:41 +0100 Subject: [PATCH 010/117] ENH: Changes GetImageMetadata's return value from a const reference to a reference --- .../ApplicationEngine/include/otbWrapperApplication.h | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx | 4 ++-- Modules/Wrappers/SWIG/src/otbApplication.i | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h index 18879d3fc3..d727fedf64 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h @@ -827,7 +827,7 @@ public: /** Get/Set the ImageMetadata of the image parameter 'key'. The optional 'idx' * allows selecting the image in an InputImageList.*/ - const ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); + ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); void SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx = 0); /** Returns a copy of the metadata dictionary of the image */ diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index c9a62a8bb0..6676792ebf 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1670,10 +1670,10 @@ ImageBaseType::RegionType Application::GetImageRequestedRegion(const std::string return requested; } -const otb::ImageMetadata& Application::GetImageMetadata(const std::string& key, unsigned int idx) +ImageMetadata &Application::GetImageMetadata(const std::string& key, unsigned int idx) { ImageBaseType* image = this->GetParameterImageBase(key, idx); - return dynamic_cast(image)->GetImageMetadata(); + return dynamic_cast(image)->m_Imd; } void Application::SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx) diff --git a/Modules/Wrappers/SWIG/src/otbApplication.i b/Modules/Wrappers/SWIG/src/otbApplication.i index 72188c5cb9..8495ff2bd6 100644 --- a/Modules/Wrappers/SWIG/src/otbApplication.i +++ b/Modules/Wrappers/SWIG/src/otbApplication.i @@ -298,7 +298,7 @@ public: std::string GetImageProjection(const std::string & key, unsigned int idx = 0); unsigned long PropagateRequestedRegion(const std::string & key, itk::ImageRegion<2> region, unsigned int idx = 0); itk::ImageRegion<2> GetImageRequestedRegion(const std::string & key, unsigned int idx = 0); - const otb::ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); + otb::ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); void SetImageMetadata(const otb::ImageMetadata & imd, const std::string& key, unsigned int idx = 0); itkMetaDataDictionary GetImageMetaData(const std::string & key, unsigned int idx = 0); otb::Wrapper::ImagePixelType GetImageBasePixelType(const std::string & key, unsigned int idx = 0); -- GitLab From 02b333c4b68d1e957f4be44e987a1f5e569d84e0 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Wed, 24 Nov 2021 13:39:55 +0100 Subject: [PATCH 011/117] ENH: Rename GetImageMetaData to GetMetadataDictionary --- .../ApplicationEngine/include/otbWrapperApplication.h | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx | 2 +- Modules/Wrappers/SWIG/src/otbApplication.i | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h index d727fedf64..48a39e856e 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h @@ -831,7 +831,7 @@ public: void SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx = 0); /** Returns a copy of the metadata dictionary of the image */ - itk::MetaDataDictionary GetImageMetaData(const std::string& key, unsigned int idx = 0); + itk::MetaDataDictionary GetMetadataDictionary(const std::string& key, unsigned int idx = 0); /** Find out what is the pixel type from an image parameter * This function assumes that the underlying object is either an otb::Image diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index 6676792ebf..c8f6fb2e42 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1682,7 +1682,7 @@ void Application::SetImageMetadata(const ImageMetadata & imd, const std::string& dynamic_cast(image)->SetImageMetadata(imd); } -itk::MetaDataDictionary Application::GetImageMetaData(const std::string& key, unsigned int idx) +itk::MetaDataDictionary Application::GetMetadataDictionary(const std::string& key, unsigned int idx) { ImageBaseType* image = this->GetParameterImageBase(key, idx); return image->GetMetaDataDictionary(); diff --git a/Modules/Wrappers/SWIG/src/otbApplication.i b/Modules/Wrappers/SWIG/src/otbApplication.i index 8495ff2bd6..a348391e48 100644 --- a/Modules/Wrappers/SWIG/src/otbApplication.i +++ b/Modules/Wrappers/SWIG/src/otbApplication.i @@ -300,7 +300,7 @@ public: itk::ImageRegion<2> GetImageRequestedRegion(const std::string & key, unsigned int idx = 0); otb::ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0); void SetImageMetadata(const otb::ImageMetadata & imd, const std::string& key, unsigned int idx = 0); - itkMetaDataDictionary GetImageMetaData(const std::string & key, unsigned int idx = 0); + itkMetaDataDictionary GetMetadataDictionary(const std::string & key, unsigned int idx = 0); otb::Wrapper::ImagePixelType GetImageBasePixelType(const std::string & key, unsigned int idx = 0); itkProcessObject* GetProgressSource() const; @@ -887,7 +887,7 @@ class ApplicationProxy(object): output["spacing"] = self.GetImageSpacing(paramKey) output["size"] = self.GetImageSize(paramKey) output["region"] = self.GetImageRequestedRegion(paramKey) - output["metadata"] = self.GetImageMetaData(paramKey) + output["metadata"] = self.GetMetadataDictionary(paramKey) return output } -- GitLab From 8089441afea24e40a709a1445cfe552cd655e83a Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 25 Nov 2021 11:12:56 +0100 Subject: [PATCH 012/117] ENH: The python API provides an ImageMetadata in the image dictionary --- Modules/Wrappers/SWIG/src/otbApplication.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Wrappers/SWIG/src/otbApplication.i b/Modules/Wrappers/SWIG/src/otbApplication.i index a348391e48..a349854067 100644 --- a/Modules/Wrappers/SWIG/src/otbApplication.i +++ b/Modules/Wrappers/SWIG/src/otbApplication.i @@ -482,7 +482,7 @@ public: itk::Vector spacing, itk::Size<2> size, itk::ImageRegion<2> bufferRegion, - itkMetaDataDictionary metadata) + otb::ImageMetadata metadata) { img->SetOrigin(origin); otb::internal::SetSignedSpacing(img, spacing); @@ -496,7 +496,7 @@ public: } img->SetRequestedRegion(bufferRegion); img->SetBufferedRegion(bufferRegion); - img->SetMetaDataDictionary(metadata); + dynamic_cast(img)->SetImageMetadata(metadata); } } /* end of %extend */ #endif /* OTB_SWIGNUMPY */ @@ -887,7 +887,7 @@ class ApplicationProxy(object): output["spacing"] = self.GetImageSpacing(paramKey) output["size"] = self.GetImageSize(paramKey) output["region"] = self.GetImageRequestedRegion(paramKey) - output["metadata"] = self.GetMetadataDictionary(paramKey) + output["metadata"] = self.GetImageMetadata(paramKey) return output } -- GitLab From 3f83a2dee8a2a0ead46ab36c908c9378669033b4 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 25 Nov 2021 14:54:26 +0100 Subject: [PATCH 013/117] ENH: Wrapping of GetProjected* functions --- Modules/Wrappers/SWIG/src/otbImageMetadata.i | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i index 33acb81fbd..c3996c1d3b 100644 --- a/Modules/Wrappers/SWIG/src/otbImageMetadata.i +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -80,6 +80,10 @@ public: class ImageMetadataBase { +public: + std::string GetProjectedGeometry() const; + std::string GetProjectionWKT() const; + std::string GetProjectionProj() const; }; class ImageMetadata: public ImageMetadataBase @@ -168,10 +172,9 @@ public: if (it_time != otb::MetaData::MDTimeNames.right.end()) return $self->Has(it_time->second); - /* TODO: the geom part of the Imagemetadata is not wrapped yet auto it_geom = otb::MetaData::MDGeomNames.right.find(key); if (it_geom != otb::MetaData::MDGeomNames.right.end()) - return $self->Has(it_geom->second);*/ + return $self->Has(it_geom->second); return false; } @@ -215,6 +218,13 @@ public: $self->Add(key, timeStream.str()); } } + void __setitem__(const std::string& key, const boost::any val) { + auto it = otb::MetaData::MDGeomNames.right.find(key); + if (it != otb::MetaData::MDGeomNames.right.end()) + $self->Add(it->second, val); + else + throw std::runtime_error("[" + key + "] is not a valid geometric key"); + } %pythoncode { def __getitem__(self, key): -- GitLab From 412acd5e09c9f76e33fcfcd66f26864906c9dbaf Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 25 Nov 2021 15:20:39 +0100 Subject: [PATCH 014/117] FIX: Renamed GetImageMetaData to GetMetadataDictionary --- .../ApplicationEngine/test/otbWrapperImageInterface.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx index 1d45e7e415..179b1f75f1 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx @@ -64,7 +64,7 @@ int otbWrapperImageInterface(int argc, char* argv[]) ofs << "ProjectionRef:" << std::endl; ofs << app1->GetImageProjection("out") << std::endl; - itk::MetaDataDictionary dict = app1->GetImageMetaData("out"); + itk::MetaDataDictionary dict = app1->GetMetadataDictionary("out"); ofs << "Dictionary keys:" << std::endl; for (auto& key : dict.GetKeys()) { -- GitLab From 3ed2a118ef1588a64ab56af411bca14d65d80ea7 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Thu, 25 Nov 2021 15:31:30 +0100 Subject: [PATCH 015/117] DOC: Update Python API's doc with renaming of GetImageMetaData and the new GetImageMetadata --- Documentation/Cookbook/rst/PythonAPI.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/Cookbook/rst/PythonAPI.rst b/Documentation/Cookbook/rst/PythonAPI.rst index fe93cf129b..818c5f933e 100644 --- a/Documentation/Cookbook/rst/PythonAPI.rst +++ b/Documentation/Cookbook/rst/PythonAPI.rst @@ -328,13 +328,15 @@ functions: +---------------------------------+---------------------------------------+ | ``GetImageProjection(...)`` | Projection WKT string | +---------------------------------+---------------------------------------+ -| ``GetImageMetaData(...)`` | the entire MetaDataDictionary | +| ``GetMetadataDictionary(...)`` | the entire MetaDataDictionary | +---------------------------------+---------------------------------------+ | ``GetImageRequestedRegion(...)``| requested region | +---------------------------------+---------------------------------------+ | ``GetImageBasePixelType(...)`` | pixel type of the underlying | | | Image/VectorImage. | +---------------------------------+---------------------------------------+ +| ``GetImageMetadata(...)`` | the ImateMetadata object | ++---------------------------------+---------------------------------------+ All these getters functions use the following arguments: -- GitLab From a0a1a8a31d02b9584073f6100610be0d15a55128 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 06:10:04 +0100 Subject: [PATCH 016/117] DOC: Add the list of available keys in pyhton api documentation. --- Documentation/Cookbook/CMakeLists.txt | 10 +++ .../Scripts/otbGeneratePythonApiRstDoc.py | 46 +++++++++++++ .../rst/{ => templates}/PythonAPI.rst | 65 ++++++++++++++----- .../Core/Metadata/include/otbImageMetadata.h | 15 +++++ .../Core/Metadata/src/otbImageMetadata.cxx | 50 ++++++++++++++ Modules/Wrappers/SWIG/src/otbImageMetadata.i | 6 ++ 6 files changed, 177 insertions(+), 15 deletions(-) create mode 100644 Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py rename Documentation/Cookbook/rst/{ => templates}/PythonAPI.rst (91%) diff --git a/Documentation/Cookbook/CMakeLists.txt b/Documentation/Cookbook/CMakeLists.txt index 4bd1f02f4d..9969257000 100644 --- a/Documentation/Cookbook/CMakeLists.txt +++ b/Documentation/Cookbook/CMakeLists.txt @@ -118,6 +118,15 @@ add_custom_target(generate_otbapps_rst DEPENDS OTBSWIGWrapper-all ) +add_custom_target(generate_pythonapy_rst + COMMAND python3 ${CMAKE_CURRENT_SOURCE_DIR}/Scripts/otbGeneratePythonApiRstDoc.py + ${RST_BINARY_DIR} + WORKING_DIRECTORY ${RST_BINARY_DIR} + COMMENT "Auto-generating Python Api Documentation in RST" + DEPENDS OTBSWIGWrapper-all + ) + + add_custom_target(generate_examples_rst COMMAND python3 ${CMAKE_CURRENT_SOURCE_DIR}/Scripts/otbGenerateExamplesRstDoc.py ${RST_BINARY_DIR} @@ -144,6 +153,7 @@ add_custom_target(CookBookHTML -c ${SPHINX_CONF_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS generate_otbapps_rst + DEPENDS generate_pythonapy_rst DEPENDS generate_examples_rst COMMENT "Building RST documentation in html") diff --git a/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py b/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py new file mode 100644 index 0000000000..b9a6babfbf --- /dev/null +++ b/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py @@ -0,0 +1,46 @@ +import argparse + +import otbApplication + + +def format_key_list(keys_str): + """ + Format the key list + :param keys_str: a string containing the keys separated by spaces + :return: a string containing the keys ordered and separated by a coma and a space + """ + key_list = keys_str.split(" ") + key_list.sort() + return ", ".join(key_list) + +def GenerateRstForPythonAPi(rst_dir): + " Generate the .rst file for the PythonAPI page" + + print("Generating rst for Python API") + + # Instenciate an ImageMetadata object to retrieve the keys + imd = otbApplication.ImageMetadata() + + # Render the page + output_python_api = template_python_api.format( + key_list_double=format_key_list(imd.GetKeyListNum()), + key_list_string=format_key_list(imd.GetKeyListStr()), + key_list_l1d=format_key_list(imd.GetKeyListL1D()), +# key_list_l2d=format_key_list(imd.GetKeyListL2D()), + key_list_time=format_key_list(imd.GetKeyListTime()) + ) + + # Write the page + with open(rst_dir + '/PythonAPI.rst', 'w',encoding='utf-8') as new_rst_file: + new_rst_file.write(output_python_api) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(usage="Export the PythonAPI doc page to rst file") + parser.add_argument("rst_dir", help="Directory where rst files are generated") + args = parser.parse_args() + + # Load rst template + template_python_api = open("templates/PythonAPI.rst").read() + + GenerateRstForPythonAPi(args.rst_dir) diff --git a/Documentation/Cookbook/rst/PythonAPI.rst b/Documentation/Cookbook/rst/templates/PythonAPI.rst similarity index 91% rename from Documentation/Cookbook/rst/PythonAPI.rst rename to Documentation/Cookbook/rst/templates/PythonAPI.rst index 818c5f933e..ff1f899f3b 100644 --- a/Documentation/Cookbook/rst/PythonAPI.rst +++ b/Documentation/Cookbook/rst/templates/PythonAPI.rst @@ -106,7 +106,7 @@ functions *SetParameters()* and *GetParameters()*. .. code-block:: python - params = {"in":"myInput.tif", "type.mean.radius":4} + params = {{"in":"myInput.tif", "type.mean.radius":4}} app.SetParameters(params) params2 = app.GetParameters() @@ -374,26 +374,61 @@ The Python dictionary used has the following entries: * ``'spacing'``: signed spacing of the image * ``'size'``: full size of the image * ``'region'``: region of the image present in the buffer - * ``'metadata'``: metadata dictionary (contains projection, sensor model,...) + * ``'metadata'``: metadata dictionary (contains projection,...) + +The metadata dictionary contains various type of data. Here are the available keys of the dictionnary, ordered by type: + +* double: + + {key_list_double} + +* string: + + {key_list_string} + +* LUT 1D: + + {key_list_l1d} + +* time object: + + {key_list_time} + +This dictionary also contains metadata related to projection and +sensor model. The coresponding keys are not accessible at the +moment. But the dictionary offers a few extra methods: + +* ``GetProjectedGeometry()`` returns a string representing the + projection. It can be a WKN, an EPSG or a PROJ string. + +* ``GetProjectionWKT()`` returns a string representing the projection + as a WKT. + +* ``GetProjectionProj()`` returns a string representing the projection + as a PROJ string. Now some basic Q&A about this interface: - Q: What portion of the image is exported to Numpy array? - A: By default, the whole image is exported. If you had a non-empty requested - region (the result of calling PropagateRequestedRegion()), then this region - is exported. + * **What portion of the image is exported to Numpy array?** + + By default, the whole image is exported. If you had a non-empty + requested region (the result of calling + PropagateRequestedRegion()), then this region is exported. - Q: What is the difference between ImportImage and ImportVectorImage? - A: The first one is here for Applications that expect a monoband otb::Image. - In most cases, you will use the second one: ImportVectorImage. + * **What is the difference between ImportImage and ImportVectorImage?** - Q: What kind of objects are there in this dictionary export? - A: The array is a numpy.ndarray. The other fields are wrapped - objects from the OTB library but you can interact with them in a - Python way: they support ``len()`` and ``str()`` operator, as well as - bracket operator ``[]``. Some of them also have a ``keys()`` function just like - dictionaries. + The first one is here for Applications that expect a monoband + otb::Image. In most cases, you will use the second one: + ImportVectorImage. + * **What kind of objects are there in this dictionary export?** + + The array is a numpy.ndarray. The other fields are wrapped objects + from the OTB library but you can interact with them in a Python + way: they support ``len()`` and ``str()`` operator, as well as + bracket operator ``[]``. Some of them also have a ``keys()`` + function just like dictionaries. + This interface allows you to export OTB images (or extracts) to Numpy array, process them by other means, and re-import them with preserved metadata. Please note that this is different from an in-memory connection. diff --git a/Modules/Core/Metadata/include/otbImageMetadata.h b/Modules/Core/Metadata/include/otbImageMetadata.h index a109db3cfb..507faa0e1e 100644 --- a/Modules/Core/Metadata/include/otbImageMetadata.h +++ b/Modules/Core/Metadata/include/otbImageMetadata.h @@ -145,6 +145,9 @@ public: /** Test if a key is available */ bool Has(const MDNum& key) const; + + /** Return the list of valid keys */ + std::string GetKeyListNum() const; // -------------------- String utility function ---------------------------- @@ -159,6 +162,9 @@ public: /** Test if a key is available */ bool Has(const MDStr& key) const; + + /** Return the list of valid keys */ + std::string GetKeyListStr() const; // -------------------- LUT1D utility function ---------------------------- @@ -173,6 +179,9 @@ public: /** Test if a key is available */ bool Has(const MDL1D& key) const; + + /** Return the list of valid keys */ + std::string GetKeyListL1D() const; // -------------------- 2D LUT utility function ---------------------------- @@ -187,6 +196,9 @@ public: /** Test if a key is available */ bool Has(const MDL2D& key) const; + + /** Return the list of valid keys */ +// std::string GetKeyListL2D() const; // -------------------- Time utility function ---------------------------- @@ -202,6 +214,9 @@ public: /** Test if a key is available */ bool Has(const MDTime& key) const; + /** Return the list of valid keys */ + std::string GetKeyListTime() const; + // -------------------- Extra keys utility function -------------------------- /** Read-only accessor to extra keys */ diff --git a/Modules/Core/Metadata/src/otbImageMetadata.cxx b/Modules/Core/Metadata/src/otbImageMetadata.cxx index d34555403e..061cdb90dc 100644 --- a/Modules/Core/Metadata/src/otbImageMetadata.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadata.cxx @@ -166,6 +166,16 @@ bool ImageMetadataBase::Has(const MDNum& key) const return (NumericKeys.find(key) != NumericKeys.end()); } +std::string ImageMetadataBase::GetKeyListNum() const +{ + std::ostringstream oss; + for (const auto& kv : MetaData::MDNumNames.left) + oss << kv.second << " "; + auto returnString = oss.str(); + returnString.pop_back(); + return returnString; +} + // -------------------- String utility function ---------------------------- const std::string & ImageMetadataBase::operator[](const MDStr& key) const @@ -188,6 +198,16 @@ bool ImageMetadataBase::Has(const MDStr& key) const return (StringKeys.find(key) != StringKeys.end()); } +std::string ImageMetadataBase::GetKeyListStr() const +{ + std::ostringstream oss; + for (const auto& kv : MetaData::MDStrNames.left) + oss << kv.second << " "; + auto returnString = oss.str(); + returnString.pop_back(); + return returnString; +} + // -------------------- LUT1D utility function ---------------------------- const MetaData::LUT1D & ImageMetadataBase::operator[](const MDL1D& key) const @@ -210,6 +230,16 @@ bool ImageMetadataBase::Has(const MDL1D& key) const return (LUT1DKeys.find(key) != LUT1DKeys.end()); } +std::string ImageMetadataBase::GetKeyListL1D() const +{ + std::ostringstream oss; + for (const auto& kv : MetaData::MDL1DNames.left) + oss << kv.second << " "; + auto returnString = oss.str(); + returnString.pop_back(); + return returnString; +} + // -------------------- 2D LUT utility function ---------------------------- const MetaData::LUT2D & ImageMetadataBase::operator[](const MDL2D& key) const @@ -232,6 +262,16 @@ bool ImageMetadataBase::Has(const MDL2D& key) const return (LUT2DKeys.find(key) != LUT2DKeys.end()); } +//std::string ImageMetadataBase::GetKeyListL2D() const +//{ +// std::ostringstream oss; +// for (const auto& kv : MetaData::MDL2DNames.left) +// oss << kv.second << " "; +// auto returnString = oss.str(); +// returnString.pop_back(); +// return returnString; +//} + // -------------------- Time utility function ---------------------------- const MetaData::Time & ImageMetadataBase::operator[](const MDTime& key) const @@ -254,6 +294,16 @@ bool ImageMetadataBase::Has(const MDTime& key) const return (TimeKeys.find(key) != TimeKeys.end()); } +std::string ImageMetadataBase::GetKeyListTime() const +{ + std::ostringstream oss; + for (const auto& kv : MetaData::MDTimeNames.left) + oss << kv.second << " "; + auto returnString = oss.str(); + returnString.pop_back(); + return returnString; +} + // -------------------- Extra keys utility function -------------------------- const std::string & ImageMetadataBase::operator[](const std::string & key) const diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i index c3996c1d3b..efb1fbe7e1 100644 --- a/Modules/Wrappers/SWIG/src/otbImageMetadata.i +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -84,6 +84,12 @@ public: std::string GetProjectedGeometry() const; std::string GetProjectionWKT() const; std::string GetProjectionProj() const; + + std::string GetKeyListNum() const; + std::string GetKeyListStr() const; + std::string GetKeyListL1D() const; +// std::string GetKeyListL2D() const; + std::string GetKeyListTime() const; }; class ImageMetadata: public ImageMetadataBase -- GitLab From 558fea11135c6818ec174629df64ab274900d673 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 06:57:23 +0100 Subject: [PATCH 017/117] DOC: Add release-note-8.0 to the CookBook --- Documentation/Cookbook/rst/ReleaseNote8.rst | 241 ++++++++++++++++++ .../Cookbook/rst/Supported_Sensors.rst | 13 +- Documentation/Cookbook/rst/index.rst | 1 + 3 files changed, 250 insertions(+), 5 deletions(-) create mode 100644 Documentation/Cookbook/rst/ReleaseNote8.rst diff --git a/Documentation/Cookbook/rst/ReleaseNote8.rst b/Documentation/Cookbook/rst/ReleaseNote8.rst new file mode 100644 index 0000000000..190fc8bc8b --- /dev/null +++ b/Documentation/Cookbook/rst/ReleaseNote8.rst @@ -0,0 +1,241 @@ +What is new with OTB 8.0 +======================== + +OSSIM is used for geometric **sensor modelling** and **metadata +parsing**. It has been a dependency of the OTB since its +beginning. Then adapter classes have been added to hide OSSIM headers +from OTB public API. With the version 8 of OTB, it is time to remove +this dependency, whose development cycle is difficult to follow. Until +OTB v7, only a small portion of OSSIM was used anyway. + +A new Metadata framework +------------------------ + +Reading and writing the metadata used to be handled by OSSIM. With OTB +8.0, GDAL is in charge for this task. Like with OSSIM, this framework +has a mechanism to parse the metadata read by GDAL and make them +accessible to the applications. The list of supported sensors didn’t +change from the previous versions. Sensors not in this list can still +be used with OTB, but the metadata won’t be accessible. + +Formosat +^^^^^^^^ + +Fomosat products are based on the DIMAP file format. The user can +provide either the DIMAP file or the tiff file as input of an OTB +application. + +Ikonos +^^^^^^ + +Ikonos products use the TIFF file format. To use an Ikonos product, +the user should provide one of them as input for an OTB application. + +Pleiades +^^^^^^^^ + +Pleiades products are based on the DIMAP file format. The user can +provide either the DIMAP file or the tiff/jpeg2000 file as input of an +OTB application. We recommend the use of the tiff/jp2000 file. Indeed, +when reading the DIMAP file we noticed that the image is shifted by +0.5 pixel (this is a documented bug in GDAL). + +QuickBird +^^^^^^^^^ + +QuickBird products use the TIFF file format. To use a QuickBird +product, the user should provide one of them as input for an OTB +application. + +Spot 5, 6 & 7 +^^^^^^^^^^^^^ + +Spot products are based on the DIMAP file format. The user can provide +either the DIMAP file or the tiff/jpeg2000 file as input of an OTB +application. + +WorldView 2 +^^^^^^^^^^^ + +WordView 2 products use the TIFF file format. To use a WordView 2 +product, the user should provide one of them as input for an OTB +application. + +CosmoSkyMed +^^^^^^^^^^^ + +CosmoSkyMed products contain either HDF5 files or Tiff files. One Tiff +file per polarization, or one HDF5 file containing all the data. When +reading a HDF dataset, one needs to select the right subdataset using +the Extended Filename &sdataidx=<(int)idx>. For example, in some +CosmoSkyMed products, the first subDataset is a quicklook, and the +actual product is the second subdataset: + +.. code-block:: c++ + + -in “.h5?&sdataidx=2” + +Radarsat 2 +^^^^^^^^^^ + +Radarsat2 products uses the TIFF file format. To use a Radarsat +product, the user should provide one of them as input for an OTB +application. + +Sentinel 1 +^^^^^^^^^^ + +Sentinel 1 products use the TIFF file format. To use a Sentinel 1 +product, the user should provide one of them as input for an OTB +application. + +TerraSarX +^^^^^^^^^ + +TerraSarX products contains COS files. To use a TerraSarX product, the +user should provide one of them as input for an OTB application. + +A new organization for the Sensor Models +---------------------------------------- + +OSSIM oversaw the forward and inverse transforms. It would use either +an RPC model, a SAR model, or a sensor specific model. + +We now use GDAL’s RPC model in OTB. After running some tests, we +estimated that it was more accurate than OSSIM’s. Some localization +gaps of the order of 0.01 pixel are to be expected. + +We implemented a new SAR model for OTB, based on OSSIM’s. The unique, +significant, difference is the way it deals with time. OSSIM uses a +double precision to record times. The time needs to be accurate at the +microsecond, and a double doesn’t allow such accuracy. When working on +one line, this is not a problem, but the accumulation of errors on +multiple lines generates a significant error which can lead to the +selection of the wrong line. To fix this, we used another time library +that is more precise. This means the new version of OTB provides +results slightly better: a few lines will have a different value. + +A new way to handle DEM +----------------------- + +Once again, OSSIM is replaced by GDAL for this task. Many OTB +application use an elevation model as input, usually with the +parameter “-elev”. This parameter accepts any raster file supported by +GDAL, or a directory containing such files. In this second case, all +rasters from the input directory will be opened by GDAL, so it could +be a good idea to use a VRT. It is the same for the geoid file, but it +is important to note that in previous OTB versions (using OSSIM) it +was common to use the egm96.grd file as geoid. This file cannot be +opened by GDAL. However, it is still possible to use it with a little +trick described in `the documentation +`_. + +Status of the tests +------------------- + +The continuous integration platform executed all the tests on the +release 8.0.0-alpha2, and they all exited with success. + +Beside the automatic, non-regression tests, we also run functional +tests with products and application commonly used. We were +particularly cautious in testing applications related to sensor models +and DEM, like the orthorectification. To perform the tests, we used +Pleiades products to perform some treatments (calibration and +orthorectification). We also used multiple TerraSAR-X and Sentinel-1 +products to perform various treatments (deburst, calibration and +orthorectification) with different parameters. This test helped us +identify some variations with the previous version: the results are +more accurate, but they take more computation time. We will describe +these differences in the following sections. + +Numerical gaps with the previous version +---------------------------------------- + +Optical Calibration +^^^^^^^^^^^^^^^^^^^ + +No difference is to be expected, except for Pleiade products. Indeed, +we improved the calibration for the Pleiade products by changing the +position of the pixel used to take the sun angles from top center to +center. See this thread on the forum for more details. This leads to a +numerical gap of the order of 10e-4 in absolute. + +Optical Orthorectification +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +We studied the disparity between an orthorectification generated with +OTB 7.4 and an orthorectification generated with OTB 8.0 with a +Pleiades product. The analyses have shown a disparity of 0.01 pixel +along the row and 0.02 pixel along the columns. These disparities are +negligible compared to Pleiade’s localization precision. + +SAR Deburst +^^^^^^^^^^^ + +Our analyses have shown that with OTB 8.0, the problem of line +selection due to nanosecond error accumulation is solved. Thus, the +lines that were miss selected by OSSIM are now correctly +selected. This means that a couple of lines will be different with the +new version of OTB. Except for those lines, no difference was +assessed. + +SAR Calibration +^^^^^^^^^^^^^^^ + +This application doesn’t produce numerical gaps. However, if the +calibration is directly processed after deburst, the lines mis +selected during the deburst are still different. + +SAR Orthorectification +^^^^^^^^^^^^^^^^^^^^^^ + +We studied the disparity between an orthorectification generated with +OTB 7.4 and an orthorectification generated with OTB 8.0 with a +Sentinel1 SLC product. The analyses have shown a disparity of 0.07 +pixel along the row and 0.025 pixel along the columns. This is within +the precision of the measurements. + +Difference of computation time +------------------------------ + +Calibration +^^^^^^^^^^^ + +We noticed a gain of processing time (about 15% for optical +calibration and about 66% for SAR calibration). This is due to a +better use of the calibration LUT. + +Orthorectification +^^^^^^^^^^^^^^^^^^ + +There is a loss of processing time (about 40%) for this +application. We are currently investigating the cause. We think it +comes from the new time library. + +Removed functionalities +----------------------- + +DownloardSRTMTiles +^^^^^^^^^^^^^^^^^^ + +The DownloadSRTMTiles application was not functional anymore because +the official API used to retrieve the tiles is not usable without +authentication anymore. After some discussions, the decision was taken +to remove this application from OTB. The task performed by this +application can easily be done by a simple pyhton script, there is no +need for an OTB application. + +What is missing for the release of OTB 8.0? +------------------------------------------- + +The version OTB-8.0.0-alpha2 was released on November 8th, 2021. We +need more testing to release the final version 8.0. Please, don’t +hesitate to use OTB 8.0 alpha2, and tell us if you have some issues +with the application you usually use. + +In the meantime, we will work on the optimization of the computation +time for Orthorectification. We will also run some more tests. + +The release of OTB 8.0 will be largely discussed during the OTB User +Days that will be held in Toulouse, France from November 29th to +December 1st. diff --git a/Documentation/Cookbook/rst/Supported_Sensors.rst b/Documentation/Cookbook/rst/Supported_Sensors.rst index a992ea7a05..e868a7553d 100644 --- a/Documentation/Cookbook/rst/Supported_Sensors.rst +++ b/Documentation/Cookbook/rst/Supported_Sensors.rst @@ -23,25 +23,28 @@ interfaces are: +------------------------+-------------------------+--------------------------------------------------------------------+ | Sensor | Format | Notes | +========================+=========================+====================================================================+ -| CosmoSkyMed | HDF5 / TIFF | See HDF particularity below | +| CosmoSkyMed | HDF5 / TIFF | One Tiff file per polarization, or one HDF5 file containing all | +| | | the data. See HDF particularity below. | +------------------------+-------------------------+--------------------------------------------------------------------+ | Formosat | DIMAP / TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ | Ikonos | TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ -| Pleiades | JPEG2000 / TIFF | N/A | +| Pleiades | JPEG2000 / TIFF / DIMAP | We recommend the use of the tiff/jp2000 file. Indeed, when reading | +| | | the DIMAP file we noticed that the image is shifted by 0.5 pixel | +| | | (this is a documented bug in GDAL). | +------------------------+-------------------------+--------------------------------------------------------------------+ | QuickBird | TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ | Radarsat 2 | TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ -| Sentinel 1 | TIFF | Use the tiff file, not the manifest | +| Sentinel 1 | TIFF | Use the tiff file, not the manifest. | +------------------------+-------------------------+--------------------------------------------------------------------+ -| Spot 5 | DIMAP / TIFF | RPC not available | +| Spot 5 | DIMAP / TIFF | RPC not available. | +------------------------+-------------------------+--------------------------------------------------------------------+ | Spot 6 | DIMAP / JPEG2000 / TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ -| TerraSarX | COS | Use the cos file, not the main XML. MGD products are not supported | +| TerraSarX | COS | Use the cos file, not the main XML. MGD products are not supported.| +------------------------+-------------------------+--------------------------------------------------------------------+ | WorldView 2 | TIFF | N/A | +------------------------+-------------------------+--------------------------------------------------------------------+ diff --git a/Documentation/Cookbook/rst/index.rst b/Documentation/Cookbook/rst/index.rst index 896ffa290c..e8fa21de94 100644 --- a/Documentation/Cookbook/rst/index.rst +++ b/Documentation/Cookbook/rst/index.rst @@ -45,6 +45,7 @@ Table of Contents Installation Supported_Sensors Monteverdi + ReleaseNote8 .. toctree:: :maxdepth: 1 -- GitLab From 5329f3df1408f9bc4674470b5a4407ca6f659867 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 09:04:55 +0100 Subject: [PATCH 018/117] STYLE: Add copyright header --- .../Scripts/otbGeneratePythonApiRstDoc.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py b/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py index b9a6babfbf..10ef2ed044 100644 --- a/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGeneratePythonApiRstDoc.py @@ -1,3 +1,24 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) +# +# This file is part of Orfeo Toolbox +# +# https://www.orfeo-toolbox.org/ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + import argparse import otbApplication -- GitLab From a3198511debafcc998ab4a0cfa9ec8278de2c5a6 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 09:49:24 +0100 Subject: [PATCH 019/117] ENH: Wrappe the new time class in Python API --- Modules/Wrappers/SWIG/src/otbImageMetadata.i | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i index efb1fbe7e1..98e59f96d3 100644 --- a/Modules/Wrappers/SWIG/src/otbImageMetadata.i +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -55,6 +55,14 @@ public: namespace MetaData { +class TimePoint : private details::streamable, + private details::substractable_asym, + private boost::equality_comparable, + private boost::less_than_comparable +{ + +}; + struct LUTAxis { int Size; @@ -147,7 +155,7 @@ public: return it != otb::MetaData::MDTimeNames.right.end(); } - otb::MetaData::Time get_time(const std::string& key) { + otb::MetaData::TimePoint get_time(const std::string& key) { auto it = otb::MetaData::MDTimeNames.right.find(key); return $self->operator[](it->second); } @@ -213,7 +221,7 @@ public: else $self->Add(key, val.ToString()); } - void __setitem__(const std::string& key, const otb::MetaData::Time& val) { + void __setitem__(const std::string& key, const otb::MetaData::TimePoint& val) { auto it = otb::MetaData::MDTimeNames.right.find(key); if (it != otb::MetaData::MDTimeNames.right.end()) $self->Add(it->second, val); -- GitLab From 8e70e542d2570b0a825537b53ea1d6c6ccf5ba77 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 11:09:13 +0100 Subject: [PATCH 020/117] ENH: Implement a __repr__ method for the TimePoint class --- Modules/Wrappers/SWIG/src/otbImageMetadata.i | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Modules/Wrappers/SWIG/src/otbImageMetadata.i b/Modules/Wrappers/SWIG/src/otbImageMetadata.i index 98e59f96d3..e051e422e1 100644 --- a/Modules/Wrappers/SWIG/src/otbImageMetadata.i +++ b/Modules/Wrappers/SWIG/src/otbImageMetadata.i @@ -23,7 +23,8 @@ %{ #include "itkBase.includes" #include "otbWrapperSWIGIncludes.h" -#include // std::string +#include +#include #include #include "otbMetaDataKey.h" #include "otbImageMetadata.h" @@ -55,12 +56,12 @@ public: namespace MetaData { -class TimePoint : private details::streamable, - private details::substractable_asym, - private boost::equality_comparable, - private boost::less_than_comparable +class TimePoint { +public: + double GetJulianDay() const; + double GetModifiedJulianDay() const; }; struct LUTAxis @@ -108,6 +109,14 @@ public: }; +%extend otb::MetaData::TimePoint{ + std::string __repr__() { + std::ostringstream oss; + oss << *$self; + return oss.str().c_str(); + } +} + %extend otb::ImageMetadataBase{ bool is_num(const std::string& key) { -- GitLab From 67f75e777c5c5c4c9cfe137f138e80520fcf302f Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 14:10:26 +0100 Subject: [PATCH 021/117] ENH: Add test after dynamic_cast --- .../ApplicationEngine/src/otbWrapperApplication.cxx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index c8f6fb2e42..caa2ce0b78 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1673,13 +1673,20 @@ ImageBaseType::RegionType Application::GetImageRequestedRegion(const std::string ImageMetadata &Application::GetImageMetadata(const std::string& key, unsigned int idx) { ImageBaseType* image = this->GetParameterImageBase(key, idx); - return dynamic_cast(image)->m_Imd; + otb::ImageCommons* castedImage = dynamic_cast(image); + if (castedImage) + return castedImage->GetImageMetadata(); + throw std::runtime_error("Cannot retrieve metadata from the image parameter " + key); } void Application::SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx) { ImageBaseType* image = this->GetParameterImageBase(key, idx); - dynamic_cast(image)->SetImageMetadata(imd); + otb::ImageCommons* castedImage = dynamic_cast(image); + if (castedImage) + castedImage->SetImageMetadata(imd); + else + throw std::runtime_error("Cannot set metadata to the image parameter " + key); } itk::MetaDataDictionary Application::GetMetadataDictionary(const std::string& key, unsigned int idx) -- GitLab From 4d5e815432fd879152d8119c86f77c45d24fa2a3 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 15:40:59 +0100 Subject: [PATCH 022/117] FIX: Add a script to set PYTHONPATH for Pythin API doc generation --- .../RunPythonApiRstGenerator.sh.cmake.in | 27 +++++++++++++++++++ Documentation/Cookbook/CMakeLists.txt | 12 ++++++--- 2 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in diff --git a/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in b/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in new file mode 100644 index 0000000000..929d381517 --- /dev/null +++ b/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# +# This file is part of Orfeo Toolbox +# +# https://www.orfeo-toolbox.org/ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +#cmake builds with rpath in the binary dir, so we don't need to set LD_LIBRARY_PATH here +#export LD_LIBRARY_PATH=@CMAKE_BINARY_DIR@/lib:$LD_LIBRARY_PATH +export PYTHONPATH=@CMAKE_BINARY_DIR@/lib/otb/python:$PYTHONPATH +export OTB_APPLICATION_PATH=@CMAKE_BINARY_DIR@/lib/otb/applications + +python3 @CMAKE_CURRENT_SOURCE_DIR@/Scripts/otbGeneratePythonApiRstDoc.py "$1" diff --git a/Documentation/Cookbook/CMakeLists.txt b/Documentation/Cookbook/CMakeLists.txt index 9969257000..7b07ab8fc4 100644 --- a/Documentation/Cookbook/CMakeLists.txt +++ b/Documentation/Cookbook/CMakeLists.txt @@ -92,6 +92,12 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CMake/RunApplicationsRstGenerator.sh. ${CMAKE_CURRENT_BINARY_DIR}/RunApplicationsRstGenerator.sh @ONLY) +execute_process(COMMAND ${CMAKE_COMMAND} -E remove ${CMAKE_CURRENT_BINARY_DIR}/RunPythonApiRstGenerator.sh) + +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CMake/RunPythonApiRstGenerator.sh.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/RunPythonApiRstGenerator.sh + @ONLY) + file(COPY ${RST_SOURCE_DIR} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/Art DESTINATION ${RST_BINARY_DIR}) @@ -118,8 +124,8 @@ add_custom_target(generate_otbapps_rst DEPENDS OTBSWIGWrapper-all ) -add_custom_target(generate_pythonapy_rst - COMMAND python3 ${CMAKE_CURRENT_SOURCE_DIR}/Scripts/otbGeneratePythonApiRstDoc.py +add_custom_target(generate_pythonapi_rst + COMMAND ${SH_INTERP} ${CMAKE_CURRENT_BINARY_DIR}/RunPythonApiRstGenerator.sh ${RST_BINARY_DIR} WORKING_DIRECTORY ${RST_BINARY_DIR} COMMENT "Auto-generating Python Api Documentation in RST" @@ -153,7 +159,7 @@ add_custom_target(CookBookHTML -c ${SPHINX_CONF_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS generate_otbapps_rst - DEPENDS generate_pythonapy_rst + DEPENDS generate_pythonapi_rst DEPENDS generate_examples_rst COMMENT "Building RST documentation in html") -- GitLab From 94891344e1251875ed40fe63fc9c997382945d71 Mon Sep 17 00:00:00 2001 From: Julien Osman Date: Fri, 26 Nov 2021 19:28:25 +0100 Subject: [PATCH 023/117] STYLE: Update the date (2021) in the headers --- .gitlab-ci.yml | 2 +- .travis.yml | 2 +- CI/SuperbuildDownloadList.sh | 2 +- CI/cdash_handler.py | 2 +- CI/check_twin_pipelines.py | 2 +- CI/conda_build.sh | 2 +- CI/conda_deploy.sh | 2 +- CI/configure_options.cmake | 2 +- CI/contributors_check.sh | 2 +- CI/debian-testing-gcc.cmake | 2 +- CI/deploy-archive.sh | 2 +- CI/deploy-prod.sh | 2 +- CI/deploy.sh | 2 +- CI/dev_env.bat | 2 +- CI/headers_check.py | 2 +- CI/macos-10.14.6-clang.cmake | 2 +- CI/macros.cmake | 2 +- CI/main_ci.cmake | 2 +- CI/main_packages.cmake | 2 +- CI/main_qa.cmake | 2 +- CI/main_superbuild.cmake | 2 +- CI/otb_coverage.sh | 2 +- CI/prepare_superbuild.cmake | 2 +- CI/sb_configure_options.cmake | 2 +- CI/test/cdash_test.py | 2 +- CI/ubuntu-18.04-fast.cmake | 2 +- CI/ubuntu-18.04-gcc.cmake | 2 +- CI/ubuntu-18.04-llvm-nodoc.cmake | 2 +- CI/ubuntu-18.04-llvm-qa.cmake | 2 +- CI/ubuntu-18.04-llvm-xdk.cmake | 2 +- CI/ubuntu-18.04-llvm.cmake | 2 +- CI/windows-10-x64-vc14.20.cmake | 2 +- CMake/CTestCustom.cmake.in | 2 +- CMake/FindGBenchmark.cmake | 2 +- CMake/FindGLFW.cmake | 2 +- CMake/FindGeoTIFF.cmake | 2 +- CMake/FindLibKML.cmake | 2 +- CMake/FindMuParser.cmake | 2 +- CMake/FindMuParserX.cmake | 2 +- CMake/FindNumpy.cmake | 2 +- CMake/FindOpenCV.cmake | 2 +- CMake/FindQwt.cmake | 2 +- CMake/FindShark.cmake | 2 +- CMake/FindTinyXML.cmake | 2 +- CMake/GenerateExportHeaderCustom.cmake | 2 +- CMake/GetVersionFromGitTag.cmake | 2 +- CMake/MonteverdiApplicationMacros.cmake | 2 +- CMake/NamespaceHandler.cmake | 2 +- CMake/OTBApplicationMacros.cmake | 2 +- CMake/OTBCheckSSEFeatures.cmake | 2 +- CMake/OTBCheckTargetSystemArch.cmake | 2 +- CMake/OTBConfig.cmake.in | 2 +- CMake/OTBConfigVersion.cmake.in | 2 +- CMake/OTBGroups.cmake | 2 +- CMake/OTBManageLargeInputPaths.cmake | 2 +- CMake/OTBModuleAPI.cmake | 2 +- CMake/OTBModuleCPPCheckTest.cmake | 2 +- CMake/OTBModuleDoxygen.cmake | 2 +- CMake/OTBModuleEnablement.cmake | 2 +- CMake/OTBModuleExternal.cmake | 2 +- CMake/OTBModuleHeaderTest.cmake | 2 +- CMake/OTBModuleInfo.cmake.in | 2 +- CMake/OTBModuleMacros.cmake | 2 +- CMake/OTBModuleRemote.cmake | 2 +- CMake/OTBModuleTest.cmake | 2 +- CMake/OTBSetStandardCompilerFlags.cmake | 2 +- CMake/OTBStandaloneModuleMacros.cmake | 2 +- CMake/OTB_CheckCXXCompilerFlag.cmake | 2 +- CMake/PreventInBuildInstalls.cmake | 2 +- CMake/PreventInSourceBuilds.cmake | 2 +- CMake/RemoveTemporaryFiles.cmake.in | 2 +- CMake/SourceStatus.cmake | 2 +- CMake/UseOTB.cmake | 2 +- CMake/cmake_uninstall.cmake.in | 2 +- CMake/i18n_qt.cmake | 2 +- CMake/otbcli.bat.in | 2 +- CMake/otbcli.sh.in | 2 +- CMake/otbgui.bat.in | 2 +- CMake/otbgui.sh.in | 2 +- CMakeLists.txt | 2 +- CTestConfig.cmake | 2 +- Copyright/CodeCopyright.txt | 2 +- .../Cookbook/CMake/RunApplicationsRstGenerator.sh.cmake.in | 2 +- .../Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in | 2 +- Documentation/Cookbook/CMakeLists.txt | 2 +- Documentation/Cookbook/Scripts/RunExamples.py | 2 +- Documentation/Cookbook/Scripts/migrate_sg_tex.py | 2 +- Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py | 2 +- Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py | 2 +- Documentation/Cookbook/Scripts/otb_warnings.py | 2 +- Documentation/Cookbook/Scripts/rst_utils.py | 2 +- Documentation/Cookbook/_static/js/versions.js | 2 +- .../Cookbook/rst/templates/examples_license_header.txt | 2 +- Examples/Application/ApplicationExample.cxx | 2 +- Examples/Application/CMakeLists.txt | 2 +- Examples/Application/test/CMakeLists.txt | 2 +- Examples/BasicFilters/BandMathFilterExample.cxx | 2 +- Examples/BasicFilters/BandMathXImageFilterExample.cxx | 2 +- Examples/BasicFilters/CMakeLists.txt | 2 +- Examples/BasicFilters/DEMToRainbowExample.cxx | 2 +- Examples/BasicFilters/FrostImageFilter.cxx | 2 +- Examples/BasicFilters/HillShadingExample.cxx | 2 +- Examples/BasicFilters/IndexedToRGBExample.cxx | 2 +- Examples/BasicFilters/LeeImageFilter.cxx | 2 +- Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx | 2 +- Examples/BasicFilters/PrintableImageFilterExample.cxx | 2 +- Examples/BasicFilters/ScalingFilterExample.cxx | 2 +- Examples/BasicFilters/test/CMakeLists.txt | 2 +- Examples/CMakeLists.txt | 2 +- Examples/ChangeDetection/CMakeLists.txt | 2 +- Examples/ChangeDetection/CorrelChDet.cxx | 2 +- Examples/ChangeDetection/DiffChDet.cxx | 2 +- Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx | 2 +- Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx | 2 +- Examples/ChangeDetection/MultivariateAlterationDetector.cxx | 2 +- Examples/ChangeDetection/RatioChDet.cxx | 2 +- Examples/ChangeDetection/test/CMakeLists.txt | 2 +- Examples/Classification/CMakeLists.txt | 2 +- .../Classification/ClassificationMapRegularizationExample.cxx | 2 +- .../DempsterShaferFusionOfClassificationMapsExample.cxx | 2 +- Examples/Classification/SOMImageClassificationExample.cxx | 2 +- .../Classification/SupervisedImageClassificationExample.cxx | 2 +- Examples/Classification/test/CMakeLists.txt | 2 +- Examples/DimensionReduction/CMakeLists.txt | 2 +- Examples/DimensionReduction/ICAExample.cxx | 2 +- Examples/DimensionReduction/MNFExample.cxx | 2 +- Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx | 2 +- Examples/DimensionReduction/NAPCAExample.cxx | 2 +- Examples/DimensionReduction/PCAExample.cxx | 2 +- Examples/DimensionReduction/test/CMakeLists.txt | 2 +- Examples/DisparityMap/CMakeLists.txt | 2 +- Examples/DisparityMap/FineRegistrationImageFilterExample.cxx | 2 +- Examples/DisparityMap/NCCRegistrationFilterExample.cxx | 2 +- Examples/DisparityMap/StereoReconstructionExample.cxx | 2 +- Examples/DisparityMap/test/CMakeLists.txt | 2 +- .../FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx | 2 +- Examples/FeatureExtraction/CMakeLists.txt | 2 +- Examples/FeatureExtraction/CloudDetectionExample.cxx | 2 +- Examples/FeatureExtraction/ComplexMomentPathExample.cxx | 2 +- .../FeatureExtraction/ComplexMomentsImageFunctionExample.cxx | 2 +- Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx | 2 +- Examples/FeatureExtraction/EdgeDensityExample.cxx | 2 +- .../FeatureExtraction/FlusserMomentsImageFunctionExample.cxx | 2 +- Examples/FeatureExtraction/HarrisExample.cxx | 2 +- Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx | 2 +- Examples/FeatureExtraction/LineSegmentDetectorExample.cxx | 2 +- Examples/FeatureExtraction/PanTexExample.cxx | 2 +- Examples/FeatureExtraction/RatioLineDetectorExample.cxx | 2 +- Examples/FeatureExtraction/RightAngleDetectionExample.cxx | 2 +- Examples/FeatureExtraction/SFSExample.cxx | 2 +- Examples/FeatureExtraction/SURFExample.cxx | 2 +- Examples/FeatureExtraction/TextureExample.cxx | 2 +- Examples/FeatureExtraction/ThresholdToPointSetExample.cxx | 2 +- Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx | 2 +- Examples/FeatureExtraction/test/CMakeLists.txt | 2 +- Examples/Filtering/CMakeLists.txt | 2 +- Examples/Filtering/CompositeFilterExample.cxx | 2 +- Examples/Filtering/DanielssonDistanceMapImageFilter.cxx | 2 +- .../Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx | 2 +- Examples/Filtering/test/CMakeLists.txt | 2 +- Examples/Fusion/BayesianFusionImageFilter.cxx | 2 +- Examples/Fusion/CMakeLists.txt | 2 +- Examples/Fusion/PanSharpeningExample.cxx | 2 +- Examples/Fusion/test/CMakeLists.txt | 2 +- Examples/Hyperspectral/CMakeLists.txt | 2 +- Examples/Hyperspectral/HyperspectralUnmixingExample.cxx | 2 +- Examples/Hyperspectral/test/CMakeLists.txt | 2 +- Examples/IO/CMakeLists.txt | 2 +- Examples/IO/ComplexImageReadWrite.cxx | 2 +- Examples/IO/DEMHandlerExample.cxx | 2 +- Examples/IO/DEMToImageGenerator.cxx | 2 +- Examples/IO/ExtractROI.cxx | 2 +- Examples/IO/ImageReadCastWrite.cxx | 2 +- Examples/IO/ImageReadRegionOfInterestWrite.cxx | 2 +- Examples/IO/ImageReadWrite.cxx | 2 +- Examples/IO/ImageSeriesIOExample.cxx | 2 +- Examples/IO/MetadataExample.cxx | 2 +- Examples/IO/MultibandImageReadWrite.cxx | 2 +- Examples/IO/VectorDataIOExample.cxx | 2 +- Examples/IO/test/CMakeLists.txt | 2 +- Examples/Image/CMakeLists.txt | 2 +- Examples/Image/Image1.cxx | 2 +- Examples/Image/Image2.cxx | 2 +- Examples/Image/Image3.cxx | 2 +- Examples/Image/Image4.cxx | 2 +- Examples/Image/Image5.cxx | 2 +- Examples/Image/ImageListExample.cxx | 2 +- Examples/Image/VectorImage.cxx | 2 +- Examples/Image/test/CMakeLists.txt | 2 +- Examples/Installation/CMakeLists.txt | 2 +- Examples/Installation/HelloWorld.cxx | 2 +- Examples/Installation/test/CMakeLists.txt | 2 +- Examples/Iterators/CMakeLists.txt | 2 +- Examples/Iterators/ImageLinearIteratorWithIndex.cxx | 2 +- Examples/Iterators/ImageLinearIteratorWithIndex2.cxx | 2 +- Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx | 2 +- Examples/Iterators/ImageRegionIterator.cxx | 2 +- Examples/Iterators/ImageRegionIteratorWithIndex.cxx | 2 +- Examples/Iterators/ImageSliceIteratorWithIndex.cxx | 2 +- Examples/Iterators/IteratorsExamples.cxx | 2 +- Examples/Iterators/NeighborhoodIterators1.cxx | 2 +- Examples/Iterators/NeighborhoodIterators2.cxx | 2 +- Examples/Iterators/NeighborhoodIterators3.cxx | 2 +- Examples/Iterators/NeighborhoodIterators4.cxx | 2 +- Examples/Iterators/NeighborhoodIterators5.cxx | 2 +- Examples/Iterators/NeighborhoodIterators6.cxx | 2 +- Examples/Iterators/ShapedNeighborhoodIterators1.cxx | 2 +- Examples/Iterators/ShapedNeighborhoodIterators2.cxx | 2 +- Examples/Iterators/test/CMakeLists.txt | 2 +- Examples/Learning/CMakeLists.txt | 2 +- Examples/Learning/GenerateTrainingImageExample.cxx | 2 +- Examples/Learning/SEMModelEstimatorExample.cxx | 2 +- Examples/Learning/SOMClassifierExample.cxx | 2 +- Examples/Learning/SOMExample.cxx | 2 +- .../Learning/SVMImageEstimatorClassificationMultiExample.cxx | 2 +- .../Learning/TrainMachineLearningModelFromImagesExample.cxx | 2 +- .../Learning/TrainMachineLearningModelFromSamplesExample.cxx | 2 +- Examples/Learning/test/CMakeLists.txt | 2 +- Examples/Markov/CMakeLists.txt | 2 +- Examples/Markov/MarkovClassification1Example.cxx | 2 +- Examples/Markov/MarkovClassification2Example.cxx | 2 +- Examples/Markov/MarkovClassification3Example.cxx | 2 +- Examples/Markov/MarkovRegularizationExample.cxx | 2 +- Examples/Markov/MarkovRestorationExample.cxx | 2 +- Examples/Markov/test/CMakeLists.txt | 2 +- Examples/OBIA/CMakeLists.txt | 2 +- Examples/OBIA/HooverMetricsEstimation.cxx | 2 +- Examples/OBIA/LabelMapToVectorData.cxx | 2 +- Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx | 2 +- Examples/OBIA/test/CMakeLists.txt | 2 +- Examples/Patented/CMakeLists.txt | 2 +- Examples/Patented/SIFTDensityExample.cxx | 2 +- Examples/Patented/SIFTDisparityMapEstimation.cxx | 2 +- Examples/Patented/SIFTExample.cxx | 2 +- Examples/Patented/SIFTFastExample.cxx | 2 +- Examples/Patented/test/CMakeLists.txt | 2 +- Examples/Projections/CMakeLists.txt | 2 +- Examples/Projections/EstimateRPCSensorModelExample.cxx | 2 +- Examples/Projections/GeometriesProjectionExample.cxx | 2 +- Examples/Projections/OrthoRectificationExample.cxx | 2 +- Examples/Projections/PlaceNameToLonLatExample.cxx | 2 +- Examples/Projections/VectorDataExtractROIExample.cxx | 2 +- Examples/Projections/VectorDataProjectionExample.cxx | 2 +- Examples/Projections/test/CMakeLists.txt | 2 +- .../ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx | 2 +- .../AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx | 2 +- Examples/Radiometry/AtmosphericCorrectionSequencement.cxx | 2 +- Examples/Radiometry/CMakeLists.txt | 2 +- Examples/Radiometry/test/CMakeLists.txt | 2 +- Examples/Simulation/CMakeLists.txt | 2 +- Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx | 2 +- Examples/Simulation/LAIFromNDVIImageTransform.cxx | 2 +- Examples/Simulation/ProsailModel.cxx | 2 +- Examples/Simulation/test/CMakeLists.txt | 2 +- Examples/Tutorials/CMakeLists.txt | 2 +- Examples/Tutorials/FilteringPipeline.cxx | 2 +- Examples/Tutorials/HelloWorldOTB.cxx | 2 +- Examples/Tutorials/Multispectral.cxx | 2 +- Examples/Tutorials/OrthoFusion.cxx | 2 +- Examples/Tutorials/Pipeline.cxx | 2 +- Examples/Tutorials/ScalingPipeline.cxx | 2 +- Examples/Tutorials/test/CMakeLists.txt | 2 +- Modules/Adapters/BoostAdapters/CMakeLists.txt | 2 +- Modules/Adapters/BoostAdapters/include/otbBoostDox.h | 2 +- Modules/Adapters/BoostAdapters/include/otbJoinContainer.h | 2 +- Modules/Adapters/BoostAdapters/include/otbStringUtils.h | 2 +- .../Adapters/BoostAdapters/include/otb_boost_expint_header.h | 2 +- Modules/Adapters/BoostAdapters/include/otb_boost_graph_header.h | 2 +- .../BoostAdapters/include/otb_boost_lexicalcast_header.h | 2 +- .../BoostAdapters/include/otb_boost_math_gamma_header.h | 2 +- .../BoostAdapters/include/otb_boost_math_normal_header.h | 2 +- .../Adapters/BoostAdapters/include/otb_boost_string_header.h | 2 +- .../Adapters/BoostAdapters/include/otb_boost_tokenizer_header.h | 2 +- Modules/Adapters/BoostAdapters/otb-module.cmake | 2 +- Modules/Adapters/CurlAdapters/CMakeLists.txt | 2 +- Modules/Adapters/CurlAdapters/include/otbCurlHelper.h | 2 +- Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h | 2 +- Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h | 2 +- Modules/Adapters/CurlAdapters/otb-module.cmake | 2 +- Modules/Adapters/CurlAdapters/src/CMakeLists.txt | 2 +- Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx | 2 +- Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx | 2 +- Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx | 2 +- Modules/Adapters/CurlAdapters/test/CMakeLists.txt | 2 +- .../Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx | 2 +- Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx | 2 +- Modules/Adapters/GdalAdapters/CMakeLists.txt | 2 +- .../Adapters/GdalAdapters/include/otbCoordinateTransformation.h | 2 +- Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h | 2 +- Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h | 2 +- Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h | 2 +- .../GdalAdapters/include/otbGeometriesToGeometriesFilter.h | 2 +- .../GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx | 2 +- Modules/Adapters/GdalAdapters/include/otbImageReference.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGR.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h | 2 +- .../Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h | 2 +- .../GdalAdapters/include/otbOGRExtendedFilenameToOptions.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h | 2 +- Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h | 2 +- Modules/Adapters/GdalAdapters/include/otbSpatialReference.h | 2 +- Modules/Adapters/GdalAdapters/otb-module.cmake | 2 +- Modules/Adapters/GdalAdapters/src/CMakeLists.txt | 2 +- .../Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx | 2 +- .../GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx | 2 +- .../GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx | 2 +- Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx | 2 +- Modules/Adapters/GdalAdapters/test/CMakeLists.txt | 2 +- .../GdalAdapters/test/otbCoordinateTransformationTest.cxx | 2 +- .../Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx | 2 +- .../Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx | 2 +- .../Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx | 2 +- .../Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx | 2 +- .../test/otbOGRExtendedFilenameToOptionsGDALTest.cxx | 2 +- .../GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx | 2 +- Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx | 2 +- Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx | 2 +- Modules/Adapters/QtAdapters/CMakeLists.txt | 2 +- Modules/Adapters/QtAdapters/include/otbQtAdapters.h | 2 +- Modules/Adapters/QtAdapters/otb-module.cmake | 2 +- Modules/Adapters/QtAdapters/src/CMakeLists.txt | 2 +- Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx | 2 +- Modules/Adapters/QtAdapters/test/CMakeLists.txt | 2 +- Modules/Applications/AppChangeDetection/CMakeLists.txt | 2 +- Modules/Applications/AppChangeDetection/app/CMakeLists.txt | 2 +- .../app/otbMultivariateAlterationDetector.cxx | 2 +- Modules/Applications/AppChangeDetection/otb-module.cmake | 2 +- Modules/Applications/AppChangeDetection/test/CMakeLists.txt | 2 +- Modules/Applications/AppClassification/CMakeLists.txt | 2 +- Modules/Applications/AppClassification/app/CMakeLists.txt | 2 +- .../app/otbClassificationMapRegularization.cxx | 2 +- .../AppClassification/app/otbComputeConfusionMatrix.cxx | 2 +- .../AppClassification/app/otbComputeImagesStatistics.cxx | 2 +- .../app/otbComputeOGRLayersFeaturesStatistics.cxx | 2 +- .../AppClassification/app/otbFusionOfClassifications.cxx | 2 +- .../Applications/AppClassification/app/otbImageClassifier.cxx | 2 +- .../Applications/AppClassification/app/otbImageRegression.cxx | 2 +- .../AppClassification/app/otbKMeansClassification.cxx | 2 +- .../AppClassification/app/otbMultiImageSamplingRate.cxx | 2 +- .../AppClassification/app/otbOGRLayerClassifier.cxx | 2 +- .../AppClassification/app/otbPolygonClassStatistics.cxx | 2 +- .../Applications/AppClassification/app/otbSOMClassification.cxx | 2 +- .../AppClassification/app/otbSampleAugmentation.cxx | 2 +- .../Applications/AppClassification/app/otbSampleExtraction.cxx | 2 +- .../Applications/AppClassification/app/otbSampleSelection.cxx | 2 +- .../AppClassification/app/otbTrainImagesClassifier.cxx | 2 +- .../AppClassification/app/otbTrainImagesRegression.cxx | 2 +- .../Applications/AppClassification/app/otbTrainRegression.cxx | 2 +- .../AppClassification/app/otbTrainVectorClassifier.cxx | 2 +- .../AppClassification/app/otbTrainVectorRegression.cxx | 2 +- .../Applications/AppClassification/app/otbVectorClassifier.cxx | 2 +- .../Applications/AppClassification/app/otbVectorRegression.cxx | 2 +- .../AppClassification/include/otbLearningApplicationBase.h | 2 +- .../AppClassification/include/otbLearningApplicationBase.hxx | 2 +- .../Applications/AppClassification/include/otbTrainBoost.hxx | 2 +- .../AppClassification/include/otbTrainDecisionTree.hxx | 2 +- .../Applications/AppClassification/include/otbTrainImagesBase.h | 2 +- .../AppClassification/include/otbTrainImagesBase.hxx | 2 +- Modules/Applications/AppClassification/include/otbTrainKNN.hxx | 2 +- .../Applications/AppClassification/include/otbTrainLibSVM.hxx | 2 +- .../AppClassification/include/otbTrainNeuralNetwork.hxx | 2 +- .../AppClassification/include/otbTrainNormalBayes.hxx | 2 +- .../AppClassification/include/otbTrainRandomForests.hxx | 2 +- Modules/Applications/AppClassification/include/otbTrainSVM.hxx | 2 +- .../AppClassification/include/otbTrainSharkKMeans.hxx | 2 +- .../AppClassification/include/otbTrainSharkRandomForests.hxx | 2 +- .../Applications/AppClassification/include/otbTrainVectorBase.h | 2 +- .../AppClassification/include/otbTrainVectorBase.hxx | 2 +- .../AppClassification/include/otbVectorPrediction.h | 2 +- .../AppClassification/include/otbVectorPrediction.hxx | 2 +- Modules/Applications/AppClassification/otb-module.cmake | 2 +- Modules/Applications/AppClassification/test/CMakeLists.txt | 2 +- Modules/Applications/AppDescriptors/CMakeLists.txt | 2 +- Modules/Applications/AppDescriptors/app/CMakeLists.txt | 2 +- .../AppDescriptors/app/otbHomologousPointsExtraction.cxx | 2 +- Modules/Applications/AppDescriptors/otb-module.cmake | 2 +- Modules/Applications/AppDescriptors/test/CMakeLists.txt | 2 +- Modules/Applications/AppDimensionalityReduction/CMakeLists.txt | 2 +- .../Applications/AppDimensionalityReduction/app/CMakeLists.txt | 2 +- .../app/otbDimensionalityReduction.cxx | 2 +- .../app/otbImageDimensionalityReduction.cxx | 2 +- .../app/otbTrainDimensionalityReduction.cxx | 2 +- .../app/otbVectorDimensionalityReduction.cxx | 2 +- .../include/otbDimensionalityReductionTrainAutoencoder.hxx | 2 +- .../include/otbDimensionalityReductionTrainPCA.hxx | 2 +- .../include/otbDimensionalityReductionTrainSOM.hxx | 2 +- .../include/otbTrainDimensionalityReductionApplicationBase.h | 2 +- .../include/otbTrainDimensionalityReductionApplicationBase.hxx | 2 +- .../Applications/AppDimensionalityReduction/otb-module.cmake | 2 +- .../Applications/AppDimensionalityReduction/test/CMakeLists.txt | 2 +- Modules/Applications/AppDomainTransform/CMakeLists.txt | 2 +- Modules/Applications/AppDomainTransform/app/CMakeLists.txt | 2 +- .../Applications/AppDomainTransform/app/otbDomainTransform.cxx | 2 +- Modules/Applications/AppDomainTransform/otb-module.cmake | 2 +- Modules/Applications/AppDomainTransform/test/CMakeLists.txt | 2 +- Modules/Applications/AppEdge/CMakeLists.txt | 2 +- Modules/Applications/AppEdge/app/CMakeLists.txt | 2 +- Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx | 2 +- Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx | 2 +- Modules/Applications/AppEdge/otb-module.cmake | 2 +- Modules/Applications/AppEdge/test/CMakeLists.txt | 2 +- Modules/Applications/AppFiltering/CMakeLists.txt | 2 +- Modules/Applications/AppFiltering/app/CMakeLists.txt | 2 +- .../Applications/AppFiltering/app/otbContrastEnhancement.cxx | 2 +- Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx | 2 +- Modules/Applications/AppFiltering/app/otbSmoothing.cxx | 2 +- Modules/Applications/AppFiltering/otb-module.cmake | 2 +- Modules/Applications/AppFiltering/test/CMakeLists.txt | 2 +- Modules/Applications/AppFusion/CMakeLists.txt | 2 +- Modules/Applications/AppFusion/app/CMakeLists.txt | 2 +- Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx | 2 +- Modules/Applications/AppFusion/app/otbPansharpening.cxx | 2 +- Modules/Applications/AppFusion/otb-module.cmake | 2 +- Modules/Applications/AppFusion/test/CMakeLists.txt | 2 +- Modules/Applications/AppHyperspectral/CMakeLists.txt | 2 +- Modules/Applications/AppHyperspectral/app/CMakeLists.txt | 2 +- .../AppHyperspectral/app/otbEndmemberNumberEstimation.cxx | 2 +- .../AppHyperspectral/app/otbHyperspectralUnmixing.cxx | 2 +- .../Applications/AppHyperspectral/app/otbLocalRxDetection.cxx | 2 +- .../AppHyperspectral/app/otbSpectralAngleClassification.cxx | 2 +- .../AppHyperspectral/app/otbVertexComponentAnalysis.cxx | 2 +- Modules/Applications/AppHyperspectral/otb-module.cmake | 2 +- Modules/Applications/AppHyperspectral/test/CMakeLists.txt | 2 +- Modules/Applications/AppImageUtils/CMakeLists.txt | 2 +- Modules/Applications/AppImageUtils/app/CMakeLists.txt | 2 +- Modules/Applications/AppImageUtils/app/otbColorMapping.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbCompareImages.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbExtractROI.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbManageNoData.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbMosaic.cxx | 2 +- .../AppImageUtils/app/otbMultiResolutionPyramid.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbPixelValue.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbQuicklook.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbRescale.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbResetMargin.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbSplitImage.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbSynthetize.cxx | 2 +- Modules/Applications/AppImageUtils/app/otbTileFusion.cxx | 2 +- Modules/Applications/AppImageUtils/otb-module.cmake | 2 +- Modules/Applications/AppImageUtils/test/CMakeLists.txt | 2 +- .../AppImageUtils/test/otbAppImageUtilsTestDriver.cxx | 2 +- .../Applications/AppImageUtils/test/otbExtractROIAppTests.cxx | 2 +- Modules/Applications/AppIndices/CMakeLists.txt | 2 +- Modules/Applications/AppIndices/app/CMakeLists.txt | 2 +- Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx | 2 +- Modules/Applications/AppIndices/otb-module.cmake | 2 +- Modules/Applications/AppIndices/test/CMakeLists.txt | 2 +- Modules/Applications/AppKMZ/CMakeLists.txt | 2 +- Modules/Applications/AppKMZ/app/CMakeLists.txt | 2 +- Modules/Applications/AppKMZ/app/otbKmzExport.cxx | 2 +- Modules/Applications/AppKMZ/otb-module.cmake | 2 +- Modules/Applications/AppKMZ/test/CMakeLists.txt | 2 +- Modules/Applications/AppMathParser/CMakeLists.txt | 2 +- Modules/Applications/AppMathParser/app/CMakeLists.txt | 2 +- Modules/Applications/AppMathParser/app/otbBandMath.cxx | 2 +- Modules/Applications/AppMathParser/otb-module.cmake | 2 +- Modules/Applications/AppMathParser/test/CMakeLists.txt | 2 +- Modules/Applications/AppMathParserX/CMakeLists.txt | 2 +- Modules/Applications/AppMathParserX/app/CMakeLists.txt | 2 +- Modules/Applications/AppMathParserX/app/otbBandMathX.cxx | 2 +- Modules/Applications/AppMathParserX/otb-module.cmake | 2 +- Modules/Applications/AppMathParserX/test/CMakeLists.txt | 2 +- .../Applications/AppMathParserX/test/otbBandMathXAppTests.cxx | 2 +- Modules/Applications/AppMoments/CMakeLists.txt | 2 +- Modules/Applications/AppMoments/app/CMakeLists.txt | 2 +- .../Applications/AppMoments/app/otbLocalStatisticExtraction.cxx | 2 +- Modules/Applications/AppMoments/otb-module.cmake | 2 +- Modules/Applications/AppMoments/test/CMakeLists.txt | 2 +- Modules/Applications/AppMorphology/CMakeLists.txt | 2 +- Modules/Applications/AppMorphology/app/CMakeLists.txt | 2 +- .../AppMorphology/app/otbBinaryMorphologicalOperation.cxx | 2 +- .../AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx | 2 +- .../AppMorphology/app/otbMorphologicalClassification.cxx | 2 +- .../app/otbMorphologicalMultiScaleDecomposition.cxx | 2 +- .../AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx | 2 +- Modules/Applications/AppMorphology/otb-module.cmake | 2 +- Modules/Applications/AppMorphology/test/CMakeLists.txt | 2 +- Modules/Applications/AppOpticalCalibration/CMakeLists.txt | 2 +- Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt | 2 +- .../AppOpticalCalibration/app/otbOpticalCalibration.cxx | 2 +- Modules/Applications/AppOpticalCalibration/otb-module.cmake | 2 +- Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt | 2 +- Modules/Applications/AppProjection/CMakeLists.txt | 2 +- Modules/Applications/AppProjection/app/CMakeLists.txt | 2 +- .../AppProjection/app/otbConvertCartoToGeoPoint.cxx | 2 +- .../AppProjection/app/otbConvertSensorToGeoPoint.cxx | 2 +- .../AppProjection/app/otbGenerateRPCSensorModel.cxx | 2 +- .../AppProjection/app/otbGridBasedImageResampling.cxx | 2 +- Modules/Applications/AppProjection/app/otbImageEnvelope.cxx | 2 +- .../AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx | 2 +- .../Applications/AppProjection/app/otbOrthoRectification.cxx | 2 +- Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx | 2 +- .../AppProjection/app/otbRigidTransformResample.cxx | 2 +- Modules/Applications/AppProjection/app/otbSuperimpose.cxx | 2 +- .../AppProjection/app/otbVectorDataReprojection.cxx | 2 +- Modules/Applications/AppProjection/otb-module.cmake | 2 +- Modules/Applications/AppProjection/test/CMakeLists.txt | 2 +- Modules/Applications/AppSARCalibration/CMakeLists.txt | 2 +- Modules/Applications/AppSARCalibration/app/CMakeLists.txt | 2 +- .../AppSARCalibration/app/otbSARBurstExtraction.cxx | 2 +- .../Applications/AppSARCalibration/app/otbSARCalibration.cxx | 2 +- .../AppSARCalibration/app/otbSARConcatenateBursts.cxx | 2 +- Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx | 2 +- Modules/Applications/AppSARCalibration/otb-module.cmake | 2 +- Modules/Applications/AppSARCalibration/test/CMakeLists.txt | 2 +- Modules/Applications/AppSARDecompositions/CMakeLists.txt | 2 +- Modules/Applications/AppSARDecompositions/app/CMakeLists.txt | 2 +- .../AppSARDecompositions/app/otbSARDecompositions.cxx | 2 +- Modules/Applications/AppSARDecompositions/otb-module.cmake | 2 +- Modules/Applications/AppSARDecompositions/test/CMakeLists.txt | 2 +- Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt | 2 +- .../Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt | 2 +- .../AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx | 2 +- Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake | 2 +- .../Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt | 2 +- Modules/Applications/AppSARPolarSynth/CMakeLists.txt | 2 +- Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt | 2 +- Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx | 2 +- Modules/Applications/AppSARPolarSynth/otb-module.cmake | 2 +- Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt | 2 +- Modules/Applications/AppSARUtils/CMakeLists.txt | 2 +- Modules/Applications/AppSARUtils/app/CMakeLists.txt | 2 +- .../Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx | 2 +- Modules/Applications/AppSARUtils/app/otbDespeckle.cxx | 2 +- Modules/Applications/AppSARUtils/otb-module.cmake | 2 +- Modules/Applications/AppSARUtils/test/CMakeLists.txt | 2 +- Modules/Applications/AppSegmentation/CMakeLists.txt | 2 +- Modules/Applications/AppSegmentation/app/CMakeLists.txt | 2 +- .../AppSegmentation/app/otbConnectedComponentSegmentation.cxx | 2 +- .../AppSegmentation/app/otbHooverCompareSegmentation.cxx | 2 +- .../Applications/AppSegmentation/app/otbLSMSSegmentation.cxx | 2 +- .../AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx | 2 +- .../Applications/AppSegmentation/app/otbLSMSVectorization.cxx | 2 +- .../Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx | 2 +- .../Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx | 2 +- Modules/Applications/AppSegmentation/app/otbSegmentation.cxx | 2 +- .../Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx | 2 +- Modules/Applications/AppSegmentation/otb-module.cmake | 2 +- Modules/Applications/AppSegmentation/test/CMakeLists.txt | 2 +- Modules/Applications/AppStereo/CMakeLists.txt | 2 +- Modules/Applications/AppStereo/app/CMakeLists.txt | 2 +- Modules/Applications/AppStereo/app/otbBlockMatching.cxx | 2 +- .../AppStereo/app/otbDisparityMapToElevationMap.cxx | 2 +- Modules/Applications/AppStereo/app/otbFineRegistration.cxx | 2 +- Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx | 2 +- Modules/Applications/AppStereo/app/otbStereoFramework.cxx | 2 +- .../AppStereo/app/otbStereoRectificationGridGenerator.cxx | 2 +- Modules/Applications/AppStereo/otb-module.cmake | 2 +- Modules/Applications/AppStereo/test/CMakeLists.txt | 2 +- Modules/Applications/AppTest/CMakeLists.txt | 2 +- Modules/Applications/AppTest/app/CMakeLists.txt | 2 +- Modules/Applications/AppTest/app/otbTestApplication.cxx | 2 +- Modules/Applications/AppTest/otb-module.cmake | 2 +- Modules/Applications/AppTest/test/CMakeLists.txt | 2 +- Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx | 2 +- .../Applications/AppTest/test/otbWrapperApplicationDocTests.cxx | 2 +- Modules/Applications/AppTextures/CMakeLists.txt | 2 +- Modules/Applications/AppTextures/app/CMakeLists.txt | 2 +- .../AppTextures/app/otbHaralickTextureExtraction.cxx | 2 +- .../Applications/AppTextures/app/otbPantexTextureExtraction.cxx | 2 +- .../Applications/AppTextures/app/otbSFSTextureExtraction.cxx | 2 +- Modules/Applications/AppTextures/otb-module.cmake | 2 +- Modules/Applications/AppTextures/test/CMakeLists.txt | 2 +- Modules/Applications/AppVectorDataTranslation/CMakeLists.txt | 2 +- .../Applications/AppVectorDataTranslation/app/CMakeLists.txt | 2 +- .../AppVectorDataTranslation/app/otbRasterization.cxx | 2 +- Modules/Applications/AppVectorDataTranslation/otb-module.cmake | 2 +- .../Applications/AppVectorDataTranslation/test/CMakeLists.txt | 2 +- Modules/Applications/AppVectorUtils/CMakeLists.txt | 2 +- Modules/Applications/AppVectorUtils/app/CMakeLists.txt | 2 +- .../AppVectorUtils/app/otbConcatenateVectorData.cxx | 2 +- Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx | 2 +- .../Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx | 2 +- .../Applications/AppVectorUtils/app/otbVectorDataSetField.cxx | 2 +- .../Applications/AppVectorUtils/app/otbVectorDataTransform.cxx | 2 +- Modules/Applications/AppVectorUtils/otb-module.cmake | 2 +- Modules/Applications/AppVectorUtils/test/CMakeLists.txt | 2 +- Modules/Core/Common/CMakeLists.txt | 2 +- Modules/Core/Common/include/otbCast.h | 2 +- Modules/Core/Common/include/otbChannelSelectorFunctor.h | 2 +- Modules/Core/Common/include/otbCommandProgressUpdate.h | 2 +- Modules/Core/Common/include/otbCommandProgressUpdate.hxx | 2 +- Modules/Core/Common/include/otbComplexToIntensityImageFilter.h | 2 +- Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h | 2 +- Modules/Core/Common/include/otbConfigurationManager.h | 2 +- Modules/Core/Common/include/otbDecimateImageFilter.h | 2 +- Modules/Core/Common/include/otbDecimateImageFilter.hxx | 2 +- Modules/Core/Common/include/otbExtendedFilenameHelper.h | 2 +- Modules/Core/Common/include/otbFilterWatcherBase.h | 2 +- Modules/Core/Common/include/otbFunctionToImageFilter.h | 2 +- Modules/Core/Common/include/otbFunctionToImageFilter.hxx | 2 +- .../Core/Common/include/otbImageAndVectorImageOperationFilter.h | 2 +- .../Common/include/otbImageAndVectorImageOperationFilter.hxx | 2 +- Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h | 2 +- .../Core/Common/include/otbImageRegionAdaptativeSplitter.hxx | 2 +- .../include/otbImageRegionNonUniformMultidimensionalSplitter.h | 2 +- .../otbImageRegionNonUniformMultidimensionalSplitter.hxx | 2 +- Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h | 2 +- .../Core/Common/include/otbImageRegionSquareTileSplitter.hxx | 2 +- Modules/Core/Common/include/otbImageRegionTileMapSplitter.h | 2 +- Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx | 2 +- .../Common/include/otbImageToModulusAndDirectionImageFilter.h | 2 +- .../Common/include/otbImageToModulusAndDirectionImageFilter.hxx | 2 +- .../Core/Common/include/otbImaginaryImageToComplexImageFilter.h | 2 +- Modules/Core/Common/include/otbImportImageFilter.h | 2 +- Modules/Core/Common/include/otbImportImageFilter.hxx | 2 +- Modules/Core/Common/include/otbImportVectorImageFilter.h | 2 +- Modules/Core/Common/include/otbImportVectorImageFilter.hxx | 2 +- Modules/Core/Common/include/otbInterval.h | 2 +- Modules/Core/Common/include/otbLogHelpers.h | 2 +- Modules/Core/Common/include/otbLogger.h | 2 +- Modules/Core/Common/include/otbMacro.h | 2 +- Modules/Core/Common/include/otbMath.h | 2 +- Modules/Core/Common/include/otbModelComponentBase.h | 2 +- Modules/Core/Common/include/otbModelComponentBase.hxx | 2 +- Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.h | 2 +- Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.hxx | 2 +- Modules/Core/Common/include/otbRGBAPixelConverter.h | 2 +- Modules/Core/Common/include/otbRGBAPixelConverter.hxx | 2 +- Modules/Core/Common/include/otbRectangle.h | 2 +- Modules/Core/Common/include/otbRectangle.hxx | 2 +- Modules/Core/Common/include/otbSpan.h | 2 +- Modules/Core/Common/include/otbStandardFilterWatcher.h | 2 +- Modules/Core/Common/include/otbStandardOneLineFilterWatcher.h | 2 +- Modules/Core/Common/include/otbStandardOneLineFilterWatcher.hxx | 2 +- Modules/Core/Common/include/otbStandardOutputPrintCallback.h | 2 +- Modules/Core/Common/include/otbStandardWriterWatcher.h | 2 +- Modules/Core/Common/include/otbStopwatch.h | 2 +- Modules/Core/Common/include/otbStringToHTML.h | 2 +- Modules/Core/Common/include/otbStringUtilities.h | 2 +- .../Core/Common/include/otbSubsampledImageRegionConstIterator.h | 2 +- .../Common/include/otbSubsampledImageRegionConstIterator.hxx | 2 +- Modules/Core/Common/include/otbSubsampledImageRegionIterator.h | 2 +- Modules/Core/Common/include/otbSystem.h | 2 +- .../include/otbUnaryFunctorNeighborhoodVectorImageFilter.h | 2 +- .../include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx | 2 +- Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h | 2 +- .../Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx | 2 +- .../include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h | 2 +- .../otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx | 2 +- Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h | 2 +- Modules/Core/Common/include/otbUtils.h | 2 +- Modules/Core/Common/include/otbVariableLengthVectorConverter.h | 2 +- .../Core/Common/include/otbVariableLengthVectorConverter.hxx | 2 +- Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h | 2 +- Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h | 2 +- Modules/Core/Common/include/otbWriterWatcherBase.h | 2 +- Modules/Core/Common/include/otbZipIterator.h | 2 +- Modules/Core/Common/otb-module.cmake | 2 +- Modules/Core/Common/src/CMakeLists.txt | 2 +- Modules/Core/Common/src/otbConfigurationManager.cxx | 2 +- Modules/Core/Common/src/otbConfigure.h.in | 2 +- Modules/Core/Common/src/otbExtendedFilenameHelper.cxx | 2 +- Modules/Core/Common/src/otbFilterWatcherBase.cxx | 2 +- Modules/Core/Common/src/otbLogger.cxx | 2 +- Modules/Core/Common/src/otbStandardFilterWatcher.cxx | 2 +- Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx | 2 +- Modules/Core/Common/src/otbStandardWriterWatcher.cxx | 2 +- Modules/Core/Common/src/otbStopwatch.cxx | 2 +- Modules/Core/Common/src/otbStringToHTML.cxx | 2 +- Modules/Core/Common/src/otbStringUtilities.cxx | 2 +- Modules/Core/Common/src/otbSystem.cxx | 2 +- Modules/Core/Common/src/otbUtils.cxx | 2 +- Modules/Core/Common/src/otbWriterWatcherBase.cxx | 2 +- Modules/Core/Common/test/CMakeLists.txt | 2 +- Modules/Core/Common/test/otbCommonTestDriver.cxx | 2 +- Modules/Core/Common/test/otbConfigurationManagerTest.cxx | 2 +- Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx | 2 +- .../test/otbImageRegionNonUniformMultidimensionalSplitter.cxx | 2 +- Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx | 2 +- Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx | 2 +- Modules/Core/Common/test/otbRGBAPixelConverter.cxx | 2 +- Modules/Core/Common/test/otbRectangle.cxx | 2 +- Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx | 2 +- .../Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx | 2 +- Modules/Core/Common/test/otbStandardWriterWatcher.cxx | 2 +- Modules/Core/Common/test/otbStopwatchTest.cxx | 2 +- Modules/Core/Common/test/otbSystemTest.cxx | 2 +- Modules/Core/ComplexImage/CMakeLists.txt | 2 +- .../Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h | 2 +- Modules/Core/ComplexImage/otb-module.cmake | 2 +- Modules/Core/ComplexImage/test/CMakeLists.txt | 2 +- .../Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx | 2 +- Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx | 2 +- Modules/Core/Functor/CMakeLists.txt | 2 +- Modules/Core/Functor/include/otbDotProductImageFilter.h | 2 +- Modules/Core/Functor/include/otbFunctorImageFilter.h | 2 +- Modules/Core/Functor/include/otbFunctorImageFilter.hxx | 2 +- Modules/Core/Functor/include/otbSynthetizeFilter.h | 2 +- Modules/Core/Functor/include/otbVariadicAddFunctor.h | 2 +- Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h | 2 +- Modules/Core/Functor/include/otbVariadicInputsImageFilter.h | 2 +- .../Core/Functor/include/otbVariadicNamedInputsImageFilter.h | 2 +- Modules/Core/Functor/otb-module.cmake | 2 +- Modules/Core/Functor/test/CMakeLists.txt | 2 +- Modules/Core/Functor/test/otbFunctorImageFilter.cxx | 2 +- Modules/Core/Functor/test/otbFunctorTestDriver.cxx | 2 +- Modules/Core/ImageBase/CMakeLists.txt | 2 +- Modules/Core/ImageBase/include/otbConvertPixelBuffer.h | 2 +- Modules/Core/ImageBase/include/otbConvertPixelBuffer.hxx | 2 +- Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h | 2 +- Modules/Core/ImageBase/include/otbExtractROI.h | 2 +- Modules/Core/ImageBase/include/otbExtractROI.hxx | 2 +- Modules/Core/ImageBase/include/otbExtractROIBase.h | 2 +- Modules/Core/ImageBase/include/otbExtractROIBase.hxx | 2 +- Modules/Core/ImageBase/include/otbImage.h | 2 +- Modules/Core/ImageBase/include/otbImage.hxx | 2 +- Modules/Core/ImageBase/include/otbImageCommons.h | 2 +- Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h | 2 +- Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx | 2 +- Modules/Core/ImageBase/include/otbImageIOBase.h | 2 +- .../include/otbImageOfVectorsToMonoChannelExtractROI.h | 2 +- .../include/otbImageOfVectorsToMonoChannelExtractROI.hxx | 2 +- Modules/Core/ImageBase/include/otbMetaImageFunction.h | 2 +- Modules/Core/ImageBase/include/otbMetaImageFunction.hxx | 2 +- Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h | 2 +- Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx | 2 +- .../Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h | 2 +- .../Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx | 2 +- Modules/Core/ImageBase/include/otbRemoteSensingRegion.h | 2 +- Modules/Core/ImageBase/include/otbVectorImage.h | 2 +- Modules/Core/ImageBase/include/otbVectorImage.hxx | 2 +- Modules/Core/ImageBase/otb-module.cmake | 2 +- Modules/Core/ImageBase/src/CMakeLists.txt | 2 +- Modules/Core/ImageBase/src/otbImage.cxx | 2 +- Modules/Core/ImageBase/src/otbImageCommons.cxx | 2 +- Modules/Core/ImageBase/src/otbImageIOBase.cxx | 2 +- Modules/Core/ImageBase/src/otbVectorImage.cxx | 2 +- .../test/0000307-ExtractROICompareRegionsImplementations.cxx | 2 +- .../Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx | 2 +- Modules/Core/ImageBase/test/CMakeLists.txt | 2 +- Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx | 2 +- .../Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx | 2 +- Modules/Core/ImageBase/test/otbExtractROI.cxx | 2 +- Modules/Core/ImageBase/test/otbExtractROI2.cxx | 2 +- Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx | 2 +- Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx | 2 +- .../Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx | 2 +- Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx | 2 +- .../test/otbImageAndVectorImageOperationFilterTest.cxx | 2 +- Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx | 2 +- Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx | 2 +- .../ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx | 2 +- .../Core/ImageBase/test/otbImagePCAShapeModelEstimatorTest.cxx | 2 +- Modules/Core/ImageBase/test/otbImageTest.cxx | 2 +- Modules/Core/ImageBase/test/otbMetaImageFunction.cxx | 2 +- Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx | 2 +- Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx | 2 +- Modules/Core/ImageBase/test/otbPixelComponentIteratorTest.cxx | 2 +- Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx | 2 +- Modules/Core/ImageBase/test/otbVectorImageTest.cxx | 2 +- Modules/Core/ImageList/CMakeLists.txt | 2 +- Modules/Core/ImageList/include/otbImageList.h | 2 +- Modules/Core/ImageList/include/otbImageList.hxx | 2 +- Modules/Core/ImageList/include/otbImageListSource.h | 2 +- Modules/Core/ImageList/include/otbImageListSource.hxx | 2 +- Modules/Core/ImageList/include/otbImageListToImageFilter.h | 2 +- Modules/Core/ImageList/include/otbImageListToImageFilter.hxx | 2 +- .../Core/ImageList/include/otbImageListToImageListApplyFilter.h | 2 +- .../ImageList/include/otbImageListToImageListApplyFilter.hxx | 2 +- Modules/Core/ImageList/include/otbImageListToImageListFilter.h | 2 +- .../Core/ImageList/include/otbImageListToImageListFilter.hxx | 2 +- .../Core/ImageList/include/otbImageListToSingleImageFilter.h | 2 +- .../Core/ImageList/include/otbImageListToSingleImageFilter.hxx | 2 +- .../Core/ImageList/include/otbImageListToVectorImageFilter.h | 2 +- .../Core/ImageList/include/otbImageListToVectorImageFilter.hxx | 2 +- Modules/Core/ImageList/include/otbImageToImageListFilter.h | 2 +- Modules/Core/ImageList/include/otbImageToImageListFilter.hxx | 2 +- .../Core/ImageList/include/otbVectorImageToImageListFilter.h | 2 +- .../Core/ImageList/include/otbVectorImageToImageListFilter.hxx | 2 +- Modules/Core/ImageList/otb-module.cmake | 2 +- Modules/Core/ImageList/test/CMakeLists.txt | 2 +- Modules/Core/ImageList/test/otbImageList.cxx | 2 +- Modules/Core/ImageList/test/otbImageListTestDriver.cxx | 2 +- .../Core/ImageList/test/otbImageListToImageListApplyFilter.cxx | 2 +- Modules/Core/ImageList/test/otbImageListToVectorImageFilter.cxx | 2 +- .../Core/ImageList/test/otbImageListToVectorImageFilter2.cxx | 2 +- Modules/Core/ImageList/test/otbVectorImageToImageListFilter.cxx | 2 +- Modules/Core/Interpolation/CMakeLists.txt | 2 +- .../Core/Interpolation/include/otbBCOInterpolateImageFunction.h | 2 +- .../Interpolation/include/otbBCOInterpolateImageFunction.hxx | 2 +- .../Interpolation/include/otbBSplineDecompositionImageFilter.h | 2 +- .../include/otbBSplineDecompositionImageFilter.hxx | 2 +- .../Interpolation/include/otbBSplineInterpolateImageFunction.h | 2 +- .../include/otbBSplineInterpolateImageFunction.hxx | 2 +- .../Interpolation/include/otbGenericInterpolateImageFunction.h | 2 +- .../include/otbGenericInterpolateImageFunction.hxx | 2 +- .../Interpolation/include/otbProlateInterpolateImageFunction.h | 2 +- .../include/otbProlateInterpolateImageFunction.hxx | 2 +- Modules/Core/Interpolation/include/otbStreamingTraits.h | 2 +- Modules/Core/Interpolation/include/otbStreamingTraits.hxx | 2 +- .../include/otbWindowedSincInterpolateImageBlackmanFunction.h | 2 +- .../include/otbWindowedSincInterpolateImageCosineFunction.h | 2 +- .../include/otbWindowedSincInterpolateImageFunctionBase.h | 2 +- .../include/otbWindowedSincInterpolateImageFunctionBase.hxx | 2 +- .../include/otbWindowedSincInterpolateImageGaussianFunction.h | 2 +- .../include/otbWindowedSincInterpolateImageHammingFunction.h | 2 +- .../include/otbWindowedSincInterpolateImageLanczosFunction.h | 2 +- .../include/otbWindowedSincInterpolateImageWelchFunction.h | 2 +- Modules/Core/Interpolation/otb-module.cmake | 2 +- Modules/Core/Interpolation/test/CMakeLists.txt | 2 +- .../Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx | 2 +- .../Interpolation/test/otbBSplineDecompositionImageFilter.cxx | 2 +- .../Interpolation/test/otbBSplineInterpolateImageFunction.cxx | 2 +- Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx | 2 +- .../Interpolation/test/otbProlateInterpolateImageFunction.cxx | 2 +- Modules/Core/Interpolation/test/otbProlateValidationTest.cxx | 2 +- Modules/Core/Interpolation/test/otbStreamingTraits.cxx | 2 +- .../test/otbWindowedSincInterpolateImageBlackmanFunction.cxx | 2 +- .../test/otbWindowedSincInterpolateImageCosineFunction.cxx | 2 +- .../test/otbWindowedSincInterpolateImageGaussianFunction.cxx | 2 +- .../test/otbWindowedSincInterpolateImageHammingFunction.cxx | 2 +- .../test/otbWindowedSincInterpolateImageLanczosFunction.cxx | 2 +- .../test/otbWindowedSincInterpolateImageWelchFunction.cxx | 2 +- Modules/Core/LabelMap/CMakeLists.txt | 2 +- Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h | 2 +- .../include/otbAttributesMapLabelObjectWithClassLabel.h | 2 +- .../LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h | 2 +- .../LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx | 2 +- .../include/otbBandsStatisticsAttributesLabelMapFilter.h | 2 +- .../include/otbBandsStatisticsAttributesLabelMapFilter.hxx | 2 +- .../LabelMap/include/otbImageToLabelMapWithAttributesFilter.h | 2 +- .../LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx | 2 +- .../Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h | 2 +- .../Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx | 2 +- .../include/otbLabelImageToLabelMapWithAdjacencyFilter.h | 2 +- .../include/otbLabelImageToLabelMapWithAdjacencyFilter.hxx | 2 +- .../LabelMap/include/otbLabelMapFeaturesFunctorImageFilter.h | 2 +- Modules/Core/LabelMap/include/otbLabelMapSource.h | 2 +- Modules/Core/LabelMap/include/otbLabelMapSource.hxx | 2 +- .../Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h | 2 +- .../Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx | 2 +- Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.h | 2 +- Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.hxx | 2 +- Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h | 2 +- Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx | 2 +- Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h | 2 +- .../include/otbLabelMapWithClassLabelToClassLabelImageFilter.h | 2 +- .../otbLabelMapWithClassLabelToClassLabelImageFilter.hxx | 2 +- .../otbLabelMapWithClassLabelToLabeledSampleListFilter.h | 2 +- .../otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx | 2 +- Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h | 2 +- Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h | 2 +- .../Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx | 2 +- .../include/otbLabelObjectWithClassLabelFieldsFunctor.h | 2 +- Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h | 2 +- .../Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h | 2 +- .../Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx | 2 +- .../LabelMap/include/otbNormalizeAttributesLabelMapFilter.h | 2 +- .../LabelMap/include/otbNormalizeAttributesLabelMapFilter.hxx | 2 +- .../Core/LabelMap/include/otbShapeAttributesLabelMapFilter.h | 2 +- .../Core/LabelMap/include/otbShapeAttributesLabelMapFilter.hxx | 2 +- .../LabelMap/include/otbStatisticsAttributesLabelMapFilter.h | 2 +- .../LabelMap/include/otbStatisticsAttributesLabelMapFilter.hxx | 2 +- Modules/Core/LabelMap/otb-module.cmake | 2 +- Modules/Core/LabelMap/test/CMakeLists.txt | 2 +- .../test/otbBandsStatisticsAttributesLabelMapFilter.cxx | 2 +- .../LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx | 2 +- .../Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx | 2 +- .../test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx | 2 +- Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx | 2 +- Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx | 2 +- .../test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx | 2 +- Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx | 2 +- .../Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx | 2 +- .../Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx | 2 +- Modules/Core/Metadata/CMakeLists.txt | 2 +- Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h | 2 +- .../Metadata/include/otbCosmoImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbDateTime.h | 2 +- .../Core/Metadata/include/otbDefaultImageMetadataInterface.h | 2 +- .../Metadata/include/otbDefaultImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbDimapMetadataHelper.h | 2 +- Modules/Core/Metadata/include/otbFilterFunctionValues.h | 2 +- .../Core/Metadata/include/otbFormosatImageMetadataInterface.h | 2 +- .../Metadata/include/otbFormosatImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbGeomMetadataSupplier.h | 2 +- Modules/Core/Metadata/include/otbGeometryMetadata.h | 2 +- Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h | 2 +- .../Metadata/include/otbIkonosImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbImageMetadata.h | 2 +- Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h | 2 +- .../Core/Metadata/include/otbImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbMetaDataKey.h | 2 +- Modules/Core/Metadata/include/otbMetadataStorageInterface.h | 2 +- Modules/Core/Metadata/include/otbMetadataSupplierInterface.h | 2 +- Modules/Core/Metadata/include/otbMetadataSupplierInterface.hxx | 2 +- Modules/Core/Metadata/include/otbMissingMetadataException.h | 2 +- Modules/Core/Metadata/include/otbNoDataHelper.h | 2 +- .../Metadata/include/otbOpticalDefaultImageMetadataInterface.h | 2 +- .../include/otbOpticalDefaultImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbOpticalImageMetadataInterface.h | 2 +- .../Metadata/include/otbOpticalImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbPleiadesImageMetadataInterface.h | 2 +- .../Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbQuickBirdImageMetadataInterface.h | 2 +- .../include/otbQuickBirdImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h | 2 +- .../include/otbRadarsat2ImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbSARMetadata.h | 2 +- Modules/Core/Metadata/include/otbSarCalibrationLookupData.h | 2 +- .../Core/Metadata/include/otbSarDefaultImageMetadataInterface.h | 2 +- .../include/otbSarDefaultImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbSarImageMetadataInterface.h | 2 +- .../Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbSentinel1ImageMetadataInterface.h | 2 +- .../include/otbSentinel1ImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbSentinel1ThermalNoiseLookupData.h | 2 +- Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h | 2 +- .../Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h | 2 +- .../Metadata/include/otbSpotImageMetadataInterfaceFactory.h | 2 +- .../Metadata/include/otbTerraSarXSarImageMetadataInterface.h | 2 +- .../include/otbTerraSarXSarImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbWorldView2ImageMetadataInterface.h | 2 +- .../include/otbWorldView2ImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbXMLMetadataSupplier.h | 2 +- Modules/Core/Metadata/otb-module.cmake | 2 +- Modules/Core/Metadata/src/CMakeLists.txt | 2 +- Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx | 2 +- .../Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbDateTime.cxx | 2 +- .../Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbDimapMetadataHelper.cxx | 2 +- Modules/Core/Metadata/src/otbFilterFunctionValues.cxx | 2 +- Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbGeomMetadataSupplier.cxx | 2 +- Modules/Core/Metadata/src/otbGeometryMetadata.cxx | 2 +- Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbImageMetadata.cxx | 2 +- Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx | 2 +- Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbMetaDataKey.cxx | 2 +- Modules/Core/Metadata/src/otbMetadataStorageInterface.cxx | 2 +- Modules/Core/Metadata/src/otbMetadataSupplierInterface.cxx | 2 +- Modules/Core/Metadata/src/otbNoDataHelper.cxx | 2 +- .../src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbSARMetadata.cxx | 2 +- .../Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx | 2 +- .../Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbSentinel1CalibrationLookupData.cxx | 2 +- .../Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbSentinel1ThermalNoiseLookupData.cxx | 2 +- Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx | 2 +- .../Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx | 2 +- .../Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbTerraSarXSarImageMetadataInterface.cxx | 2 +- .../src/otbTerraSarXSarImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbXMLMetadataSupplier.cxx | 2 +- Modules/Core/Metadata/test/CMakeLists.txt | 2 +- Modules/Core/Metadata/test/otbDateTest.cxx | 2 +- Modules/Core/Metadata/test/otbGeomMetadataSupplierTest.cxx | 2 +- Modules/Core/Metadata/test/otbImageMetadataInterfaceTest.cxx | 2 +- Modules/Core/Metadata/test/otbImageMetadataTest.cxx | 2 +- Modules/Core/Metadata/test/otbMetadataTestDriver.cxx | 2 +- Modules/Core/Metadata/test/otbNoDataHelperTest.cxx | 2 +- Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx | 2 +- Modules/Core/Metadata/test/otbXMLMetadataSupplierTest.cxx | 2 +- Modules/Core/ObjectList/CMakeLists.txt | 2 +- Modules/Core/ObjectList/include/otbDataObjectListInterface.h | 2 +- Modules/Core/ObjectList/include/otbObjectList.h | 2 +- Modules/Core/ObjectList/include/otbObjectList.hxx | 2 +- Modules/Core/ObjectList/include/otbObjectListSource.h | 2 +- Modules/Core/ObjectList/include/otbObjectListSource.hxx | 2 +- .../Core/ObjectList/include/otbObjectListToObjectListFilter.h | 2 +- .../Core/ObjectList/include/otbObjectListToObjectListFilter.hxx | 2 +- .../ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h | 2 +- .../include/otbUnaryFunctorObjectListBooleanFilter.hxx | 2 +- .../Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h | 2 +- .../Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx | 2 +- Modules/Core/ObjectList/otb-module.cmake | 2 +- Modules/Core/ObjectList/test/CMakeLists.txt | 2 +- Modules/Core/ObjectList/test/otbImageList.cxx | 2 +- .../Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx | 2 +- .../Core/ObjectList/test/otbImageListToVectorImageFilter.cxx | 2 +- .../Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx | 2 +- Modules/Core/ObjectList/test/otbObjectList.cxx | 2 +- Modules/Core/ObjectList/test/otbObjectList2.cxx | 2 +- Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx | 2 +- .../Core/ObjectList/test/otbVectorImageToImageListFilter.cxx | 2 +- Modules/Core/PointSet/CMakeLists.txt | 2 +- Modules/Core/PointSet/include/otbImageToPointSetFilter.h | 2 +- Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx | 2 +- Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h | 2 +- Modules/Core/PointSet/include/otbPointSetExtractROI.h | 2 +- Modules/Core/PointSet/include/otbPointSetExtractROI.hxx | 2 +- Modules/Core/PointSet/include/otbPointSetFunction.h | 2 +- Modules/Core/PointSet/include/otbPointSetFunction.hxx | 2 +- Modules/Core/PointSet/include/otbPointSetSource.h | 2 +- Modules/Core/PointSet/include/otbPointSetSource.hxx | 2 +- Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h | 2 +- Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx | 2 +- Modules/Core/PointSet/include/otbRandomPointSetSource.h | 2 +- Modules/Core/PointSet/include/otbRandomPointSetSource.hxx | 2 +- Modules/Core/PointSet/include/otbSimplePointCountStrategy.h | 2 +- .../Core/PointSet/include/otbThresholdImageToPointSetFilter.h | 2 +- .../Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx | 2 +- Modules/Core/PointSet/include/otbTransformPointSetFilter.h | 2 +- Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx | 2 +- Modules/Core/PointSet/otb-module.cmake | 2 +- Modules/Core/PointSet/test/CMakeLists.txt | 2 +- Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx | 2 +- Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx | 2 +- Modules/Core/PointSet/test/otbPointSetSourceTest.cxx | 2 +- Modules/Core/PointSet/test/otbPointSetTestDriver.cxx | 2 +- Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx | 2 +- Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx | 2 +- Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx | 2 +- Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx | 2 +- Modules/Core/Streaming/CMakeLists.txt | 2 +- .../include/otbNumberOfDivisionsStrippedStreamingManager.h | 2 +- .../include/otbNumberOfDivisionsStrippedStreamingManager.hxx | 2 +- .../include/otbNumberOfDivisionsTiledStreamingManager.h | 2 +- .../include/otbNumberOfDivisionsTiledStreamingManager.hxx | 2 +- .../include/otbNumberOfLinesStrippedStreamingManager.h | 2 +- .../include/otbNumberOfLinesStrippedStreamingManager.hxx | 2 +- .../Streaming/include/otbPersistentFilterStreamingDecorator.h | 2 +- .../Streaming/include/otbPersistentFilterStreamingDecorator.hxx | 2 +- Modules/Core/Streaming/include/otbPersistentImageFilter.h | 2 +- .../Core/Streaming/include/otbPipelineMemoryPrintCalculator.h | 2 +- .../Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h | 2 +- .../include/otbRAMDrivenAdaptativeStreamingManager.hxx | 2 +- .../Streaming/include/otbRAMDrivenStrippedStreamingManager.h | 2 +- .../Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx | 2 +- .../Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h | 2 +- .../Streaming/include/otbRAMDrivenTiledStreamingManager.hxx | 2 +- Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h | 2 +- .../Core/Streaming/include/otbStreamingImageVirtualWriter.hxx | 2 +- Modules/Core/Streaming/include/otbStreamingManager.h | 2 +- Modules/Core/Streaming/include/otbStreamingManager.hxx | 2 +- .../Streaming/include/otbTileDimensionTiledStreamingManager.h | 2 +- .../Streaming/include/otbTileDimensionTiledStreamingManager.hxx | 2 +- Modules/Core/Streaming/otb-module.cmake | 2 +- Modules/Core/Streaming/src/CMakeLists.txt | 2 +- Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx | 2 +- Modules/Core/Streaming/test/CMakeLists.txt | 2 +- .../Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx | 2 +- Modules/Core/Streaming/test/otbStreamingManager.cxx | 2 +- Modules/Core/Streaming/test/otbStreamingTestDriver.cxx | 2 +- Modules/Core/Transform/CMakeLists.txt | 2 +- Modules/Core/Transform/include/otbCompositeTransform.h | 2 +- Modules/Core/Transform/include/otbCompositeTransform.hxx | 2 +- Modules/Core/Transform/include/otbGenericMapProjection.h | 2 +- Modules/Core/Transform/include/otbGenericMapProjection.hxx | 2 +- Modules/Core/Transform/include/otbGenericRSTransform.h | 2 +- Modules/Core/Transform/include/otbGenericRSTransform.hxx | 2 +- Modules/Core/Transform/include/otbGeocentricTransform.h | 2 +- Modules/Core/Transform/include/otbGeocentricTransform.hxx | 2 +- .../Transform/include/otbImageToGenericRSOutputParameters.h | 2 +- .../Transform/include/otbImageToGenericRSOutputParameters.hxx | 2 +- Modules/Core/Transform/include/otbInverseLogPolarTransform.h | 2 +- Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx | 2 +- Modules/Core/Transform/include/otbLogPolarTransform.h | 2 +- Modules/Core/Transform/include/otbLogPolarTransform.hxx | 2 +- Modules/Core/Transform/include/otbRPCForwardTransform.h | 2 +- Modules/Core/Transform/include/otbRPCForwardTransform.hxx | 2 +- Modules/Core/Transform/include/otbRPCInverseTransform.h | 2 +- Modules/Core/Transform/include/otbRPCInverseTransform.hxx | 2 +- Modules/Core/Transform/include/otbRPCTransformBase.h | 2 +- Modules/Core/Transform/include/otbRPCTransformBase.hxx | 2 +- Modules/Core/Transform/include/otbSarForwardTransform.h | 2 +- Modules/Core/Transform/include/otbSarForwardTransform.hxx | 2 +- Modules/Core/Transform/include/otbSarInverseTransform.h | 2 +- Modules/Core/Transform/include/otbSarInverseTransform.hxx | 2 +- Modules/Core/Transform/include/otbSarSensorModel.h | 2 +- Modules/Core/Transform/include/otbSarTransformBase.h | 2 +- Modules/Core/Transform/include/otbSarTransformBase.hxx | 2 +- Modules/Core/Transform/include/otbSensorTransformBase.h | 2 +- Modules/Core/Transform/include/otbStreamingWarpImageFilter.h | 2 +- Modules/Core/Transform/include/otbStreamingWarpImageFilter.hxx | 2 +- Modules/Core/Transform/include/otbTransform.h | 2 +- Modules/Core/Transform/include/otbTransformFactories.h | 2 +- Modules/Core/Transform/otb-module.cmake | 2 +- Modules/Core/Transform/src/CMakeLists.txt | 2 +- Modules/Core/Transform/src/otbSarSensorModel.cxx | 2 +- Modules/Core/Transform/src/otbSensorTransformFactory.cxx | 2 +- Modules/Core/Transform/test/CMakeLists.txt | 2 +- Modules/Core/Transform/test/SensorModelBorder.cxx | 2 +- .../Core/Transform/test/otbCreateInverseForwardSensorModel.cxx | 2 +- Modules/Core/Transform/test/otbGenericMapProjection.cxx | 2 +- Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx | 2 +- Modules/Core/Transform/test/otbGeocentricTransform.cxx | 2 +- Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx | 2 +- .../Core/Transform/test/otbInverseLogPolarTransformResample.cxx | 2 +- Modules/Core/Transform/test/otbLogPolarTransform.cxx | 2 +- Modules/Core/Transform/test/otbLogPolarTransformResample.cxx | 2 +- Modules/Core/Transform/test/otbRPCTransformTest.cxx | 2 +- Modules/Core/Transform/test/otbSarSensorModelTest.cxx | 2 +- Modules/Core/Transform/test/otbSarTransformTest.cxx | 2 +- Modules/Core/Transform/test/otbSentinel1SensorModelTest.cxx | 2 +- .../test/otbStreamingResampleImageFilterWithAffineTransform.cxx | 2 +- Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx | 2 +- Modules/Core/Transform/test/otbTransformTestDriver.cxx | 2 +- Modules/Core/VectorDataBase/CMakeLists.txt | 2 +- Modules/Core/VectorDataBase/include/otbDataNode.h | 2 +- Modules/Core/VectorDataBase/include/otbDataNode.hxx | 2 +- Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h | 2 +- .../VectorDataBase/include/otbPolyLineParametricPathWithValue.h | 2 +- .../include/otbPolyLineParametricPathWithValue.hxx | 2 +- Modules/Core/VectorDataBase/include/otbPolygon.h | 2 +- Modules/Core/VectorDataBase/include/otbPolygon.hxx | 2 +- Modules/Core/VectorDataBase/include/otbVectorData.h | 2 +- Modules/Core/VectorDataBase/include/otbVectorData.hxx | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataProperties.h | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataSource.h | 2 +- Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx | 2 +- Modules/Core/VectorDataBase/otb-module.cmake | 2 +- Modules/Core/VectorDataBase/src/CMakeLists.txt | 2 +- Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx | 2 +- Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx | 2 +- Modules/Core/VectorDataBase/test/CMakeLists.txt | 2 +- Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx | 2 +- Modules/Core/VectorDataBase/test/otbPolygon.cxx | 2 +- Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx | 2 +- Modules/Core/VectorDataBase/test/otbVectorData.cxx | 2 +- .../Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx | 2 +- .../Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx | 2 +- Modules/Detection/CloudDetection/CMakeLists.txt | 2 +- .../Detection/CloudDetection/include/otbCloudDetectionFilter.h | 2 +- .../CloudDetection/include/otbCloudDetectionFilter.hxx | 2 +- .../Detection/CloudDetection/include/otbCloudDetectionFunctor.h | 2 +- .../Detection/CloudDetection/include/otbCloudEstimatorFilter.h | 2 +- .../CloudDetection/include/otbCloudEstimatorFilter.hxx | 2 +- .../Detection/CloudDetection/include/otbCloudEstimatorFunctor.h | 2 +- Modules/Detection/CloudDetection/otb-module.cmake | 2 +- Modules/Detection/CloudDetection/test/CMakeLists.txt | 2 +- .../Detection/CloudDetection/test/otbCloudDetectionFilter.cxx | 2 +- .../CloudDetection/test/otbCloudDetectionTestDriver.cxx | 2 +- .../CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx | 2 +- .../Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx | 2 +- Modules/Feature/Corner/CMakeLists.txt | 2 +- Modules/Feature/Corner/include/otbHarrisImageFilter.h | 2 +- Modules/Feature/Corner/include/otbHarrisImageFilter.hxx | 2 +- Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h | 2 +- .../Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx | 2 +- .../Corner/include/otbVectorDataToRightAngleVectorDataFilter.h | 2 +- .../include/otbVectorDataToRightAngleVectorDataFilter.hxx | 2 +- Modules/Feature/Corner/otb-module.cmake | 2 +- Modules/Feature/Corner/test/CMakeLists.txt | 2 +- Modules/Feature/Corner/test/otbCornerTestDriver.cxx | 2 +- Modules/Feature/Corner/test/otbHarrisImage.cxx | 2 +- Modules/Feature/Corner/test/otbHarrisToPointSet.cxx | 2 +- .../Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx | 2 +- Modules/Feature/Density/CMakeLists.txt | 2 +- Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h | 2 +- .../Feature/Density/include/otbKeyPointDensityImageFilter.hxx | 2 +- .../Density/include/otbPointSetDensityEpanechnikovFunction.h | 2 +- .../Density/include/otbPointSetDensityEpanechnikovFunction.hxx | 2 +- Modules/Feature/Density/include/otbPointSetDensityFunction.h | 2 +- Modules/Feature/Density/include/otbPointSetDensityFunction.hxx | 2 +- .../Density/include/otbPointSetDensityGaussianFunction.h | 2 +- .../Density/include/otbPointSetDensityGaussianFunction.hxx | 2 +- .../Feature/Density/include/otbPointSetToDensityImageFilter.h | 2 +- .../Feature/Density/include/otbPointSetToDensityImageFilter.hxx | 2 +- Modules/Feature/Density/otb-module.cmake | 2 +- Modules/Feature/Density/test/CMakeLists.txt | 2 +- Modules/Feature/Density/test/otbDensityTestDriver.cxx | 2 +- .../Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx | 2 +- .../Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx | 2 +- Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx | 2 +- .../Density/test/otbPointSetDensityGaussianFunctionTest.cxx | 2 +- .../Density/test/otbPointSetToDensityImageFilterTest.cxx | 2 +- Modules/Feature/Descriptors/CMakeLists.txt | 2 +- .../include/otbForwardFourierMellinTransformImageFilter.h | 2 +- .../include/otbForwardFourierMellinTransformImageFilter.hxx | 2 +- .../include/otbFourierMellinDescriptorsImageFunction.h | 2 +- .../include/otbFourierMellinDescriptorsImageFunction.hxx | 2 +- .../Feature/Descriptors/include/otbHessianToScalarImageFilter.h | 2 +- .../otbHistogramOfOrientedGradientCovariantImageFunction.h | 2 +- .../otbHistogramOfOrientedGradientCovariantImageFunction.hxx | 2 +- .../include/otbImageToHessianDeterminantImageFilter.h | 2 +- .../include/otbImageToHessianDeterminantImageFilter.hxx | 2 +- .../Descriptors/include/otbImageToSIFTKeyPointSetFilter.h | 2 +- .../Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx | 2 +- .../Descriptors/include/otbImageToSURFKeyPointSetFilter.h | 2 +- .../Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx | 2 +- .../Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h | 2 +- .../Descriptors/include/otbKeyPointSetsMatchingFilter.hxx | 2 +- Modules/Feature/Descriptors/include/otbLandmark.h | 2 +- Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h | 2 +- Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx | 2 +- Modules/Feature/Descriptors/otb-module.cmake | 2 +- Modules/Feature/Descriptors/test/CMakeLists.txt | 2 +- Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx | 2 +- .../Feature/Descriptors/test/otbFourierMellinDescriptors.cxx | 2 +- .../Feature/Descriptors/test/otbFourierMellinImageFilter.cxx | 2 +- .../otbHistogramOfOrientedGradientCovariantImageFunction.cxx | 2 +- .../test/otbImageToHessianDeterminantImageFilter.cxx | 2 +- Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx | 2 +- Modules/Feature/Edge/CMakeLists.txt | 2 +- .../Edge/include/otbAssociativeSymmetricalSumImageFilter.h | 2 +- .../Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h | 2 +- .../include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx | 2 +- Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h | 2 +- Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx | 2 +- Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h | 2 +- Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx | 2 +- .../Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h | 2 +- .../Edge/include/otbLineCorrelationDetectorImageFilter.h | 2 +- .../Edge/include/otbLineCorrelationDetectorImageFilter.hxx | 2 +- Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h | 2 +- Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx | 2 +- Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h | 2 +- .../Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx | 2 +- Modules/Feature/Edge/include/otbLineSegmentDetector.h | 2 +- Modules/Feature/Edge/include/otbLineSegmentDetector.hxx | 2 +- .../Edge/include/otbPersistentVectorizationImageFilter.h | 2 +- .../Edge/include/otbPersistentVectorizationImageFilter.hxx | 2 +- .../Edge/include/otbPixelSuppressionByDirectionImageFilter.h | 2 +- .../Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx | 2 +- Modules/Feature/Edge/include/otbSobelVectorImageFilter.h | 2 +- Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.h | 2 +- .../Feature/Edge/include/otbStreamingLineSegmentDetector.hxx | 2 +- Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h | 2 +- .../Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx | 2 +- .../Feature/Edge/include/otbVerticalSobelVectorImageFilter.h | 2 +- Modules/Feature/Edge/otb-module.cmake | 2 +- Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx | 2 +- .../Edge/test/0000433-LineSegmentDetector_8b_16b_compare.cxx | 2 +- Modules/Feature/Edge/test/CMakeLists.txt | 2 +- Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx | 2 +- Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx | 2 +- Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx | 2 +- Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx | 2 +- Modules/Feature/Edge/test/otbEdgeTestDriver.cxx | 2 +- .../Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx | 2 +- Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx | 2 +- Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx | 2 +- Modules/Feature/Edge/test/otbLineRatioDetector.cxx | 2 +- Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx | 2 +- Modules/Feature/Edge/test/otbLineSegmentDetector.cxx | 2 +- Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx | 2 +- Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx | 2 +- Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx | 2 +- Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx | 2 +- Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx | 2 +- Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx | 2 +- Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx | 2 +- Modules/Feature/Moments/CMakeLists.txt | 2 +- Modules/Feature/Moments/include/otbComplexMomentPathFunction.h | 2 +- .../Feature/Moments/include/otbComplexMomentPathFunction.hxx | 2 +- .../Feature/Moments/include/otbComplexMomentsImageFunction.h | 2 +- .../Feature/Moments/include/otbComplexMomentsImageFunction.hxx | 2 +- .../Feature/Moments/include/otbFlusserMomentsImageFunction.h | 2 +- .../Feature/Moments/include/otbFlusserMomentsImageFunction.hxx | 2 +- Modules/Feature/Moments/include/otbFlusserPathFunction.h | 2 +- Modules/Feature/Moments/include/otbFlusserPathFunction.hxx | 2 +- .../Feature/Moments/include/otbGeometricMomentPathFunction.h | 2 +- Modules/Feature/Moments/include/otbHuMomentsImageFunction.h | 2 +- Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx | 2 +- Modules/Feature/Moments/include/otbHuPathFunction.h | 2 +- Modules/Feature/Moments/include/otbHuPathFunction.hxx | 2 +- Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h | 2 +- .../Feature/Moments/include/otbRadiometricMomentsImageFilter.h | 2 +- .../Moments/include/otbRadiometricMomentsImageFilter.hxx | 2 +- .../Moments/include/otbRadiometricMomentsImageFunction.h | 2 +- .../Moments/include/otbRadiometricMomentsImageFunction.hxx | 2 +- Modules/Feature/Moments/include/otbRealMomentPathFunction.h | 2 +- Modules/Feature/Moments/include/otbRealMomentsImageFunction.h | 2 +- Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx | 2 +- Modules/Feature/Moments/otb-module.cmake | 2 +- Modules/Feature/Moments/test/CMakeLists.txt | 2 +- Modules/Feature/Moments/test/otbComplexMomentPath.cxx | 2 +- Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx | 2 +- Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx | 2 +- Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx | 2 +- Modules/Feature/Moments/test/otbFlusserPath.cxx | 2 +- Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx | 2 +- Modules/Feature/Moments/test/otbHuPath.cxx | 2 +- Modules/Feature/Moments/test/otbMomentsTestDriver.cxx | 2 +- .../Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx | 2 +- .../Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx | 2 +- Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx | 2 +- Modules/Feature/Textures/CMakeLists.txt | 2 +- .../Textures/include/otbGreyLevelCooccurrenceIndexedList.h | 2 +- .../Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx | 2 +- .../Feature/Textures/include/otbHaralickTexturesImageFunction.h | 2 +- .../Textures/include/otbHaralickTexturesImageFunction.hxx | 2 +- Modules/Feature/Textures/include/otbSFSTexturesFunctor.h | 2 +- Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h | 2 +- Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx | 2 +- .../Textures/include/otbScalarImageToAdvancedTexturesFilter.h | 2 +- .../Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx | 2 +- .../include/otbScalarImageToHigherOrderTexturesFilter.h | 2 +- .../include/otbScalarImageToHigherOrderTexturesFilter.hxx | 2 +- .../Textures/include/otbScalarImageToPanTexTextureFilter.h | 2 +- .../Textures/include/otbScalarImageToPanTexTextureFilter.hxx | 2 +- .../Feature/Textures/include/otbScalarImageToTexturesFilter.h | 2 +- .../Feature/Textures/include/otbScalarImageToTexturesFilter.hxx | 2 +- Modules/Feature/Textures/include/otbTextureImageFunction.h | 2 +- Modules/Feature/Textures/include/otbTextureImageFunction.hxx | 2 +- Modules/Feature/Textures/otb-module.cmake | 2 +- Modules/Feature/Textures/test/CMakeLists.txt | 2 +- .../Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx | 2 +- .../Feature/Textures/test/otbHaralickTexturesImageFunction.cxx | 2 +- Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx | 2 +- .../Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx | 2 +- .../Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx | 2 +- .../Textures/test/otbScalarImageToPanTexTextureFilter.cxx | 2 +- .../Feature/Textures/test/otbScalarImageToTexturesFilter.cxx | 2 +- Modules/Feature/Textures/test/otbTexturesTestDriver.cxx | 2 +- Modules/Filtering/ChangeDetection/CMakeLists.txt | 2 +- .../otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h | 2 +- .../otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx | 2 +- Modules/Filtering/ChangeDetection/include/otbCBAMI.h | 2 +- .../Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h | 2 +- .../ChangeDetection/include/otbCorrelationChangeDetector.h | 2 +- Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h | 2 +- Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h | 2 +- .../ChangeDetection/include/otbJoinHistogramMIImageFilter.h | 2 +- .../include/otbKullbackLeiblerDistanceImageFilter.h | 2 +- .../include/otbKullbackLeiblerDistanceImageFilter.hxx | 2 +- .../include/otbKullbackLeiblerProfileImageFilter.h | 2 +- .../include/otbKullbackLeiblerProfileImageFilter.hxx | 2 +- .../include/otbKullbackLeiblerSupervizedDistanceImageFilter.h | 2 +- .../include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx | 2 +- Modules/Filtering/ChangeDetection/include/otbLHMI.h | 2 +- .../Filtering/ChangeDetection/include/otbLHMIChangeDetector.h | 2 +- Modules/Filtering/ChangeDetection/include/otbMeanDifference.h | 2 +- .../ChangeDetection/include/otbMeanDifferenceImageFilter.h | 2 +- Modules/Filtering/ChangeDetection/include/otbMeanRatio.h | 2 +- .../Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h | 2 +- .../include/otbMultivariateAlterationDetectorImageFilter.h | 2 +- .../include/otbMultivariateAlterationDetectorImageFilter.hxx | 2 +- Modules/Filtering/ChangeDetection/otb-module.cmake | 2 +- Modules/Filtering/ChangeDetection/test/CMakeLists.txt | 2 +- .../ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx | 2 +- .../ChangeDetection/test/otbChangeDetectionTestDriver.cxx | 2 +- .../ChangeDetection/test/otbCorrelChangeDetectionTest.cxx | 2 +- .../ChangeDetection/test/otbJHMIChangeDetectionTest.cxx | 2 +- .../test/otbKullbackLeiblerDistanceImageFilter.cxx | 2 +- .../test/otbKullbackLeiblerProfileImageFilter.cxx | 2 +- .../test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx | 2 +- .../ChangeDetection/test/otbLHMIChangeDetectionTest.cxx | 2 +- .../ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx | 2 +- .../ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx | 2 +- .../test/otbMultivariateAlterationDetectorImageFilter.cxx | 2 +- Modules/Filtering/ColorMap/CMakeLists.txt | 2 +- Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h | 2 +- Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx | 2 +- .../ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h | 2 +- .../ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx | 2 +- Modules/Filtering/ColorMap/otb-module.cmake | 2 +- Modules/Filtering/ColorMap/test/CMakeLists.txt | 2 +- Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx | 2 +- .../ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx | 2 +- Modules/Filtering/Contrast/CMakeLists.txt | 2 +- Modules/Filtering/Contrast/include/otbApplyGainFilter.h | 2 +- Modules/Filtering/Contrast/include/otbApplyGainFilter.hxx | 2 +- .../Contrast/include/otbCLHistogramEqualizationFilter.h | 2 +- .../Contrast/include/otbCLHistogramEqualizationFilter.hxx | 2 +- Modules/Filtering/Contrast/include/otbComputeGainLutFilter.h | 2 +- Modules/Filtering/Contrast/include/otbComputeGainLutFilter.hxx | 2 +- Modules/Filtering/Contrast/include/otbComputeHistoFilter.h | 2 +- Modules/Filtering/Contrast/include/otbComputeHistoFilter.hxx | 2 +- Modules/Filtering/Contrast/otb-module.cmake | 2 +- Modules/Filtering/Contrast/test/CMakeLists.txt | 2 +- Modules/Filtering/Contrast/test/otbApplyGainFilter.cxx | 2 +- .../Contrast/test/otbCLHistogramEqualizationFilter.cxx | 2 +- Modules/Filtering/Contrast/test/otbComputeGainLutFilter.cxx | 2 +- Modules/Filtering/Contrast/test/otbComputeHistoFilter.cxx | 2 +- Modules/Filtering/Contrast/test/otbContrastTestDriver.cxx | 2 +- Modules/Filtering/Contrast/test/otbHelperCLAHE.cxx | 2 +- Modules/Filtering/Convolution/CMakeLists.txt | 2 +- .../Filtering/Convolution/include/otbConvolutionImageFilter.h | 2 +- .../Filtering/Convolution/include/otbConvolutionImageFilter.hxx | 2 +- Modules/Filtering/Convolution/include/otbGaborFilterGenerator.h | 2 +- .../Filtering/Convolution/include/otbGaborFilterGenerator.hxx | 2 +- .../Convolution/include/otbOverlapSaveConvolutionImageFilter.h | 2 +- .../include/otbOverlapSaveConvolutionImageFilter.hxx | 2 +- Modules/Filtering/Convolution/otb-module.cmake | 2 +- Modules/Filtering/Convolution/test/CMakeLists.txt | 2 +- ...CompareOverlapSaveAndClassicalConvolutionWithGaborFilter.cxx | 2 +- .../Filtering/Convolution/test/otbConvolutionImageFilter.cxx | 2 +- Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx | 2 +- Modules/Filtering/Convolution/test/otbGaborFilterGenerator.cxx | 2 +- .../Convolution/test/otbOverlapSaveConvolutionImageFilter.cxx | 2 +- Modules/Filtering/DEM/CMakeLists.txt | 2 +- Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.h | 2 +- Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.hxx | 2 +- Modules/Filtering/DEM/include/otbDEMToImageGenerator.h | 2 +- Modules/Filtering/DEM/include/otbDEMToImageGenerator.hxx | 2 +- Modules/Filtering/DEM/otb-module.cmake | 2 +- Modules/Filtering/DEM/test/CMakeLists.txt | 2 +- Modules/Filtering/DEM/test/otbDEMCaracteristicsExtractor.cxx | 2 +- Modules/Filtering/DEM/test/otbDEMTestDriver.cxx | 2 +- .../Filtering/DEM/test/otbDEMToImageGeneratorFromImageTest.cxx | 2 +- Modules/Filtering/DEM/test/otbDEMToImageGeneratorTest.cxx | 2 +- Modules/Filtering/DimensionalityReduction/CMakeLists.txt | 2 +- .../include/otbAngularProjectionBinaryImageFilter.h | 2 +- .../include/otbAngularProjectionBinaryImageFilter.hxx | 2 +- .../include/otbAngularProjectionImageFilter.h | 2 +- .../include/otbAngularProjectionImageFilter.hxx | 2 +- .../include/otbAngularProjectionSetImageFilter.h | 2 +- .../include/otbAngularProjectionSetImageFilter.hxx | 2 +- .../include/otbEstimateInnerProductPCAImageFilter.h | 2 +- .../include/otbEstimateInnerProductPCAImageFilter.hxx | 2 +- .../DimensionalityReduction/include/otbFastICAImageFilter.h | 2 +- .../DimensionalityReduction/include/otbFastICAImageFilter.hxx | 2 +- .../include/otbFastICAInternalOptimizerVectorImageFilter.h | 2 +- .../include/otbFastICAInternalOptimizerVectorImageFilter.hxx | 2 +- .../include/otbInnerProductPCAImageFilter.h | 2 +- .../include/otbInnerProductPCAImageFilter.hxx | 2 +- .../include/otbLocalActivityVectorImageFilter.h | 2 +- .../DimensionalityReduction/include/otbMNFImageFilter.h | 2 +- .../DimensionalityReduction/include/otbMNFImageFilter.hxx | 2 +- .../include/otbMaximumAutocorrelationFactorImageFilter.h | 2 +- .../include/otbMaximumAutocorrelationFactorImageFilter.hxx | 2 +- .../DimensionalityReduction/include/otbNAPCAImageFilter.h | 2 +- .../DimensionalityReduction/include/otbNAPCAImageFilter.hxx | 2 +- .../include/otbNormalizeInnerProductPCAImageFilter.h | 2 +- .../include/otbNormalizeInnerProductPCAImageFilter.hxx | 2 +- .../DimensionalityReduction/include/otbPCAImageFilter.h | 2 +- .../DimensionalityReduction/include/otbPCAImageFilter.hxx | 2 +- .../include/otbSparseWvltToAngleMapperListFilter.h | 2 +- .../include/otbSparseWvltToAngleMapperListFilter.hxx | 2 +- Modules/Filtering/DimensionalityReduction/otb-module.cmake | 2 +- Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt | 2 +- .../test/otbAngularProjectionBinaryImageFilter.cxx | 2 +- .../test/otbAngularProjectionImageFilter.cxx | 2 +- .../test/otbAngularProjectionSetImageFilter.cxx | 2 +- .../test/otbDimensionalityReductionTestDriver.cxx | 2 +- .../test/otbEstimateInnerProductPCAImageFilter.cxx | 2 +- .../DimensionalityReduction/test/otbFastICAImageFilter.cxx | 2 +- .../test/otbInnerProductPCAImageFilter.cxx | 2 +- .../test/otbLocalActivityVectorImageFilter.cxx | 2 +- .../DimensionalityReduction/test/otbMNFImageFilter.cxx | 2 +- .../test/otbMaximumAutocorrelationFactorImageFilter.cxx | 2 +- .../DimensionalityReduction/test/otbNAPCAImageFilter.cxx | 2 +- .../test/otbNormalizeInnerProductPCAImageFilter.cxx | 2 +- .../DimensionalityReduction/test/otbPCAImageFilter.cxx | 2 +- .../test/otbSparseWvltToAngleMapperListFilter.cxx | 2 +- Modules/Filtering/ImageManipulation/CMakeLists.txt | 2 +- Modules/Filtering/ImageManipulation/include/otbAffineFunctor.h | 2 +- .../ImageManipulation/include/otbAlphaBlendingFunctor.h | 2 +- .../Filtering/ImageManipulation/include/otbAmplitudeFunctor.h | 2 +- .../ImageManipulation/include/otbBinaryFunctorImageFilter.h | 2 +- .../include/otbBinaryFunctorNeighborhoodImageFilter.h | 2 +- .../include/otbBinaryFunctorNeighborhoodImageFilter.hxx | 2 +- .../include/otbBinaryFunctorNeighborhoodVectorImageFilter.h | 2 +- .../include/otbBinaryFunctorNeighborhoodVectorImageFilter.hxx | 2 +- .../ImageManipulation/include/otbBinaryImageDensityFunction.h | 2 +- .../ImageManipulation/include/otbBinaryImageDensityFunction.hxx | 2 +- .../include/otbBinaryImageToDensityImageFilter.h | 2 +- .../include/otbBinaryImageToDensityImageFilter.hxx | 2 +- .../ImageManipulation/include/otbBinarySpectralAngleFunctor.h | 2 +- .../ImageManipulation/include/otbBoxAndWhiskerImageFilter.h | 2 +- .../ImageManipulation/include/otbBoxAndWhiskerImageFilter.hxx | 2 +- .../ImageManipulation/include/otbChangeLabelImageFilter.h | 2 +- .../ImageManipulation/include/otbChangeLabelImageFilter.hxx | 2 +- .../ImageManipulation/include/otbChangeNoDataValueFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbClampImageFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbClampImageFilter.hxx | 2 +- .../ImageManipulation/include/otbClampVectorImageFilter.h | 2 +- .../ImageManipulation/include/otbClampVectorImageFilter.hxx | 2 +- .../include/otbConcatenateScalarValueImageFilter.h | 2 +- .../include/otbConcatenateScalarValueImageFilter.hxx | 2 +- .../ImageManipulation/include/otbConcatenateVectorImageFilter.h | 2 +- .../include/otbConcatenateVectorImageFilter.hxx | 2 +- .../include/otbEuclideanDistanceMetricWithMissingValue.h | 2 +- .../include/otbEuclideanDistanceMetricWithMissingValuePow2.h | 2 +- .../include/otbEuclideanDistanceMetricWithMissingValuePow2.hxx | 2 +- .../include/otbFlexibleDistanceWithMissingValue.h | 2 +- .../include/otbFlexibleDistanceWithMissingValue.hxx | 2 +- .../include/otbFunctionWithNeighborhoodToImageFilter.h | 2 +- .../include/otbFunctionWithNeighborhoodToImageFilter.hxx | 2 +- .../ImageManipulation/include/otbGridResampleImageFilter.h | 2 +- .../ImageManipulation/include/otbGridResampleImageFilter.hxx | 2 +- .../Filtering/ImageManipulation/include/otbHillShadingFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbHillShadingFunctor.h | 2 +- .../ImageManipulation/include/otbImageToNoDataMaskFilter.h | 2 +- .../ImageManipulation/include/otbImageToVectorImageCastFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbInPlacePassFilter.h | 2 +- .../include/otbLocalGradientVectorImageFilter.h | 2 +- .../ImageManipulation/include/otbLog10ThresholdedImageFilter.h | 2 +- .../ImageManipulation/include/otbMaskedIteratorDecorator.h | 2 +- .../ImageManipulation/include/otbMaskedIteratorDecorator.hxx | 2 +- .../Filtering/ImageManipulation/include/otbMatrixImageFilter.h | 2 +- .../ImageManipulation/include/otbMatrixImageFilter.hxx | 2 +- Modules/Filtering/ImageManipulation/include/otbMeanFunctor.h | 2 +- .../ImageManipulation/include/otbMultiplyByScalarImageFilter.h | 2 +- .../include/otbNRIBandImagesToOneNComplexBandsImage.h | 2 +- .../include/otbNRIBandImagesToOneNComplexBandsImage.hxx | 2 +- .../include/otbOneRIBandImageToOneComplexBandImage.h | 2 +- .../include/otbOneRIBandImageToOneComplexBandImage.hxx | 2 +- .../ImageManipulation/include/otbPerBandVectorImageFilter.h | 2 +- .../ImageManipulation/include/otbPerBandVectorImageFilter.hxx | 2 +- Modules/Filtering/ImageManipulation/include/otbPhaseFunctor.h | 2 +- .../ImageManipulation/include/otbPrintableImageFilter.h | 2 +- .../ImageManipulation/include/otbPrintableImageFilter.hxx | 2 +- .../include/otbRealAndImaginaryImageToComplexImageFilter.h | 2 +- .../include/otbRealImageToComplexImageFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbResetMarginFilter.h | 2 +- .../ImageManipulation/include/otbResetMarginFilter.hxx | 2 +- .../ImageManipulation/include/otbShiftScaleImageAdaptor.h | 2 +- .../ImageManipulation/include/otbShiftScaleVectorImageFilter.h | 2 +- .../include/otbShiftScaleVectorImageFilter.hxx | 2 +- .../include/otbSpectralAngleDistanceImageFilter.h | 2 +- .../include/otbSpectralAngleDistanceImageFilter.hxx | 2 +- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 2 +- .../include/otbSpectralInformationDivergenceFunctor.h | 2 +- .../ImageManipulation/include/otbSqrtSpectralAngleFunctor.h | 2 +- .../include/otbStreamingInnerProductVectorImageFilter.h | 2 +- .../include/otbStreamingInnerProductVectorImageFilter.hxx | 2 +- .../include/otbStreamingMatrixTransposeMatrixImageFilter.h | 2 +- .../include/otbStreamingMatrixTransposeMatrixImageFilter.hxx | 2 +- .../ImageManipulation/include/otbStreamingResampleImageFilter.h | 2 +- .../include/otbStreamingResampleImageFilter.hxx | 2 +- .../ImageManipulation/include/otbStreamingShrinkImageFilter.h | 2 +- .../ImageManipulation/include/otbStreamingShrinkImageFilter.hxx | 2 +- .../ImageManipulation/include/otbTernaryFunctorImageFilter.h | 2 +- .../ImageManipulation/include/otbThresholdVectorImageFilter.h | 2 +- .../ImageManipulation/include/otbThresholdVectorImageFilter.hxx | 2 +- .../Filtering/ImageManipulation/include/otbTileImageFilter.h | 2 +- .../Filtering/ImageManipulation/include/otbTileImageFilter.hxx | 2 +- .../include/otbTwoNRIBandsImageToNComplexBandsImage.h | 2 +- .../include/otbTwoNRIBandsImageToNComplexBandsImage.hxx | 2 +- .../include/otbUnaryFunctorNeighborhoodImageFilter.h | 2 +- .../include/otbUnaryFunctorNeighborhoodImageFilter.hxx | 2 +- .../include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.h | 2 +- .../otbUnaryFunctorNeighborhoodWithOffsetImageFilter.hxx | 2 +- .../include/otbUnaryFunctorWithIndexImageFilter.h | 2 +- .../include/otbUnaryFunctorWithIndexImageFilter.hxx | 2 +- .../include/otbUnaryImageFunctorWithVectorImageFilter.h | 2 +- .../include/otbUnaryImageFunctorWithVectorImageFilter.hxx | 2 +- .../include/otbVectorImageTo3DScalarImageFilter.h | 2 +- .../include/otbVectorImageTo3DScalarImageFilter.hxx | 2 +- .../include/otbVectorImageToAmplitudeImageFilter.h | 2 +- .../include/otbVectorRescaleIntensityImageFilter.h | 2 +- .../include/otbVectorRescaleIntensityImageFilter.hxx | 2 +- Modules/Filtering/ImageManipulation/otb-module.cmake | 2 +- Modules/Filtering/ImageManipulation/src/CMakeLists.txt | 2 +- .../ImageManipulation/src/otbStreamingShrinkImageFilter.cxx | 2 +- Modules/Filtering/ImageManipulation/test/CMakeLists.txt | 2 +- .../ImageManipulation/test/otbAmplitudeFunctorTest.cxx | 2 +- .../ImageManipulation/test/otbBinaryImageDensityFunction.cxx | 2 +- .../test/otbBinaryImageToDensityImageFilter.cxx | 2 +- .../ImageManipulation/test/otbBoxAndWhiskerImageFilter.cxx | 2 +- .../ImageManipulation/test/otbChangeLabelImageFilter.cxx | 2 +- .../ImageManipulation/test/otbChangeNoDataValueFilter.cxx | 2 +- .../Filtering/ImageManipulation/test/otbClampImageFilter.cxx | 2 +- .../ImageManipulation/test/otbClampVectorImageFilter.cxx | 2 +- .../test/otbConcatenateScalarValueImageFilterTest.cxx | 2 +- .../ImageManipulation/test/otbConcatenateVectorImageFilter.cxx | 2 +- .../test/otbEuclideanDistanceMetricWithMissingValue.cxx | 2 +- .../Filtering/ImageManipulation/test/otbExtractROIResample.cxx | 2 +- .../test/otbFunctionWithNeighborhoodToImageFilter.cxx | 2 +- .../ImageManipulation/test/otbGridResampleImageFilter.cxx | 2 +- .../ImageManipulation/test/otbImageManipulationTestDriver.cxx | 2 +- .../ImageManipulation/test/otbImageToNoDataMaskFilter.cxx | 2 +- .../ImageManipulation/test/otbImageToVectorImageCastFilter.cxx | 2 +- .../test/otbLocalGradientVectorImageFilter.cxx | 2 +- .../test/otbLog10ThresholdedImageFilterTest.cxx | 2 +- .../ImageManipulation/test/otbMaskedIteratorDecorator.cxx | 2 +- .../ImageManipulation/test/otbMatrixImageFilterTest.cxx | 2 +- .../test/otbMatrixTransposeMatrixImageFilter.cxx | 2 +- .../ImageManipulation/test/otbMeanFunctorImageTest.cxx | 2 +- .../ImageManipulation/test/otbMultiplyByScalarImageTest.cxx | 2 +- .../test/otbNRIBandImagesToOneNComplexBandsImage.cxx | 2 +- .../test/otbOneRIBandImageToOneComplexBandImage.cxx | 2 +- .../test/otbPerBandVectorImageFilterWithMeanFilter.cxx | 2 +- .../test/otbPerBandVectorImageFilterWithSobelFilter.cxx | 2 +- .../Filtering/ImageManipulation/test/otbPhaseFunctorTest.cxx | 2 +- .../ImageManipulation/test/otbPrintableImageFilter.cxx | 2 +- .../ImageManipulation/test/otbPrintableImageFilterWithMask.cxx | 2 +- .../ImageManipulation/test/otbRegionProjectionResampler.cxx | 2 +- .../ImageManipulation/test/otbShiftScaleImageAdaptor.cxx | 2 +- .../test/otbSpectralAngleDistanceImageFilter.cxx | 2 +- .../ImageManipulation/test/otbSqrtSpectralAngleImageFilter.cxx | 2 +- .../test/otbStreamingInnerProductVectorImageFilter.cxx | 2 +- .../ImageManipulation/test/otbStreamingResampleImageFilter.cxx | 2 +- .../test/otbStreamingResampleImageFilterCompareWithITK.cxx | 2 +- .../ImageManipulation/test/otbStreamingShrinkImageFilter.cxx | 2 +- .../ImageManipulation/test/otbThresholdVectorImageFilter.cxx | 2 +- Modules/Filtering/ImageManipulation/test/otbTileImageFilter.cxx | 2 +- .../test/otbTwoNRIBandsImageToNComplexBandsImage.cxx | 2 +- .../test/otbUnaryFunctorNeighborhoodImageFilter.cxx | 2 +- .../test/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.cxx | 2 +- .../test/otbUnaryFunctorWithIndexImageFilter.cxx | 2 +- .../test/otbUnaryImageFunctorWithVectorImageFilter.cxx | 2 +- .../test/otbVectorImageTo3DScalarImageFilter.cxx | 2 +- .../test/otbVectorImageToAmplitudeImageFilter.cxx | 2 +- .../test/otbVectorRescaleIntensityImageFilter.cxx | 2 +- Modules/Filtering/ImageNoise/CMakeLists.txt | 2 +- Modules/Filtering/ImageNoise/include/otbFrostImageFilter.h | 2 +- Modules/Filtering/ImageNoise/include/otbFrostImageFilter.hxx | 2 +- Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.h | 2 +- Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.hxx | 2 +- Modules/Filtering/ImageNoise/include/otbKuanImageFilter.h | 2 +- Modules/Filtering/ImageNoise/include/otbKuanImageFilter.hxx | 2 +- Modules/Filtering/ImageNoise/include/otbLeeImageFilter.h | 2 +- Modules/Filtering/ImageNoise/include/otbLeeImageFilter.hxx | 2 +- .../ImageNoise/include/otbNoiseEstimatorVectorImageFilter.h | 2 +- Modules/Filtering/ImageNoise/otb-module.cmake | 2 +- Modules/Filtering/ImageNoise/test/CMakeLists.txt | 2 +- Modules/Filtering/ImageNoise/test/otbFrostFilter.cxx | 2 +- Modules/Filtering/ImageNoise/test/otbGammaMAPFilter.cxx | 2 +- Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx | 2 +- Modules/Filtering/ImageNoise/test/otbKuanFilter.cxx | 2 +- Modules/Filtering/ImageNoise/test/otbLeeFilter.cxx | 2 +- Modules/Filtering/MathParser/CMakeLists.txt | 2 +- Modules/Filtering/MathParser/include/otbBandMathImageFilter.h | 2 +- Modules/Filtering/MathParser/include/otbBandMathImageFilter.hxx | 2 +- Modules/Filtering/MathParser/include/otbMaskMuParserFilter.h | 2 +- Modules/Filtering/MathParser/include/otbMaskMuParserFilter.hxx | 2 +- Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.h | 2 +- Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.hxx | 2 +- Modules/Filtering/MathParser/include/otbOBIAMuParserFunctor.h | 2 +- Modules/Filtering/MathParser/include/otbParser.h | 2 +- Modules/Filtering/MathParser/otb-module.cmake | 2 +- Modules/Filtering/MathParser/src/CMakeLists.txt | 2 +- Modules/Filtering/MathParser/src/otbParser.cxx | 2 +- Modules/Filtering/MathParser/test/CMakeLists.txt | 2 +- Modules/Filtering/MathParser/test/otbBandMathImageFilter.cxx | 2 +- .../MathParser/test/otbImageListToSingleImageFilterTest.cxx | 2 +- Modules/Filtering/MathParser/test/otbMaskMuParserFilterTest.cxx | 2 +- Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx | 2 +- Modules/Filtering/MathParser/test/otbParserTest.cxx | 2 +- Modules/Filtering/MathParserX/CMakeLists.txt | 2 +- Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.h | 2 +- .../Filtering/MathParserX/include/otbBandMathXImageFilter.hxx | 2 +- Modules/Filtering/MathParserX/include/otbParserX.h | 2 +- Modules/Filtering/MathParserX/include/otbParserXPlugins.h | 2 +- Modules/Filtering/MathParserX/otb-module.cmake | 2 +- Modules/Filtering/MathParserX/src/CMakeLists.txt | 2 +- Modules/Filtering/MathParserX/src/otbParserX.cxx | 2 +- Modules/Filtering/MathParserX/src/otbParserXPlugins.cxx | 2 +- Modules/Filtering/MathParserX/test/CMakeLists.txt | 2 +- Modules/Filtering/MathParserX/test/otbBandMathXImageFilter.cxx | 2 +- Modules/Filtering/MathParserX/test/otbMathParserXTestDriver.cxx | 2 +- Modules/Filtering/MathParserX/test/otbParserXTest.cxx | 2 +- Modules/Filtering/Mosaic/CMakeLists.txt | 2 +- Modules/Filtering/Mosaic/include/otbMosaicFunctors.h | 2 +- Modules/Filtering/Mosaic/include/otbPersistentMosaicFilter.h | 2 +- .../Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.h | 2 +- .../Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.hxx | 2 +- .../Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.h | 2 +- .../Mosaic/include/otbStreamingFeatherMosaicFilter.hxx | 2 +- .../Mosaic/include/otbStreamingLargeFeatherMosaicFilter.h | 2 +- .../Mosaic/include/otbStreamingLargeFeatherMosaicFilter.hxx | 2 +- Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.h | 2 +- .../Filtering/Mosaic/include/otbStreamingMosaicFilterBase.hxx | 2 +- .../Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.h | 2 +- .../Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.hxx | 2 +- .../Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.h | 2 +- .../Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.hxx | 2 +- .../Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.h | 2 +- .../Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.hxx | 2 +- Modules/Filtering/Mosaic/include/otbSummingFilter.h | 2 +- Modules/Filtering/Mosaic/include/otbSummingFilter.hxx | 2 +- Modules/Filtering/Mosaic/otb-module.cmake | 2 +- Modules/Filtering/Path/CMakeLists.txt | 2 +- Modules/Filtering/Path/include/otbClosePathFunctor.h | 2 +- Modules/Filtering/Path/include/otbCompacityPathFunction.h | 2 +- Modules/Filtering/Path/include/otbCompacityPathFunction.hxx | 2 +- Modules/Filtering/Path/include/otbDrawPathFilter.h | 2 +- Modules/Filtering/Path/include/otbDrawPathFilter.hxx | 2 +- Modules/Filtering/Path/include/otbDrawPathListFilter.h | 2 +- Modules/Filtering/Path/include/otbDrawPathListFilter.hxx | 2 +- .../Filtering/Path/include/otbImageFittingPolygonListFilter.h | 2 +- .../Filtering/Path/include/otbImageFittingPolygonListFilter.hxx | 2 +- Modules/Filtering/Path/include/otbImageToEdgePathFilter.h | 2 +- Modules/Filtering/Path/include/otbImageToEdgePathFilter.hxx | 2 +- Modules/Filtering/Path/include/otbImageToPathFilter.h | 2 +- Modules/Filtering/Path/include/otbImageToPathFilter.hxx | 2 +- Modules/Filtering/Path/include/otbImageToPathListFilter.h | 2 +- Modules/Filtering/Path/include/otbImageToPathListFilter.hxx | 2 +- Modules/Filtering/Path/include/otbOrientationPathFunction.h | 2 +- Modules/Filtering/Path/include/otbOrientationPathFunction.hxx | 2 +- Modules/Filtering/Path/include/otbPathFunction.h | 2 +- Modules/Filtering/Path/include/otbPathFunction.hxx | 2 +- Modules/Filtering/Path/include/otbPathLengthFunctor.h | 2 +- Modules/Filtering/Path/include/otbPathListSource.h | 2 +- .../Filtering/Path/include/otbPathListToHistogramGenerator.h | 2 +- .../Filtering/Path/include/otbPathListToHistogramGenerator.hxx | 2 +- Modules/Filtering/Path/include/otbPathListToPathListFilter.h | 2 +- Modules/Filtering/Path/include/otbPathMeanDistanceFunctor.h | 2 +- Modules/Filtering/Path/include/otbPolyLineImageConstIterator.h | 2 +- .../Filtering/Path/include/otbPolyLineImageConstIterator.hxx | 2 +- Modules/Filtering/Path/include/otbPolyLineImageIterator.h | 2 +- .../Path/include/otbRegionImageToRectangularPathListFilter.h | 2 +- .../Path/include/otbRegionImageToRectangularPathListFilter.hxx | 2 +- Modules/Filtering/Path/otb-module.cmake | 2 +- Modules/Filtering/Path/test/CMakeLists.txt | 2 +- Modules/Filtering/Path/test/otbClosePathFunctor.cxx | 2 +- Modules/Filtering/Path/test/otbCompacityPathCircle.cxx | 2 +- Modules/Filtering/Path/test/otbCompacityPathRectangle.cxx | 2 +- Modules/Filtering/Path/test/otbCompacityPathSquare.cxx | 2 +- Modules/Filtering/Path/test/otbDrawPath.cxx | 2 +- Modules/Filtering/Path/test/otbDrawPathFilter.cxx | 2 +- Modules/Filtering/Path/test/otbDrawPathListFilter.cxx | 2 +- Modules/Filtering/Path/test/otbDrawPathListFilterWithValue.cxx | 2 +- .../Filtering/Path/test/otbImageFittingPolygonListFilter.cxx | 2 +- Modules/Filtering/Path/test/otbImageToEdgePathFilter.cxx | 2 +- Modules/Filtering/Path/test/otbOrientationPath.cxx | 2 +- Modules/Filtering/Path/test/otbPathLengthFunctor.cxx | 2 +- Modules/Filtering/Path/test/otbPathListToHistogramGenerator.cxx | 2 +- Modules/Filtering/Path/test/otbPathTestDriver.cxx | 2 +- Modules/Filtering/Path/test/otbPolyLineImageConstIterator.cxx | 2 +- Modules/Filtering/Path/test/otbPolyLineImageIterator.cxx | 2 +- .../Path/test/otbRegionImageToRectangularPathListFilter.cxx | 2 +- Modules/Filtering/Polarimetry/CMakeLists.txt | 2 +- .../include/otbMuellerToPolarisationDegreeAndPowerImageFilter.h | 2 +- .../include/otbMuellerToReciprocalCovarianceImageFilter.h | 2 +- .../include/otbMultiChannelsPolarimetricSynthesisFilter.h | 2 +- .../include/otbMultiChannelsPolarimetricSynthesisFilter.hxx | 2 +- Modules/Filtering/Polarimetry/include/otbPolarimetricData.h | 2 +- .../Polarimetry/include/otbPolarimetricSynthesisFunctor.h | 2 +- Modules/Filtering/Polarimetry/include/otbPolarimetryTags.h | 2 +- .../Polarimetry/include/otbReciprocalBarnesDecompImageFilter.h | 2 +- .../otbReciprocalCoherencyToReciprocalMuellerImageFilter.h | 2 +- .../otbReciprocalCovarianceToCoherencyDegreeImageFilter.h | 2 +- .../otbReciprocalCovarianceToReciprocalCoherencyImageFilter.h | 2 +- .../Polarimetry/include/otbReciprocalHAlphaImageFilter.h | 2 +- .../Polarimetry/include/otbReciprocalHuynenDecompImageFilter.h | 2 +- ...lLinearCovarianceToReciprocalCircularCovarianceImageFilter.h | 2 +- .../Polarimetry/include/otbReciprocalPauliDecompImageFilter.h | 2 +- .../include/otbSinclairToCircularCovarianceMatrixImageFilter.h | 2 +- .../include/otbSinclairToCoherencyMatrixImageFilter.h | 2 +- .../include/otbSinclairToCovarianceMatrixImageFilter.h | 2 +- .../Polarimetry/include/otbSinclairToMuellerMatrixImageFilter.h | 2 +- ...otbSinclairToReciprocalCircularCovarianceMatrixImageFilter.h | 2 +- .../include/otbSinclairToReciprocalCoherencyMatrixImageFilter.h | 2 +- .../otbSinclairToReciprocalCovarianceMatrixImageFilter.h | 2 +- Modules/Filtering/Polarimetry/otb-module.cmake | 2 +- Modules/Filtering/Polarimetry/src/CMakeLists.txt | 2 +- Modules/Filtering/Polarimetry/src/otbPolarimetricData.cxx | 2 +- Modules/Filtering/Polarimetry/test/CMakeLists.txt | 2 +- .../test/otbMuellerToPolarisationDegreeAndPowerImageFilter.cxx | 2 +- .../test/otbMuellerToReciprocalCovarianceFunctor.cxx | 2 +- .../test/otbMuellerToReciprocalCovarianceImageFilter.cxx | 2 +- .../test/otbMultiChannelsPolarimetricSynthesisFilter.cxx | 2 +- Modules/Filtering/Polarimetry/test/otbPolarimetricData.cxx | 2 +- .../Polarimetry/test/otbPolarimetricSynthesisFunctor.cxx | 2 +- Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx | 2 +- .../Filtering/Polarimetry/test/otbReciprocalBarnesDecomp.cxx | 2 +- .../otbReciprocalCoherencyToReciprocalMuellerImageFilter.cxx | 2 +- .../otbReciprocalCovarianceToCoherencyDegreeImageFilter.cxx | 2 +- .../otbReciprocalCovarianceToReciprocalCoherencyImageFilter.cxx | 2 +- .../Polarimetry/test/otbReciprocalHAlphaImageFilter.cxx | 2 +- .../Filtering/Polarimetry/test/otbReciprocalHuynenDecomp.cxx | 2 +- ...inearCovarianceToReciprocalCircularCovarianceImageFilter.cxx | 2 +- Modules/Filtering/Polarimetry/test/otbReciprocalPauliDecomp.cxx | 2 +- Modules/Filtering/Polarimetry/test/otbSinclairImageFilter.cxx | 2 +- .../Polarimetry/test/otbSinclairReciprocalImageFilter.cxx | 2 +- .../test/otbSinclairToCircularCovarianceMatrixFunctor.cxx | 2 +- .../Polarimetry/test/otbSinclairToCoherencyMatrixFunctor.cxx | 2 +- .../Polarimetry/test/otbSinclairToCovarianceMatrixFunctor.cxx | 2 +- .../Polarimetry/test/otbSinclairToMuellerMatrixFunctor.cxx | 2 +- .../otbSinclairToReciprocalCircularCovarianceMatrixFunctor.cxx | 2 +- .../test/otbSinclairToReciprocalCoherencyMatrixFunctor.cxx | 2 +- .../test/otbSinclairToReciprocalCovarianceMatrixFunctor.cxx | 2 +- .../test/otbVectorMultiChannelsPolarimetricSynthesisFilter.cxx | 2 +- Modules/Filtering/Projection/CMakeLists.txt | 2 +- .../Projection/include/otbGCPsToRPCSensorModelImageFilter.h | 2 +- .../Projection/include/otbGCPsToRPCSensorModelImageFilter.hxx | 2 +- .../Projection/include/otbGenericRSResampleImageFilter.h | 2 +- .../Projection/include/otbGenericRSResampleImageFilter.hxx | 2 +- Modules/Filtering/Projection/include/otbGeographicalDistance.h | 2 +- .../Filtering/Projection/include/otbGeographicalDistance.hxx | 2 +- .../Projection/include/otbGeometriesProjectionFilter.h | 2 +- .../Projection/include/otbGeometriesProjectionFilter.hxx | 2 +- .../Projection/include/otbGroundSpacingImageFunction.h | 2 +- .../Projection/include/otbGroundSpacingImageFunction.hxx | 2 +- .../Projection/include/otbImageToEnvelopeVectorDataFilter.h | 2 +- .../Projection/include/otbImageToEnvelopeVectorDataFilter.hxx | 2 +- .../Projection/include/otbImportGeoInformationImageFilter.h | 2 +- .../Projection/include/otbImportGeoInformationImageFilter.hxx | 2 +- .../Projection/include/otbLeastSquareAffineTransformEstimator.h | 2 +- .../include/otbLeastSquareAffineTransformEstimator.hxx | 2 +- .../Projection/include/otbPhysicalToRPCSensorModelImageFilter.h | 2 +- .../include/otbPhysicalToRPCSensorModelImageFilter.hxx | 2 +- .../include/otbPleiadesPToXSAffineTransformCalculator.h | 2 +- .../Projection/include/otbProjectiveProjectionImageFilter.h | 2 +- .../Projection/include/otbProjectiveProjectionImageFilter.hxx | 2 +- Modules/Filtering/Projection/include/otbROIdataConversion.h | 2 +- Modules/Filtering/Projection/include/otbROIdataConversion.hxx | 2 +- Modules/Filtering/Projection/include/otbRPCSolver.h | 2 +- Modules/Filtering/Projection/include/otbRationalTransform.h | 2 +- Modules/Filtering/Projection/include/otbTileMapTransform.h | 2 +- Modules/Filtering/Projection/include/otbTileMapTransform.hxx | 2 +- .../Projection/include/otbVectorDataIntoImageProjectionFilter.h | 2 +- .../include/otbVectorDataIntoImageProjectionFilter.hxx | 2 +- .../Projection/include/otbVectorDataProjectionFilter.h | 2 +- .../Projection/include/otbVectorDataProjectionFilter.hxx | 2 +- .../Filtering/Projection/include/otbVectorDataTransformFilter.h | 2 +- .../Projection/include/otbVectorDataTransformFilter.hxx | 2 +- Modules/Filtering/Projection/otb-module.cmake | 2 +- Modules/Filtering/Projection/src/CMakeLists.txt | 2 +- .../Filtering/Projection/src/otbGeometriesProjectionFilter.cxx | 2 +- .../src/otbPleiadesPToXSAffineTransformCalculator.cxx | 2 +- Modules/Filtering/Projection/src/otbRPCSolver.cxx | 2 +- Modules/Filtering/Projection/test/CMakeLists.txt | 2 +- Modules/Filtering/Projection/test/otbCompositeTransform.cxx | 2 +- .../test/otbGCPsToRPCSensorModelImageFilterAndOrtho.cxx | 2 +- .../test/otbGCPsToRPCSensorModelImageFilterCheckRpcModel.cxx | 2 +- .../test/otbGCPsToRPCSensorModelImageFilterWithoutDEM.cxx | 2 +- .../Projection/test/otbGenericRSResampleImageFilter.cxx | 2 +- .../Projection/test/otbGenericRSTransformFromImage.cxx | 2 +- .../Projection/test/otbGenericRSTransformGenericTest.cxx | 2 +- Modules/Filtering/Projection/test/otbGeographicalDistance.cxx | 2 +- .../Filtering/Projection/test/otbGeometriesProjectionFilter.cxx | 2 +- .../test/otbGeometriesProjectionFilterFromGeoToMap.cxx | 2 +- .../test/otbGeometriesProjectionFilterFromMapToEPSG.cxx | 2 +- .../test/otbGeometriesProjectionFilterFromMapToGeo.cxx | 2 +- .../test/otbGeometriesProjectionFilterFromMapToImage.cxx | 2 +- .../test/otbGeometriesProjectionFilterFromMapToSensor.cxx | 2 +- .../Projection/test/otbImageToEnvelopeVectorDataFilter.cxx | 2 +- .../Projection/test/otbImageToGenericRSOutputParameters.cxx | 2 +- .../Projection/test/otbImportGeoInformationImageFilter.cxx | 2 +- .../Projection/test/otbLeastSquareAffineTransformEstimator.cxx | 2 +- .../Projection/test/otbPhysicalToRPCSensorModelImageFilter.cxx | 2 +- Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx | 2 +- Modules/Filtering/Projection/test/otbROIdataConversion.cxx | 2 +- Modules/Filtering/Projection/test/otbRPCSolverTest.cxx | 2 +- Modules/Filtering/Projection/test/otbRationalTransform.cxx | 2 +- .../test/otbRationalTransformToDisplacementFieldSource.cxx | 2 +- Modules/Filtering/Projection/test/otbSensorModel.cxx | 2 +- .../Projection/test/otbTileImageFilterRSTransformTest.cxx | 2 +- Modules/Filtering/Projection/test/otbTileMapTransform.cxx | 2 +- .../Projection/test/otbVectorDataExtractROIandProjection.cxx | 2 +- .../test/otbVectorDataIntoImageProjectionFilterTest.cxx | 2 +- .../Filtering/Projection/test/otbVectorDataProjectionFilter.cxx | 2 +- .../test/otbVectorDataProjectionFilterFromGeoToMap.cxx | 2 +- .../test/otbVectorDataProjectionFilterFromMapToGeo.cxx | 2 +- .../test/otbVectorDataProjectionFilterFromMapToImage.cxx | 2 +- .../test/otbVectorDataProjectionFilterFromMapToSensor.cxx | 2 +- .../Filtering/Projection/test/otbVectorDataTransformFilter.cxx | 2 +- Modules/Filtering/Smoothing/CMakeLists.txt | 2 +- Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.h | 2 +- .../Filtering/Smoothing/include/otbFastNLMeansImageFilter.hxx | 2 +- .../Smoothing/include/otbMeanShiftSmoothingImageFilter.h | 2 +- .../Smoothing/include/otbMeanShiftSmoothingImageFilter.hxx | 2 +- Modules/Filtering/Smoothing/otb-module.cmake | 2 +- Modules/Filtering/Smoothing/test/CMakeLists.txt | 2 +- Modules/Filtering/Smoothing/test/otbFastNLMeansImageFilter.cxx | 2 +- .../Smoothing/test/otbMeanShiftSmoothingImageFilter.cxx | 2 +- .../test/otbMeanShiftSmoothingImageFilterSpatialStability.cxx | 2 +- .../test/otbMeanShiftSmoothingImageFilterThreading.cxx | 2 +- Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx | 2 +- Modules/Filtering/Statistics/CMakeLists.txt | 2 +- .../Statistics/include/otbConcatenateSampleListFilter.h | 2 +- .../Statistics/include/otbConcatenateSampleListFilter.hxx | 2 +- .../include/otbContinuousMinimumMaximumImageCalculator.h | 2 +- .../include/otbContinuousMinimumMaximumImageCalculator.hxx | 2 +- .../include/otbGaussianAdditiveNoiseSampleListFilter.h | 2 +- .../include/otbGaussianAdditiveNoiseSampleListFilter.hxx | 2 +- .../Statistics/include/otbHistogramStatisticsFunction.h | 2 +- .../Statistics/include/otbHistogramStatisticsFunction.hxx | 2 +- Modules/Filtering/Statistics/include/otbListSampleGenerator.h | 2 +- Modules/Filtering/Statistics/include/otbListSampleGenerator.hxx | 2 +- Modules/Filtering/Statistics/include/otbListSampleSource.h | 2 +- Modules/Filtering/Statistics/include/otbListSampleSource.hxx | 2 +- .../include/otbListSampleToBalancedListSampleFilter.h | 2 +- .../include/otbListSampleToBalancedListSampleFilter.hxx | 2 +- .../Statistics/include/otbListSampleToHistogramListGenerator.h | 2 +- .../include/otbListSampleToHistogramListGenerator.hxx | 2 +- .../Statistics/include/otbListSampleToListSampleFilter.h | 2 +- .../Statistics/include/otbListSampleToListSampleFilter.hxx | 2 +- .../otbListSampleToVariableDimensionHistogramGenerator.h | 2 +- .../otbListSampleToVariableDimensionHistogramGenerator.hxx | 2 +- .../Statistics/include/otbLocalHistogramImageFunction.h | 2 +- .../Statistics/include/otbLocalHistogramImageFunction.hxx | 2 +- .../Statistics/include/otbNormalizeVectorImageFilter.h | 2 +- .../Statistics/include/otbNormalizeVectorImageFilter.hxx | 2 +- Modules/Filtering/Statistics/include/otbPatternSampler.h | 2 +- Modules/Filtering/Statistics/include/otbPeriodicSampler.h | 2 +- Modules/Filtering/Statistics/include/otbRandomSampler.h | 2 +- Modules/Filtering/Statistics/include/otbSamplerBase.h | 2 +- .../Statistics/include/otbShiftScaleSampleListFilter.h | 2 +- .../Statistics/include/otbShiftScaleSampleListFilter.hxx | 2 +- .../Statistics/include/otbStreamingCompareImageFilter.h | 2 +- .../Statistics/include/otbStreamingCompareImageFilter.hxx | 2 +- .../Statistics/include/otbStreamingHistogramVectorImageFilter.h | 2 +- .../include/otbStreamingHistogramVectorImageFilter.hxx | 2 +- .../Statistics/include/otbStreamingMinMaxImageFilter.h | 2 +- .../Statistics/include/otbStreamingMinMaxImageFilter.hxx | 2 +- .../Statistics/include/otbStreamingMinMaxVectorImageFilter.h | 2 +- .../Statistics/include/otbStreamingMinMaxVectorImageFilter.hxx | 2 +- .../Statistics/include/otbStreamingStatisticsImageFilter.h | 2 +- .../Statistics/include/otbStreamingStatisticsImageFilter.hxx | 2 +- .../include/otbStreamingStatisticsMapFromLabelImageFilter.h | 2 +- .../include/otbStreamingStatisticsMapFromLabelImageFilter.hxx | 2 +- .../Statistics/include/otbStreamingStatisticsMosaicFilter.h | 2 +- .../Statistics/include/otbStreamingStatisticsMosaicFilter.hxx | 2 +- .../include/otbStreamingStatisticsVectorImageFilter.h | 2 +- .../include/otbStreamingStatisticsVectorImageFilter.hxx | 2 +- Modules/Filtering/Statistics/include/otbVarianceImageFilter.h | 2 +- Modules/Filtering/Statistics/include/otbVarianceImageFilter.hxx | 2 +- .../Statistics/include/otbVectorImageToIntensityImageFilter.h | 2 +- .../Statistics/include/otbVectorImageToIntensityImageFilter.hxx | 2 +- .../Statistics/include/otbVectorImageToMatrixImageFilter.h | 2 +- .../Statistics/include/otbVectorImageToMatrixImageFilter.hxx | 2 +- Modules/Filtering/Statistics/otb-module.cmake | 2 +- Modules/Filtering/Statistics/src/CMakeLists.txt | 2 +- Modules/Filtering/Statistics/src/otbPatternSampler.cxx | 2 +- Modules/Filtering/Statistics/src/otbPeriodicSampler.cxx | 2 +- Modules/Filtering/Statistics/src/otbRandomSampler.cxx | 2 +- Modules/Filtering/Statistics/src/otbSamplerBase.cxx | 2 +- Modules/Filtering/Statistics/test/CMakeLists.txt | 2 +- Modules/Filtering/Statistics/test/StreamingStat.cxx | 2 +- .../Statistics/test/otbConcatenateSampleListFilter.cxx | 2 +- .../test/otbContinuousMinimumMaximumImageCalculatorTest.cxx | 2 +- .../test/otbGaussianAdditiveNoiseSampleListFilter.cxx | 2 +- .../Statistics/test/otbHistogramStatisticsFunction.cxx | 2 +- .../test/otbImaginaryImageToComplexImageFilterTest.cxx | 2 +- .../Filtering/Statistics/test/otbListSampleGeneratorTest.cxx | 2 +- .../Statistics/test/otbListSampleToBalancedListSampleFilter.cxx | 2 +- .../Statistics/test/otbListSampleToHistogramListGenerator.cxx | 2 +- .../test/otbListSampleToVariableDimensionHistogramGenerator.cxx | 2 +- .../Statistics/test/otbLocalHistogramImageFunctionTest.cxx | 2 +- .../Filtering/Statistics/test/otbNormalizeVectorImageFilter.cxx | 2 +- Modules/Filtering/Statistics/test/otbProjectiveProjection.cxx | 2 +- .../test/otbRealAndImaginaryImageToComplexImageFilterTest.cxx | 2 +- .../Statistics/test/otbRealImageToComplexImageFilterTest.cxx | 2 +- Modules/Filtering/Statistics/test/otbSamplerTest.cxx | 2 +- .../Filtering/Statistics/test/otbShiftScaleSampleListFilter.cxx | 2 +- .../Statistics/test/otbShiftScaleVectorImageFilterTest.cxx | 2 +- Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx | 2 +- .../Statistics/test/otbStreamingCompareImageFilter.cxx | 2 +- .../Statistics/test/otbStreamingHistogramVectorImageFilter.cxx | 2 +- .../Filtering/Statistics/test/otbStreamingMinMaxImageFilter.cxx | 2 +- .../Statistics/test/otbStreamingMinMaxVectorImageFilter.cxx | 2 +- .../Statistics/test/otbStreamingStatisticsImageFilter.cxx | 2 +- .../test/otbStreamingStatisticsMapFromLabelImageFilterTest.cxx | 2 +- .../Statistics/test/otbStreamingStatisticsVectorImageFilter.cxx | 2 +- Modules/Filtering/Statistics/test/otbVarianceImageFilter.cxx | 2 +- .../Statistics/test/otbVectorImageToIntensityImageFilter.cxx | 2 +- .../Statistics/test/otbVectorImageToMatrixImageFilter.cxx | 2 +- Modules/Filtering/TimeSeries/CMakeLists.txt | 2 +- .../include/otbEnvelopeSavitzkyGolayInterpolationFunctor.h | 2 +- .../TimeSeries/include/otbSavitzkyGolayInterpolationFunctor.h | 2 +- Modules/Filtering/TimeSeries/include/otbTimeSeries.h | 2 +- .../TimeSeries/include/otbTimeSeriesLeastSquareFittingFunctor.h | 2 +- Modules/Filtering/TimeSeries/otb-module.cmake | 2 +- Modules/Filtering/TimeSeries/test/CMakeLists.txt | 2 +- .../test/otbEnvelopeSavitzkyGolayInterpolationFunctorTest.cxx | 2 +- .../Filtering/TimeSeries/test/otbPolynomialTimeSeriesTest.cxx | 2 +- .../test/otbSavitzkyGolayInterpolationFunctorTest.cxx | 2 +- .../test/otbTimeSeriesLeastSquareFittingFunctorTest.cxx | 2 +- .../test/otbTimeSeriesLeastSquareFittingFunctorWeightsTest.cxx | 2 +- Modules/Filtering/TimeSeries/test/otbTimeSeriesTestDriver.cxx | 2 +- Modules/Filtering/VectorDataManipulation/CMakeLists.txt | 2 +- .../include/otbConcatenateVectorDataFilter.h | 2 +- .../include/otbConcatenateVectorDataFilter.hxx | 2 +- .../VectorDataManipulation/include/otbCorrectPolygonFunctor.h | 2 +- .../VectorDataManipulation/include/otbPolygonCompacityFunctor.h | 2 +- .../VectorDataManipulation/include/otbSimplifyPathFunctor.h | 2 +- .../VectorDataManipulation/include/otbVectorDataAdapter.h | 2 +- .../VectorDataManipulation/include/otbVectorDataAdapter.hxx | 2 +- .../VectorDataManipulation/include/otbVectorDataExtractROI.h | 2 +- .../VectorDataManipulation/include/otbVectorDataExtractROI.hxx | 2 +- .../include/otbVectorDataToRandomLineGenerator.h | 2 +- .../include/otbVectorDataToRandomLineGenerator.hxx | 2 +- .../include/otbVectorDataToSpecificDescriptionFilterBase.h | 2 +- .../include/otbVectorDataToSpecificDescriptionFilterBase.hxx | 2 +- .../include/otbVectorDataToVectorDataFilter.h | 2 +- .../include/otbVectorDataToVectorDataFilter.hxx | 2 +- Modules/Filtering/VectorDataManipulation/otb-module.cmake | 2 +- Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt | 2 +- .../test/otbConcatenateVectorDataFilter.cxx | 2 +- .../VectorDataManipulation/test/otbPolygonCompacityFunctor.cxx | 2 +- .../VectorDataManipulation/test/otbVectorDataExtractROI.cxx | 2 +- .../test/otbVectorDataManipulationTestDriver.cxx | 2 +- .../test/otbVectorDataToRandomLineGenerator.cxx | 2 +- Modules/Filtering/Wavelet/CMakeLists.txt | 2 +- Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.h | 2 +- Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.hxx | 2 +- Modules/Filtering/Wavelet/include/otbWaveletFilterBank.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletFilterBank.hxx | 2 +- Modules/Filtering/Wavelet/include/otbWaveletGenerator.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletHighPassOperator.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletImageFilter.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletImageFilter.hxx | 2 +- .../Filtering/Wavelet/include/otbWaveletInverseImageFilter.h | 2 +- .../Filtering/Wavelet/include/otbWaveletInverseImageFilter.hxx | 2 +- Modules/Filtering/Wavelet/include/otbWaveletLowPassOperator.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletOperator.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.hxx | 2 +- .../Wavelet/include/otbWaveletPacketDecompositionCosts.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.hxx | 2 +- Modules/Filtering/Wavelet/include/otbWaveletTransform.h | 2 +- Modules/Filtering/Wavelet/include/otbWaveletTransform.hxx | 2 +- .../include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.h | 2 +- .../otbWaveletsBandsListToWaveletsSynopsisImageFilter.hxx | 2 +- .../include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.h | 2 +- .../otbWaveletsSynopsisImageToWaveletsBandsListFilter.hxx | 2 +- Modules/Filtering/Wavelet/otb-module.cmake | 2 +- Modules/Filtering/Wavelet/src/CMakeLists.txt | 2 +- Modules/Filtering/Wavelet/src/otbWaveletGenerator.cxx | 2 +- Modules/Filtering/Wavelet/test/CMakeLists.txt | 2 +- Modules/Filtering/Wavelet/test/otbSubsampleImageFilter.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletFilterBank.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletImageToImageFilter.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletOperator.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletPacketTransform.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx | 2 +- Modules/Filtering/Wavelet/test/otbWaveletTransform.cxx | 2 +- Modules/Fusion/Fuzzy/CMakeLists.txt | 2 +- Modules/Fusion/Fuzzy/include/otbFuzzyDescriptorsModelManager.h | 2 +- Modules/Fusion/Fuzzy/include/otbFuzzyVariable.h | 2 +- Modules/Fusion/Fuzzy/include/otbFuzzyVariable.hxx | 2 +- Modules/Fusion/Fuzzy/otb-module.cmake | 2 +- Modules/Fusion/Fuzzy/src/CMakeLists.txt | 2 +- Modules/Fusion/Fuzzy/src/otbFuzzyDescriptorsModelManager.cxx | 2 +- Modules/Fusion/Fuzzy/test/CMakeLists.txt | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyDescriptorsModelManager.cxx | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyVariable2Values.cxx | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyVariableDSApplied.cxx | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyVariableGetMaxVar.cxx | 2 +- Modules/Fusion/Fuzzy/test/otbFuzzyVariableSetValue.cxx | 2 +- Modules/Fusion/MajorityVoting/CMakeLists.txt | 2 +- .../include/otbNeighborhoodMajorityVotingImageFilter.h | 2 +- .../include/otbNeighborhoodMajorityVotingImageFilter.hxx | 2 +- Modules/Fusion/MajorityVoting/otb-module.cmake | 2 +- Modules/Fusion/MajorityVoting/test/CMakeLists.txt | 2 +- .../Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx | 2 +- .../test/otbNeighborhoodMajorityVotingImageFilterTest.cxx | 2 +- Modules/Fusion/PanSharpening/CMakeLists.txt | 2 +- .../Fusion/PanSharpening/include/otbBayesianFusionFilter.hxx | 2 +- .../include/otbLmvmPanSharpeningFusionImageFilter.h | 2 +- .../include/otbLmvmPanSharpeningFusionImageFilter.hxx | 2 +- .../include/otbSimpleRcsPanSharpeningFusionImageFilter.h | 2 +- .../include/otbSimpleRcsPanSharpeningFusionImageFilter.hxx | 2 +- Modules/Fusion/PanSharpening/otb-module.cmake | 2 +- Modules/Fusion/PanSharpening/test/CMakeLists.txt | 2 +- Modules/Fusion/PanSharpening/test/otbBayesianFusionFilter.cxx | 2 +- .../test/otbLmvmPanSharpeningFusionImageFilter.cxx | 2 +- .../Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx | 2 +- .../test/otbSimpleRcsPanSharpeningFusionImageFilter.cxx | 2 +- Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt | 2 +- .../AnomalyDetection/include/otbLocalRxDetectorFilter.h | 2 +- Modules/Hyperspectral/AnomalyDetection/otb-module.cmake | 2 +- Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt | 2 +- .../AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx | 2 +- .../AnomalyDetection/test/otbLocalRxDetectorTest.cxx | 2 +- Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt | 2 +- .../include/otbEigenvalueLikelihoodMaximisation.h | 2 +- .../include/otbEigenvalueLikelihoodMaximisation.hxx | 2 +- .../EndmembersExtraction/include/otbVcaImageFilter.h | 2 +- .../EndmembersExtraction/include/otbVcaImageFilter.hxx | 2 +- .../EndmembersExtraction/include/otbVirtualDimensionality.h | 2 +- .../EndmembersExtraction/include/otbVirtualDimensionality.hxx | 2 +- Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake | 2 +- Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt | 2 +- .../test/otbEigenvalueLikelihoodMaximization.cxx | 2 +- .../test/otbEndmembersExtractionTestDriver.cxx | 2 +- .../EndmembersExtraction/test/otbVCAImageFilter.cxx | 2 +- .../EndmembersExtraction/test/otbVirtualDimensionality.cxx | 2 +- Modules/Hyperspectral/Unmixing/CMakeLists.txt | 2 +- .../Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.h | 2 +- .../Unmixing/include/otbISRAUnmixingImageFilter.hxx | 2 +- Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.h | 2 +- .../Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.hxx | 2 +- .../Unmixing/include/otbSparseUnmixingImageFilter.h | 2 +- .../Unmixing/include/otbSparseUnmixingImageFilter.hxx | 2 +- .../Unmixing/include/otbUnConstrainedLeastSquareImageFilter.h | 2 +- .../Unmixing/include/otbUnConstrainedLeastSquareImageFilter.hxx | 2 +- Modules/Hyperspectral/Unmixing/otb-module.cmake | 2 +- Modules/Hyperspectral/Unmixing/test/CMakeLists.txt | 2 +- .../Hyperspectral/Unmixing/test/otbISRAUnmixingImageFilter.cxx | 2 +- Modules/Hyperspectral/Unmixing/test/otbMDMDNMFImageFilter.cxx | 2 +- .../Unmixing/test/otbSparseUnmixingImageFilter.cxx | 2 +- .../Unmixing/test/otbUnConstrainedLeastSquareImageFilter.cxx | 2 +- Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx | 2 +- Modules/IO/Carto/CMakeLists.txt | 2 +- Modules/IO/Carto/include/otbCoordinateToName.h | 2 +- Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.h | 2 +- Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.hxx | 2 +- Modules/IO/Carto/include/otbMapFileProductWriter.h | 2 +- Modules/IO/Carto/include/otbMapFileProductWriter.hxx | 2 +- Modules/IO/Carto/include/otbOSMDataToVectorDataGenerator.h | 2 +- Modules/IO/Carto/include/otbPlaceNameToLonLat.h | 2 +- Modules/IO/Carto/include/otbWorldFile.h | 2 +- Modules/IO/Carto/otb-module.cmake | 2 +- Modules/IO/Carto/src/CMakeLists.txt | 2 +- Modules/IO/Carto/src/otbCoordinateToName.cxx | 2 +- Modules/IO/Carto/src/otbOSMDataToVectorDataGenerator.cxx | 2 +- Modules/IO/Carto/src/otbPlaceNameToLonLat.cxx | 2 +- Modules/IO/Carto/src/otbWorldFile.cxx | 2 +- Modules/IO/Carto/test/CMakeLists.txt | 2 +- Modules/IO/Carto/test/otbCartoTestDriver.cxx | 2 +- Modules/IO/Carto/test/otbCoordinateToNameTest.cxx | 2 +- Modules/IO/Carto/test/otbImageToOSMVectorDataGenerator.cxx | 2 +- Modules/IO/Carto/test/otbMapFileProductWriter.cxx | 2 +- Modules/IO/Carto/test/otbOSMDataToVectorDataTests.cxx | 2 +- Modules/IO/ExtendedFilename/CMakeLists.txt | 2 +- .../include/otbExtendedFilenameToReaderOptions.h | 2 +- .../include/otbExtendedFilenameToWriterOptions.h | 2 +- Modules/IO/ExtendedFilename/otb-module.cmake | 2 +- Modules/IO/ExtendedFilename/src/CMakeLists.txt | 2 +- .../ExtendedFilename/src/otbExtendedFilenameToReaderOptions.cxx | 2 +- .../ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx | 2 +- Modules/IO/ExtendedFilename/test/CMakeLists.txt | 2 +- Modules/IO/ExtendedFilename/test/otbExtendedFilenameTest.cxx | 2 +- .../IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx | 2 +- .../test/otbExtendedFilenameToReaderOptionsTest.cxx | 2 +- .../test/otbExtendedFilenameToWriterOptionsTest.cxx | 2 +- Modules/IO/IOBSQ/CMakeLists.txt | 2 +- Modules/IO/IOBSQ/include/otbBSQImageIO.h | 2 +- Modules/IO/IOBSQ/include/otbBSQImageIOFactory.h | 2 +- Modules/IO/IOBSQ/otb-module.cmake | 2 +- Modules/IO/IOBSQ/src/CMakeLists.txt | 2 +- Modules/IO/IOBSQ/src/otbBSQImageIO.cxx | 2 +- Modules/IO/IOBSQ/src/otbBSQImageIOFactory.cxx | 2 +- Modules/IO/IOBSQ/test/CMakeLists.txt | 2 +- Modules/IO/IOBSQ/test/otbBSQImageIOTestCanRead.cxx | 2 +- Modules/IO/IOBSQ/test/otbBSQImageIOTestCanWrite.cxx | 2 +- Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx | 2 +- Modules/IO/IOGDAL/CMakeLists.txt | 2 +- Modules/IO/IOGDAL/include/otbDEMHandler.h | 2 +- Modules/IO/IOGDAL/include/otbGDALDatasetWrapper.h | 2 +- Modules/IO/IOGDAL/include/otbGDALDriverManagerWrapper.h | 2 +- Modules/IO/IOGDAL/include/otbGDALImageIO.h | 2 +- Modules/IO/IOGDAL/include/otbGDALImageIOFactory.h | 2 +- Modules/IO/IOGDAL/include/otbGDALImageMetadataInterface.h | 2 +- Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h | 2 +- Modules/IO/IOGDAL/include/otbGDALRPCTransformer.h | 2 +- Modules/IO/IOGDAL/include/otbOGRIOHelper.h | 2 +- Modules/IO/IOGDAL/include/otbOGRVectorDataIO.h | 2 +- Modules/IO/IOGDAL/include/otbOGRVectorDataIOFactory.h | 2 +- Modules/IO/IOGDAL/otb-module.cmake | 2 +- Modules/IO/IOGDAL/src/CMakeLists.txt | 2 +- Modules/IO/IOGDAL/src/otbDEMHandler.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALDatasetWrapper.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALDriverManagerWrapper.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALImageIO.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALImageIOFactory.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALImageMetadataInterface.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx | 2 +- Modules/IO/IOGDAL/src/otbGDALRPCTransformer.cxx | 2 +- Modules/IO/IOGDAL/src/otbOGRIOHelper.cxx | 2 +- Modules/IO/IOGDAL/src/otbOGRVectorDataIO.cxx | 2 +- Modules/IO/IOGDAL/src/otbOGRVectorDataIOFactory.cxx | 2 +- Modules/IO/IOGDAL/test/CMakeLists.txt | 2 +- Modules/IO/IOGDAL/test/otbGDALImageIOTest.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALImageIOTestCanRead.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALImageIOTestCanWrite.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALImageIOTestWriteMetadata.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALOverviewsBuilder.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALRPCTransformerTest.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALRPCTransformerTest2.cxx | 2 +- Modules/IO/IOGDAL/test/otbGDALReadPxlComplex.cxx | 2 +- Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx | 2 +- Modules/IO/IOGDAL/test/otbMultiDatasetReadingInfo.cxx | 2 +- Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanRead.cxx | 2 +- Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanWrite.cxx | 2 +- Modules/IO/IOKML/CMakeLists.txt | 2 +- Modules/IO/IOKML/include/otbKMLVectorDataIO.h | 2 +- Modules/IO/IOKML/include/otbKMLVectorDataIOFactory.h | 2 +- Modules/IO/IOKML/otb-module.cmake | 2 +- Modules/IO/IOKML/src/CMakeLists.txt | 2 +- Modules/IO/IOKML/src/otbKMLVectorDataIO.cxx | 2 +- Modules/IO/IOKML/src/otbKMLVectorDataIOFactory.cxx | 2 +- Modules/IO/IOKML/test/CMakeLists.txt | 2 +- Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx | 2 +- Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanRead.cxx | 2 +- Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanWrite.cxx | 2 +- Modules/IO/IOKML/test/otbKMLVectorDataIOTestFileReader.cxx | 2 +- Modules/IO/IOLUM/CMakeLists.txt | 2 +- Modules/IO/IOLUM/include/otbLUMImageIO.h | 2 +- Modules/IO/IOLUM/include/otbLUMImageIOFactory.h | 2 +- Modules/IO/IOLUM/otb-module.cmake | 2 +- Modules/IO/IOLUM/src/CMakeLists.txt | 2 +- Modules/IO/IOLUM/src/otbLUMImageIO.cxx | 2 +- Modules/IO/IOLUM/src/otbLUMImageIOFactory.cxx | 2 +- Modules/IO/IOLUM/test/CMakeLists.txt | 2 +- Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx | 2 +- Modules/IO/IOLUM/test/otbLUMImageIOTestCanRead.cxx | 2 +- Modules/IO/IOLUM/test/otbLUMImageIOTestCanWrite.cxx | 2 +- Modules/IO/IOMSTAR/CMakeLists.txt | 2 +- Modules/IO/IOMSTAR/include/otbMSTARImageIO.h | 2 +- Modules/IO/IOMSTAR/include/otbMSTARImageIOFactory.h | 2 +- Modules/IO/IOMSTAR/otb-module.cmake | 2 +- Modules/IO/IOMSTAR/src/CMakeLists.txt | 2 +- Modules/IO/IOMSTAR/src/otbMSTARImageIO.cxx | 2 +- Modules/IO/IOMSTAR/src/otbMSTARImageIOFactory.cxx | 2 +- Modules/IO/IOMSTAR/test/CMakeLists.txt | 2 +- Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx | 2 +- Modules/IO/IOMSTAR/test/otbMSTARImageIOTestCanRead.cxx | 2 +- Modules/IO/IOONERA/CMakeLists.txt | 2 +- Modules/IO/IOONERA/include/otbONERAImageIO.h | 2 +- Modules/IO/IOONERA/include/otbONERAImageIOFactory.h | 2 +- Modules/IO/IOONERA/otb-module.cmake | 2 +- Modules/IO/IOONERA/src/CMakeLists.txt | 2 +- Modules/IO/IOONERA/src/otbONERAImageIO.cxx | 2 +- Modules/IO/IOONERA/src/otbONERAImageIOFactory.cxx | 2 +- Modules/IO/IOONERA/test/CMakeLists.txt | 2 +- Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx | 2 +- Modules/IO/IOONERA/test/otbONERAImageIOTestCanRead.cxx | 2 +- Modules/IO/IORAD/CMakeLists.txt | 2 +- Modules/IO/IORAD/include/otbRADImageIO.h | 2 +- Modules/IO/IORAD/include/otbRADImageIOFactory.h | 2 +- Modules/IO/IORAD/otb-module.cmake | 2 +- Modules/IO/IORAD/src/CMakeLists.txt | 2 +- Modules/IO/IORAD/src/otbRADImageIO.cxx | 2 +- Modules/IO/IORAD/src/otbRADImageIOFactory.cxx | 2 +- Modules/IO/IORAD/test/CMakeLists.txt | 2 +- Modules/IO/IORAD/test/otbIORADTestDriver.cxx | 2 +- Modules/IO/IORAD/test/otbRADImageIOTestCanRead.cxx | 2 +- Modules/IO/IOXML/CMakeLists.txt | 2 +- Modules/IO/IOXML/include/otbStatisticsXMLFileReader.h | 2 +- Modules/IO/IOXML/include/otbStatisticsXMLFileReader.hxx | 2 +- Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.h | 2 +- Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.hxx | 2 +- Modules/IO/IOXML/otb-module.cmake | 2 +- Modules/IO/IOXML/test/CMakeLists.txt | 2 +- Modules/IO/IOXML/test/otbIOXMLTestDriver.cxx | 2 +- Modules/IO/IOXML/test/otbStatisticsXMLFileWriteAndRead.cxx | 2 +- Modules/IO/ImageIO/CMakeLists.txt | 2 +- Modules/IO/ImageIO/include/otbImageFileReader.h | 2 +- Modules/IO/ImageIO/include/otbImageFileReader.hxx | 2 +- Modules/IO/ImageIO/include/otbImageFileReaderException.h | 2 +- Modules/IO/ImageIO/include/otbImageFileWriter.h | 2 +- Modules/IO/ImageIO/include/otbImageFileWriter.hxx | 2 +- Modules/IO/ImageIO/include/otbImageIOFactory.h | 2 +- Modules/IO/ImageIO/include/otbImageSeriesFileReader.h | 2 +- Modules/IO/ImageIO/include/otbImageSeriesFileReader.hxx | 2 +- Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.h | 2 +- Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.hxx | 2 +- Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.h | 2 +- Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.hxx | 2 +- Modules/IO/ImageIO/otb-module.cmake | 2 +- Modules/IO/ImageIO/src/CMakeLists.txt | 2 +- Modules/IO/ImageIO/src/otbImageFileReader.cxx | 2 +- Modules/IO/ImageIO/src/otbImageFileReaderException.cxx | 2 +- Modules/IO/ImageIO/src/otbImageFileWriter.cxx | 2 +- Modules/IO/ImageIO/src/otbImageIOFactory.cxx | 2 +- Modules/IO/ImageIO/test/0000437-WriteImageCentOS.cxx | 2 +- Modules/IO/ImageIO/test/0000479-WriteInt8Image.cxx | 2 +- .../test/0000495-StreamingImageFileWriterProgressReporting.cxx | 2 +- Modules/IO/ImageIO/test/CMakeLists.txt | 2 +- Modules/IO/ImageIO/test/WriteUnsignedLong.cxx | 2 +- Modules/IO/ImageIO/test/negativespacing.cxx | 2 +- Modules/IO/ImageIO/test/otbCompareWritingComplexImage.cxx | 2 +- Modules/IO/ImageIO/test/otbComplexImageManipulationTest.cxx | 2 +- Modules/IO/ImageIO/test/otbComplexImageTests.cxx | 2 +- Modules/IO/ImageIO/test/otbDoubleImageIOTest.cxx | 2 +- Modules/IO/ImageIO/test/otbFloatImageIOTest.cxx | 2 +- Modules/IO/ImageIO/test/otbGDALDriverDoubleWritingTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderMSTAR.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderONERA.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderONERAComplex.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderOptBandTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADChar.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADComplexDouble.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloat.cxx | 2 +- .../ImageIO/test/otbImageFileReaderRADComplexFloatExtract.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADComplexInt.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADFloat.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRADInt.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderRGBTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderTestFloat.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileReaderWithComplexPixel.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileWriterONERAComplex.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileWriterOptBandTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileWriterRGBTest.cxx | 2 +- .../IO/ImageIO/test/otbImageFileWriterStreamingONERAComplex.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileWriterTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageFileWriterTestWithoutInput.cxx | 2 +- .../IO/ImageIO/test/otbImageFileWriterWithExtendedOptionBox.cxx | 2 +- Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx | 2 +- Modules/IO/ImageIO/test/otbImageMetadataFileWriterTest.cxx | 2 +- .../IO/ImageIO/test/otbImageMetadataStreamingFileWriterTest.cxx | 2 +- Modules/IO/ImageIO/test/otbImageSeriesFileReader.cxx | 2 +- .../test/otbImageStreamingFileWriterTestWithoutInput.cxx | 2 +- Modules/IO/ImageIO/test/otbIntImageIOTest.cxx | 2 +- Modules/IO/ImageIO/test/otbMultiResolutionReadingInfo.cxx | 2 +- Modules/IO/ImageIO/test/otbPNGIndexedNbBandsTest.cxx | 2 +- Modules/IO/ImageIO/test/otbPipeline.cxx | 2 +- Modules/IO/ImageIO/test/otbPipelineMetadataHandlingTest.cxx | 2 +- .../test/otbPipelineMetadataHandlingWithUFFilterTest.cxx | 2 +- .../ImageIO/test/otbReadingComplexDataIntoComplexImageTest.cxx | 2 +- .../IO/ImageIO/test/otbScalarBufferToImageFileWriterTest.cxx | 2 +- Modules/IO/ImageIO/test/otbShortImageIOTest.cxx | 2 +- Modules/IO/ImageIO/test/otbShortRGBImageIOTest.cxx | 2 +- Modules/IO/ImageIO/test/otbStreamingImageFileWriterTest.cxx | 2 +- ...tbStreamingImageFileWriterTestCalculateNumberOfDivisions.cxx | 2 +- .../ImageIO/test/otbStreamingImageFileWriterWithFilterTest.cxx | 2 +- Modules/IO/ImageIO/test/otbStreamingImageFilterTest.cxx | 2 +- .../IO/ImageIO/test/otbStreamingShortImageFileWriterTest.cxx | 2 +- Modules/IO/ImageIO/test/otbVectorImageFileReaderWriterTest.cxx | 2 +- .../ImageIO/test/otbVectorImageFileWriterTestWithoutInput.cxx | 2 +- .../test/otbVectorImageStreamingFileWriterTestWithoutInput.cxx | 2 +- .../ImageIO/test/otbWritingComplexDataWithComplexImageTest.cxx | 2 +- Modules/IO/KMZWriter/CMakeLists.txt | 2 +- Modules/IO/KMZWriter/include/otbKmzProductWriter.h | 2 +- Modules/IO/KMZWriter/include/otbKmzProductWriter.hxx | 2 +- Modules/IO/KMZWriter/otb-module.cmake | 2 +- Modules/IO/KMZWriter/test/CMakeLists.txt | 2 +- Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx | 2 +- Modules/IO/KMZWriter/test/otbKmzProductWriter.cxx | 2 +- Modules/IO/TestKernel/CMakeLists.txt | 2 +- Modules/IO/TestKernel/include/otbDifferenceImageFilter.h | 2 +- Modules/IO/TestKernel/include/otbDifferenceImageFilter.hxx | 2 +- Modules/IO/TestKernel/include/otbReadDataFile.h | 2 +- Modules/IO/TestKernel/include/otbTestHelper.h | 2 +- Modules/IO/TestKernel/include/otbTestMain.h | 2 +- Modules/IO/TestKernel/include/otbTestTools.h | 2 +- Modules/IO/TestKernel/otb-module.cmake | 2 +- Modules/IO/TestKernel/src/CMakeLists.txt | 2 +- Modules/IO/TestKernel/src/otbTestDriver.cxx | 2 +- Modules/IO/TestKernel/src/otbTestHelper.cxx | 2 +- Modules/IO/TestKernel/src/otbTestTools.cxx | 2 +- Modules/IO/TestKernel/test/CMakeLists.txt | 2 +- .../TestKernel/test/otbCompareAsciiTestScientificNotation.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests2.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests3.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests4.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests5.cxx | 2 +- Modules/IO/TestKernel/test/otbCompareAsciiTests6.cxx | 2 +- .../TestKernel/test/otbCompareAsciiTestsEpsilon3_WhiteSpace.cxx | 2 +- Modules/IO/TestKernel/test/otbCopyTest.cxx | 2 +- Modules/IO/TestKernel/test/otbDummyTest.cxx | 2 +- Modules/IO/TestKernel/test/otbTestKernelTestDriver.cxx | 2 +- Modules/IO/VectorDataIO/CMakeLists.txt | 2 +- Modules/IO/VectorDataIO/include/otbVectorDataFileReader.h | 2 +- Modules/IO/VectorDataIO/include/otbVectorDataFileReader.hxx | 2 +- Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.h | 2 +- Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.hxx | 2 +- Modules/IO/VectorDataIO/include/otbVectorDataIOFactory.h | 2 +- Modules/IO/VectorDataIO/otb-module.cmake | 2 +- Modules/IO/VectorDataIO/src/CMakeLists.txt | 2 +- Modules/IO/VectorDataIO/src/otbVectorDataIOFactory.cxx | 2 +- Modules/IO/VectorDataIO/test/CMakeLists.txt | 2 +- .../IO/VectorDataIO/test/otbVectorDataFileGeoReaderWriter.cxx | 2 +- Modules/IO/VectorDataIO/test/otbVectorDataFileReader.cxx | 2 +- Modules/IO/VectorDataIO/test/otbVectorDataFileReaderWriter.cxx | 2 +- Modules/IO/VectorDataIO/test/otbVectorDataFileWriter.cxx | 2 +- .../VectorDataIO/test/otbVectorDataFileWriterMultiPolygons.cxx | 2 +- .../IO/VectorDataIO/test/otbVectorDataFileWriterPolygons.cxx | 2 +- Modules/IO/VectorDataIO/test/otbVectorDataIOFactory.cxx | 2 +- Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx | 2 +- Modules/Learning/DempsterShafer/CMakeLists.txt | 2 +- .../DempsterShafer/include/otbConfusionMatrixToMassOfBelief.h | 2 +- .../DempsterShafer/include/otbConfusionMatrixToMassOfBelief.hxx | 2 +- .../include/otbDSFusionOfClassifiersImageFilter.h | 2 +- .../include/otbDSFusionOfClassifiersImageFilter.hxx | 2 +- .../DempsterShafer/include/otbJointMassOfBeliefFilter.h | 2 +- .../DempsterShafer/include/otbJointMassOfBeliefFilter.hxx | 2 +- Modules/Learning/DempsterShafer/include/otbMassOfBelief.h | 2 +- Modules/Learning/DempsterShafer/include/otbMassOfBelief.hxx | 2 +- Modules/Learning/DempsterShafer/otb-module.cmake | 2 +- Modules/Learning/DempsterShafer/test/CMakeLists.txt | 2 +- .../test/otbConfusionMatrixToMassOfBeliefTest.cxx | 2 +- .../test/otbDSFusionOfClassifiersImageFilterTest.cxx | 2 +- .../DempsterShafer/test/otbDempsterShaferFusionTests.cxx | 2 +- .../DempsterShafer/test/otbDempsterShaferTestDriver.cxx | 2 +- .../Learning/DempsterShafer/test/otbJointMassOfBeliefFilter.cxx | 2 +- Modules/Learning/DempsterShafer/test/otbMassOfBelief.cxx | 2 +- .../Learning/DempsterShafer/test/otbMassOfBeliefDSApplied.cxx | 2 +- Modules/Learning/DimensionalityReductionLearning/CMakeLists.txt | 2 +- .../include/otbAutoencoderModel.h | 2 +- .../include/otbAutoencoderModel.hxx | 2 +- .../include/otbAutoencoderModelFactory.h | 2 +- .../include/otbAutoencoderModelFactory.hxx | 2 +- .../include/otbDimensionalityReductionModelFactory.h | 2 +- .../include/otbDimensionalityReductionModelFactory.hxx | 2 +- .../include/otbImageDimensionalityReductionFilter.h | 2 +- .../include/otbImageDimensionalityReductionFilter.hxx | 2 +- .../DimensionalityReductionLearning/include/otbPCAModel.h | 2 +- .../DimensionalityReductionLearning/include/otbPCAModel.hxx | 2 +- .../include/otbPCAModelFactory.h | 2 +- .../include/otbPCAModelFactory.hxx | 2 +- .../DimensionalityReductionLearning/include/otbSOMModel.h | 2 +- .../DimensionalityReductionLearning/include/otbSOMModel.hxx | 2 +- .../include/otbSOMModelFactory.h | 2 +- .../include/otbSOMModelFactory.hxx | 2 +- .../Learning/DimensionalityReductionLearning/otb-module.cmake | 2 +- .../DimensionalityReductionLearning/test/CMakeLists.txt | 2 +- .../test/otbAutoencoderModelTest.cxx | 2 +- .../test/otbDimensionalityReductionLearningTestDriver.cxx | 2 +- .../DimensionalityReductionLearning/test/otbPCAModelTest.cxx | 2 +- .../DimensionalityReductionLearning/test/otbSOMModelTest.cxx | 2 +- .../DimensionalityReductionLearning/test/tests-shark.cmake | 2 +- Modules/Learning/LearningBase/CMakeLists.txt | 2 +- Modules/Learning/LearningBase/include/otbDecisionTree.h | 2 +- Modules/Learning/LearningBase/include/otbDecisionTree.hxx | 2 +- .../Learning/LearningBase/include/otbGaussianModelComponent.h | 2 +- .../Learning/LearningBase/include/otbGaussianModelComponent.hxx | 2 +- .../LearningBase/include/otbImageClassificationFilter.h | 2 +- .../LearningBase/include/otbImageClassificationFilter.hxx | 2 +- .../LearningBase/include/otbKMeansImageClassificationFilter.h | 2 +- .../LearningBase/include/otbKMeansImageClassificationFilter.hxx | 2 +- Modules/Learning/LearningBase/include/otbMachineLearningModel.h | 2 +- .../Learning/LearningBase/include/otbMachineLearningModel.hxx | 2 +- .../LearningBase/include/otbMachineLearningModelFactoryBase.h | 2 +- .../LearningBase/include/otbMachineLearningModelTraits.h | 2 +- Modules/Learning/LearningBase/include/otbSEMClassifier.h | 2 +- Modules/Learning/LearningBase/include/otbSEMClassifier.hxx | 2 +- Modules/Learning/LearningBase/otb-module.cmake | 2 +- Modules/Learning/LearningBase/src/CMakeLists.txt | 2 +- .../LearningBase/src/otbMachineLearningModelFactoryBase.cxx | 2 +- Modules/Learning/LearningBase/test/CMakeLists.txt | 2 +- Modules/Learning/LearningBase/test/otbDecisionTreeBuild.cxx | 2 +- .../LearningBase/test/otbDecisionTreeWithRealValues.cxx | 2 +- .../LearningBase/test/otbKMeansImageClassificationFilter.cxx | 2 +- .../Learning/LearningBase/test/otbLearningBaseTestDriver.cxx | 2 +- Modules/Learning/LearningBase/test/otbSharkUtilsTests.cxx | 2 +- Modules/Learning/Markov/CMakeLists.txt | 2 +- Modules/Learning/Markov/include/otbMRFEnergy.h | 2 +- Modules/Learning/Markov/include/otbMRFEnergyEdgeFidelity.h | 2 +- Modules/Learning/Markov/include/otbMRFEnergyGaussian.h | 2 +- .../Markov/include/otbMRFEnergyGaussianClassification.h | 2 +- Modules/Learning/Markov/include/otbMRFEnergyPotts.h | 2 +- Modules/Learning/Markov/include/otbMRFOptimizer.h | 2 +- Modules/Learning/Markov/include/otbMRFOptimizerICM.h | 2 +- Modules/Learning/Markov/include/otbMRFOptimizerMetropolis.h | 2 +- Modules/Learning/Markov/include/otbMRFSampler.h | 2 +- Modules/Learning/Markov/include/otbMRFSamplerMAP.h | 2 +- Modules/Learning/Markov/include/otbMRFSamplerRandom.h | 2 +- Modules/Learning/Markov/include/otbMRFSamplerRandomMAP.h | 2 +- Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.h | 2 +- Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.hxx | 2 +- Modules/Learning/Markov/otb-module.cmake | 2 +- Modules/Learning/Markov/test/CMakeLists.txt | 2 +- Modules/Learning/Markov/test/otbMRFEnergyEdgeFidelity.cxx | 2 +- Modules/Learning/Markov/test/otbMRFEnergyGaussian.cxx | 2 +- .../Learning/Markov/test/otbMRFEnergyGaussianClassification.cxx | 2 +- Modules/Learning/Markov/test/otbMRFEnergyPotts.cxx | 2 +- Modules/Learning/Markov/test/otbMRFOptimizerICM.cxx | 2 +- Modules/Learning/Markov/test/otbMRFOptimizerMetropolis.cxx | 2 +- Modules/Learning/Markov/test/otbMRFSamplerMAP.cxx | 2 +- Modules/Learning/Markov/test/otbMRFSamplerRandom.cxx | 2 +- Modules/Learning/Markov/test/otbMRFSamplerRandomMAP.cxx | 2 +- Modules/Learning/Markov/test/otbMarkovRandomFieldFilter.cxx | 2 +- Modules/Learning/Markov/test/otbMarkovTestDriver.cxx | 2 +- Modules/Learning/SOM/CMakeLists.txt | 2 +- .../Learning/SOM/include/otbCzihoSOMLearningBehaviorFunctor.h | 2 +- .../SOM/include/otbCzihoSOMNeighborhoodBehaviorFunctor.h | 2 +- Modules/Learning/SOM/include/otbPeriodicSOM.h | 2 +- Modules/Learning/SOM/include/otbPeriodicSOM.hxx | 2 +- Modules/Learning/SOM/include/otbSOM.h | 2 +- Modules/Learning/SOM/include/otbSOM.hxx | 2 +- Modules/Learning/SOM/include/otbSOMActivationBuilder.h | 2 +- Modules/Learning/SOM/include/otbSOMActivationBuilder.hxx | 2 +- Modules/Learning/SOM/include/otbSOMClassifier.h | 2 +- Modules/Learning/SOM/include/otbSOMClassifier.hxx | 2 +- Modules/Learning/SOM/include/otbSOMImageClassificationFilter.h | 2 +- .../Learning/SOM/include/otbSOMImageClassificationFilter.hxx | 2 +- Modules/Learning/SOM/include/otbSOMLearningBehaviorFunctor.h | 2 +- Modules/Learning/SOM/include/otbSOMMap.h | 2 +- Modules/Learning/SOM/include/otbSOMMap.hxx | 2 +- Modules/Learning/SOM/include/otbSOMWithMissingValue.h | 2 +- Modules/Learning/SOM/include/otbSOMWithMissingValue.hxx | 2 +- Modules/Learning/SOM/include/otbSOMbasedImageFilter.h | 2 +- Modules/Learning/SOM/include/otbSOMbasedImageFilter.hxx | 2 +- Modules/Learning/SOM/otb-module.cmake | 2 +- Modules/Learning/SOM/test/CMakeLists.txt | 2 +- Modules/Learning/SOM/test/MapActivation.cxx | 2 +- Modules/Learning/SOM/test/otbPeriodicSOM.cxx | 2 +- Modules/Learning/SOM/test/otbSOM.cxx | 2 +- Modules/Learning/SOM/test/otbSOMActivationBuilder.cxx | 2 +- Modules/Learning/SOM/test/otbSOMClassifier.cxx | 2 +- Modules/Learning/SOM/test/otbSOMImageClassificationFilter.cxx | 2 +- Modules/Learning/SOM/test/otbSOMMap.cxx | 2 +- Modules/Learning/SOM/test/otbSOMTestDriver.cxx | 2 +- Modules/Learning/SOM/test/otbSOMWithMissingValue.cxx | 2 +- Modules/Learning/SOM/test/otbSOMbasedImageFilter.cxx | 2 +- Modules/Learning/Sampling/CMakeLists.txt | 2 +- .../Learning/Sampling/include/otbImageSampleExtractorFilter.h | 2 +- .../Learning/Sampling/include/otbImageSampleExtractorFilter.hxx | 2 +- .../Sampling/include/otbOGRDataToClassStatisticsFilter.h | 2 +- .../Sampling/include/otbOGRDataToClassStatisticsFilter.hxx | 2 +- .../Sampling/include/otbOGRDataToSamplePositionFilter.h | 2 +- .../Sampling/include/otbOGRDataToSamplePositionFilter.hxx | 2 +- .../Learning/Sampling/include/otbPersistentSamplingFilterBase.h | 2 +- .../Sampling/include/otbPersistentSamplingFilterBase.hxx | 2 +- Modules/Learning/Sampling/include/otbSampleAugmentation.h | 2 +- Modules/Learning/Sampling/include/otbSampleAugmentationFilter.h | 2 +- Modules/Learning/Sampling/include/otbSamplingRateCalculator.h | 2 +- .../Learning/Sampling/include/otbSamplingRateCalculatorList.h | 2 +- Modules/Learning/Sampling/otb-module.cmake | 2 +- Modules/Learning/Sampling/src/CMakeLists.txt | 2 +- Modules/Learning/Sampling/src/otbSampleAugmentationFilter.cxx | 2 +- Modules/Learning/Sampling/src/otbSamplingRateCalculator.cxx | 2 +- Modules/Learning/Sampling/src/otbSamplingRateCalculatorList.cxx | 2 +- Modules/Learning/Sampling/test/CMakeLists.txt | 2 +- .../Sampling/test/otbImageSampleExtractorFilterTest.cxx | 2 +- .../Sampling/test/otbOGRDataToClassStatisticsFilterTest.cxx | 2 +- .../Sampling/test/otbOGRDataToSamplePositionFilterTest.cxx | 2 +- .../Sampling/test/otbSamplingRateCalculatorListTest.cxx | 2 +- .../Learning/Sampling/test/otbSamplingRateCalculatorTest.cxx | 2 +- Modules/Learning/Sampling/test/otbSamplingTestDriver.cxx | 2 +- Modules/Learning/Supervised/CMakeLists.txt | 2 +- .../Learning/Supervised/include/otbBoostMachineLearningModel.h | 2 +- .../Supervised/include/otbBoostMachineLearningModel.hxx | 2 +- .../Supervised/include/otbBoostMachineLearningModelFactory.h | 2 +- .../Supervised/include/otbBoostMachineLearningModelFactory.hxx | 2 +- .../Learning/Supervised/include/otbConfusionMatrixCalculator.h | 2 +- .../Supervised/include/otbConfusionMatrixCalculator.hxx | 2 +- .../Supervised/include/otbConfusionMatrixMeasurements.h | 2 +- .../Supervised/include/otbConfusionMatrixMeasurements.hxx | 2 +- Modules/Learning/Supervised/include/otbCvRTreesWrapper.h | 2 +- .../Supervised/include/otbDecisionTreeMachineLearningModel.h | 2 +- .../Supervised/include/otbDecisionTreeMachineLearningModel.hxx | 2 +- .../include/otbDecisionTreeMachineLearningModelFactory.h | 2 +- .../include/otbDecisionTreeMachineLearningModelFactory.hxx | 2 +- .../Supervised/include/otbExhaustiveExponentialOptimizer.h | 2 +- .../include/otbKNearestNeighborsMachineLearningModel.h | 2 +- .../include/otbKNearestNeighborsMachineLearningModel.hxx | 2 +- .../include/otbKNearestNeighborsMachineLearningModelFactory.h | 2 +- .../include/otbKNearestNeighborsMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Supervised/include/otbLabelMapClassifier.h | 2 +- Modules/Learning/Supervised/include/otbLabelMapClassifier.hxx | 2 +- .../Learning/Supervised/include/otbLibSVMMachineLearningModel.h | 2 +- .../Supervised/include/otbLibSVMMachineLearningModel.hxx | 2 +- .../Supervised/include/otbLibSVMMachineLearningModelFactory.h | 2 +- .../Supervised/include/otbLibSVMMachineLearningModelFactory.hxx | 2 +- .../Supervised/include/otbMachineLearningModelFactory.h | 2 +- .../Supervised/include/otbMachineLearningModelFactory.hxx | 2 +- .../Supervised/include/otbNeuralNetworkMachineLearningModel.h | 2 +- .../Supervised/include/otbNeuralNetworkMachineLearningModel.hxx | 2 +- .../include/otbNeuralNetworkMachineLearningModelFactory.h | 2 +- .../include/otbNeuralNetworkMachineLearningModelFactory.hxx | 2 +- .../Supervised/include/otbNormalBayesMachineLearningModel.h | 2 +- .../Supervised/include/otbNormalBayesMachineLearningModel.hxx | 2 +- .../include/otbNormalBayesMachineLearningModelFactory.h | 2 +- .../include/otbNormalBayesMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Supervised/include/otbOpenCVUtils.h | 2 +- .../Supervised/include/otbRandomForestsMachineLearningModel.h | 2 +- .../Supervised/include/otbRandomForestsMachineLearningModel.hxx | 2 +- .../include/otbRandomForestsMachineLearningModelFactory.h | 2 +- .../include/otbRandomForestsMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Supervised/include/otbRequiresOpenCVCheck.h | 2 +- .../Supervised/include/otbSVMCrossValidationCostFunction.h | 2 +- .../Supervised/include/otbSVMCrossValidationCostFunction.hxx | 2 +- .../Learning/Supervised/include/otbSVMMachineLearningModel.h | 2 +- .../Learning/Supervised/include/otbSVMMachineLearningModel.hxx | 2 +- .../Supervised/include/otbSVMMachineLearningModelFactory.h | 2 +- .../Supervised/include/otbSVMMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Supervised/include/otbSVMMarginSampler.h | 2 +- Modules/Learning/Supervised/include/otbSVMMarginSampler.hxx | 2 +- .../include/otbSharkRandomForestsMachineLearningModel.h | 2 +- .../include/otbSharkRandomForestsMachineLearningModel.hxx | 2 +- .../include/otbSharkRandomForestsMachineLearningModelFactory.h | 2 +- .../otbSharkRandomForestsMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Supervised/otb-module.cmake | 2 +- Modules/Learning/Supervised/src/CMakeLists.txt | 2 +- Modules/Learning/Supervised/src/otbCvRTreesWrapper.cxx | 2 +- .../Supervised/src/otbExhaustiveExponentialOptimizer.cxx | 2 +- .../0000209-SVMValidationLinearlySeparableProbEstimation.cxx | 2 +- Modules/Learning/Supervised/test/CMakeLists.txt | 2 +- .../Supervised/test/otbConfusionMatrixCalculatorTest.cxx | 2 +- .../Supervised/test/otbConfusionMatrixMeasurementsTest.cxx | 2 +- .../Supervised/test/otbExhaustiveExponentialOptimizerTest.cxx | 2 +- .../Learning/Supervised/test/otbImageClassificationFilter.cxx | 2 +- Modules/Learning/Supervised/test/otbLabelMapClassifier.cxx | 2 +- .../Learning/Supervised/test/otbMachineLearningModelCanRead.cxx | 2 +- .../Supervised/test/otbMachineLearningRegressionTests.cxx | 2 +- Modules/Learning/Supervised/test/otbSVMMarginSampler.cxx | 2 +- .../Supervised/test/otbSharkImageClassificationFilter.cxx | 2 +- Modules/Learning/Supervised/test/otbSupervisedTestDriver.cxx | 2 +- .../Learning/Supervised/test/otbTrainMachineLearningModel.cxx | 2 +- Modules/Learning/Supervised/test/tests-libsvm.cmake | 2 +- Modules/Learning/Supervised/test/tests-opencv.cmake | 2 +- Modules/Learning/Supervised/test/tests-shark.cmake | 2 +- Modules/Learning/Unsupervised/CMakeLists.txt | 2 +- Modules/Learning/Unsupervised/include/otbContingencyTable.h | 2 +- .../Unsupervised/include/otbContingencyTableCalculator.h | 2 +- .../Unsupervised/include/otbContingencyTableCalculator.hxx | 2 +- .../Unsupervised/include/otbSharkKMeansMachineLearningModel.h | 2 +- .../Unsupervised/include/otbSharkKMeansMachineLearningModel.hxx | 2 +- .../include/otbSharkKMeansMachineLearningModelFactory.h | 2 +- .../include/otbSharkKMeansMachineLearningModelFactory.hxx | 2 +- Modules/Learning/Unsupervised/otb-module.cmake | 2 +- Modules/Learning/Unsupervised/test/CMakeLists.txt | 2 +- .../Unsupervised/test/otbContingencyTableCalculatorTest.cxx | 2 +- .../test/otbMachineLearningUnsupervisedModelCanRead.cxx | 2 +- .../test/otbSharkUnsupervisedImageClassificationFilter.cxx | 2 +- .../test/otbTrainMachineLearningUnsupervisedModel.cxx | 2 +- .../Learning/Unsupervised/test/otbUnsupervisedTestDriver.cxx | 2 +- Modules/Learning/Unsupervised/test/tests-shark.cmake | 2 +- Modules/MPI/MPIConfig/CMakeLists.txt | 2 +- Modules/MPI/MPIConfig/include/otbMPIConfig.h | 2 +- Modules/MPI/MPIConfig/otb-module.cmake | 2 +- Modules/MPI/MPIConfig/src/CMakeLists.txt | 2 +- Modules/MPI/MPIConfig/src/otbMPIConfig.cxx | 2 +- Modules/MPI/MPIConfig/test/CMakeLists.txt | 2 +- Modules/MPI/MPIConfig/test/otbMPIConfigTest.cxx | 2 +- Modules/MPI/MPIConfig/test/otbMPIConfigTestDriver.cxx | 2 +- Modules/MPI/MPITiffWriter/CMakeLists.txt | 2 +- Modules/MPI/MPITiffWriter/otb-module.cmake | 2 +- Modules/MPI/MPITiffWriter/test/CMakeLists.txt | 2 +- Modules/MPI/MPITiffWriter/test/otbMPISPTWReadWriteTest.cxx | 2 +- Modules/MPI/MPITiffWriter/test/otbMPITiffWriterTestDriver.cxx | 2 +- Modules/MPI/MPIVrtWriter/CMakeLists.txt | 2 +- Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.h | 2 +- Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.hxx | 2 +- Modules/MPI/MPIVrtWriter/otb-module.cmake | 2 +- Modules/MPI/MPIVrtWriter/test/CMakeLists.txt | 2 +- Modules/MPI/MPIVrtWriter/test/otbMPIReadWriteTest.cxx | 2 +- Modules/MPI/MPIVrtWriter/test/otbMPIVrtWriterTestDriver.cxx | 2 +- Modules/Radiometry/Indices/CMakeLists.txt | 2 +- Modules/Radiometry/Indices/include/otbBandName.h | 2 +- Modules/Radiometry/Indices/include/otbBuiltUpIndicesFunctor.h | 2 +- Modules/Radiometry/Indices/include/otbGAndRIndexImageFilter.hxx | 2 +- Modules/Radiometry/Indices/include/otbIndicesStackFunctor.h | 2 +- Modules/Radiometry/Indices/include/otbLandsatTMIndices.h | 2 +- Modules/Radiometry/Indices/include/otbRadiometricIndex.h | 2 +- Modules/Radiometry/Indices/include/otbSoilIndicesFunctor.h | 2 +- .../Radiometry/Indices/include/otbVegetationIndicesFunctor.h | 2 +- Modules/Radiometry/Indices/include/otbWaterIndicesFunctor.h | 2 +- .../Indices/include/otbWaterSqrtSpectralAngleImageFilter.h | 2 +- Modules/Radiometry/Indices/otb-module.cmake | 2 +- Modules/Radiometry/Indices/test/CMakeLists.txt | 2 +- Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMBrightTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexBIOTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexBrightTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR1Test.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR2Test.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexMIRTIRTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBBBITest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBSITest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSITest.cxx | 2 +- .../Radiometry/Indices/test/otbLandsatTMIndexNDSIVisTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexNDVITest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexNIRTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexTIRTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMIndexVisTest.cxx | 2 +- .../Radiometry/Indices/test/otbLandsatTMKernelSpectralRules.cxx | 2 +- .../Indices/test/otbLandsatTMLinguisticLabelsTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMThickCloudTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMThinCloudTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbLandsatTMVegetationTest.cxx | 2 +- Modules/Radiometry/Indices/test/otbRadiometricIndicesTest.cxx | 2 +- .../Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx | 2 +- Modules/Radiometry/LandSatClassifier/CMakeLists.txt | 2 +- .../include/otbLandsatTMSpectralRuleBasedClassifier.h | 2 +- Modules/Radiometry/LandSatClassifier/otb-module.cmake | 2 +- Modules/Radiometry/LandSatClassifier/test/CMakeLists.txt | 2 +- .../LandSatClassifier/test/otbLandSatClassifierTestDriver.cxx | 2 +- .../test/otbLandsatTMSpectralRuleBasedClassifierTest.cxx | 2 +- Modules/Radiometry/OpticalCalibration/CMakeLists.txt | 2 +- Modules/Radiometry/OpticalCalibration/include/otbAeronetData.h | 2 +- .../OpticalCalibration/include/otbAeronetFileReader.h | 2 +- .../include/otbAtmosphericCorrectionParameters.h | 2 +- .../OpticalCalibration/include/otbAtmosphericRadiativeTerms.h | 2 +- .../include/otbImageMetadataCorrectionParameters.h | 2 +- .../OpticalCalibration/include/otbImageToLuminanceImageFilter.h | 2 +- .../OpticalCalibration/include/otbImageToRadianceImageFilter.h | 2 +- .../include/otbImageToReflectanceImageFilter.h | 2 +- .../OpticalCalibration/include/otbLuminanceToImageImageFilter.h | 2 +- .../include/otbLuminanceToReflectanceImageFilter.h | 2 +- .../OpticalCalibration/include/otbRadianceToImageImageFilter.h | 2 +- .../include/otbRadianceToReflectanceImageFilter.h | 2 +- ...bRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h | 2 +- .../include/otbReflectanceToImageImageFilter.h | 2 +- .../include/otbReflectanceToLuminanceImageFilter.h | 2 +- .../include/otbReflectanceToRadianceImageFilter.h | 2 +- .../include/otbReflectanceToSurfaceReflectanceImageFilter.h | 2 +- .../include/otbReflectanceToSurfaceReflectanceImageFilter.hxx | 2 +- Modules/Radiometry/OpticalCalibration/include/otbSIXSTraits.h | 2 +- .../OpticalCalibration/include/otbSpectralSensitivityReader.h | 2 +- .../include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h | 2 +- .../include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx | 2 +- Modules/Radiometry/OpticalCalibration/include/otbVarSol.h | 2 +- .../OpticalCalibration/include/otbWavelengthSpectralBands.h | 2 +- Modules/Radiometry/OpticalCalibration/otb-module.cmake | 2 +- Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt | 2 +- Modules/Radiometry/OpticalCalibration/src/otbAeronetData.cxx | 2 +- .../Radiometry/OpticalCalibration/src/otbAeronetFileReader.cxx | 2 +- .../src/otbAtmosphericCorrectionParameters.cxx | 2 +- .../OpticalCalibration/src/otbAtmosphericRadiativeTerms.cxx | 2 +- .../src/otbImageMetadataCorrectionParameters.cxx | 2 +- Modules/Radiometry/OpticalCalibration/src/otbSIXSTraits.cxx | 2 +- .../OpticalCalibration/src/otbSpectralSensitivityReader.cxx | 2 +- .../OpticalCalibration/src/otbWavelengthSpectralBands.cxx | 2 +- Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt | 2 +- .../OpticalCalibration/test/otbAeronetExtractData.cxx | 2 +- .../OpticalCalibration/test/otbAeronetExtractDataBadData.cxx | 2 +- .../test/otbAtmosphericCorrectionSequencement.cxx | 2 +- .../test/otbAtmosphericRadiativeTermsTest.cxx | 2 +- .../OpticalCalibration/test/otbImageToRadianceImageFilter.cxx | 2 +- .../test/otbImageToRadianceImageFilterAuto.cxx | 2 +- .../test/otbImageToReflectanceImageFilter.cxx | 2 +- .../test/otbImageToReflectanceImageFilterAuto.cxx | 2 +- .../OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx | 2 +- .../OpticalCalibration/test/otbRadianceToImageImageFilter.cxx | 2 +- .../test/otbRadianceToImageImageFilterAuto.cxx | 2 +- .../test/otbRadianceToReflectanceImageFilter.cxx | 2 +- .../test/otbRadianceToReflectanceImageFilterAuto.cxx | 2 +- ...adiometryCorrectionParametersToAtmosphericRadiativeTerms.cxx | 2 +- .../test/otbReflectanceToImageImageFilter.cxx | 2 +- .../test/otbReflectanceToImageImageFilterAuto.cxx | 2 +- .../test/otbReflectanceToRadianceImageFilter.cxx | 2 +- .../test/otbReflectanceToRadianceImageFilterAuto.cxx | 2 +- .../test/otbReflectanceToSurfaceReflectanceImageFilterTest.cxx | 2 +- ...RomaniaReflectanceToRomaniaSurfaceReflectanceImageFilter.cxx | 2 +- .../test/otbSIXSTraitsComputeAtmosphericParameters.cxx | 2 +- .../Radiometry/OpticalCalibration/test/otbSIXSTraitsTest.cxx | 2 +- .../test/otbSpectralSensitivityReaderTest.cxx | 2 +- .../test/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.cxx | 2 +- Modules/Radiometry/SARCalibration/CMakeLists.txt | 2 +- .../SARCalibration/include/otbSarBrightnessFunction.h | 2 +- .../SARCalibration/include/otbSarBrightnessFunction.hxx | 2 +- .../Radiometry/SARCalibration/include/otbSarBrightnessFunctor.h | 2 +- .../SARCalibration/include/otbSarBrightnessToImageFilter.h | 2 +- .../SARCalibration/include/otbSarBrightnessToImageFilter.hxx | 2 +- .../SARCalibration/include/otbSarBurstExtractionImageFilter.h | 2 +- .../SARCalibration/include/otbSarBurstExtractionImageFilter.hxx | 2 +- .../SARCalibration/include/otbSarConcatenateBurstsImageFilter.h | 2 +- .../include/otbSarConcatenateBurstsImageFilter.hxx | 2 +- .../SARCalibration/include/otbSarDeburstImageFilter.h | 2 +- .../SARCalibration/include/otbSarDeburstImageFilter.hxx | 2 +- .../SARCalibration/include/otbSarParametricMapFunction.h | 2 +- .../SARCalibration/include/otbSarParametricMapFunction.hxx | 2 +- .../include/otbSarRadiometricCalibrationFunction.h | 2 +- .../include/otbSarRadiometricCalibrationFunction.hxx | 2 +- .../include/otbSarRadiometricCalibrationToImageFilter.h | 2 +- .../include/otbSarRadiometricCalibrationToImageFilter.hxx | 2 +- .../SARCalibration/include/otbTerraSarBrightnessFunctor.h | 2 +- .../SARCalibration/include/otbTerraSarBrightnessFunctor.hxx | 2 +- .../SARCalibration/include/otbTerraSarBrightnessImageFilter.h | 2 +- .../SARCalibration/include/otbTerraSarBrightnessImageFilter.hxx | 2 +- Modules/Radiometry/SARCalibration/otb-module.cmake | 2 +- Modules/Radiometry/SARCalibration/test/CMakeLists.txt | 2 +- .../SARCalibration/test/otbSARCalibrationTestDriver.cxx | 2 +- .../Radiometry/SARCalibration/test/otbSarBrightnessFunction.cxx | 2 +- .../test/otbSarBrightnessFunctionWithoutNoise.cxx | 2 +- .../Radiometry/SARCalibration/test/otbSarBrightnessFunctor.cxx | 2 +- .../SARCalibration/test/otbSarBrightnessFunctorWithoutNoise.cxx | 2 +- .../SARCalibration/test/otbSarBrightnessToImageFilterTest.cxx | 2 +- .../test/otbSarBrightnessToImageFilterTestWithoutNoise.cxx | 2 +- .../test/otbSarBrightnessToImageWithComplexPixelFilterTest.cxx | 2 +- .../SARCalibration/test/otbSarBurstExtractionFilterTest.cxx | 2 +- .../SARCalibration/test/otbSarConcatenateBurstsImageFilter.cxx | 2 +- .../Radiometry/SARCalibration/test/otbSarDeburstFilterTest.cxx | 2 +- .../SARCalibration/test/otbSarParametricMapFunctionTest.cxx | 2 +- .../test/otbSarParametricMapFunctionToImageFilter.cxx | 2 +- .../test/otbSarRadiometricCalibrationFunction.cxx | 2 +- .../test/otbSarRadiometricCalibrationFunctionWithoutNoise.cxx | 2 +- .../SARCalibration/test/otbSarRadiometricCalibrationFunctor.cxx | 2 +- .../test/otbSarRadiometricCalibrationFunctorWithoutNoise.cxx | 2 +- .../otbSarRadiometricCalibrationToImageFilterCompareTest.cxx | 2 +- ...rRadiometricCalibrationToImageFilterWithComplexPixelTest.cxx | 2 +- ...CalibrationToImageFilterWithComplexPixelTestWithoutNoise.cxx | 2 +- ...iometricCalibrationToImageFilterWithExtractROIBeforeTest.cxx | 2 +- ...bSarRadiometricCalibrationToImageFilterWithRealPixelTest.cxx | 2 +- .../SARCalibration/test/otbTerraSarBrightnessFunctor.cxx | 2 +- .../test/otbTerraSarBrightnessImageComplexFilterTest.cxx | 2 +- .../test/otbTerraSarBrightnessImageFilterTest.cxx | 2 +- Modules/Radiometry/Simulation/CMakeLists.txt | 2 +- Modules/Radiometry/Simulation/include/otbAtmosphericEffects.h | 2 +- Modules/Radiometry/Simulation/include/otbAtmosphericEffects.hxx | 2 +- Modules/Radiometry/Simulation/include/otbDataSpecP5B.h | 2 +- .../Radiometry/Simulation/include/otbImageSimulationMethod.h | 2 +- .../Radiometry/Simulation/include/otbImageSimulationMethod.hxx | 2 +- .../Simulation/include/otbLabelMapToSimulatedImageFilter.h | 2 +- .../Simulation/include/otbLabelMapToSimulatedImageFilter.hxx | 2 +- .../Radiometry/Simulation/include/otbLabelToProSailParameters.h | 2 +- .../Simulation/include/otbLabelToProSailParameters.hxx | 2 +- .../Simulation/include/otbLabelToSimulationParametersBase.h | 2 +- Modules/Radiometry/Simulation/include/otbLeafParameters.h | 2 +- Modules/Radiometry/Simulation/include/otbProSailParameters.h | 2 +- Modules/Radiometry/Simulation/include/otbProspectModel.h | 2 +- .../Radiometry/Simulation/include/otbReduceSpectralResponse.h | 2 +- .../Radiometry/Simulation/include/otbReduceSpectralResponse.hxx | 2 +- .../include/otbReduceSpectralResponseClassifierRAndNIR.h | 2 +- .../include/otbReduceSpectralResponseClassifierRAndNIR.hxx | 2 +- Modules/Radiometry/Simulation/include/otbSailModel.h | 2 +- Modules/Radiometry/Simulation/include/otbSatelliteRSR.h | 2 +- Modules/Radiometry/Simulation/include/otbSatelliteRSR.hxx | 2 +- Modules/Radiometry/Simulation/include/otbSimulationStep1Base.h | 2 +- Modules/Radiometry/Simulation/include/otbSimulationStep2Base.h | 2 +- Modules/Radiometry/Simulation/include/otbSoilDataBase.h | 2 +- Modules/Radiometry/Simulation/include/otbSpatialisationFilter.h | 2 +- .../Radiometry/Simulation/include/otbSpatialisationFilter.hxx | 2 +- Modules/Radiometry/Simulation/include/otbSpectralResponse.h | 2 +- Modules/Radiometry/Simulation/include/otbSpectralResponse.hxx | 2 +- .../include/otbSurfaceReflectanceToReflectanceFilter.h | 2 +- .../include/otbSurfaceReflectanceToReflectanceFilter.hxx | 2 +- Modules/Radiometry/Simulation/otb-module.cmake | 2 +- Modules/Radiometry/Simulation/src/CMakeLists.txt | 2 +- Modules/Radiometry/Simulation/src/otbDataSpecP5B.cxx | 2 +- Modules/Radiometry/Simulation/src/otbLeafParameters.cxx | 2 +- Modules/Radiometry/Simulation/src/otbProspectModel.cxx | 2 +- Modules/Radiometry/Simulation/src/otbSailModel.cxx | 2 +- Modules/Radiometry/Simulation/src/otbSoilDataBase.cxx | 2 +- Modules/Radiometry/Simulation/test/CMakeLists.txt | 2 +- .../test/otbAtmosphericCorrectionsRSRSVMClassifier.cxx | 2 +- Modules/Radiometry/Simulation/test/otbAtmosphericEffects.cxx | 2 +- Modules/Radiometry/Simulation/test/otbFilterFunctionValues.cxx | 2 +- .../Simulation/test/otbImageSimulationMethodKMeansClassif.cxx | 2 +- .../Simulation/test/otbImageSimulationMethodSVMClassif.cxx | 2 +- .../test/otbImageSimulationMethodWithSpatialisationTest.cxx | 2 +- .../test/otbImageSimulationMethodWithVectorDataTest.cxx | 2 +- .../Simulation/test/otbLabelMapToSimulatedImageFilterTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbProspectReflTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbProspectTransTest.cxx | 2 +- .../Radiometry/Simulation/test/otbReduceSpectralResponse.cxx | 2 +- .../test/otbReduceSpectralResponseClassifierRAndNIR.cxx | 2 +- .../Simulation/test/otbReduceSpectralResponseSVMClassifier.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSailReflHTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSailReflVTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSatelliteRSR.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSoilDBTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSpatialisationTest.cxx | 2 +- Modules/Radiometry/Simulation/test/otbSpectralResponse.cxx | 2 +- .../test/otbSurfaceReflectanceToReflectanceFilter.cxx | 2 +- Modules/Registration/DisparityMap/CMakeLists.txt | 2 +- .../DisparityMap/include/otbDisparityMapEstimationMethod.h | 2 +- .../DisparityMap/include/otbDisparityMapEstimationMethod.hxx | 2 +- .../DisparityMap/include/otbDisparityMapMedianFilter.h | 2 +- .../DisparityMap/include/otbDisparityMapMedianFilter.hxx | 2 +- .../DisparityMap/include/otbDisparityMapTo3DFilter.h | 2 +- .../DisparityMap/include/otbDisparityMapTo3DFilter.hxx | 2 +- .../DisparityMap/include/otbDisparityMapToDEMFilter.h | 2 +- .../DisparityMap/include/otbDisparityMapToDEMFilter.hxx | 2 +- .../DisparityMap/include/otbDisparityTranslateFilter.h | 2 +- .../DisparityMap/include/otbDisparityTranslateFilter.hxx | 2 +- .../DisparityMap/include/otbFineRegistrationImageFilter.h | 2 +- .../DisparityMap/include/otbFineRegistrationImageFilter.hxx | 2 +- .../DisparityMap/include/otbMultiDisparityMapTo3DFilter.h | 2 +- .../DisparityMap/include/otbMultiDisparityMapTo3DFilter.hxx | 2 +- .../DisparityMap/include/otbNCCRegistrationFilter.h | 2 +- .../DisparityMap/include/otbNCCRegistrationFilter.hxx | 2 +- .../DisparityMap/include/otbNCCRegistrationFunction.h | 2 +- .../DisparityMap/include/otbNCCRegistrationFunction.hxx | 2 +- .../DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.h | 2 +- .../include/otbPixelWiseBlockMatchingImageFilter.hxx | 2 +- .../DisparityMap/include/otbSubPixelDisparityImageFilter.h | 2 +- .../DisparityMap/include/otbSubPixelDisparityImageFilter.hxx | 2 +- Modules/Registration/DisparityMap/otb-module.cmake | 2 +- Modules/Registration/DisparityMap/test/CMakeLists.txt | 2 +- .../DisparityMap/test/otbDisparityMapEstimationMethod.cxx | 2 +- .../DisparityMap/test/otbDisparityMapMedianFilter.cxx | 2 +- .../DisparityMap/test/otbDisparityMapTestDriver.cxx | 2 +- .../DisparityMap/test/otbDisparityMapTo3DFilter.cxx | 2 +- .../DisparityMap/test/otbDisparityMapToDEMFilter.cxx | 2 +- .../DisparityMap/test/otbDisparityTranslateFilter.cxx | 2 +- .../DisparityMap/test/otbFineRegistrationImageFilterTest.cxx | 2 +- .../DisparityMap/test/otbMultiDisparityMapTo3DFilter.cxx | 2 +- .../Registration/DisparityMap/test/otbNCCRegistrationFilter.cxx | 2 +- .../DisparityMap/test/otbPixelWiseBlockMatchingImageFilter.cxx | 2 +- .../DisparityMap/test/otbSubPixelDisparityImageFilter.cxx | 2 +- Modules/Registration/Stereo/CMakeLists.txt | 2 +- .../Registration/Stereo/include/otbAdhesionCorrectionFilter.h | 2 +- .../Registration/Stereo/include/otbAdhesionCorrectionFilter.hxx | 2 +- .../Registration/Stereo/include/otbBijectionCoherencyFilter.h | 2 +- .../Registration/Stereo/include/otbBijectionCoherencyFilter.hxx | 2 +- Modules/Registration/Stereo/include/otbLineOfSightOptimizer.h | 2 +- Modules/Registration/Stereo/include/otbLineOfSightOptimizer.hxx | 2 +- Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.h | 2 +- .../Registration/Stereo/include/otbMulti3DMapToDEMFilter.hxx | 2 +- .../Stereo/include/otbStereoSensorModelToElevationMapFilter.h | 2 +- .../Stereo/include/otbStereoSensorModelToElevationMapFilter.hxx | 2 +- .../include/otbStereorectificationDisplacementFieldSource.h | 2 +- .../include/otbStereorectificationDisplacementFieldSource.hxx | 2 +- Modules/Registration/Stereo/otb-module.cmake | 2 +- Modules/Registration/Stereo/test/CMakeLists.txt | 2 +- .../Registration/Stereo/test/otbAdhesionCorrectionFilter.cxx | 2 +- .../Registration/Stereo/test/otbBijectionCoherencyFilter.cxx | 2 +- Modules/Registration/Stereo/test/otbMulti3DMapToDEMFilter.cxx | 2 +- .../Stereo/test/otbStereoSensorModelToElevationMapFilter.cxx | 2 +- Modules/Registration/Stereo/test/otbStereoTestDriver.cxx | 2 +- .../test/otbStereorectificationDisplacementFieldSource.cxx | 2 +- Modules/Remote/CMakeLists.txt | 2 +- Modules/Remote/S1TilingSupportApplications.remote.cmake | 2 +- Modules/Remote/SertitObject.remote.cmake | 2 +- Modules/Remote/diapotb.remote.cmake | 2 +- Modules/Remote/otb-bv.remote.cmake | 2 +- Modules/Remote/otbFFSforGMM.remote.cmake | 2 +- Modules/Remote/otbGRM.remote.cmake | 2 +- Modules/Remote/phenotb.remote.cmake | 2 +- Modules/Remote/temporal-gapfilling.remote.cmake | 2 +- Modules/Segmentation/CCOBIA/CMakeLists.txt | 2 +- .../CCOBIA/include/otbConnectedComponentMuParserFunctor.h | 2 +- .../CCOBIA/include/otbLabelObjectOpeningMuParserFilter.h | 2 +- .../CCOBIA/include/otbLabelObjectOpeningMuParserFilter.hxx | 2 +- ...eamingConnectedComponentSegmentationOBIAToVectorDataFilter.h | 2 +- ...mingConnectedComponentSegmentationOBIAToVectorDataFilter.hxx | 2 +- Modules/Segmentation/CCOBIA/otb-module.cmake | 2 +- Modules/Segmentation/CCOBIA/test/CMakeLists.txt | 2 +- Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx | 2 +- .../CCOBIA/test/otbConnectedComponentMuParserFunctorTest.cxx | 2 +- .../CCOBIA/test/otbLabelObjectOpeningMuParserFilterTest.cxx | 2 +- .../test/otbMeanShiftStreamingConnectedComponentOBIATest.cxx | 2 +- .../CCOBIA/test/otbStreamingConnectedComponentOBIATest.cxx | 2 +- Modules/Segmentation/Conversion/CMakeLists.txt | 2 +- .../Conversion/include/otbLabelImageRegionMergingFilter.h | 2 +- .../Conversion/include/otbLabelImageRegionMergingFilter.hxx | 2 +- .../Conversion/include/otbLabelImageRegionPruningFilter.h | 2 +- .../Conversion/include/otbLabelImageRegionPruningFilter.hxx | 2 +- .../Conversion/include/otbLabelImageSmallRegionMergingFilter.h | 2 +- .../include/otbLabelImageSmallRegionMergingFilter.hxx | 2 +- .../Conversion/include/otbLabelImageToOGRDataSourceFilter.h | 2 +- .../Conversion/include/otbLabelImageToOGRDataSourceFilter.hxx | 2 +- .../Conversion/include/otbLabelImageToVectorDataFilter.h | 2 +- .../Conversion/include/otbLabelImageToVectorDataFilter.hxx | 2 +- .../Conversion/include/otbLabelMapToVectorDataFilter.h | 2 +- .../Conversion/include/otbLabelMapToVectorDataFilter.hxx | 2 +- .../Conversion/include/otbOGRDataSourceToLabelImageFilter.h | 2 +- .../Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx | 2 +- .../Conversion/include/otbPersistentImageToOGRDataFilter.h | 2 +- .../Conversion/include/otbPersistentImageToOGRDataFilter.hxx | 2 +- .../Conversion/include/otbPersistentImageToOGRLayerFilter.h | 2 +- .../Conversion/include/otbPersistentImageToOGRLayerFilter.hxx | 2 +- .../Conversion/include/otbPersistentImageToVectorDataFilter.h | 2 +- .../Conversion/include/otbPersistentImageToVectorDataFilter.hxx | 2 +- .../Conversion/include/otbRasterizeVectorDataFilter.h | 2 +- .../Conversion/include/otbRasterizeVectorDataFilter.hxx | 2 +- .../Conversion/include/otbVectorDataToLabelImageFilter.h | 2 +- .../Conversion/include/otbVectorDataToLabelImageFilter.hxx | 2 +- .../Conversion/include/otbVectorDataToLabelMapFilter.h | 2 +- .../Conversion/include/otbVectorDataToLabelMapFilter.hxx | 2 +- .../include/otbVectorDataToLabelMapWithAttributesFilter.h | 2 +- .../include/otbVectorDataToLabelMapWithAttributesFilter.hxx | 2 +- Modules/Segmentation/Conversion/otb-module.cmake | 2 +- Modules/Segmentation/Conversion/test/CMakeLists.txt | 2 +- .../Segmentation/Conversion/test/otbConversionTestDriver.cxx | 2 +- .../Conversion/test/otbLabelImageRegionMergingFilter.cxx | 2 +- .../Conversion/test/otbLabelImageRegionPruningFilter.cxx | 2 +- .../Conversion/test/otbLabelImageToOGRDataSourceFilter.cxx | 2 +- .../Conversion/test/otbLabelImageToVectorDataFilter.cxx | 2 +- .../Conversion/test/otbLabelMapToVectorDataFilter.cxx | 2 +- .../Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx | 2 +- .../Conversion/test/otbPolygonizationRasterizationTest.cxx | 2 +- .../Conversion/test/otbVectorDataRasterizeFilter.cxx | 2 +- .../Conversion/test/otbVectorDataToLabelImageFilter.cxx | 2 +- .../test/otbVectorDataToLabelImageFilterWithoutReader.cxx | 2 +- .../Conversion/test/otbVectorDataToLabelMapFilter.cxx | 2 +- Modules/Segmentation/Labelling/CMakeLists.txt | 2 +- .../Labelling/include/otbLabelToBoundaryImageFilter.h | 2 +- .../Segmentation/Labelling/include/otbLabeledOutputAccessor.h | 2 +- .../include/otbLabelizeConfidenceConnectedImageFilter.h | 2 +- .../include/otbLabelizeConfidenceConnectedImageFilter.hxx | 2 +- .../include/otbLabelizeConnectedThresholdImageFilter.h | 2 +- .../include/otbLabelizeConnectedThresholdImageFilter.hxx | 2 +- .../Segmentation/Labelling/include/otbLabelizeImageFilterBase.h | 2 +- .../Labelling/include/otbLabelizeImageFilterBase.hxx | 2 +- .../include/otbLabelizeNeighborhoodConnectedImageFilter.h | 2 +- .../include/otbLabelizeNeighborhoodConnectedImageFilter.hxx | 2 +- .../Labelling/include/otbRelabelComponentImageFilter.h | 2 +- .../Labelling/include/otbRelabelComponentImageFilter.hxx | 2 +- Modules/Segmentation/Labelling/otb-module.cmake | 2 +- Modules/Segmentation/Labelling/test/CMakeLists.txt | 2 +- .../Labelling/test/otbLabelToBoundaryImageFilter.cxx | 2 +- .../test/otbLabelizeConfidenceConnectedImageFilter.cxx | 2 +- .../Labelling/test/otbLabelizeConnectedThresholdImageFilter.cxx | 2 +- .../test/otbLabelizeNeighborhoodConnectedImageFilter.cxx | 2 +- Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx | 2 +- Modules/Segmentation/MeanShift/CMakeLists.txt | 2 +- .../include/otbMeanShiftConnectedComponentSegmentationFilter.h | 2 +- .../otbMeanShiftConnectedComponentSegmentationFilter.hxx | 2 +- .../MeanShift/include/otbMeanShiftSegmentationFilter.h | 2 +- .../MeanShift/include/otbMeanShiftSegmentationFilter.hxx | 2 +- Modules/Segmentation/MeanShift/otb-module.cmake | 2 +- Modules/Segmentation/MeanShift/test/CMakeLists.txt | 2 +- .../otbMeanShiftConnectedComponentSegmentationFilterTest.cxx | 2 +- .../MeanShift/test/otbMeanShiftSegmentationFilter.cxx | 2 +- Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx | 2 +- Modules/Segmentation/Metrics/CMakeLists.txt | 2 +- Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.h | 2 +- .../Segmentation/Metrics/include/otbHooverInstanceFilter.hxx | 2 +- Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.h | 2 +- Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.hxx | 2 +- Modules/Segmentation/Metrics/otb-module.cmake | 2 +- Modules/Segmentation/Metrics/test/CMakeLists.txt | 2 +- .../Metrics/test/otbHooverInstanceFilterToAttributeImage.cxx | 2 +- Modules/Segmentation/Metrics/test/otbHooverMatrixFilter.cxx | 2 +- Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx | 2 +- Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt | 2 +- .../include/otbClosingOpeningMorphologicalFilter.h | 2 +- .../include/otbClosingOpeningMorphologicalFilter.hxx | 2 +- .../include/otbConvexOrConcaveClassificationFilter.h | 2 +- .../include/otbGeodesicMorphologyDecompositionImageFilter.h | 2 +- .../include/otbGeodesicMorphologyDecompositionImageFilter.hxx | 2 +- .../otbGeodesicMorphologyIterativeDecompositionImageFilter.h | 2 +- .../otbGeodesicMorphologyIterativeDecompositionImageFilter.hxx | 2 +- .../include/otbGeodesicMorphologyLevelingFilter.h | 2 +- .../MorphologicalProfiles/include/otbImageToProfileFilter.h | 2 +- .../MorphologicalProfiles/include/otbImageToProfileFilter.hxx | 2 +- .../include/otbMorphologicalClosingProfileFilter.h | 2 +- .../include/otbMorphologicalOpeningProfileFilter.h | 2 +- .../include/otbMorphologicalProfilesSegmentationFilter.h | 2 +- .../include/otbMorphologicalProfilesSegmentationFilter.hxx | 2 +- .../include/otbMultiScaleConvexOrConcaveClassificationFilter.h | 2 +- .../include/otbOpeningClosingMorphologicalFilter.h | 2 +- .../include/otbOpeningClosingMorphologicalFilter.hxx | 2 +- .../otbProfileDerivativeToMultiScaleCharacteristicsFilter.h | 2 +- .../otbProfileDerivativeToMultiScaleCharacteristicsFilter.hxx | 2 +- .../include/otbProfileToProfileDerivativeFilter.h | 2 +- .../include/otbProfileToProfileDerivativeFilter.hxx | 2 +- Modules/Segmentation/MorphologicalProfiles/otb-module.cmake | 2 +- Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt | 2 +- .../test/otbClosingOpeningMorphologicalFilter.cxx | 2 +- .../test/otbConvexOrConcaveClassificationFilter.cxx | 2 +- .../test/otbGeodesicMorphologyDecompositionImageFilter.cxx | 2 +- .../otbGeodesicMorphologyIterativeDecompositionImageFilter.cxx | 2 +- .../test/otbGeodesicMorphologyLevelingFilter.cxx | 2 +- .../test/otbMorphologicalClosingProfileFilter.cxx | 2 +- .../test/otbMorphologicalOpeningProfileFilter.cxx | 2 +- .../test/otbMorphologicalProfilesSegmentationFilter.cxx | 2 +- .../test/otbMorphologicalProfilesTestDriver.cxx | 2 +- .../test/otbMultiScaleConvexOrConcaveClassificationFilter.cxx | 2 +- .../test/otbOpeningClosingMorphologicalFilter.cxx | 2 +- .../otbProfileDerivativeToMultiScaleCharacteristicsFilter.cxx | 2 +- .../test/otbProfileToProfileDerivativeFilter.cxx | 2 +- Modules/Segmentation/OGRProcessing/CMakeLists.txt | 2 +- .../OGRProcessing/include/otbOGRLayerStreamStitchingFilter.h | 2 +- .../OGRProcessing/include/otbOGRLayerStreamStitchingFilter.hxx | 2 +- .../include/otbStreamingImageToOGRLayerSegmentationFilter.h | 2 +- .../include/otbStreamingImageToOGRLayerSegmentationFilter.hxx | 2 +- Modules/Segmentation/OGRProcessing/otb-module.cmake | 2 +- Modules/Segmentation/OGRProcessing/test/CMakeLists.txt | 2 +- .../OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx | 2 +- .../OGRProcessing/test/otbOGRProcessingTestDriver.cxx | 2 +- Modules/Segmentation/Watersheds/CMakeLists.txt | 2 +- .../Watersheds/include/otbWatershedSegmentationFilter.h | 2 +- .../Watersheds/include/otbWatershedSegmentationFilter.hxx | 2 +- Modules/Segmentation/Watersheds/otb-module.cmake | 2 +- Modules/Segmentation/Watersheds/test/CMakeLists.txt | 2 +- .../Watersheds/test/otbWatershedSegmentationFilter.cxx | 2 +- .../Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx | 2 +- Modules/ThirdParty/6S/CMakeLists.txt | 2 +- Modules/ThirdParty/6S/otb-module.cmake | 2 +- Modules/ThirdParty/6S/src/CMakeLists.txt | 2 +- Modules/ThirdParty/Boost/CMakeLists.txt | 2 +- Modules/ThirdParty/Boost/otb-module-init.cmake | 2 +- Modules/ThirdParty/Boost/otb-module.cmake | 2 +- Modules/ThirdParty/Boost/src/boost/type_traits/is_contiguous.h | 2 +- Modules/ThirdParty/Boost/src/otbBoostDox.h | 2 +- Modules/ThirdParty/Curl/CMake/otbTestCurlMulti.cxx | 2 +- Modules/ThirdParty/Curl/CMakeLists.txt | 2 +- Modules/ThirdParty/Curl/otb-module-init.cmake | 2 +- Modules/ThirdParty/Curl/otb-module.cmake | 2 +- Modules/ThirdParty/Curl/src/otb_curl.h.in | 2 +- Modules/ThirdParty/Date/CMakeLists.txt | 2 +- Modules/ThirdParty/Date/otb-module.cmake | 2 +- Modules/ThirdParty/GDAL/CMakeLists.txt | 2 +- Modules/ThirdParty/GDAL/gdalCreateCopyTest.cxx | 2 +- Modules/ThirdParty/GDAL/gdalCreateTest.cxx | 2 +- Modules/ThirdParty/GDAL/gdalFormatsListTest.c | 2 +- Modules/ThirdParty/GDAL/gdalFormatsTest.c | 2 +- Modules/ThirdParty/GDAL/gdalOGRTest.cxx | 2 +- Modules/ThirdParty/GDAL/gdalSymbolsTest.cxx | 2 +- Modules/ThirdParty/GDAL/gdalTest.sh.in | 2 +- Modules/ThirdParty/GDAL/gdalVersionTest.cxx | 2 +- Modules/ThirdParty/GDAL/otb-module-init.cmake | 2 +- Modules/ThirdParty/GDAL/otb-module.cmake | 2 +- Modules/ThirdParty/GLFW/CMakeLists.txt | 2 +- Modules/ThirdParty/GLFW/otb-module-init.cmake | 2 +- Modules/ThirdParty/GLFW/otb-module.cmake | 2 +- Modules/ThirdParty/GSL/CMakeLists.txt | 2 +- Modules/ThirdParty/GSL/otb-module-init.cmake | 2 +- Modules/ThirdParty/GSL/otb-module.cmake | 2 +- Modules/ThirdParty/GeoTIFF/CMakeLists.txt | 2 +- Modules/ThirdParty/GeoTIFF/otb-module-init.cmake | 2 +- Modules/ThirdParty/GeoTIFF/otb-module.cmake | 2 +- Modules/ThirdParty/Glew/CMakeLists.txt | 2 +- Modules/ThirdParty/Glew/otb-module-init.cmake | 2 +- Modules/ThirdParty/Glew/otb-module.cmake | 2 +- Modules/ThirdParty/Glut/CMakeLists.txt | 2 +- Modules/ThirdParty/Glut/otb-module-init.cmake | 2 +- Modules/ThirdParty/Glut/otb-module.cmake | 2 +- Modules/ThirdParty/ITK/CMakeLists.txt | 2 +- Modules/ThirdParty/ITK/otb-module-init.cmake | 2 +- Modules/ThirdParty/ITK/otb-module.cmake | 2 +- Modules/ThirdParty/LibSVM/CMakeLists.txt | 2 +- Modules/ThirdParty/LibSVM/otb-module-init.cmake | 2 +- Modules/ThirdParty/LibSVM/otb-module.cmake | 2 +- Modules/ThirdParty/MPI/CMakeLists.txt | 2 +- Modules/ThirdParty/MPI/otb-module-init.cmake | 2 +- Modules/ThirdParty/MPI/otb-module.cmake | 2 +- .../MuParser/CMake/otbTestMuParserHasCxxLogicalOperators.cxx | 2 +- Modules/ThirdParty/MuParser/CMakeLists.txt | 2 +- Modules/ThirdParty/MuParser/otb-module-init.cmake | 2 +- Modules/ThirdParty/MuParser/otb-module.cmake | 2 +- Modules/ThirdParty/MuParser/src/otb_muparser.h.in | 2 +- Modules/ThirdParty/MuParserX/CMakeLists.txt | 2 +- Modules/ThirdParty/MuParserX/otb-module-init.cmake | 2 +- Modules/ThirdParty/MuParserX/otb-module.cmake | 2 +- Modules/ThirdParty/OpenCV/CMakeLists.txt | 2 +- Modules/ThirdParty/OpenCV/otb-module-init.cmake | 2 +- Modules/ThirdParty/OpenCV/otb-module.cmake | 2 +- Modules/ThirdParty/OpenCV/src/otb_opencv_api.h.in | 2 +- Modules/ThirdParty/OpenGL/CMakeLists.txt | 2 +- Modules/ThirdParty/OpenGL/otb-module-init.cmake | 2 +- Modules/ThirdParty/OpenGL/otb-module.cmake | 2 +- Modules/ThirdParty/Qt/CMakeLists.txt | 2 +- Modules/ThirdParty/Qt/otb-module-init.cmake | 2 +- Modules/ThirdParty/Qt/otb-module.cmake | 2 +- Modules/ThirdParty/Qwt/CMakeLists.txt | 2 +- Modules/ThirdParty/Qwt/otb-module-init.cmake | 2 +- Modules/ThirdParty/Qwt/otb-module.cmake | 2 +- Modules/ThirdParty/SPTW/CMakeLists.txt | 2 +- Modules/ThirdParty/SPTW/otb-module.cmake | 2 +- Modules/ThirdParty/SPTW/src/CMakeLists.txt | 2 +- Modules/ThirdParty/Shark/CMakeLists.txt | 2 +- Modules/ThirdParty/Shark/include/otbSharkUtils.h | 2 +- Modules/ThirdParty/Shark/otb-module-init.cmake | 2 +- Modules/ThirdParty/Shark/otb-module.cmake | 2 +- Modules/ThirdParty/Shark/src/otb_shark.h.in | 2 +- Modules/ThirdParty/SiftFast/CMakeLists.txt | 2 +- Modules/ThirdParty/SiftFast/otb-module.cmake | 2 +- Modules/ThirdParty/SiftFast/src/CMakeLists.txt | 2 +- Modules/ThirdParty/SiftFast/src/otb_siftfast.h | 2 +- Modules/ThirdParty/SiftFast/src/otbsiftfast/FindOctave.cmake | 2 +- .../SiftFast/src/otbsiftfast/cmake_uninstall.cmake.in | 2 +- Modules/ThirdParty/TIFF/CMakeLists.txt | 2 +- Modules/ThirdParty/TIFF/otb-module-init.cmake | 2 +- Modules/ThirdParty/TIFF/otb-module.cmake | 2 +- Modules/ThirdParty/TinyXML/CMake/otbTestTinyXMLUseSTL.cxx | 2 +- Modules/ThirdParty/TinyXML/CMakeLists.txt | 2 +- Modules/ThirdParty/TinyXML/otb-module-init.cmake | 2 +- Modules/ThirdParty/TinyXML/otb-module.cmake | 2 +- Modules/ThirdParty/TinyXML/src/otb_tinyxml.h.in | 2 +- Modules/ThirdParty/libkml/CMakeLists.txt | 2 +- Modules/ThirdParty/libkml/otb-module-init.cmake | 2 +- Modules/ThirdParty/libkml/otb-module.cmake | 2 +- Modules/Visualization/Ice/CMakeLists.txt | 2 +- Modules/Visualization/Ice/include/otbGeoInterface.h | 2 +- Modules/Visualization/Ice/include/otbGlActor.h | 2 +- Modules/Visualization/Ice/include/otbGlBufferObject.h | 2 +- Modules/Visualization/Ice/include/otbGlError.h | 2 +- Modules/Visualization/Ice/include/otbGlHandle.h | 2 +- Modules/Visualization/Ice/include/otbGlImageActor.h | 2 +- Modules/Visualization/Ice/include/otbGlMesh.h | 2 +- Modules/Visualization/Ice/include/otbGlROIActor.h | 2 +- Modules/Visualization/Ice/include/otbGlTypeTraits.h | 2 +- Modules/Visualization/Ice/include/otbGlVectorActor.h | 2 +- Modules/Visualization/Ice/include/otbGlVersionChecker.h | 2 +- Modules/Visualization/Ice/include/otbGlVertexArrayObject.h | 2 +- Modules/Visualization/Ice/include/otbGlView.h | 2 +- Modules/Visualization/Ice/include/otbImageSettings.h | 2 +- Modules/Visualization/Ice/include/otbMinimalShader.h | 2 +- Modules/Visualization/Ice/include/otbNonOptGlImageActor.h | 2 +- Modules/Visualization/Ice/include/otbShader.h | 2 +- Modules/Visualization/Ice/include/otbShaderRegistry.h | 2 +- Modules/Visualization/Ice/include/otbStandardShader.h | 2 +- Modules/Visualization/Ice/include/otbViewSettings.h | 2 +- Modules/Visualization/Ice/otb-module.cmake | 2 +- Modules/Visualization/Ice/src/CMakeLists.txt | 2 +- Modules/Visualization/Ice/src/otbGeoInterface.cxx | 2 +- Modules/Visualization/Ice/src/otbGlActor.cxx | 2 +- Modules/Visualization/Ice/src/otbGlImageActor.cxx | 2 +- Modules/Visualization/Ice/src/otbGlMesh.cxx | 2 +- Modules/Visualization/Ice/src/otbGlROIActor.cxx | 2 +- Modules/Visualization/Ice/src/otbGlVectorActor.cxx | 2 +- Modules/Visualization/Ice/src/otbGlVersionChecker.cxx | 2 +- Modules/Visualization/Ice/src/otbGlVertexArrayObject.cxx | 2 +- Modules/Visualization/Ice/src/otbGlView.cxx | 2 +- Modules/Visualization/Ice/src/otbImageSettings.cxx | 2 +- Modules/Visualization/Ice/src/otbMinimalShader.cxx | 2 +- Modules/Visualization/Ice/src/otbNonOptGlImageActor.cxx | 2 +- Modules/Visualization/Ice/src/otbShader.cxx | 2 +- Modules/Visualization/Ice/src/otbShaderRegistry.cxx | 2 +- Modules/Visualization/Ice/src/otbStandardShader.cxx | 2 +- Modules/Visualization/Ice/src/otbViewSettings.cxx | 2 +- Modules/Visualization/IceViewer/CMakeLists.txt | 2 +- Modules/Visualization/IceViewer/include/otbIceViewer.h | 2 +- Modules/Visualization/IceViewer/otb-module.cmake | 2 +- Modules/Visualization/IceViewer/src/CMakeLists.txt | 2 +- Modules/Visualization/IceViewer/src/otbIce.cxx | 2 +- Modules/Visualization/IceViewer/src/otbIceViewer.cxx | 2 +- Modules/Visualization/Mapla/CMakeLists.txt | 2 +- Modules/Visualization/Mapla/include/mvdMaplaApplication.h | 2 +- Modules/Visualization/Mapla/include/mvdMaplaMainWindow.h | 2 +- Modules/Visualization/Mapla/otb-module.cmake | 2 +- Modules/Visualization/Mapla/src/CMakeLists.txt | 2 +- Modules/Visualization/Mapla/src/main.cxx | 2 +- Modules/Visualization/Mapla/src/mvdMaplaApplication.cxx | 2 +- Modules/Visualization/Mapla/src/mvdMaplaMainWindow.cxx | 2 +- Modules/Visualization/Monteverdi/CMakeLists.txt | 2 +- Modules/Visualization/Monteverdi/include/mvdApplication.h | 2 +- Modules/Visualization/Monteverdi/include/mvdMainWindow.h | 2 +- Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h | 2 +- Modules/Visualization/Monteverdi/otb-module.cmake | 2 +- Modules/Visualization/Monteverdi/src/CMakeLists.txt | 2 +- Modules/Visualization/Monteverdi/src/main.cxx | 2 +- Modules/Visualization/Monteverdi/src/mvdApplication.cxx | 2 +- Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx | 2 +- Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx | 2 +- Modules/Visualization/Monteverdi/test/CMakeLists.txt | 2 +- .../Monteverdi/test/mvdMonteverdiApplicationTest.cxx | 2 +- .../Visualization/Monteverdi/test/mvdMonteverdiTestDriver.cxx | 2 +- Modules/Visualization/MonteverdiCore/CMakeLists.txt | 2 +- .../MonteverdiCore/include/mvdAbstractImageModel.h | 2 +- .../MonteverdiCore/include/mvdAbstractLayerModel.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h | 2 +- .../Visualization/MonteverdiCore/include/mvdAbstractWorker.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h | 2 +- .../MonteverdiCore/include/mvdApplicationsBrowser.h | 2 +- .../Visualization/MonteverdiCore/include/mvdBackgroundTask.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdCore.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdDataStream.h | 2 +- .../Visualization/MonteverdiCore/include/mvdFilenameInterface.h | 2 +- .../Visualization/MonteverdiCore/include/mvdHistogramModel.h | 2 +- .../MonteverdiCore/include/mvdI18nCoreApplication.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h | 2 +- .../MonteverdiCore/include/mvdImagePlacenameLoader.h | 2 +- .../Visualization/MonteverdiCore/include/mvdImageProperties.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdImageSettings.h | 2 +- .../MonteverdiCore/include/mvdImageSettingsInterface.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdMath.h | 2 +- .../MonteverdiCore/include/mvdModifiableInterface.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdMyClass.h | 2 +- .../Visualization/MonteverdiCore/include/mvdOverviewBuilder.h | 2 +- .../MonteverdiCore/include/mvdProcessObjectObserver.h | 2 +- .../Visualization/MonteverdiCore/include/mvdProgressInterface.h | 2 +- .../Visualization/MonteverdiCore/include/mvdQuicklookModel.h | 2 +- .../MonteverdiCore/include/mvdSerializableInterface.h | 2 +- .../Visualization/MonteverdiCore/include/mvdStackedLayerModel.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdSystemError.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdTextStream.h | 2 +- Modules/Visualization/MonteverdiCore/include/mvdTypes.h | 2 +- .../Visualization/MonteverdiCore/include/mvdVectorImageModel.h | 2 +- .../MonteverdiCore/include/mvdVectorImageSettings.h | 2 +- .../Visualization/MonteverdiCore/include/mvdVisibleInterface.h | 2 +- Modules/Visualization/MonteverdiCore/otb-module.cmake | 2 +- Modules/Visualization/MonteverdiCore/src/CMakeLists.txt | 2 +- .../Visualization/MonteverdiCore/src/ConfigureMonteverdi.h.in | 2 +- .../Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdAbstractLayerModel.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdAbstractModel.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdApplicationsBrowser.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdBackgroundTask.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdCore.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdDataStream.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdFilenameInterface.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdHistogramModel.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdI18nCoreApplication.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdImageImporter.cxx | 2 +- .../MonteverdiCore/src/mvdImagePlacenameLoader.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdImageProperties.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdImageSettings.cxx | 2 +- .../MonteverdiCore/src/mvdImageSettingsInterface.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdModifiableInterface.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdMyClass.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdOverviewBuilder.cxx | 2 +- .../MonteverdiCore/src/mvdProcessObjectObserver.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdProgressInterface.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdQuicklookModel.cxx | 2 +- .../MonteverdiCore/src/mvdSerializableInterface.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdStackedLayerModel.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdTextStream.cxx | 2 +- Modules/Visualization/MonteverdiCore/src/mvdTypes.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdVectorImageModel.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdVectorImageSettings.cxx | 2 +- .../Visualization/MonteverdiCore/src/mvdVisibleInterface.cxx | 2 +- Modules/Visualization/MonteverdiGui/CMakeLists.txt | 2 +- Modules/Visualization/MonteverdiGui/include/mvdAboutDialog.h | 2 +- .../MonteverdiGui/include/mvdAbstractDragAndDropEventFilter.h | 2 +- .../MonteverdiGui/include/mvdAbstractImageViewManipulator.h | 2 +- .../MonteverdiGui/include/mvdAbstractImageViewRenderer.h | 2 +- .../MonteverdiGui/include/mvdAbstractModelController.h | 2 +- .../MonteverdiGui/include/mvdApplicationLauncher.h | 2 +- .../MonteverdiGui/include/mvdApplicationsToolBox.h | 2 +- .../MonteverdiGui/include/mvdApplicationsToolBoxController.h | 2 +- .../MonteverdiGui/include/mvdColorBandDynamicsWidget.h | 2 +- .../MonteverdiGui/include/mvdColorDynamicsController.h | 2 +- .../MonteverdiGui/include/mvdColorDynamicsWidget.h | 2 +- .../MonteverdiGui/include/mvdColorSetupController.h | 2 +- .../Visualization/MonteverdiGui/include/mvdColorSetupWidget.h | 2 +- .../Visualization/MonteverdiGui/include/mvdDoubleValidator.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdDropLineEdit.h | 2 +- .../MonteverdiGui/include/mvdFilenameDragAndDropEventFilter.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdGui.h | 2 +- .../MonteverdiGui/include/mvdHistogramController.h | 2 +- .../MonteverdiGui/include/mvdHistogramPlotPicker.h | 2 +- .../Visualization/MonteverdiGui/include/mvdHistogramWidget.h | 2 +- .../Visualization/MonteverdiGui/include/mvdI18nApplication.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdI18nMainWindow.h | 2 +- .../MonteverdiGui/include/mvdImageViewManipulator.h | 2 +- .../Visualization/MonteverdiGui/include/mvdImageViewRenderer.h | 2 +- .../Visualization/MonteverdiGui/include/mvdImageViewWidget.h | 2 +- .../Visualization/MonteverdiGui/include/mvdImportImagesDialog.h | 2 +- .../MonteverdiGui/include/mvdImportSubDatasetDialog.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdKeymapDialog.h | 2 +- .../MonteverdiGui/include/mvdLayerStackController.h | 2 +- .../MonteverdiGui/include/mvdLayerStackItemModel.h | 2 +- .../Visualization/MonteverdiGui/include/mvdLayerStackWidget.h | 2 +- .../MonteverdiGui/include/mvdMainWindowTitleLoader.h | 2 +- .../MonteverdiGui/include/mvdMultiResolutionPyramidWidget.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdMyWidget.h | 2 +- .../MonteverdiGui/include/mvdOTBApplicationsModel.h | 2 +- .../MonteverdiGui/include/mvdPixelDescriptionWidget.h | 2 +- .../MonteverdiGui/include/mvdProjectionBarWidget.h | 2 +- .../MonteverdiGui/include/mvdQtWidgetParameterInitializers.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdQtWidgetView.h | 2 +- .../MonteverdiGui/include/mvdQuicklookViewManipulator.h | 2 +- .../MonteverdiGui/include/mvdQuicklookViewRenderer.h | 2 +- .../MonteverdiGui/include/mvdSearchableTreeWidget.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdShaderWidget.h | 2 +- .../Visualization/MonteverdiGui/include/mvdStatusBarWidget.h | 2 +- .../Visualization/MonteverdiGui/include/mvdTaskProgressDialog.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdTreeWidget.h | 2 +- Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItem.h | 2 +- .../include/mvdTreeWidgetItemDragAndDropEventFilter.h | 2 +- Modules/Visualization/MonteverdiGui/otb-module.cmake | 2 +- Modules/Visualization/MonteverdiGui/src/CMakeLists.txt | 2 +- Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.ui | 2 +- .../MonteverdiGui/src/mvdAbstractDragAndDropEventFilter.cxx | 2 +- .../MonteverdiGui/src/mvdAbstractModelController.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdApplicationLauncher.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdApplicationsToolBox.cxx | 2 +- .../MonteverdiGui/src/mvdApplicationsToolBoxController.cxx | 2 +- .../MonteverdiGui/src/mvdColorBandDynamicsWidget.cxx | 2 +- .../MonteverdiGui/src/mvdColorDynamicsController.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdColorDynamicsWidget.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdColorSetupController.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdColorSetupWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdDoubleValidator.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdDropLineEdit.cxx | 2 +- .../MonteverdiGui/src/mvdFilenameDragAndDropEventFilter.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdGui.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdHistogramController.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdHistogramPlotPicker.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdHistogramWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdI18nApplication.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdI18nMainWindow.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdImageViewManipulator.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdImageViewRenderer.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdImageViewWidget.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdImportImagesDialog.cxx | 2 +- .../MonteverdiGui/src/mvdImportSubDatasetDialog.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdKeymapDialog.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdLayerStackController.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdLayerStackItemModel.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdLayerStackWidget.cxx | 2 +- .../MonteverdiGui/src/mvdMainWindowTitleLoader.cxx | 2 +- .../MonteverdiGui/src/mvdMultiResolutionPyramidWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdMyWidget.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdOTBApplicationsModel.cxx | 2 +- .../MonteverdiGui/src/mvdPixelDescriptionWidget.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdProjectionBarWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdQtWidgetView.cxx | 2 +- .../MonteverdiGui/src/mvdQuicklookViewManipulator.cxx | 2 +- .../MonteverdiGui/src/mvdQuicklookViewRenderer.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdSearchableTreeWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdShaderWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdStatusBarWidget.cxx | 2 +- .../Visualization/MonteverdiGui/src/mvdTaskProgressDialog.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdTreeWidget.cxx | 2 +- Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItem.cxx | 2 +- .../src/mvdTreeWidgetItemDragAndDropEventFilter.cxx | 2 +- Modules/Visualization/MonteverdiGui/test/CMakeLists.txt | 2 +- .../MonteverdiGui/test/mvdApplicationsBrowserTest.cxx | 2 +- .../MonteverdiGui/test/mvdApplicationsToolBoxTest.cxx | 2 +- .../MonteverdiGui/test/mvdFillToolBoxWidgetTreeTest.cxx | 2 +- .../MonteverdiGui/test/mvdMonteverdiGuiTestDriver.cxx | 2 +- Modules/Wrappers/ApplicationEngine/CMakeLists.txt | 2 +- .../ApplicationEngine/include/otbWrapperAbstractParameterList.h | 2 +- .../include/otbWrapperAddProcessToWatchEvent.h | 2 +- .../Wrappers/ApplicationEngine/include/otbWrapperApplication.h | 2 +- .../ApplicationEngine/include/otbWrapperApplication.hxx | 2 +- .../ApplicationEngine/include/otbWrapperApplicationFactory.h | 2 +- .../include/otbWrapperApplicationFactoryBase.h | 2 +- .../ApplicationEngine/include/otbWrapperApplicationRegistry.h | 2 +- .../ApplicationEngine/include/otbWrapperBandParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperBoolParameter.h | 2 +- .../Wrappers/ApplicationEngine/include/otbWrapperCastImage.h | 2 +- .../ApplicationEngine/include/otbWrapperChoiceParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperCompositeApplication.h | 2 +- .../ApplicationEngine/include/otbWrapperDirectoryParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperDocExampleStructure.h | 2 +- .../include/otbWrapperElevationParametersHandler.h | 2 +- .../ApplicationEngine/include/otbWrapperFieldParameter.h | 2 +- .../include/otbWrapperInputFilenameListParameter.h | 2 +- .../include/otbWrapperInputFilenameParameter.h | 2 +- .../include/otbWrapperInputImageListParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperInputImageParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperInputImageParameter.hxx | 2 +- .../include/otbWrapperInputVectorDataListParameter.h | 2 +- .../include/otbWrapperInputVectorDataParameter.h | 2 +- Modules/Wrappers/ApplicationEngine/include/otbWrapperInputXML.h | 2 +- .../ApplicationEngine/include/otbWrapperListViewParameter.h | 2 +- Modules/Wrappers/ApplicationEngine/include/otbWrapperMacros.h | 2 +- .../include/otbWrapperMapProjectionParametersHandler.h | 2 +- .../ApplicationEngine/include/otbWrapperMetaDataHelper.h | 2 +- .../ApplicationEngine/include/otbWrapperNumericalParameter.h | 2 +- .../include/otbWrapperOutputFilenameParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperOutputImageParameter.h | 2 +- .../include/otbWrapperOutputVectorDataParameter.h | 2 +- .../Wrappers/ApplicationEngine/include/otbWrapperOutputXML.h | 2 +- .../Wrappers/ApplicationEngine/include/otbWrapperParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperParameterGroup.h | 2 +- .../Wrappers/ApplicationEngine/include/otbWrapperParameterKey.h | 2 +- .../ApplicationEngine/include/otbWrapperParameterList.h | 2 +- .../ApplicationEngine/include/otbWrapperParameterList.hxx | 2 +- .../ApplicationEngine/include/otbWrapperProxyParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperStringListInterface.h | 2 +- .../ApplicationEngine/include/otbWrapperStringListParameter.h | 2 +- .../ApplicationEngine/include/otbWrapperStringParameter.h | 2 +- Modules/Wrappers/ApplicationEngine/include/otbWrapperTags.h | 2 +- Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h | 2 +- Modules/Wrappers/ApplicationEngine/otb-module.cmake | 2 +- Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt | 2 +- .../ApplicationEngine/src/otbWrapperAbstractParameterList.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx | 2 +- .../ApplicationEngine/src/otbWrapperApplicationFactoryBase.cxx | 2 +- .../ApplicationEngine/src/otbWrapperApplicationRegistry.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperBoolParameter.cxx | 2 +- Modules/Wrappers/ApplicationEngine/src/otbWrapperCastImage.cxx | 2 +- .../ApplicationEngine/src/otbWrapperChoiceParameter.cxx | 2 +- .../ApplicationEngine/src/otbWrapperCompositeApplication.cxx | 2 +- .../ApplicationEngine/src/otbWrapperDocExampleStructure.cxx | 2 +- .../src/otbWrapperElevationParametersHandler.cxx | 2 +- .../src/otbWrapperInputFilenameListParameter.cxx | 2 +- .../ApplicationEngine/src/otbWrapperInputImageListParameter.cxx | 2 +- .../src/otbWrapperInputImageParameterCDouble.cxx | 2 +- .../src/otbWrapperInputImageParameterCFloat.cxx | 2 +- .../src/otbWrapperInputImageParameterCInt16.cxx | 2 +- .../src/otbWrapperInputImageParameterCInt32.cxx | 2 +- .../src/otbWrapperInputImageParameterDouble.cxx | 2 +- .../src/otbWrapperInputImageParameterFloat.cxx | 2 +- .../src/otbWrapperInputImageParameterInt16.cxx | 2 +- .../src/otbWrapperInputImageParameterInt32.cxx | 2 +- .../ApplicationEngine/src/otbWrapperInputImageParameterMacros.h | 2 +- .../src/otbWrapperInputImageParameterUInt16.cxx | 2 +- .../src/otbWrapperInputImageParameterUInt32.cxx | 2 +- .../src/otbWrapperInputImageParameterUInt8.cxx | 2 +- .../src/otbWrapperInputVectorDataListParameter.cxx | 2 +- .../src/otbWrapperInputVectorDataParameter.cxx | 2 +- Modules/Wrappers/ApplicationEngine/src/otbWrapperInputXML.cxx | 2 +- .../ApplicationEngine/src/otbWrapperListViewParameter.cxx | 2 +- .../src/otbWrapperMapProjectionParametersHandler.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperMetaDataHelper.cxx | 2 +- .../src/otbWrapperOutputVectorDataParameter.cxx | 2 +- Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputXML.cxx | 2 +- Modules/Wrappers/ApplicationEngine/src/otbWrapperParameter.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperParameterGroup.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperParameterKey.cxx | 2 +- .../Wrappers/ApplicationEngine/src/otbWrapperParameterList.cxx | 2 +- .../ApplicationEngine/src/otbWrapperStringListInterface.cxx | 2 +- .../ApplicationEngine/src/otbWrapperStringListParameter.cxx | 2 +- Modules/Wrappers/ApplicationEngine/src/otbWrapperTypes.cxx | 2 +- .../test/0000436-WrapperInputImage_GetImage.cxx | 2 +- Modules/Wrappers/ApplicationEngine/test/CMakeLists.txt | 2 +- .../ApplicationEngine/test/otbApplicationEngineTestDriver.cxx | 2 +- .../ApplicationEngine/test/otbApplicationMemoryConnectTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperApplicationDocTests.cxx | 2 +- .../test/otbWrapperApplicationRegistryTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperChoiceParameterTest.cxx | 2 +- .../test/otbWrapperDocExampleStructureTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperImageInterface.cxx | 2 +- .../test/otbWrapperInputImageListParameterTest.cxx | 2 +- .../test/otbWrapperInputImageParameterTest.cxx | 2 +- .../test/otbWrapperInputVectorDataListParameterTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperNumericalParameterTest.cxx | 2 +- .../test/otbWrapperOutputImageParameterTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperParameterKeyTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperParameterListTest.cxx | 2 +- .../test/otbWrapperStringListParameterTest.cxx | 2 +- .../ApplicationEngine/test/otbWrapperStringParameterTest.cxx | 2 +- Modules/Wrappers/CommandLine/CMakeLists.txt | 2 +- .../CommandLine/include/otbWrapperCommandLineLauncher.h | 2 +- .../Wrappers/CommandLine/include/otbWrapperCommandLineParser.h | 2 +- Modules/Wrappers/CommandLine/otb-module.cmake | 2 +- Modules/Wrappers/CommandLine/src/CMakeLists.txt | 2 +- .../CommandLine/src/otbApplicationLauncherCommandLine.cxx | 2 +- .../Wrappers/CommandLine/src/otbWrapperCommandLineLauncher.cxx | 2 +- .../Wrappers/CommandLine/src/otbWrapperCommandLineParser.cxx | 2 +- Modules/Wrappers/CommandLine/test/CMakeLists.txt | 2 +- Modules/Wrappers/CommandLine/test/otbCommandLineTestDriver.cxx | 2 +- .../CommandLine/test/otbWrapperCommandLineLauncherTests.cxx | 2 +- .../CommandLine/test/otbWrapperCommandLineParserTests.cxx | 2 +- Modules/Wrappers/QGIS/CMakeLists.txt | 2 +- Modules/Wrappers/QGIS/otb-module.cmake | 2 +- Modules/Wrappers/QGIS/src/CMakeLists.txt | 2 +- Modules/Wrappers/QGIS/src/otbQgisDescriptor.cxx | 2 +- Modules/Wrappers/QtWidget/CMakeLists.txt | 2 +- Modules/Wrappers/QtWidget/include/itkQtProgressBar.h | 2 +- Modules/Wrappers/QtWidget/include/otbQtApplication.h | 2 +- Modules/Wrappers/QtWidget/include/otbQtFileSelectionWidget.h | 2 +- Modules/Wrappers/QtWidget/include/otbQtLogOutput.h | 2 +- Modules/Wrappers/QtWidget/include/otbQtStringSelectionWidget.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetBoolParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetChoiceParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetDirectoryParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetFloatParameter.h | 2 +- .../include/otbWrapperQtWidgetInputFilenameListParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetInputFilenameParameter.h | 2 +- .../include/otbWrapperQtWidgetInputImageListParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetInputImageParameter.h | 2 +- .../include/otbWrapperQtWidgetInputVectorDataListParameter.h | 2 +- .../include/otbWrapperQtWidgetInputVectorDataParameter.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetIntParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetListEditItemModel.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetListEditWidget.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetListViewParameter.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetMainWindow.h | 2 +- Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetModel.h | 2 +- .../include/otbWrapperQtWidgetOutputFilenameParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetOutputImageParameter.h | 2 +- .../include/otbWrapperQtWidgetOutputVectorDataParameter.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetParameterBase.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetParameterFactory.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetParameterGroup.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetParameterLabel.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetParameterList.h | 2 +- .../Wrappers/QtWidget/include/otbWrapperQtWidgetRAMParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetSimpleProgressReport.h | 2 +- Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSpinBoxes.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetStringListParameter.h | 2 +- .../QtWidget/include/otbWrapperQtWidgetStringParameter.h | 2 +- Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetView.h | 2 +- Modules/Wrappers/QtWidget/otb-module.cmake | 2 +- Modules/Wrappers/QtWidget/src/CMakeLists.txt | 2 +- Modules/Wrappers/QtWidget/src/itkQtProgressBar.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbApplicationLauncherQt.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbQtApplication.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbQtFileSelectionWidget.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbQtLogOutput.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbQtStringSelectionWidget.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetBoolParameter.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetChoiceParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetDirectoryParameter.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetFloatParameter.cxx | 2 +- .../src/otbWrapperQtWidgetInputFilenameListParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetInputFilenameParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetInputImageListParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetInputImageParameter.cxx | 2 +- .../src/otbWrapperQtWidgetInputVectorDataListParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetInputVectorDataParameter.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetIntParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetListEditItemModel.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetListEditWidget.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetListViewParameter.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetMainWindow.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetOutputFilenameParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetOutputImageParameter.cxx | 2 +- .../src/otbWrapperQtWidgetOutputVectorDataParameter.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetParameterBase.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetParameterFactory.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetParameterGroup.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetParameterLabel.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetParameterList.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetRAMParameter.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetSimpleProgressReport.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSpinBoxes.cxx | 2 +- .../QtWidget/src/otbWrapperQtWidgetStringListParameter.cxx | 2 +- .../Wrappers/QtWidget/src/otbWrapperQtWidgetStringParameter.cxx | 2 +- Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetView.cxx | 2 +- Modules/Wrappers/QtWidget/test/CMakeLists.txt | 2 +- Modules/Wrappers/QtWidget/test/otbQtWidgetTestDriver.cxx | 2 +- .../QtWidget/test/otbWrapperQtWidgetParameterFactory.cxx | 2 +- Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetShowWidget.cxx | 2 +- Modules/Wrappers/SWIG/CMakeLists.txt | 2 +- Modules/Wrappers/SWIG/otb-module.cmake | 2 +- Modules/Wrappers/SWIG/src/PyCommand.i | 2 +- Modules/Wrappers/SWIG/src/Python.i | 2 +- Modules/Wrappers/SWIG/src/itkBase.i | 2 +- Modules/Wrappers/SWIG/src/itkBase.includes | 2 +- Modules/Wrappers/SWIG/src/itkMacro.i | 2 +- Modules/Wrappers/SWIG/src/otbPythonLogOutput.i | 2 +- Modules/Wrappers/SWIG/src/python/itkPyCommand.cxx | 2 +- Modules/Wrappers/SWIG/src/python/itkPyCommand.h | 2 +- Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx | 2 +- Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h | 2 +- Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.cxx | 2 +- Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.h | 2 +- Modules/Wrappers/SWIG/src/python/otbSwigPrintCallback.h | 2 +- Modules/Wrappers/SWIG/test/CMakeLists.txt | 2 +- Modules/Wrappers/SWIG/test/python/Bug1498.py | 2 +- Modules/Wrappers/SWIG/test/python/Bug1899.py | 2 +- Modules/Wrappers/SWIG/test/python/Bug736.py | 2 +- Modules/Wrappers/SWIG/test/python/Bug804.py | 2 +- Modules/Wrappers/SWIG/test/python/Bug823.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonConnectApplications.py | 2 +- .../Wrappers/SWIG/test/python/PythonHyperspectralUnmixing1.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonImageInterface.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonInXMLTest.py | 2 +- .../test/python/PythonNewStyleParametersInstantiateAllTest.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonNoUpdateParameter.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonOutXMLTest.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonParametersDict.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonRescaleTest.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonSmoothingTest.py | 2 +- Modules/Wrappers/SWIG/test/python/PythonTestDriver.py | 2 +- Packaging/CMakeLists.txt | 2 +- Packaging/CTestConfig.cmake | 2 +- Packaging/External_patchelf.cmake | 2 +- Packaging/Files/build_examples.cmake | 2 +- Packaging/Files/linux_pkgsetup.in | 2 +- Packaging/Files/macx_pkgsetup.in | 2 +- Packaging/Files/mapla.bat | 2 +- Packaging/Files/mapla.sh | 2 +- Packaging/Files/monteverdi.bat | 2 +- Packaging/Files/monteverdi.sh | 2 +- Packaging/Files/otb_loader.cxx | 2 +- Packaging/Files/otbenv.bash | 2 +- Packaging/Files/otbenv.bat | 2 +- Packaging/Files/otbenv.profile | 2 +- Packaging/Files/selftester.bat | 2 +- Packaging/Files/selftester.sh | 2 +- Packaging/Files/setup_python.sh | 2 +- Packaging/Files/start_devenv.bat | 2 +- Packaging/Files/uninstall_otb.bat | 2 +- Packaging/Files/uninstall_otb.sh | 2 +- Packaging/PackageGlobals.cmake | 2 +- Packaging/check_cmake_variables.cmake | 2 +- Packaging/cleanup_package.cmake | 2 +- Packaging/clear_cmakecache_variables.cmake | 2 +- Packaging/configure_loader.cmake | 2 +- Packaging/create_package.cmake | 2 +- Packaging/detect_using_file_command.cmake | 2 +- Packaging/get_variables_ending_with.cmake | 2 +- Packaging/install_cmake_files.cmake | 2 +- Packaging/install_importlibs.cmake | 2 +- Packaging/install_include_dirs.cmake | 2 +- Packaging/install_otbapp_wrapper_scripts.cmake | 2 +- Packaging/install_python_bindings.cmake | 2 +- Packaging/install_qtdev_files.cmake | 2 +- Packaging/install_rule.cmake | 2 +- Packaging/install_share_dirs.cmake | 2 +- Packaging/install_vstudio_files.cmake | 2 +- Packaging/install_without_message.cmake | 2 +- Packaging/installer_files.cmake | 2 +- Packaging/isfile_symlink.cmake | 2 +- Packaging/patch_cmake_files.cmake | 2 +- Packaging/post_install.cmake | 2 +- Packaging/prepare_file_list.cmake | 2 +- Packaging/prepare_search_dirs.cmake | 2 +- Packaging/process_file_recurse.cmake | 2 +- Packaging/search_library.cmake | 2 +- Packaging/setif_value_in_list.cmake | 2 +- Packaging/testing.cmake | 2 +- SuperBuild/CMake/CTestCustom.cmake.in | 2 +- SuperBuild/CMake/External_boost.cmake | 2 +- SuperBuild/CMake/External_curl.cmake | 2 +- SuperBuild/CMake/External_expat.cmake | 2 +- SuperBuild/CMake/External_fftw.cmake | 2 +- SuperBuild/CMake/External_font.cmake | 2 +- SuperBuild/CMake/External_freetype.cmake | 2 +- SuperBuild/CMake/External_gdal.cmake | 2 +- SuperBuild/CMake/External_geos.cmake | 2 +- SuperBuild/CMake/External_geotiff.cmake | 2 +- SuperBuild/CMake/External_glew.cmake | 2 +- SuperBuild/CMake/External_glfw.cmake | 2 +- SuperBuild/CMake/External_glut.cmake | 2 +- SuperBuild/CMake/External_gsl.cmake | 2 +- SuperBuild/CMake/External_hdf4.cmake | 2 +- SuperBuild/CMake/External_hdf5.cmake | 2 +- SuperBuild/CMake/External_itk.cmake | 2 +- SuperBuild/CMake/External_jpeg.cmake | 2 +- SuperBuild/CMake/External_libkml.cmake | 2 +- SuperBuild/CMake/External_libsvm.cmake | 2 +- SuperBuild/CMake/External_muparser.cmake | 2 +- SuperBuild/CMake/External_muparserx.cmake | 2 +- SuperBuild/CMake/External_netcdf.cmake | 2 +- SuperBuild/CMake/External_opencv.cmake | 2 +- SuperBuild/CMake/External_openjpeg.cmake | 2 +- SuperBuild/CMake/External_openssl.cmake | 2 +- SuperBuild/CMake/External_otb.cmake | 2 +- SuperBuild/CMake/External_pcre.cmake | 2 +- SuperBuild/CMake/External_png.cmake | 2 +- SuperBuild/CMake/External_proj.cmake | 2 +- SuperBuild/CMake/External_qt5.cmake | 2 +- SuperBuild/CMake/External_qwt.cmake | 2 +- SuperBuild/CMake/External_shark.cmake | 2 +- SuperBuild/CMake/External_sqlite.cmake | 2 +- SuperBuild/CMake/External_swig.cmake | 2 +- SuperBuild/CMake/External_tiff.cmake | 2 +- SuperBuild/CMake/External_tinyxml.cmake | 2 +- SuperBuild/CMake/External_zlib.cmake | 2 +- SuperBuild/CMake/SuperBuild_Macro.cmake | 2 +- SuperBuild/CMake/patch.cmake | 2 +- SuperBuild/CMakeLists.txt | 2 +- SuperBuild/CTestConfig.cmake | 2 +- SuperBuild/patches/GLUT/CMakeLists.txt | 2 +- SuperBuild/patches/LIBKML/CMakeLists.txt | 2 +- SuperBuild/patches/LIBSVM/CMakeLists.txt | 2 +- SuperBuild/patches/SQLITE/CMakeLists.txt | 2 +- SuperBuild/patches/TINYXML/CMakeLists.txt | 2 +- Utilities/Completion/CMakeLists.txt | 2 +- Utilities/Completion/completionGenerator.cxx | 2 +- Utilities/Doxygen/CMakeLists.txt | 2 +- Utilities/Doxygen/GenerateExamplesDox.cmake | 2 +- Utilities/Doxygen/fix_php7.pl | 2 +- Utilities/Doxygen/mcdoc.py | 2 +- Utilities/Doxygen/otbgroup.pl | 2 +- Utilities/InstallTest/CMakeLists.txt | 2 +- Utilities/InstallTest/InstallTest.cmake | 2 +- Utilities/Maintenance/TravisBuild.cmake | 2 +- Utilities/Maintenance/TravisBuild.sh | 2 +- i18n/CMakeLists.txt | 2 +- 3725 files changed, 3725 insertions(+), 3725 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4b591a6629..7dfff617f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/.travis.yml b/.travis.yml index 1f54ad2cc3..e319b17784 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/SuperbuildDownloadList.sh b/CI/SuperbuildDownloadList.sh index 1dd69fe598..b1b9d933b6 100755 --- a/CI/SuperbuildDownloadList.sh +++ b/CI/SuperbuildDownloadList.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/cdash_handler.py b/CI/cdash_handler.py index 8f6684d495..a4e87f2306 100644 --- a/CI/cdash_handler.py +++ b/CI/cdash_handler.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/check_twin_pipelines.py b/CI/check_twin_pipelines.py index d29f5b86c5..8e0195d98f 100644 --- a/CI/check_twin_pipelines.py +++ b/CI/check_twin_pipelines.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/conda_build.sh b/CI/conda_build.sh index ec25887b1c..f1e8a0c569 100755 --- a/CI/conda_build.sh +++ b/CI/conda_build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/conda_deploy.sh b/CI/conda_deploy.sh index 9770e9fafc..cb163c9429 100755 --- a/CI/conda_deploy.sh +++ b/CI/conda_deploy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/configure_options.cmake b/CI/configure_options.cmake index 0ce8568179..658b587472 100644 --- a/CI/configure_options.cmake +++ b/CI/configure_options.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/contributors_check.sh b/CI/contributors_check.sh index f6be27ab5b..ef9ef4e315 100755 --- a/CI/contributors_check.sh +++ b/CI/contributors_check.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/debian-testing-gcc.cmake b/CI/debian-testing-gcc.cmake index f1d6923367..ea92b9069b 100644 --- a/CI/debian-testing-gcc.cmake +++ b/CI/debian-testing-gcc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/deploy-archive.sh b/CI/deploy-archive.sh index 11a16890e5..5491b7c81d 100755 --- a/CI/deploy-archive.sh +++ b/CI/deploy-archive.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/deploy-prod.sh b/CI/deploy-prod.sh index da194d7a09..124b558cc3 100644 --- a/CI/deploy-prod.sh +++ b/CI/deploy-prod.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/deploy.sh b/CI/deploy.sh index 9232c69b7c..21aee4c1ce 100755 --- a/CI/deploy.sh +++ b/CI/deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/dev_env.bat b/CI/dev_env.bat index d4656791af..8da5b691e0 100644 --- a/CI/dev_env.bat +++ b/CI/dev_env.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/CI/headers_check.py b/CI/headers_check.py index aed2d5b86c..5214388eaf 100755 --- a/CI/headers_check.py +++ b/CI/headers_check.py @@ -2,7 +2,7 @@ # # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/macos-10.14.6-clang.cmake b/CI/macos-10.14.6-clang.cmake index 82c926244f..4c2b66b0a3 100644 --- a/CI/macos-10.14.6-clang.cmake +++ b/CI/macos-10.14.6-clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/macros.cmake b/CI/macros.cmake index 8c49713351..4c6ee58e19 100644 --- a/CI/macros.cmake +++ b/CI/macros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/main_ci.cmake b/CI/main_ci.cmake index 5e64e5821c..7192fc15b0 100644 --- a/CI/main_ci.cmake +++ b/CI/main_ci.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/main_packages.cmake b/CI/main_packages.cmake index 1540999dd8..cbab8de47a 100644 --- a/CI/main_packages.cmake +++ b/CI/main_packages.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/main_qa.cmake b/CI/main_qa.cmake index 8faf27791d..4a32362836 100644 --- a/CI/main_qa.cmake +++ b/CI/main_qa.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/main_superbuild.cmake b/CI/main_superbuild.cmake index 720d1e9cfa..086408fcb5 100644 --- a/CI/main_superbuild.cmake +++ b/CI/main_superbuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/otb_coverage.sh b/CI/otb_coverage.sh index bb8b8013f1..1a83e5b61e 100755 --- a/CI/otb_coverage.sh +++ b/CI/otb_coverage.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/prepare_superbuild.cmake b/CI/prepare_superbuild.cmake index 79a217d038..f16dd145d2 100644 --- a/CI/prepare_superbuild.cmake +++ b/CI/prepare_superbuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/sb_configure_options.cmake b/CI/sb_configure_options.cmake index d280aca5d2..d310bf1baa 100644 --- a/CI/sb_configure_options.cmake +++ b/CI/sb_configure_options.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/test/cdash_test.py b/CI/test/cdash_test.py index ba05bcb31a..4efa599f39 100644 --- a/CI/test/cdash_test.py +++ b/CI/test/cdash_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-fast.cmake b/CI/ubuntu-18.04-fast.cmake index e2c10adaea..bcbb65f70b 100644 --- a/CI/ubuntu-18.04-fast.cmake +++ b/CI/ubuntu-18.04-fast.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-gcc.cmake b/CI/ubuntu-18.04-gcc.cmake index 05955b8d22..4a634df739 100644 --- a/CI/ubuntu-18.04-gcc.cmake +++ b/CI/ubuntu-18.04-gcc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-llvm-nodoc.cmake b/CI/ubuntu-18.04-llvm-nodoc.cmake index 4882271253..cffc9bfa0e 100644 --- a/CI/ubuntu-18.04-llvm-nodoc.cmake +++ b/CI/ubuntu-18.04-llvm-nodoc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-llvm-qa.cmake b/CI/ubuntu-18.04-llvm-qa.cmake index 8ef8f1b101..f65a416cd4 100644 --- a/CI/ubuntu-18.04-llvm-qa.cmake +++ b/CI/ubuntu-18.04-llvm-qa.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-llvm-xdk.cmake b/CI/ubuntu-18.04-llvm-xdk.cmake index 479b38a252..38a0654f5e 100644 --- a/CI/ubuntu-18.04-llvm-xdk.cmake +++ b/CI/ubuntu-18.04-llvm-xdk.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/ubuntu-18.04-llvm.cmake b/CI/ubuntu-18.04-llvm.cmake index 76346d5471..dc9f93e469 100644 --- a/CI/ubuntu-18.04-llvm.cmake +++ b/CI/ubuntu-18.04-llvm.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/windows-10-x64-vc14.20.cmake b/CI/windows-10-x64-vc14.20.cmake index 74e7defbce..b5a319103a 100644 --- a/CI/windows-10-x64-vc14.20.cmake +++ b/CI/windows-10-x64-vc14.20.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/CTestCustom.cmake.in b/CMake/CTestCustom.cmake.in index f9ea5ec4da..34553f76bb 100644 --- a/CMake/CTestCustom.cmake.in +++ b/CMake/CTestCustom.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGBenchmark.cmake b/CMake/FindGBenchmark.cmake index d3a7ba0e19..1fe0368737 100644 --- a/CMake/FindGBenchmark.cmake +++ b/CMake/FindGBenchmark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGLFW.cmake b/CMake/FindGLFW.cmake index ae0e0e0193..5e6651c798 100644 --- a/CMake/FindGLFW.cmake +++ b/CMake/FindGLFW.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGeoTIFF.cmake b/CMake/FindGeoTIFF.cmake index b293806af9..bfa5489afc 100644 --- a/CMake/FindGeoTIFF.cmake +++ b/CMake/FindGeoTIFF.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindLibKML.cmake b/CMake/FindLibKML.cmake index 703034466c..6de64d82dc 100644 --- a/CMake/FindLibKML.cmake +++ b/CMake/FindLibKML.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindMuParser.cmake b/CMake/FindMuParser.cmake index a776b90db5..84ceb09487 100644 --- a/CMake/FindMuParser.cmake +++ b/CMake/FindMuParser.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindMuParserX.cmake b/CMake/FindMuParserX.cmake index a17d9f9156..8327ae57e2 100644 --- a/CMake/FindMuParserX.cmake +++ b/CMake/FindMuParserX.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindNumpy.cmake b/CMake/FindNumpy.cmake index 5d3e73829a..1d44912643 100644 --- a/CMake/FindNumpy.cmake +++ b/CMake/FindNumpy.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindOpenCV.cmake b/CMake/FindOpenCV.cmake index ef308ab56b..752a75d41e 100644 --- a/CMake/FindOpenCV.cmake +++ b/CMake/FindOpenCV.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindQwt.cmake b/CMake/FindQwt.cmake index 8cca3db8c5..3f472c77a3 100644 --- a/CMake/FindQwt.cmake +++ b/CMake/FindQwt.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindShark.cmake b/CMake/FindShark.cmake index e454363fe8..34657ba2ea 100644 --- a/CMake/FindShark.cmake +++ b/CMake/FindShark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindTinyXML.cmake b/CMake/FindTinyXML.cmake index 49e97f2807..ee0d08f100 100644 --- a/CMake/FindTinyXML.cmake +++ b/CMake/FindTinyXML.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/GenerateExportHeaderCustom.cmake b/CMake/GenerateExportHeaderCustom.cmake index 7a25b85e1c..bdc6ea181b 100644 --- a/CMake/GenerateExportHeaderCustom.cmake +++ b/CMake/GenerateExportHeaderCustom.cmake @@ -1,7 +1,7 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. -# Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2021 Centre National d'Etudes Spatiales (CNES) # - Added support of XXX_EXPORT_TEMPLATE and XXX_EXPORT_EXPLICIT_TEMPLATE macros #.rst: diff --git a/CMake/GetVersionFromGitTag.cmake b/CMake/GetVersionFromGitTag.cmake index 0b6c5804d2..c5eca164ec 100644 --- a/CMake/GetVersionFromGitTag.cmake +++ b/CMake/GetVersionFromGitTag.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/MonteverdiApplicationMacros.cmake b/CMake/MonteverdiApplicationMacros.cmake index 7ebfde9a78..ad54572cd5 100644 --- a/CMake/MonteverdiApplicationMacros.cmake +++ b/CMake/MonteverdiApplicationMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/NamespaceHandler.cmake b/CMake/NamespaceHandler.cmake index a275fb87b3..3689509b88 100644 --- a/CMake/NamespaceHandler.cmake +++ b/CMake/NamespaceHandler.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBApplicationMacros.cmake b/CMake/OTBApplicationMacros.cmake index 4049c3f3f6..e6590687a0 100644 --- a/CMake/OTBApplicationMacros.cmake +++ b/CMake/OTBApplicationMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBCheckSSEFeatures.cmake b/CMake/OTBCheckSSEFeatures.cmake index c05d8cda98..7fb1822da1 100644 --- a/CMake/OTBCheckSSEFeatures.cmake +++ b/CMake/OTBCheckSSEFeatures.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBCheckTargetSystemArch.cmake b/CMake/OTBCheckTargetSystemArch.cmake index ead761cd56..48e20e60ab 100644 --- a/CMake/OTBCheckTargetSystemArch.cmake +++ b/CMake/OTBCheckTargetSystemArch.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBConfig.cmake.in b/CMake/OTBConfig.cmake.in index a18efa9a7e..0dc15bd1a8 100644 --- a/CMake/OTBConfig.cmake.in +++ b/CMake/OTBConfig.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBConfigVersion.cmake.in b/CMake/OTBConfigVersion.cmake.in index cb6c148e97..fc3fb556d7 100644 --- a/CMake/OTBConfigVersion.cmake.in +++ b/CMake/OTBConfigVersion.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBGroups.cmake b/CMake/OTBGroups.cmake index dccd64c6df..6d85b2c3b9 100644 --- a/CMake/OTBGroups.cmake +++ b/CMake/OTBGroups.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBManageLargeInputPaths.cmake b/CMake/OTBManageLargeInputPaths.cmake index 29831b4f9b..865115a1ee 100644 --- a/CMake/OTBManageLargeInputPaths.cmake +++ b/CMake/OTBManageLargeInputPaths.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleAPI.cmake b/CMake/OTBModuleAPI.cmake index ca7ac4e6a9..9a34ce8c05 100644 --- a/CMake/OTBModuleAPI.cmake +++ b/CMake/OTBModuleAPI.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleCPPCheckTest.cmake b/CMake/OTBModuleCPPCheckTest.cmake index 8b1c083d11..1cfce90de5 100644 --- a/CMake/OTBModuleCPPCheckTest.cmake +++ b/CMake/OTBModuleCPPCheckTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleDoxygen.cmake b/CMake/OTBModuleDoxygen.cmake index f6dc96602d..de3d0a3d24 100644 --- a/CMake/OTBModuleDoxygen.cmake +++ b/CMake/OTBModuleDoxygen.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleEnablement.cmake b/CMake/OTBModuleEnablement.cmake index b8c89fd9ce..3bb18817ca 100644 --- a/CMake/OTBModuleEnablement.cmake +++ b/CMake/OTBModuleEnablement.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleExternal.cmake b/CMake/OTBModuleExternal.cmake index 09401b819d..c787868664 100644 --- a/CMake/OTBModuleExternal.cmake +++ b/CMake/OTBModuleExternal.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleHeaderTest.cmake b/CMake/OTBModuleHeaderTest.cmake index eb3eb2fe40..d0a52f255f 100644 --- a/CMake/OTBModuleHeaderTest.cmake +++ b/CMake/OTBModuleHeaderTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleInfo.cmake.in b/CMake/OTBModuleInfo.cmake.in index a3e3752ab0..c37560b8d0 100644 --- a/CMake/OTBModuleInfo.cmake.in +++ b/CMake/OTBModuleInfo.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleMacros.cmake b/CMake/OTBModuleMacros.cmake index 501484780c..99fa0b0dbd 100644 --- a/CMake/OTBModuleMacros.cmake +++ b/CMake/OTBModuleMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleRemote.cmake b/CMake/OTBModuleRemote.cmake index 1427c569af..3c8329a1c5 100644 --- a/CMake/OTBModuleRemote.cmake +++ b/CMake/OTBModuleRemote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleTest.cmake b/CMake/OTBModuleTest.cmake index 8a3d64c27b..f4ba0bab95 100644 --- a/CMake/OTBModuleTest.cmake +++ b/CMake/OTBModuleTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBSetStandardCompilerFlags.cmake b/CMake/OTBSetStandardCompilerFlags.cmake index cfd3d6dd7e..2b8a1007e0 100644 --- a/CMake/OTBSetStandardCompilerFlags.cmake +++ b/CMake/OTBSetStandardCompilerFlags.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBStandaloneModuleMacros.cmake b/CMake/OTBStandaloneModuleMacros.cmake index 3d46c91142..18066348f0 100644 --- a/CMake/OTBStandaloneModuleMacros.cmake +++ b/CMake/OTBStandaloneModuleMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTB_CheckCXXCompilerFlag.cmake b/CMake/OTB_CheckCXXCompilerFlag.cmake index 93d6101c78..b355f42e72 100644 --- a/CMake/OTB_CheckCXXCompilerFlag.cmake +++ b/CMake/OTB_CheckCXXCompilerFlag.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/PreventInBuildInstalls.cmake b/CMake/PreventInBuildInstalls.cmake index 821abbc043..ec5daf714c 100644 --- a/CMake/PreventInBuildInstalls.cmake +++ b/CMake/PreventInBuildInstalls.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/PreventInSourceBuilds.cmake b/CMake/PreventInSourceBuilds.cmake index ad3f138697..df03f540fc 100644 --- a/CMake/PreventInSourceBuilds.cmake +++ b/CMake/PreventInSourceBuilds.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/RemoveTemporaryFiles.cmake.in b/CMake/RemoveTemporaryFiles.cmake.in index bde1c249b8..1634e44dab 100644 --- a/CMake/RemoveTemporaryFiles.cmake.in +++ b/CMake/RemoveTemporaryFiles.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/SourceStatus.cmake b/CMake/SourceStatus.cmake index e98a9d2318..0764f0de89 100644 --- a/CMake/SourceStatus.cmake +++ b/CMake/SourceStatus.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/UseOTB.cmake b/CMake/UseOTB.cmake index 7340ddf325..d8f753c23b 100644 --- a/CMake/UseOTB.cmake +++ b/CMake/UseOTB.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/cmake_uninstall.cmake.in b/CMake/cmake_uninstall.cmake.in index d97a335eb3..6ae93fc2db 100644 --- a/CMake/cmake_uninstall.cmake.in +++ b/CMake/cmake_uninstall.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/i18n_qt.cmake b/CMake/i18n_qt.cmake index b7cac81d1c..ba3f1172f5 100644 --- a/CMake/i18n_qt.cmake +++ b/CMake/i18n_qt.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/otbcli.bat.in b/CMake/otbcli.bat.in index 8f6ddeacef..6a7f7135a7 100644 --- a/CMake/otbcli.bat.in +++ b/CMake/otbcli.bat.in @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/CMake/otbcli.sh.in b/CMake/otbcli.sh.in index ab706ba636..b3b0147be5 100644 --- a/CMake/otbcli.sh.in +++ b/CMake/otbcli.sh.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/otbgui.bat.in b/CMake/otbgui.bat.in index b32d324099..1533b37c2e 100644 --- a/CMake/otbgui.bat.in +++ b/CMake/otbgui.bat.in @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/CMake/otbgui.sh.in b/CMake/otbgui.sh.in index 39c3915f5b..ec416298dc 100644 --- a/CMake/otbgui.sh.in +++ b/CMake/otbgui.sh.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMakeLists.txt b/CMakeLists.txt index 45cc505c36..ac3a1bfb2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CTestConfig.cmake b/CTestConfig.cmake index e3acafc8cd..535292e88a 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Copyright/CodeCopyright.txt b/Copyright/CodeCopyright.txt index 62c3cc673a..05aecc0cb0 100644 --- a/Copyright/CodeCopyright.txt +++ b/Copyright/CodeCopyright.txt @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Documentation/Cookbook/CMake/RunApplicationsRstGenerator.sh.cmake.in b/Documentation/Cookbook/CMake/RunApplicationsRstGenerator.sh.cmake.in index b6b6098cd7..56384c52be 100644 --- a/Documentation/Cookbook/CMake/RunApplicationsRstGenerator.sh.cmake.in +++ b/Documentation/Cookbook/CMake/RunApplicationsRstGenerator.sh.cmake.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in b/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in index 929d381517..667fdc0a12 100644 --- a/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in +++ b/Documentation/Cookbook/CMake/RunPythonApiRstGenerator.sh.cmake.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/CMakeLists.txt b/Documentation/Cookbook/CMakeLists.txt index 7b07ab8fc4..0c74906267 100644 --- a/Documentation/Cookbook/CMakeLists.txt +++ b/Documentation/Cookbook/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/RunExamples.py b/Documentation/Cookbook/Scripts/RunExamples.py index 631bc3197a..e970cd95f4 100755 --- a/Documentation/Cookbook/Scripts/RunExamples.py +++ b/Documentation/Cookbook/Scripts/RunExamples.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/migrate_sg_tex.py b/Documentation/Cookbook/Scripts/migrate_sg_tex.py index 8497f7cf76..5dcda9094b 100644 --- a/Documentation/Cookbook/Scripts/migrate_sg_tex.py +++ b/Documentation/Cookbook/Scripts/migrate_sg_tex.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py b/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py index 3e8e4e8669..3760ee1393 100644 --- a/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py b/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py index 0a742a21cc..c0af8e1d9d 100755 --- a/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/otb_warnings.py b/Documentation/Cookbook/Scripts/otb_warnings.py index eab06e7f15..f9223ed668 100644 --- a/Documentation/Cookbook/Scripts/otb_warnings.py +++ b/Documentation/Cookbook/Scripts/otb_warnings.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/Scripts/rst_utils.py b/Documentation/Cookbook/Scripts/rst_utils.py index 63243e814d..9e714b3605 100644 --- a/Documentation/Cookbook/Scripts/rst_utils.py +++ b/Documentation/Cookbook/Scripts/rst_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Documentation/Cookbook/_static/js/versions.js b/Documentation/Cookbook/_static/js/versions.js index 4fc3adc4a3..6fa100ef61 100644 --- a/Documentation/Cookbook/_static/js/versions.js +++ b/Documentation/Cookbook/_static/js/versions.js @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Documentation/Cookbook/rst/templates/examples_license_header.txt b/Documentation/Cookbook/rst/templates/examples_license_header.txt index 62c3cc673a..05aecc0cb0 100644 --- a/Documentation/Cookbook/rst/templates/examples_license_header.txt +++ b/Documentation/Cookbook/rst/templates/examples_license_header.txt @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Application/ApplicationExample.cxx b/Examples/Application/ApplicationExample.cxx index d32bd41f24..22b9cde8d9 100644 --- a/Examples/Application/ApplicationExample.cxx +++ b/Examples/Application/ApplicationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Application/CMakeLists.txt b/Examples/Application/CMakeLists.txt index c4a2031f73..0fd4a8f340 100644 --- a/Examples/Application/CMakeLists.txt +++ b/Examples/Application/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Application/test/CMakeLists.txt b/Examples/Application/test/CMakeLists.txt index 61b0b15c49..6fa8531b89 100644 --- a/Examples/Application/test/CMakeLists.txt +++ b/Examples/Application/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/BasicFilters/BandMathFilterExample.cxx b/Examples/BasicFilters/BandMathFilterExample.cxx index 2c7b4dfee2..51af4950d2 100644 --- a/Examples/BasicFilters/BandMathFilterExample.cxx +++ b/Examples/BasicFilters/BandMathFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/BandMathXImageFilterExample.cxx b/Examples/BasicFilters/BandMathXImageFilterExample.cxx index de955058ba..fb338cb354 100644 --- a/Examples/BasicFilters/BandMathXImageFilterExample.cxx +++ b/Examples/BasicFilters/BandMathXImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/CMakeLists.txt b/Examples/BasicFilters/CMakeLists.txt index 30320e12bd..0fe3936a96 100644 --- a/Examples/BasicFilters/CMakeLists.txt +++ b/Examples/BasicFilters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/BasicFilters/DEMToRainbowExample.cxx b/Examples/BasicFilters/DEMToRainbowExample.cxx index f85521c06e..59dd72e5e0 100644 --- a/Examples/BasicFilters/DEMToRainbowExample.cxx +++ b/Examples/BasicFilters/DEMToRainbowExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/FrostImageFilter.cxx b/Examples/BasicFilters/FrostImageFilter.cxx index 99d935c676..8cf42585e5 100644 --- a/Examples/BasicFilters/FrostImageFilter.cxx +++ b/Examples/BasicFilters/FrostImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/HillShadingExample.cxx b/Examples/BasicFilters/HillShadingExample.cxx index 4109db8209..72a164ac4a 100644 --- a/Examples/BasicFilters/HillShadingExample.cxx +++ b/Examples/BasicFilters/HillShadingExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/IndexedToRGBExample.cxx b/Examples/BasicFilters/IndexedToRGBExample.cxx index 3e20881e9d..f3553ac936 100644 --- a/Examples/BasicFilters/IndexedToRGBExample.cxx +++ b/Examples/BasicFilters/IndexedToRGBExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/LeeImageFilter.cxx b/Examples/BasicFilters/LeeImageFilter.cxx index 455ef8e2d5..e3b346de66 100644 --- a/Examples/BasicFilters/LeeImageFilter.cxx +++ b/Examples/BasicFilters/LeeImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx b/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx index 1411e9d11d..fa277c6784 100644 --- a/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx +++ b/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/PrintableImageFilterExample.cxx b/Examples/BasicFilters/PrintableImageFilterExample.cxx index fea9e88b1e..557e4e883e 100644 --- a/Examples/BasicFilters/PrintableImageFilterExample.cxx +++ b/Examples/BasicFilters/PrintableImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/ScalingFilterExample.cxx b/Examples/BasicFilters/ScalingFilterExample.cxx index 145ee0858a..19badba99b 100644 --- a/Examples/BasicFilters/ScalingFilterExample.cxx +++ b/Examples/BasicFilters/ScalingFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/BasicFilters/test/CMakeLists.txt b/Examples/BasicFilters/test/CMakeLists.txt index 76e981391f..85efc16244 100644 --- a/Examples/BasicFilters/test/CMakeLists.txt +++ b/Examples/BasicFilters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/CMakeLists.txt b/Examples/CMakeLists.txt index 0c51cd9aed..f247874cb9 100644 --- a/Examples/CMakeLists.txt +++ b/Examples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/ChangeDetection/CMakeLists.txt b/Examples/ChangeDetection/CMakeLists.txt index 718f420c4d..39fb3ac239 100644 --- a/Examples/ChangeDetection/CMakeLists.txt +++ b/Examples/ChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/ChangeDetection/CorrelChDet.cxx b/Examples/ChangeDetection/CorrelChDet.cxx index 80d4c8238a..97aeea2276 100644 --- a/Examples/ChangeDetection/CorrelChDet.cxx +++ b/Examples/ChangeDetection/CorrelChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/DiffChDet.cxx b/Examples/ChangeDetection/DiffChDet.cxx index d79743b066..cdab8992be 100644 --- a/Examples/ChangeDetection/DiffChDet.cxx +++ b/Examples/ChangeDetection/DiffChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx b/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx index 29c08c15fc..b84ed8594e 100644 --- a/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx +++ b/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx b/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx index f1feb982d8..966f60c3b0 100644 --- a/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx +++ b/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/MultivariateAlterationDetector.cxx b/Examples/ChangeDetection/MultivariateAlterationDetector.cxx index 05004ab0b5..44d782cc9a 100644 --- a/Examples/ChangeDetection/MultivariateAlterationDetector.cxx +++ b/Examples/ChangeDetection/MultivariateAlterationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/RatioChDet.cxx b/Examples/ChangeDetection/RatioChDet.cxx index 4e7c1a1771..51d0b76f5d 100644 --- a/Examples/ChangeDetection/RatioChDet.cxx +++ b/Examples/ChangeDetection/RatioChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/ChangeDetection/test/CMakeLists.txt b/Examples/ChangeDetection/test/CMakeLists.txt index 4eeccabfdd..a35aa2e3d6 100644 --- a/Examples/ChangeDetection/test/CMakeLists.txt +++ b/Examples/ChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Classification/CMakeLists.txt b/Examples/Classification/CMakeLists.txt index a437a0d9f0..6686650441 100644 --- a/Examples/Classification/CMakeLists.txt +++ b/Examples/Classification/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Classification/ClassificationMapRegularizationExample.cxx b/Examples/Classification/ClassificationMapRegularizationExample.cxx index fefcc33a45..ec0551b068 100644 --- a/Examples/Classification/ClassificationMapRegularizationExample.cxx +++ b/Examples/Classification/ClassificationMapRegularizationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx b/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx index f48cc5f5b3..4173b237f6 100644 --- a/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx +++ b/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Classification/SOMImageClassificationExample.cxx b/Examples/Classification/SOMImageClassificationExample.cxx index cd31fdd5e1..ea0828d98c 100644 --- a/Examples/Classification/SOMImageClassificationExample.cxx +++ b/Examples/Classification/SOMImageClassificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Classification/SupervisedImageClassificationExample.cxx b/Examples/Classification/SupervisedImageClassificationExample.cxx index 53e99eb34c..6441862915 100644 --- a/Examples/Classification/SupervisedImageClassificationExample.cxx +++ b/Examples/Classification/SupervisedImageClassificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Classification/test/CMakeLists.txt b/Examples/Classification/test/CMakeLists.txt index 41365c900a..322542b416 100644 --- a/Examples/Classification/test/CMakeLists.txt +++ b/Examples/Classification/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/DimensionReduction/CMakeLists.txt b/Examples/DimensionReduction/CMakeLists.txt index 8c88113413..5d280b266f 100644 --- a/Examples/DimensionReduction/CMakeLists.txt +++ b/Examples/DimensionReduction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/DimensionReduction/ICAExample.cxx b/Examples/DimensionReduction/ICAExample.cxx index db8e3d22e3..be91294d9a 100644 --- a/Examples/DimensionReduction/ICAExample.cxx +++ b/Examples/DimensionReduction/ICAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DimensionReduction/MNFExample.cxx b/Examples/DimensionReduction/MNFExample.cxx index 5814e30f56..731a69ec87 100644 --- a/Examples/DimensionReduction/MNFExample.cxx +++ b/Examples/DimensionReduction/MNFExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx b/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx index 33a4702ee4..d701202585 100644 --- a/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx +++ b/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DimensionReduction/NAPCAExample.cxx b/Examples/DimensionReduction/NAPCAExample.cxx index 01a8a1dee9..fcec8f9243 100644 --- a/Examples/DimensionReduction/NAPCAExample.cxx +++ b/Examples/DimensionReduction/NAPCAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DimensionReduction/PCAExample.cxx b/Examples/DimensionReduction/PCAExample.cxx index c57bdbf9f1..7cedca07a7 100644 --- a/Examples/DimensionReduction/PCAExample.cxx +++ b/Examples/DimensionReduction/PCAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DimensionReduction/test/CMakeLists.txt b/Examples/DimensionReduction/test/CMakeLists.txt index 80b6dc89b2..02f1ddc933 100644 --- a/Examples/DimensionReduction/test/CMakeLists.txt +++ b/Examples/DimensionReduction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/DisparityMap/CMakeLists.txt b/Examples/DisparityMap/CMakeLists.txt index 668e864174..dd916dd52c 100644 --- a/Examples/DisparityMap/CMakeLists.txt +++ b/Examples/DisparityMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx b/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx index 305272346d..61f86c36a6 100644 --- a/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx +++ b/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DisparityMap/NCCRegistrationFilterExample.cxx b/Examples/DisparityMap/NCCRegistrationFilterExample.cxx index f46120aed4..704f0dc27d 100644 --- a/Examples/DisparityMap/NCCRegistrationFilterExample.cxx +++ b/Examples/DisparityMap/NCCRegistrationFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DisparityMap/StereoReconstructionExample.cxx b/Examples/DisparityMap/StereoReconstructionExample.cxx index 9a4292397a..35e0504351 100644 --- a/Examples/DisparityMap/StereoReconstructionExample.cxx +++ b/Examples/DisparityMap/StereoReconstructionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/DisparityMap/test/CMakeLists.txt b/Examples/DisparityMap/test/CMakeLists.txt index cd9253cdca..65389bed1b 100644 --- a/Examples/DisparityMap/test/CMakeLists.txt +++ b/Examples/DisparityMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx b/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx index f7291c60af..3e9cba2c73 100644 --- a/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/CMakeLists.txt b/Examples/FeatureExtraction/CMakeLists.txt index 432aa3b9d4..e78df1f61c 100644 --- a/Examples/FeatureExtraction/CMakeLists.txt +++ b/Examples/FeatureExtraction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/FeatureExtraction/CloudDetectionExample.cxx b/Examples/FeatureExtraction/CloudDetectionExample.cxx index e268049d8b..3221c63618 100644 --- a/Examples/FeatureExtraction/CloudDetectionExample.cxx +++ b/Examples/FeatureExtraction/CloudDetectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/ComplexMomentPathExample.cxx b/Examples/FeatureExtraction/ComplexMomentPathExample.cxx index 4f95139011..17cf1e1587 100644 --- a/Examples/FeatureExtraction/ComplexMomentPathExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentPathExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx b/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx index 0c79493a5b..55d6276883 100644 --- a/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx b/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx index a7f19990fb..7ccfa90368 100644 --- a/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/EdgeDensityExample.cxx b/Examples/FeatureExtraction/EdgeDensityExample.cxx index b4440f2938..ebefc29cbc 100644 --- a/Examples/FeatureExtraction/EdgeDensityExample.cxx +++ b/Examples/FeatureExtraction/EdgeDensityExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx b/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx index ae26a19201..68822fed77 100644 --- a/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/HarrisExample.cxx b/Examples/FeatureExtraction/HarrisExample.cxx index 19679bdd61..211f988707 100644 --- a/Examples/FeatureExtraction/HarrisExample.cxx +++ b/Examples/FeatureExtraction/HarrisExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx b/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx index 44a8499952..9998d1f40e 100644 --- a/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx b/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx index 8b07a0d277..edfe68d513 100644 --- a/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx +++ b/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/PanTexExample.cxx b/Examples/FeatureExtraction/PanTexExample.cxx index 54084bdb3c..b241583a3e 100644 --- a/Examples/FeatureExtraction/PanTexExample.cxx +++ b/Examples/FeatureExtraction/PanTexExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/RatioLineDetectorExample.cxx b/Examples/FeatureExtraction/RatioLineDetectorExample.cxx index 2d5faeb3cd..46cfbde74e 100644 --- a/Examples/FeatureExtraction/RatioLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/RatioLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/RightAngleDetectionExample.cxx b/Examples/FeatureExtraction/RightAngleDetectionExample.cxx index eb17967c1b..05daba462f 100644 --- a/Examples/FeatureExtraction/RightAngleDetectionExample.cxx +++ b/Examples/FeatureExtraction/RightAngleDetectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/SFSExample.cxx b/Examples/FeatureExtraction/SFSExample.cxx index a5530113d9..05c06dc966 100644 --- a/Examples/FeatureExtraction/SFSExample.cxx +++ b/Examples/FeatureExtraction/SFSExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/SURFExample.cxx b/Examples/FeatureExtraction/SURFExample.cxx index e6eb791492..7687497b2f 100644 --- a/Examples/FeatureExtraction/SURFExample.cxx +++ b/Examples/FeatureExtraction/SURFExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/TextureExample.cxx b/Examples/FeatureExtraction/TextureExample.cxx index 60edc1ea69..2d1968eec5 100644 --- a/Examples/FeatureExtraction/TextureExample.cxx +++ b/Examples/FeatureExtraction/TextureExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx b/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx index 17afae2728..2b98e5f2aa 100644 --- a/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx +++ b/Examples/FeatureExtraction/ThresholdToPointSetExample.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx b/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx index 3288b11ade..120e529fa9 100644 --- a/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx +++ b/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/FeatureExtraction/test/CMakeLists.txt b/Examples/FeatureExtraction/test/CMakeLists.txt index fac35ae981..5c3ccc94f3 100644 --- a/Examples/FeatureExtraction/test/CMakeLists.txt +++ b/Examples/FeatureExtraction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Filtering/CMakeLists.txt b/Examples/Filtering/CMakeLists.txt index adf9ac42c1..483951b613 100644 --- a/Examples/Filtering/CMakeLists.txt +++ b/Examples/Filtering/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Filtering/CompositeFilterExample.cxx b/Examples/Filtering/CompositeFilterExample.cxx index 32950ecff5..a915ec4445 100644 --- a/Examples/Filtering/CompositeFilterExample.cxx +++ b/Examples/Filtering/CompositeFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx b/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx index ba8a2d4b52..d68a8e498e 100644 --- a/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx +++ b/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx b/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx index 5a9e95a8c3..dd0b25032d 100644 --- a/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx +++ b/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Filtering/test/CMakeLists.txt b/Examples/Filtering/test/CMakeLists.txt index 0f9cd906af..cc4219962b 100644 --- a/Examples/Filtering/test/CMakeLists.txt +++ b/Examples/Filtering/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Fusion/BayesianFusionImageFilter.cxx b/Examples/Fusion/BayesianFusionImageFilter.cxx index aa586db965..450c03b387 100644 --- a/Examples/Fusion/BayesianFusionImageFilter.cxx +++ b/Examples/Fusion/BayesianFusionImageFilter.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Fusion/CMakeLists.txt b/Examples/Fusion/CMakeLists.txt index 6f7660e7fd..49d78fbc20 100644 --- a/Examples/Fusion/CMakeLists.txt +++ b/Examples/Fusion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Fusion/PanSharpeningExample.cxx b/Examples/Fusion/PanSharpeningExample.cxx index d357d503e1..5a545a787c 100644 --- a/Examples/Fusion/PanSharpeningExample.cxx +++ b/Examples/Fusion/PanSharpeningExample.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Fusion/test/CMakeLists.txt b/Examples/Fusion/test/CMakeLists.txt index b5ed910401..d662756cfb 100644 --- a/Examples/Fusion/test/CMakeLists.txt +++ b/Examples/Fusion/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Hyperspectral/CMakeLists.txt b/Examples/Hyperspectral/CMakeLists.txt index f6ad1452c2..144a72b238 100644 --- a/Examples/Hyperspectral/CMakeLists.txt +++ b/Examples/Hyperspectral/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx b/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx index 1a65418af7..507d61cfe9 100644 --- a/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx +++ b/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Hyperspectral/test/CMakeLists.txt b/Examples/Hyperspectral/test/CMakeLists.txt index 6e666a84aa..5c8ef49366 100644 --- a/Examples/Hyperspectral/test/CMakeLists.txt +++ b/Examples/Hyperspectral/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/IO/CMakeLists.txt b/Examples/IO/CMakeLists.txt index 0a80a2f3ed..a1a3d79957 100644 --- a/Examples/IO/CMakeLists.txt +++ b/Examples/IO/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/IO/ComplexImageReadWrite.cxx b/Examples/IO/ComplexImageReadWrite.cxx index a692a05aad..b87bf5cec3 100644 --- a/Examples/IO/ComplexImageReadWrite.cxx +++ b/Examples/IO/ComplexImageReadWrite.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/DEMHandlerExample.cxx b/Examples/IO/DEMHandlerExample.cxx index d99ceccc1b..67e3a91626 100644 --- a/Examples/IO/DEMHandlerExample.cxx +++ b/Examples/IO/DEMHandlerExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/DEMToImageGenerator.cxx b/Examples/IO/DEMToImageGenerator.cxx index 4dc391e3b6..9a6ca86021 100644 --- a/Examples/IO/DEMToImageGenerator.cxx +++ b/Examples/IO/DEMToImageGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/ExtractROI.cxx b/Examples/IO/ExtractROI.cxx index bc6a704846..d0e0e8848f 100644 --- a/Examples/IO/ExtractROI.cxx +++ b/Examples/IO/ExtractROI.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/ImageReadCastWrite.cxx b/Examples/IO/ImageReadCastWrite.cxx index d839e6d2e2..e7a55f7050 100644 --- a/Examples/IO/ImageReadCastWrite.cxx +++ b/Examples/IO/ImageReadCastWrite.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/ImageReadRegionOfInterestWrite.cxx b/Examples/IO/ImageReadRegionOfInterestWrite.cxx index 6a4dbe3e39..2b6187af33 100644 --- a/Examples/IO/ImageReadRegionOfInterestWrite.cxx +++ b/Examples/IO/ImageReadRegionOfInterestWrite.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/ImageReadWrite.cxx b/Examples/IO/ImageReadWrite.cxx index f09aee7af0..ec64984904 100644 --- a/Examples/IO/ImageReadWrite.cxx +++ b/Examples/IO/ImageReadWrite.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/ImageSeriesIOExample.cxx b/Examples/IO/ImageSeriesIOExample.cxx index 69c3412ce1..ca3950f207 100644 --- a/Examples/IO/ImageSeriesIOExample.cxx +++ b/Examples/IO/ImageSeriesIOExample.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/MetadataExample.cxx b/Examples/IO/MetadataExample.cxx index a7612b80ef..447d84440d 100644 --- a/Examples/IO/MetadataExample.cxx +++ b/Examples/IO/MetadataExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/MultibandImageReadWrite.cxx b/Examples/IO/MultibandImageReadWrite.cxx index 8bab185cc0..2a320b17c3 100644 --- a/Examples/IO/MultibandImageReadWrite.cxx +++ b/Examples/IO/MultibandImageReadWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/VectorDataIOExample.cxx b/Examples/IO/VectorDataIOExample.cxx index cd8db69678..6fcf76e91d 100644 --- a/Examples/IO/VectorDataIOExample.cxx +++ b/Examples/IO/VectorDataIOExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/IO/test/CMakeLists.txt b/Examples/IO/test/CMakeLists.txt index bcd30085bd..9d742dc736 100644 --- a/Examples/IO/test/CMakeLists.txt +++ b/Examples/IO/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Image/CMakeLists.txt b/Examples/Image/CMakeLists.txt index 0592a700f4..2e5cd990e4 100644 --- a/Examples/Image/CMakeLists.txt +++ b/Examples/Image/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Image/Image1.cxx b/Examples/Image/Image1.cxx index 4ba295cc43..9a40efc671 100644 --- a/Examples/Image/Image1.cxx +++ b/Examples/Image/Image1.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/Image2.cxx b/Examples/Image/Image2.cxx index 9ad5fe2bbc..dc445752ff 100644 --- a/Examples/Image/Image2.cxx +++ b/Examples/Image/Image2.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/Image3.cxx b/Examples/Image/Image3.cxx index c43c3ca64e..eb7f799eb9 100644 --- a/Examples/Image/Image3.cxx +++ b/Examples/Image/Image3.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/Image4.cxx b/Examples/Image/Image4.cxx index 554eb2380c..a5454067fd 100644 --- a/Examples/Image/Image4.cxx +++ b/Examples/Image/Image4.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/Image5.cxx b/Examples/Image/Image5.cxx index baa38b3747..6c9d62efb3 100644 --- a/Examples/Image/Image5.cxx +++ b/Examples/Image/Image5.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/ImageListExample.cxx b/Examples/Image/ImageListExample.cxx index c21f694229..f73396ed3b 100644 --- a/Examples/Image/ImageListExample.cxx +++ b/Examples/Image/ImageListExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/VectorImage.cxx b/Examples/Image/VectorImage.cxx index f53f0bb12f..e501f4c9d4 100644 --- a/Examples/Image/VectorImage.cxx +++ b/Examples/Image/VectorImage.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Image/test/CMakeLists.txt b/Examples/Image/test/CMakeLists.txt index 235c6808f4..9728fb6a3a 100644 --- a/Examples/Image/test/CMakeLists.txt +++ b/Examples/Image/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Installation/CMakeLists.txt b/Examples/Installation/CMakeLists.txt index e74ecf4665..b025aed3e9 100644 --- a/Examples/Installation/CMakeLists.txt +++ b/Examples/Installation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Installation/HelloWorld.cxx b/Examples/Installation/HelloWorld.cxx index 5d3d2cea9a..82e08851b4 100644 --- a/Examples/Installation/HelloWorld.cxx +++ b/Examples/Installation/HelloWorld.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Installation/test/CMakeLists.txt b/Examples/Installation/test/CMakeLists.txt index 80b6dc89b2..02f1ddc933 100644 --- a/Examples/Installation/test/CMakeLists.txt +++ b/Examples/Installation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Iterators/CMakeLists.txt b/Examples/Iterators/CMakeLists.txt index be61606bd6..64c8b4ff32 100644 --- a/Examples/Iterators/CMakeLists.txt +++ b/Examples/Iterators/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Iterators/ImageLinearIteratorWithIndex.cxx b/Examples/Iterators/ImageLinearIteratorWithIndex.cxx index b33f3c6b16..013223e8f7 100644 --- a/Examples/Iterators/ImageLinearIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageLinearIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx b/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx index 7eb9d21b29..f470615824 100644 --- a/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx +++ b/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx b/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx index 7ea0889b30..64529e5950 100644 --- a/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ImageRegionIterator.cxx b/Examples/Iterators/ImageRegionIterator.cxx index 34829bce53..e261e214bf 100644 --- a/Examples/Iterators/ImageRegionIterator.cxx +++ b/Examples/Iterators/ImageRegionIterator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ImageRegionIteratorWithIndex.cxx b/Examples/Iterators/ImageRegionIteratorWithIndex.cxx index e69ec87300..bfba11baf0 100644 --- a/Examples/Iterators/ImageRegionIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageRegionIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ImageSliceIteratorWithIndex.cxx b/Examples/Iterators/ImageSliceIteratorWithIndex.cxx index 8c75de8a6e..12b8835928 100644 --- a/Examples/Iterators/ImageSliceIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageSliceIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/IteratorsExamples.cxx b/Examples/Iterators/IteratorsExamples.cxx index af3edcd997..37e50af0c8 100644 --- a/Examples/Iterators/IteratorsExamples.cxx +++ b/Examples/Iterators/IteratorsExamples.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators1.cxx b/Examples/Iterators/NeighborhoodIterators1.cxx index a4a6d987c4..6efc4d0486 100644 --- a/Examples/Iterators/NeighborhoodIterators1.cxx +++ b/Examples/Iterators/NeighborhoodIterators1.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators2.cxx b/Examples/Iterators/NeighborhoodIterators2.cxx index 32a16bbb36..a05a49e9f0 100644 --- a/Examples/Iterators/NeighborhoodIterators2.cxx +++ b/Examples/Iterators/NeighborhoodIterators2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators3.cxx b/Examples/Iterators/NeighborhoodIterators3.cxx index af99b3eb59..2207e0d61e 100644 --- a/Examples/Iterators/NeighborhoodIterators3.cxx +++ b/Examples/Iterators/NeighborhoodIterators3.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators4.cxx b/Examples/Iterators/NeighborhoodIterators4.cxx index 041270146f..4eccc954ee 100644 --- a/Examples/Iterators/NeighborhoodIterators4.cxx +++ b/Examples/Iterators/NeighborhoodIterators4.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators5.cxx b/Examples/Iterators/NeighborhoodIterators5.cxx index 87c4bad5f8..49aca10255 100644 --- a/Examples/Iterators/NeighborhoodIterators5.cxx +++ b/Examples/Iterators/NeighborhoodIterators5.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/NeighborhoodIterators6.cxx b/Examples/Iterators/NeighborhoodIterators6.cxx index 3574590003..e23716bff5 100644 --- a/Examples/Iterators/NeighborhoodIterators6.cxx +++ b/Examples/Iterators/NeighborhoodIterators6.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ShapedNeighborhoodIterators1.cxx b/Examples/Iterators/ShapedNeighborhoodIterators1.cxx index cbe4a8fad7..68a44f3599 100644 --- a/Examples/Iterators/ShapedNeighborhoodIterators1.cxx +++ b/Examples/Iterators/ShapedNeighborhoodIterators1.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/ShapedNeighborhoodIterators2.cxx b/Examples/Iterators/ShapedNeighborhoodIterators2.cxx index dfcb6ba3ad..ce03c35c64 100644 --- a/Examples/Iterators/ShapedNeighborhoodIterators2.cxx +++ b/Examples/Iterators/ShapedNeighborhoodIterators2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Iterators/test/CMakeLists.txt b/Examples/Iterators/test/CMakeLists.txt index 8167307214..6067716518 100644 --- a/Examples/Iterators/test/CMakeLists.txt +++ b/Examples/Iterators/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Learning/CMakeLists.txt b/Examples/Learning/CMakeLists.txt index a7be362934..818b19e753 100644 --- a/Examples/Learning/CMakeLists.txt +++ b/Examples/Learning/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Learning/GenerateTrainingImageExample.cxx b/Examples/Learning/GenerateTrainingImageExample.cxx index 7ec497cf02..435572c114 100644 --- a/Examples/Learning/GenerateTrainingImageExample.cxx +++ b/Examples/Learning/GenerateTrainingImageExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Learning/SEMModelEstimatorExample.cxx b/Examples/Learning/SEMModelEstimatorExample.cxx index 5559c42ee1..328a980fb8 100644 --- a/Examples/Learning/SEMModelEstimatorExample.cxx +++ b/Examples/Learning/SEMModelEstimatorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Examples/Learning/SOMClassifierExample.cxx b/Examples/Learning/SOMClassifierExample.cxx index 352cd5101e..c929645bab 100644 --- a/Examples/Learning/SOMClassifierExample.cxx +++ b/Examples/Learning/SOMClassifierExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Learning/SOMExample.cxx b/Examples/Learning/SOMExample.cxx index a2e1c110cb..cbf5614dfc 100644 --- a/Examples/Learning/SOMExample.cxx +++ b/Examples/Learning/SOMExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx b/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx index e1edb867cc..13858c7c5f 100644 --- a/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx +++ b/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx b/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx index 8b36e4081b..ae1143aa1d 100644 --- a/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx +++ b/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx b/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx index 51b6fe49a3..85148f9919 100644 --- a/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx +++ b/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Learning/test/CMakeLists.txt b/Examples/Learning/test/CMakeLists.txt index f6afbd796d..f08b02a147 100644 --- a/Examples/Learning/test/CMakeLists.txt +++ b/Examples/Learning/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Markov/CMakeLists.txt b/Examples/Markov/CMakeLists.txt index e5d3947903..39c94753d3 100644 --- a/Examples/Markov/CMakeLists.txt +++ b/Examples/Markov/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Markov/MarkovClassification1Example.cxx b/Examples/Markov/MarkovClassification1Example.cxx index 1e4862b2b9..f3a5f30146 100644 --- a/Examples/Markov/MarkovClassification1Example.cxx +++ b/Examples/Markov/MarkovClassification1Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Markov/MarkovClassification2Example.cxx b/Examples/Markov/MarkovClassification2Example.cxx index 9547e1226f..b1d87bf140 100644 --- a/Examples/Markov/MarkovClassification2Example.cxx +++ b/Examples/Markov/MarkovClassification2Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Markov/MarkovClassification3Example.cxx b/Examples/Markov/MarkovClassification3Example.cxx index 55781fafb9..bc940ac4ec 100644 --- a/Examples/Markov/MarkovClassification3Example.cxx +++ b/Examples/Markov/MarkovClassification3Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Markov/MarkovRegularizationExample.cxx b/Examples/Markov/MarkovRegularizationExample.cxx index eca197d4e7..3c19e3a263 100644 --- a/Examples/Markov/MarkovRegularizationExample.cxx +++ b/Examples/Markov/MarkovRegularizationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Markov/MarkovRestorationExample.cxx b/Examples/Markov/MarkovRestorationExample.cxx index 36bacae289..e939088294 100644 --- a/Examples/Markov/MarkovRestorationExample.cxx +++ b/Examples/Markov/MarkovRestorationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Markov/test/CMakeLists.txt b/Examples/Markov/test/CMakeLists.txt index 097d0011ff..59a8c972aa 100644 --- a/Examples/Markov/test/CMakeLists.txt +++ b/Examples/Markov/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/OBIA/CMakeLists.txt b/Examples/OBIA/CMakeLists.txt index ed6a9b7e01..31e4d0cb27 100644 --- a/Examples/OBIA/CMakeLists.txt +++ b/Examples/OBIA/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/OBIA/HooverMetricsEstimation.cxx b/Examples/OBIA/HooverMetricsEstimation.cxx index 36b173712a..2a6c133995 100644 --- a/Examples/OBIA/HooverMetricsEstimation.cxx +++ b/Examples/OBIA/HooverMetricsEstimation.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/OBIA/LabelMapToVectorData.cxx b/Examples/OBIA/LabelMapToVectorData.cxx index 8dcb38b11a..2cb5b63b9e 100644 --- a/Examples/OBIA/LabelMapToVectorData.cxx +++ b/Examples/OBIA/LabelMapToVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx b/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx index 77e15fb222..e53d04d136 100644 --- a/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx +++ b/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/OBIA/test/CMakeLists.txt b/Examples/OBIA/test/CMakeLists.txt index bb14185987..b11fbec60e 100644 --- a/Examples/OBIA/test/CMakeLists.txt +++ b/Examples/OBIA/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Patented/CMakeLists.txt b/Examples/Patented/CMakeLists.txt index 9030b70d2f..daf3487994 100644 --- a/Examples/Patented/CMakeLists.txt +++ b/Examples/Patented/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Patented/SIFTDensityExample.cxx b/Examples/Patented/SIFTDensityExample.cxx index c75417399d..d0cb0d7b6f 100644 --- a/Examples/Patented/SIFTDensityExample.cxx +++ b/Examples/Patented/SIFTDensityExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Patented/SIFTDisparityMapEstimation.cxx b/Examples/Patented/SIFTDisparityMapEstimation.cxx index b4aff0068f..8207059637 100644 --- a/Examples/Patented/SIFTDisparityMapEstimation.cxx +++ b/Examples/Patented/SIFTDisparityMapEstimation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Patented/SIFTExample.cxx b/Examples/Patented/SIFTExample.cxx index 96b3f089c0..a75c1fb932 100644 --- a/Examples/Patented/SIFTExample.cxx +++ b/Examples/Patented/SIFTExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Patented/SIFTFastExample.cxx b/Examples/Patented/SIFTFastExample.cxx index c70f23fe66..642a5a0297 100644 --- a/Examples/Patented/SIFTFastExample.cxx +++ b/Examples/Patented/SIFTFastExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Patented/test/CMakeLists.txt b/Examples/Patented/test/CMakeLists.txt index 8f7ec06b97..f0ed05a556 100644 --- a/Examples/Patented/test/CMakeLists.txt +++ b/Examples/Patented/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Projections/CMakeLists.txt b/Examples/Projections/CMakeLists.txt index 100d01ecc9..9adf3193e0 100644 --- a/Examples/Projections/CMakeLists.txt +++ b/Examples/Projections/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Projections/EstimateRPCSensorModelExample.cxx b/Examples/Projections/EstimateRPCSensorModelExample.cxx index 01be179c96..a38313562a 100644 --- a/Examples/Projections/EstimateRPCSensorModelExample.cxx +++ b/Examples/Projections/EstimateRPCSensorModelExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/GeometriesProjectionExample.cxx b/Examples/Projections/GeometriesProjectionExample.cxx index 64e45b9241..44f42d21dc 100644 --- a/Examples/Projections/GeometriesProjectionExample.cxx +++ b/Examples/Projections/GeometriesProjectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/OrthoRectificationExample.cxx b/Examples/Projections/OrthoRectificationExample.cxx index fc974226ad..31e8ffecf4 100644 --- a/Examples/Projections/OrthoRectificationExample.cxx +++ b/Examples/Projections/OrthoRectificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/PlaceNameToLonLatExample.cxx b/Examples/Projections/PlaceNameToLonLatExample.cxx index 23e10ad6b0..ff5df365ab 100644 --- a/Examples/Projections/PlaceNameToLonLatExample.cxx +++ b/Examples/Projections/PlaceNameToLonLatExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/VectorDataExtractROIExample.cxx b/Examples/Projections/VectorDataExtractROIExample.cxx index 92e41acb45..63ec3049ea 100644 --- a/Examples/Projections/VectorDataExtractROIExample.cxx +++ b/Examples/Projections/VectorDataExtractROIExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/VectorDataProjectionExample.cxx b/Examples/Projections/VectorDataProjectionExample.cxx index 06aab6e110..fe1c3a0648 100644 --- a/Examples/Projections/VectorDataProjectionExample.cxx +++ b/Examples/Projections/VectorDataProjectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Projections/test/CMakeLists.txt b/Examples/Projections/test/CMakeLists.txt index 7ef28fa285..090a6b2726 100644 --- a/Examples/Projections/test/CMakeLists.txt +++ b/Examples/Projections/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx b/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx index ac0cbbf00d..f1f36aae72 100644 --- a/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx +++ b/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx b/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx index 210552c805..75e32178d9 100644 --- a/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx +++ b/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx b/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx index 879c339533..1165f305b9 100644 --- a/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx +++ b/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Radiometry/CMakeLists.txt b/Examples/Radiometry/CMakeLists.txt index 7e72199ac1..bed8ee1aa0 100644 --- a/Examples/Radiometry/CMakeLists.txt +++ b/Examples/Radiometry/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Radiometry/test/CMakeLists.txt b/Examples/Radiometry/test/CMakeLists.txt index f320437e0a..400661dc3e 100644 --- a/Examples/Radiometry/test/CMakeLists.txt +++ b/Examples/Radiometry/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Simulation/CMakeLists.txt b/Examples/Simulation/CMakeLists.txt index d8a5fcc3f4..590d09ac43 100644 --- a/Examples/Simulation/CMakeLists.txt +++ b/Examples/Simulation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx b/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx index 791f342854..01b5f4dc31 100644 --- a/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx +++ b/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Simulation/LAIFromNDVIImageTransform.cxx b/Examples/Simulation/LAIFromNDVIImageTransform.cxx index 8650d6213b..b88ae3ef4e 100644 --- a/Examples/Simulation/LAIFromNDVIImageTransform.cxx +++ b/Examples/Simulation/LAIFromNDVIImageTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Simulation/ProsailModel.cxx b/Examples/Simulation/ProsailModel.cxx index 56c98b28b9..39cb7b75a6 100644 --- a/Examples/Simulation/ProsailModel.cxx +++ b/Examples/Simulation/ProsailModel.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Simulation/test/CMakeLists.txt b/Examples/Simulation/test/CMakeLists.txt index a6ce05eda9..d84a174a17 100644 --- a/Examples/Simulation/test/CMakeLists.txt +++ b/Examples/Simulation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Tutorials/CMakeLists.txt b/Examples/Tutorials/CMakeLists.txt index d3466d5267..b1e3b22b73 100644 --- a/Examples/Tutorials/CMakeLists.txt +++ b/Examples/Tutorials/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/Tutorials/FilteringPipeline.cxx b/Examples/Tutorials/FilteringPipeline.cxx index 0d9d1991bc..df4baf5ec7 100644 --- a/Examples/Tutorials/FilteringPipeline.cxx +++ b/Examples/Tutorials/FilteringPipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/HelloWorldOTB.cxx b/Examples/Tutorials/HelloWorldOTB.cxx index f8ccd74299..686d61267b 100644 --- a/Examples/Tutorials/HelloWorldOTB.cxx +++ b/Examples/Tutorials/HelloWorldOTB.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/Multispectral.cxx b/Examples/Tutorials/Multispectral.cxx index 42fc0fff76..585ecfeec4 100644 --- a/Examples/Tutorials/Multispectral.cxx +++ b/Examples/Tutorials/Multispectral.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/OrthoFusion.cxx b/Examples/Tutorials/OrthoFusion.cxx index f21e7556d6..6ebc6a4ff3 100644 --- a/Examples/Tutorials/OrthoFusion.cxx +++ b/Examples/Tutorials/OrthoFusion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/Pipeline.cxx b/Examples/Tutorials/Pipeline.cxx index 8c3dfe1f59..5700605a54 100644 --- a/Examples/Tutorials/Pipeline.cxx +++ b/Examples/Tutorials/Pipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/ScalingPipeline.cxx b/Examples/Tutorials/ScalingPipeline.cxx index 140b59665d..32182d974e 100644 --- a/Examples/Tutorials/ScalingPipeline.cxx +++ b/Examples/Tutorials/ScalingPipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Examples/Tutorials/test/CMakeLists.txt b/Examples/Tutorials/test/CMakeLists.txt index 7b9bf9ec80..3f9b497938 100644 --- a/Examples/Tutorials/test/CMakeLists.txt +++ b/Examples/Tutorials/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/BoostAdapters/CMakeLists.txt b/Modules/Adapters/BoostAdapters/CMakeLists.txt index c9f757e406..a6f3a02354 100644 --- a/Modules/Adapters/BoostAdapters/CMakeLists.txt +++ b/Modules/Adapters/BoostAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/BoostAdapters/include/otbBoostDox.h b/Modules/Adapters/BoostAdapters/include/otbBoostDox.h index dcda058045..1c822dd727 100644 --- a/Modules/Adapters/BoostAdapters/include/otbBoostDox.h +++ b/Modules/Adapters/BoostAdapters/include/otbBoostDox.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h b/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h index 8c2cbea50d..492e385c78 100644 --- a/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h +++ b/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otbStringUtils.h b/Modules/Adapters/BoostAdapters/include/otbStringUtils.h index 0d548a125b..ca09c74b1c 100644 --- a/Modules/Adapters/BoostAdapters/include/otbStringUtils.h +++ b/Modules/Adapters/BoostAdapters/include/otbStringUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_expint_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_expint_header.h index c33884e257..68d858878f 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_expint_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_expint_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_graph_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_graph_header.h index 0a08d0fd35..dda17d8db9 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_graph_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_graph_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_lexicalcast_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_lexicalcast_header.h index 9104be904b..ba26bd79d0 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_lexicalcast_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_lexicalcast_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_math_gamma_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_math_gamma_header.h index 15a2ee744a..eb7a3ad863 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_math_gamma_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_math_gamma_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_math_normal_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_math_normal_header.h index 54f9cb2439..6ec9c3f3e3 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_math_normal_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_math_normal_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_string_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_string_header.h index a5c2d8ebc1..42222cbadc 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_string_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_string_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/include/otb_boost_tokenizer_header.h b/Modules/Adapters/BoostAdapters/include/otb_boost_tokenizer_header.h index 9d5caf2128..4b0164f135 100644 --- a/Modules/Adapters/BoostAdapters/include/otb_boost_tokenizer_header.h +++ b/Modules/Adapters/BoostAdapters/include/otb_boost_tokenizer_header.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/BoostAdapters/otb-module.cmake b/Modules/Adapters/BoostAdapters/otb-module.cmake index e2e127f4fc..cb97e4e484 100644 --- a/Modules/Adapters/BoostAdapters/otb-module.cmake +++ b/Modules/Adapters/BoostAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/CurlAdapters/CMakeLists.txt b/Modules/Adapters/CurlAdapters/CMakeLists.txt index 5dc6c4bea7..8fab934a9d 100644 --- a/Modules/Adapters/CurlAdapters/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h b/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h index bad7e07cad..8bc7fc820b 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h b/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h index 2ec32785c9..36c6b3676a 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h b/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h index 14f38d43e9..0f268bf6e1 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/otb-module.cmake b/Modules/Adapters/CurlAdapters/otb-module.cmake index f153b5b572..1a0e099913 100644 --- a/Modules/Adapters/CurlAdapters/otb-module.cmake +++ b/Modules/Adapters/CurlAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/CurlAdapters/src/CMakeLists.txt b/Modules/Adapters/CurlAdapters/src/CMakeLists.txt index e34779dcbe..aef3f4a5bc 100644 --- a/Modules/Adapters/CurlAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx b/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx index 803de2a772..4db6d8f830 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx b/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx index 815d2bb5dc..78541a7ccb 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx b/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx index f3ad01aa31..2c4019d335 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/test/CMakeLists.txt b/Modules/Adapters/CurlAdapters/test/CMakeLists.txt index 34ad2e12bd..949f51fb42 100644 --- a/Modules/Adapters/CurlAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx b/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx index 16a0c9b848..1fc7e5e3ac 100644 --- a/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx +++ b/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx b/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx index 6895e14207..7ddfd6d067 100644 --- a/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx +++ b/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/CMakeLists.txt b/Modules/Adapters/GdalAdapters/CMakeLists.txt index 97d743c0b0..5349b0420a 100644 --- a/Modules/Adapters/GdalAdapters/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h b/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h index 325c40d88f..5be21222a4 100644 --- a/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h +++ b/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h b/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h index 4ebd4713b7..fc1f6f5268 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h +++ b/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h b/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h index 3dfb5c37c0..966500bbaf 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h b/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h index 8debec9ed4..bb9f0c14e0 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h index bb4d578a46..a5035d4b68 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx index 215e33e2f2..524335dc72 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbImageReference.h b/Modules/Adapters/GdalAdapters/include/otbImageReference.h index 4a79cb0485..d7281de8ad 100644 --- a/Modules/Adapters/GdalAdapters/include/otbImageReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbImageReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGR.h b/Modules/Adapters/GdalAdapters/include/otbOGR.h index f98766c854..412084c78b 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGR.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGR.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h index af0c8048d9..8377eeea01 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx index eb3d59f4f2..b3f5eca556 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h b/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h index ead86a5293..21e0c68a03 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h b/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h index dae07cd73b..e64947b22d 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h index 09f2d86b62..41935c7139 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx index b2b3ef98f8..0f706d9281 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h index 225a98fcf2..15a05b820f 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx index 5527be4198..6b9359e2a7 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h b/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h index 8fd67b4812..60c6f772fe 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h b/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h index 99171600bb..3853ceb98c 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h b/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h index 334d551ce5..9271fead79 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h b/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h index 3c8e0ea975..63a3c21342 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h index 2d6bcb27a1..c71caf2976 100644 --- a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/otb-module.cmake b/Modules/Adapters/GdalAdapters/otb-module.cmake index f5450bfe52..18a44b225a 100644 --- a/Modules/Adapters/GdalAdapters/otb-module.cmake +++ b/Modules/Adapters/GdalAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/GdalAdapters/src/CMakeLists.txt b/Modules/Adapters/GdalAdapters/src/CMakeLists.txt index 01ef351268..fccc818217 100644 --- a/Modules/Adapters/GdalAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx b/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx index 81c964b22e..ee042e6f8b 100644 --- a/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx b/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx index 1452f58e1e..7efcb3faf8 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx b/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx index ec072be3e3..439bf06d6a 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx b/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx index d39825f16a..fb1943fe93 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx index 3f246721cc..a5db7d9875 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx index 1d8b7ee3c2..243f2409d5 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx index 69db3aa5e9..2373d2d698 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx index 418d077008..ce91658535 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx index edec4610b0..7388a2d2a3 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx index 8448025179..37023ce0f8 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx index f0fdb0a9ba..55aca9a2c8 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx b/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx index f45fc28df6..48355260be 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx index b001b49e68..a996b5eb21 100644 --- a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/CMakeLists.txt b/Modules/Adapters/GdalAdapters/test/CMakeLists.txt index 75a50079d1..e5e86ad967 100644 --- a/Modules/Adapters/GdalAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx b/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx index d340e7fefe..599171e09e 100644 --- a/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx b/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx index 7857c16636..ee4fa1ab0c 100644 --- a/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx b/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx index f34c2f6120..97842ea03f 100644 --- a/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx index d78fd3eab5..f715e64b24 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx index 5f25a66812..1015b261f5 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx index 49e06b8d6e..1427ff2734 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx index ff9bcf0c44..f892b82fa9 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx index bca45d8797..49883d7620 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx b/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx index 15b9768120..f3e5b7fab0 100644 --- a/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/QtAdapters/CMakeLists.txt b/Modules/Adapters/QtAdapters/CMakeLists.txt index 7023a02fea..7951d4b89f 100644 --- a/Modules/Adapters/QtAdapters/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/QtAdapters/include/otbQtAdapters.h b/Modules/Adapters/QtAdapters/include/otbQtAdapters.h index 1534a30de5..0df5d9d908 100644 --- a/Modules/Adapters/QtAdapters/include/otbQtAdapters.h +++ b/Modules/Adapters/QtAdapters/include/otbQtAdapters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/QtAdapters/otb-module.cmake b/Modules/Adapters/QtAdapters/otb-module.cmake index 10b7f11c7f..aca57d22cc 100644 --- a/Modules/Adapters/QtAdapters/otb-module.cmake +++ b/Modules/Adapters/QtAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/QtAdapters/src/CMakeLists.txt b/Modules/Adapters/QtAdapters/src/CMakeLists.txt index 3517238aeb..1d4ef8dc1e 100644 --- a/Modules/Adapters/QtAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx b/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx index 4caa279a79..24c4ed8dee 100644 --- a/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx +++ b/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/QtAdapters/test/CMakeLists.txt b/Modules/Adapters/QtAdapters/test/CMakeLists.txt index e8f7e25254..1bf918f1ef 100644 --- a/Modules/Adapters/QtAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppChangeDetection/CMakeLists.txt b/Modules/Applications/AppChangeDetection/CMakeLists.txt index 248a6c54e5..cb8613f83d 100644 --- a/Modules/Applications/AppChangeDetection/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppChangeDetection/app/CMakeLists.txt b/Modules/Applications/AppChangeDetection/app/CMakeLists.txt index 2c970d365a..984f5eaa54 100644 --- a/Modules/Applications/AppChangeDetection/app/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx b/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx index d6da353e8c..aeb597bb60 100644 --- a/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx +++ b/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppChangeDetection/otb-module.cmake b/Modules/Applications/AppChangeDetection/otb-module.cmake index a586e145e2..12894b1cbe 100644 --- a/Modules/Applications/AppChangeDetection/otb-module.cmake +++ b/Modules/Applications/AppChangeDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppChangeDetection/test/CMakeLists.txt b/Modules/Applications/AppChangeDetection/test/CMakeLists.txt index fd3612db46..e3ea82f5c2 100644 --- a/Modules/Applications/AppChangeDetection/test/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppClassification/CMakeLists.txt b/Modules/Applications/AppClassification/CMakeLists.txt index 0b48c0995f..3f84f3529e 100644 --- a/Modules/Applications/AppClassification/CMakeLists.txt +++ b/Modules/Applications/AppClassification/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppClassification/app/CMakeLists.txt b/Modules/Applications/AppClassification/app/CMakeLists.txt index 298e3bb3ea..44f70bf38e 100644 --- a/Modules/Applications/AppClassification/app/CMakeLists.txt +++ b/Modules/Applications/AppClassification/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx b/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx index 1c8748d56f..1cd6e9a676 100644 --- a/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx +++ b/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx b/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx index 3f3e683eff..a9e795c8aa 100644 --- a/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx b/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx index 0e01df32a0..a7197b258b 100644 --- a/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx b/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx index f2dd243703..b87db57758 100644 --- a/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx b/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx index 97d1ad0b88..2616a94c5a 100644 --- a/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx +++ b/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbImageClassifier.cxx b/Modules/Applications/AppClassification/app/otbImageClassifier.cxx index 548e1a2a86..886aa2aee0 100644 --- a/Modules/Applications/AppClassification/app/otbImageClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbImageClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbImageRegression.cxx b/Modules/Applications/AppClassification/app/otbImageRegression.cxx index ea743b97fb..a3e0827638 100644 --- a/Modules/Applications/AppClassification/app/otbImageRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbImageRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx b/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx index a238b8f4be..7ae4d3186a 100644 --- a/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx +++ b/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx b/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx index cbb15a0a08..2dd227fccb 100644 --- a/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx +++ b/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx b/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx index bae8fcce59..8379a4ef47 100644 --- a/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx b/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx index 34db3bc3d2..111ab69129 100644 --- a/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbSOMClassification.cxx b/Modules/Applications/AppClassification/app/otbSOMClassification.cxx index 8c10fed6d3..99e75c21ae 100644 --- a/Modules/Applications/AppClassification/app/otbSOMClassification.cxx +++ b/Modules/Applications/AppClassification/app/otbSOMClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx b/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx index 22fa5c9227..023e4dfcc4 100644 --- a/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx b/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx index 823c7a650d..25bbc2e892 100644 --- a/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbSampleSelection.cxx b/Modules/Applications/AppClassification/app/otbSampleSelection.cxx index ee05652479..fc7765b697 100644 --- a/Modules/Applications/AppClassification/app/otbSampleSelection.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleSelection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx b/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx index 2b80a7fa9f..4548930516 100644 --- a/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx b/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx index 0b918c7298..3dff246bf1 100644 --- a/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbTrainRegression.cxx b/Modules/Applications/AppClassification/app/otbTrainRegression.cxx index 038f60c62b..dfaf6ae4be 100644 --- a/Modules/Applications/AppClassification/app/otbTrainRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx b/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx index 94ee4ecbb2..1e7bc0ddcb 100644 --- a/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx b/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx index 58d83cf14a..d93c14a71c 100644 --- a/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx b/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx index 3264bf415a..73e4767e74 100644 --- a/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/app/otbVectorRegression.cxx b/Modules/Applications/AppClassification/app/otbVectorRegression.cxx index ac09b8ad26..e44cd5f111 100644 --- a/Modules/Applications/AppClassification/app/otbVectorRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbVectorRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h index 1a473b9e27..60a79a5707 100644 --- a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h +++ b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx index 2efa7fb55e..ca675a7cdc 100644 --- a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx +++ b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainBoost.hxx b/Modules/Applications/AppClassification/include/otbTrainBoost.hxx index beff81c25c..d3b8ef4896 100644 --- a/Modules/Applications/AppClassification/include/otbTrainBoost.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainBoost.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx b/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx index 4cbcb4b705..6744733135 100644 --- a/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainImagesBase.h b/Modules/Applications/AppClassification/include/otbTrainImagesBase.h index e3f821ac6e..d4d7fc0411 100644 --- a/Modules/Applications/AppClassification/include/otbTrainImagesBase.h +++ b/Modules/Applications/AppClassification/include/otbTrainImagesBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx b/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx index f46114eff6..a198dfe051 100644 --- a/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainKNN.hxx b/Modules/Applications/AppClassification/include/otbTrainKNN.hxx index 056b4fb965..e5d37c42a1 100644 --- a/Modules/Applications/AppClassification/include/otbTrainKNN.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainKNN.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx b/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx index 88c62f4dc8..c504baadec 100644 --- a/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx b/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx index 35af597bdb..713a8aa15d 100644 --- a/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx b/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx index dc3ee3382d..faad513196 100644 --- a/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx b/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx index 80ba16ccdc..b60ce3324b 100644 --- a/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainSVM.hxx b/Modules/Applications/AppClassification/include/otbTrainSVM.hxx index 8c2daa86f9..9f757253b0 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSVM.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSVM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx b/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx index a56b377c31..75135fe9b7 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx b/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx index 5ce351c62d..ecbe30acb4 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainVectorBase.h b/Modules/Applications/AppClassification/include/otbTrainVectorBase.h index f315c09a03..1754a90256 100644 --- a/Modules/Applications/AppClassification/include/otbTrainVectorBase.h +++ b/Modules/Applications/AppClassification/include/otbTrainVectorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx b/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx index 333978113b..933882c04a 100644 --- a/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbVectorPrediction.h b/Modules/Applications/AppClassification/include/otbVectorPrediction.h index ea4a5cc3c9..7716e3f4c1 100644 --- a/Modules/Applications/AppClassification/include/otbVectorPrediction.h +++ b/Modules/Applications/AppClassification/include/otbVectorPrediction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx b/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx index c8229d4c04..bed6e2d1f9 100644 --- a/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx +++ b/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppClassification/otb-module.cmake b/Modules/Applications/AppClassification/otb-module.cmake index 6ebbe5307c..926d4258b0 100644 --- a/Modules/Applications/AppClassification/otb-module.cmake +++ b/Modules/Applications/AppClassification/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppClassification/test/CMakeLists.txt b/Modules/Applications/AppClassification/test/CMakeLists.txt index 5ae60b15b8..86d3b1d3a5 100644 --- a/Modules/Applications/AppClassification/test/CMakeLists.txt +++ b/Modules/Applications/AppClassification/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDescriptors/CMakeLists.txt b/Modules/Applications/AppDescriptors/CMakeLists.txt index beb6c40033..ed4d285ea9 100644 --- a/Modules/Applications/AppDescriptors/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDescriptors/app/CMakeLists.txt b/Modules/Applications/AppDescriptors/app/CMakeLists.txt index 4aefc2d881..9e447cbbb8 100644 --- a/Modules/Applications/AppDescriptors/app/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx b/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx index a682a59b5b..fd6ea7b5eb 100644 --- a/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx +++ b/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDescriptors/otb-module.cmake b/Modules/Applications/AppDescriptors/otb-module.cmake index e459b1b4ce..3465ec8077 100644 --- a/Modules/Applications/AppDescriptors/otb-module.cmake +++ b/Modules/Applications/AppDescriptors/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDescriptors/test/CMakeLists.txt b/Modules/Applications/AppDescriptors/test/CMakeLists.txt index aaee13b3d3..c19e8b789e 100644 --- a/Modules/Applications/AppDescriptors/test/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt b/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt index eddb9b56c0..7e0b3fdab8 100644 --- a/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt b/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt index 835d6ad5a5..db1454c20e 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx b/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx index e655cd4d7a..b925142eee 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx b/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx index 0e9546ba50..325cfa73cf 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx b/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx index 5622bb3f17..e068663eae 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx b/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx index d02b81f715..ded7b2bcfc 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx index b138612384..ebecc2185b 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx index 59d43a0de7..e9c1985660 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx index 0d7fbd1a95..feb7302b53 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h index 8f0288114b..f53b8dd9da 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx index f680d53c3c..5ad0e93bea 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDimensionalityReduction/otb-module.cmake b/Modules/Applications/AppDimensionalityReduction/otb-module.cmake index c227065d5b..ae040a9943 100644 --- a/Modules/Applications/AppDimensionalityReduction/otb-module.cmake +++ b/Modules/Applications/AppDimensionalityReduction/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt b/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt index 2aabc822b4..42374c1a55 100644 --- a/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDomainTransform/CMakeLists.txt b/Modules/Applications/AppDomainTransform/CMakeLists.txt index a3c7bb381b..3bd5f65587 100644 --- a/Modules/Applications/AppDomainTransform/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDomainTransform/app/CMakeLists.txt b/Modules/Applications/AppDomainTransform/app/CMakeLists.txt index 847a7f0255..6a9971fd50 100644 --- a/Modules/Applications/AppDomainTransform/app/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx b/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx index eebe1c8535..0f454dab8e 100644 --- a/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx +++ b/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppDomainTransform/otb-module.cmake b/Modules/Applications/AppDomainTransform/otb-module.cmake index 971bb3ac2c..fdcf95fec6 100644 --- a/Modules/Applications/AppDomainTransform/otb-module.cmake +++ b/Modules/Applications/AppDomainTransform/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppDomainTransform/test/CMakeLists.txt b/Modules/Applications/AppDomainTransform/test/CMakeLists.txt index 58ab158589..262a460733 100644 --- a/Modules/Applications/AppDomainTransform/test/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppEdge/CMakeLists.txt b/Modules/Applications/AppEdge/CMakeLists.txt index 80fe2fbc94..e4121fa213 100644 --- a/Modules/Applications/AppEdge/CMakeLists.txt +++ b/Modules/Applications/AppEdge/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppEdge/app/CMakeLists.txt b/Modules/Applications/AppEdge/app/CMakeLists.txt index db9c539494..178571106d 100644 --- a/Modules/Applications/AppEdge/app/CMakeLists.txt +++ b/Modules/Applications/AppEdge/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx b/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx index 755503246e..db16b8618e 100644 --- a/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx +++ b/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx b/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx index d26b35fccf..ad4d2b528b 100644 --- a/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx +++ b/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppEdge/otb-module.cmake b/Modules/Applications/AppEdge/otb-module.cmake index e2b9590b9c..6ef0692cda 100644 --- a/Modules/Applications/AppEdge/otb-module.cmake +++ b/Modules/Applications/AppEdge/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppEdge/test/CMakeLists.txt b/Modules/Applications/AppEdge/test/CMakeLists.txt index c51bbaea26..4da42509df 100644 --- a/Modules/Applications/AppEdge/test/CMakeLists.txt +++ b/Modules/Applications/AppEdge/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFiltering/CMakeLists.txt b/Modules/Applications/AppFiltering/CMakeLists.txt index df87e17b33..b0979dc084 100644 --- a/Modules/Applications/AppFiltering/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFiltering/app/CMakeLists.txt b/Modules/Applications/AppFiltering/app/CMakeLists.txt index 2a8bf41c4d..38ae9ed65b 100644 --- a/Modules/Applications/AppFiltering/app/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx b/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx index 0d3000bddb..1b6ff969de 100644 --- a/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx +++ b/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx b/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx index 5fa6b5e8d4..2ef296ddca 100644 --- a/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx +++ b/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppFiltering/app/otbSmoothing.cxx b/Modules/Applications/AppFiltering/app/otbSmoothing.cxx index fc96c26f2d..7857ff9739 100644 --- a/Modules/Applications/AppFiltering/app/otbSmoothing.cxx +++ b/Modules/Applications/AppFiltering/app/otbSmoothing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppFiltering/otb-module.cmake b/Modules/Applications/AppFiltering/otb-module.cmake index f711159e26..443c1bbbcc 100644 --- a/Modules/Applications/AppFiltering/otb-module.cmake +++ b/Modules/Applications/AppFiltering/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFiltering/test/CMakeLists.txt b/Modules/Applications/AppFiltering/test/CMakeLists.txt index cc4c8e6d32..c02b542e43 100644 --- a/Modules/Applications/AppFiltering/test/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFusion/CMakeLists.txt b/Modules/Applications/AppFusion/CMakeLists.txt index 5cb0858c3d..4a93a20c94 100644 --- a/Modules/Applications/AppFusion/CMakeLists.txt +++ b/Modules/Applications/AppFusion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFusion/app/CMakeLists.txt b/Modules/Applications/AppFusion/app/CMakeLists.txt index e86007f424..e7f00b8603 100644 --- a/Modules/Applications/AppFusion/app/CMakeLists.txt +++ b/Modules/Applications/AppFusion/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx b/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx index f06633cdb4..cd2f1dd245 100644 --- a/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx +++ b/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppFusion/app/otbPansharpening.cxx b/Modules/Applications/AppFusion/app/otbPansharpening.cxx index 9bbb7ccf37..80ac0d0d67 100644 --- a/Modules/Applications/AppFusion/app/otbPansharpening.cxx +++ b/Modules/Applications/AppFusion/app/otbPansharpening.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppFusion/otb-module.cmake b/Modules/Applications/AppFusion/otb-module.cmake index 9a7dafa017..db2f656d88 100644 --- a/Modules/Applications/AppFusion/otb-module.cmake +++ b/Modules/Applications/AppFusion/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppFusion/test/CMakeLists.txt b/Modules/Applications/AppFusion/test/CMakeLists.txt index 0577eaa786..928bba7fd1 100644 --- a/Modules/Applications/AppFusion/test/CMakeLists.txt +++ b/Modules/Applications/AppFusion/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppHyperspectral/CMakeLists.txt b/Modules/Applications/AppHyperspectral/CMakeLists.txt index 6f09e653ce..dd6415b956 100644 --- a/Modules/Applications/AppHyperspectral/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppHyperspectral/app/CMakeLists.txt b/Modules/Applications/AppHyperspectral/app/CMakeLists.txt index 9ab5697e1e..d484dbbca0 100644 --- a/Modules/Applications/AppHyperspectral/app/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx b/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx index 1291c89a4b..3dcf765ea7 100644 --- a/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx b/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx index 752e7db01e..603301c5e0 100644 --- a/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx b/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx index 7fede9ec07..fca0fc5d5e 100644 --- a/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index b8259426f1..95968e3989 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx b/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx index 889bb0de01..dd940291aa 100644 --- a/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppHyperspectral/otb-module.cmake b/Modules/Applications/AppHyperspectral/otb-module.cmake index c75fbc6d60..6022e5f960 100644 --- a/Modules/Applications/AppHyperspectral/otb-module.cmake +++ b/Modules/Applications/AppHyperspectral/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt index 7165de5422..ac3af694ce 100644 --- a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppImageUtils/CMakeLists.txt b/Modules/Applications/AppImageUtils/CMakeLists.txt index dab8d923a2..0829fe40ec 100644 --- a/Modules/Applications/AppImageUtils/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppImageUtils/app/CMakeLists.txt b/Modules/Applications/AppImageUtils/app/CMakeLists.txt index 8ab7d9e3e6..6f7ab89d92 100644 --- a/Modules/Applications/AppImageUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx b/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx index 470312081b..d193c5ea75 100644 --- a/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx +++ b/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx b/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx index bf7ed517eb..4f72b8e3e9 100644 --- a/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx +++ b/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx b/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx index cceddd15bd..b81a6de655 100644 --- a/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx +++ b/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx b/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx index 0977b788fe..c2cdd67f71 100644 --- a/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx +++ b/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx b/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx index 8e7bc77b11..9c3c1a0e71 100644 --- a/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx +++ b/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx b/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx index cf94adcec7..7fe0632479 100644 --- a/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx +++ b/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbMosaic.cxx b/Modules/Applications/AppImageUtils/app/otbMosaic.cxx index 8ae68279eb..ed04df3dd4 100644 --- a/Modules/Applications/AppImageUtils/app/otbMosaic.cxx +++ b/Modules/Applications/AppImageUtils/app/otbMosaic.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx b/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx index b363c05345..a1850425bb 100644 --- a/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx +++ b/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx b/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx index 0acaf3e5a6..5d3023cda0 100644 --- a/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx +++ b/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx b/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx index 91f8221e3d..dd55d628d0 100644 --- a/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx +++ b/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx b/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx index a2126bfc4b..291ff747a8 100644 --- a/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx +++ b/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbRescale.cxx b/Modules/Applications/AppImageUtils/app/otbRescale.cxx index 8e0e8ded57..b3a0c7d78e 100644 --- a/Modules/Applications/AppImageUtils/app/otbRescale.cxx +++ b/Modules/Applications/AppImageUtils/app/otbRescale.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbResetMargin.cxx b/Modules/Applications/AppImageUtils/app/otbResetMargin.cxx index 44031e0a24..592845e64f 100644 --- a/Modules/Applications/AppImageUtils/app/otbResetMargin.cxx +++ b/Modules/Applications/AppImageUtils/app/otbResetMargin.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx b/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx index d57ac6b54f..5be32dd286 100644 --- a/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx +++ b/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbSynthetize.cxx b/Modules/Applications/AppImageUtils/app/otbSynthetize.cxx index 027a70908b..eb5cea6861 100644 --- a/Modules/Applications/AppImageUtils/app/otbSynthetize.cxx +++ b/Modules/Applications/AppImageUtils/app/otbSynthetize.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx b/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx index 07503af91d..590b38ed49 100644 --- a/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx +++ b/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/otb-module.cmake b/Modules/Applications/AppImageUtils/otb-module.cmake index fc21010520..5f29478751 100644 --- a/Modules/Applications/AppImageUtils/otb-module.cmake +++ b/Modules/Applications/AppImageUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppImageUtils/test/CMakeLists.txt b/Modules/Applications/AppImageUtils/test/CMakeLists.txt index d3d31b2cdb..5df9106a11 100644 --- a/Modules/Applications/AppImageUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx b/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx index 5a43050bdf..ec8b7544c7 100644 --- a/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx +++ b/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx b/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx index fc6542be7b..cc1cd35ce9 100644 --- a/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx +++ b/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppIndices/CMakeLists.txt b/Modules/Applications/AppIndices/CMakeLists.txt index 5745c5adf7..c36913465a 100644 --- a/Modules/Applications/AppIndices/CMakeLists.txt +++ b/Modules/Applications/AppIndices/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppIndices/app/CMakeLists.txt b/Modules/Applications/AppIndices/app/CMakeLists.txt index fd671697f9..b0bf2ae713 100644 --- a/Modules/Applications/AppIndices/app/CMakeLists.txt +++ b/Modules/Applications/AppIndices/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx b/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx index 8c2bcd18e5..19a82730f8 100644 --- a/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx +++ b/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppIndices/otb-module.cmake b/Modules/Applications/AppIndices/otb-module.cmake index 42d5dcb429..4c7dabb93e 100644 --- a/Modules/Applications/AppIndices/otb-module.cmake +++ b/Modules/Applications/AppIndices/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppIndices/test/CMakeLists.txt b/Modules/Applications/AppIndices/test/CMakeLists.txt index 444a58261b..abd65799f8 100644 --- a/Modules/Applications/AppIndices/test/CMakeLists.txt +++ b/Modules/Applications/AppIndices/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppKMZ/CMakeLists.txt b/Modules/Applications/AppKMZ/CMakeLists.txt index 420c7257d5..0b2480d7f8 100644 --- a/Modules/Applications/AppKMZ/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppKMZ/app/CMakeLists.txt b/Modules/Applications/AppKMZ/app/CMakeLists.txt index 29f6af078a..1db440d8e0 100644 --- a/Modules/Applications/AppKMZ/app/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppKMZ/app/otbKmzExport.cxx b/Modules/Applications/AppKMZ/app/otbKmzExport.cxx index 8cc8c05171..86ab83760b 100644 --- a/Modules/Applications/AppKMZ/app/otbKmzExport.cxx +++ b/Modules/Applications/AppKMZ/app/otbKmzExport.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppKMZ/otb-module.cmake b/Modules/Applications/AppKMZ/otb-module.cmake index a6c3b97a48..1e67adb52c 100644 --- a/Modules/Applications/AppKMZ/otb-module.cmake +++ b/Modules/Applications/AppKMZ/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppKMZ/test/CMakeLists.txt b/Modules/Applications/AppKMZ/test/CMakeLists.txt index 7649e98188..74e524698a 100644 --- a/Modules/Applications/AppKMZ/test/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParser/CMakeLists.txt b/Modules/Applications/AppMathParser/CMakeLists.txt index 500a6c56e5..33d299e570 100644 --- a/Modules/Applications/AppMathParser/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParser/app/CMakeLists.txt b/Modules/Applications/AppMathParser/app/CMakeLists.txt index 4e97f026e4..fe1759fe24 100644 --- a/Modules/Applications/AppMathParser/app/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParser/app/otbBandMath.cxx b/Modules/Applications/AppMathParser/app/otbBandMath.cxx index 916128240e..4cdb37d45a 100644 --- a/Modules/Applications/AppMathParser/app/otbBandMath.cxx +++ b/Modules/Applications/AppMathParser/app/otbBandMath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMathParser/otb-module.cmake b/Modules/Applications/AppMathParser/otb-module.cmake index cb707c1376..22f7fe76fb 100644 --- a/Modules/Applications/AppMathParser/otb-module.cmake +++ b/Modules/Applications/AppMathParser/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParser/test/CMakeLists.txt b/Modules/Applications/AppMathParser/test/CMakeLists.txt index eb86c5b6b5..7bcb85f6ed 100644 --- a/Modules/Applications/AppMathParser/test/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParserX/CMakeLists.txt b/Modules/Applications/AppMathParserX/CMakeLists.txt index 304b1226d1..d1bfe51722 100644 --- a/Modules/Applications/AppMathParserX/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParserX/app/CMakeLists.txt b/Modules/Applications/AppMathParserX/app/CMakeLists.txt index e291c28f46..769bad4ed2 100644 --- a/Modules/Applications/AppMathParserX/app/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx b/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx index 580f6d32f1..c31de46dc3 100644 --- a/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx +++ b/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMathParserX/otb-module.cmake b/Modules/Applications/AppMathParserX/otb-module.cmake index d4624ed50b..cb099f258b 100644 --- a/Modules/Applications/AppMathParserX/otb-module.cmake +++ b/Modules/Applications/AppMathParserX/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParserX/test/CMakeLists.txt b/Modules/Applications/AppMathParserX/test/CMakeLists.txt index 2f4102aad7..d7b9f73242 100644 --- a/Modules/Applications/AppMathParserX/test/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx b/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx index 042b06d20b..16330ed63f 100644 --- a/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx +++ b/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMoments/CMakeLists.txt b/Modules/Applications/AppMoments/CMakeLists.txt index 35e0b3287e..3d08a47850 100644 --- a/Modules/Applications/AppMoments/CMakeLists.txt +++ b/Modules/Applications/AppMoments/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMoments/app/CMakeLists.txt b/Modules/Applications/AppMoments/app/CMakeLists.txt index bbd1ef231e..4db9ab3fdc 100644 --- a/Modules/Applications/AppMoments/app/CMakeLists.txt +++ b/Modules/Applications/AppMoments/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx b/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx index 11a46545c2..bdf1dce8b5 100644 --- a/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx +++ b/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMoments/otb-module.cmake b/Modules/Applications/AppMoments/otb-module.cmake index 74a0db771d..6db4743c9a 100644 --- a/Modules/Applications/AppMoments/otb-module.cmake +++ b/Modules/Applications/AppMoments/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMoments/test/CMakeLists.txt b/Modules/Applications/AppMoments/test/CMakeLists.txt index a6b93e5f6e..1f07ee38fc 100644 --- a/Modules/Applications/AppMoments/test/CMakeLists.txt +++ b/Modules/Applications/AppMoments/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMorphology/CMakeLists.txt b/Modules/Applications/AppMorphology/CMakeLists.txt index 375e033879..5d8d3516fc 100644 --- a/Modules/Applications/AppMorphology/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMorphology/app/CMakeLists.txt b/Modules/Applications/AppMorphology/app/CMakeLists.txt index 5badcae472..2e6f922f62 100644 --- a/Modules/Applications/AppMorphology/app/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx b/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx index 4b6816e2c7..2c82a3cb92 100644 --- a/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx +++ b/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx b/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx index a2d7ed7c3e..ceb0f27db0 100644 --- a/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx +++ b/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx b/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx index 4f1f20b12e..a31e64fa38 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx b/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx index ba96f66495..bf54ec486f 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx index b9d30e7d5e..9773ec3a4b 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppMorphology/otb-module.cmake b/Modules/Applications/AppMorphology/otb-module.cmake index df15e25a25..f8bded6831 100644 --- a/Modules/Applications/AppMorphology/otb-module.cmake +++ b/Modules/Applications/AppMorphology/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppMorphology/test/CMakeLists.txt b/Modules/Applications/AppMorphology/test/CMakeLists.txt index 263322896d..47ad0efb67 100644 --- a/Modules/Applications/AppMorphology/test/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppOpticalCalibration/CMakeLists.txt b/Modules/Applications/AppOpticalCalibration/CMakeLists.txt index 699f4f3ad5..faf844782b 100644 --- a/Modules/Applications/AppOpticalCalibration/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt b/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt index 2ed0c4f4e8..7807323c0e 100644 --- a/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx b/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx index 8bca45db62..bb4787b183 100644 --- a/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx +++ b/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppOpticalCalibration/otb-module.cmake b/Modules/Applications/AppOpticalCalibration/otb-module.cmake index 6206fcdd8e..e3fda55029 100644 --- a/Modules/Applications/AppOpticalCalibration/otb-module.cmake +++ b/Modules/Applications/AppOpticalCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt b/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt index 03827191e6..890f537bca 100644 --- a/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppProjection/CMakeLists.txt b/Modules/Applications/AppProjection/CMakeLists.txt index f0d330cda2..e6bdbd8c8e 100644 --- a/Modules/Applications/AppProjection/CMakeLists.txt +++ b/Modules/Applications/AppProjection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppProjection/app/CMakeLists.txt b/Modules/Applications/AppProjection/app/CMakeLists.txt index c644d41f88..1572af13b5 100644 --- a/Modules/Applications/AppProjection/app/CMakeLists.txt +++ b/Modules/Applications/AppProjection/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx b/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx index 60d19b2d1f..596d7aeab7 100644 --- a/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx b/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx index 21235d057c..dc4275c5cc 100644 --- a/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx b/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx index d8dfa50b3c..3e9dca2b06 100644 --- a/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx +++ b/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx b/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx index 65d5b8b23f..11474956dd 100644 --- a/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx +++ b/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx b/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx index c35d90c285..50f9523a4b 100644 --- a/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx +++ b/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx b/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx index f420382ca5..49e0e9ef22 100644 --- a/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx b/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx index e3c84ce799..697a267884 100644 --- a/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx +++ b/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx b/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx index 9dcedb3e2e..2624f56515 100644 --- a/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx +++ b/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx b/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx index 7b64435eb8..ee8181ff54 100644 --- a/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx +++ b/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbSuperimpose.cxx b/Modules/Applications/AppProjection/app/otbSuperimpose.cxx index e94ee42baf..bdc172bd75 100644 --- a/Modules/Applications/AppProjection/app/otbSuperimpose.cxx +++ b/Modules/Applications/AppProjection/app/otbSuperimpose.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx b/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx index fde3ce5be6..895c858308 100644 --- a/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx +++ b/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppProjection/otb-module.cmake b/Modules/Applications/AppProjection/otb-module.cmake index 435dedeb44..fea37e02a7 100644 --- a/Modules/Applications/AppProjection/otb-module.cmake +++ b/Modules/Applications/AppProjection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppProjection/test/CMakeLists.txt b/Modules/Applications/AppProjection/test/CMakeLists.txt index 485807de6b..45795a5c3e 100644 --- a/Modules/Applications/AppProjection/test/CMakeLists.txt +++ b/Modules/Applications/AppProjection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARCalibration/CMakeLists.txt b/Modules/Applications/AppSARCalibration/CMakeLists.txt index 426a631426..774db96a8e 100644 --- a/Modules/Applications/AppSARCalibration/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARCalibration/app/CMakeLists.txt b/Modules/Applications/AppSARCalibration/app/CMakeLists.txt index 442cefcf50..08dc297975 100644 --- a/Modules/Applications/AppSARCalibration/app/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx b/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx index 12c7a08412..6314ff036e 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx b/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx index 7dd4cfb619..77b80d0c33 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx b/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx index 316f976768..aa31363a6e 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx b/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx index 5922deafaf..145d8c982b 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARCalibration/otb-module.cmake b/Modules/Applications/AppSARCalibration/otb-module.cmake index 4b6fe0f3f8..1e312f762b 100644 --- a/Modules/Applications/AppSARCalibration/otb-module.cmake +++ b/Modules/Applications/AppSARCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARCalibration/test/CMakeLists.txt b/Modules/Applications/AppSARCalibration/test/CMakeLists.txt index 528de24f33..987b93a29d 100644 --- a/Modules/Applications/AppSARCalibration/test/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARDecompositions/CMakeLists.txt b/Modules/Applications/AppSARDecompositions/CMakeLists.txt index f59485ef74..dbef8e1e90 100644 --- a/Modules/Applications/AppSARDecompositions/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt b/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt index fc07221ce2..a7ea3a1d33 100644 --- a/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx b/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx index 425a608973..a70db0a4cf 100644 --- a/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx +++ b/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARDecompositions/otb-module.cmake b/Modules/Applications/AppSARDecompositions/otb-module.cmake index 7cc2ed5379..79c0045f29 100644 --- a/Modules/Applications/AppSARDecompositions/otb-module.cmake +++ b/Modules/Applications/AppSARDecompositions/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt b/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt index 308ae96926..d20f99f9b1 100644 --- a/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt b/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt index 14fa0b048e..9696f4a975 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt b/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt index 495d76f555..3315ab5486 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx index 2a6796ccf1..5a6f7fbc7d 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx +++ b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake b/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake index d16cde1cab..71967b7ba9 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake +++ b/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt b/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt index 6b75d79a9e..c52e98fdc0 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarSynth/CMakeLists.txt b/Modules/Applications/AppSARPolarSynth/CMakeLists.txt index e8dbf9c320..3bd733b68b 100644 --- a/Modules/Applications/AppSARPolarSynth/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt b/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt index 0fd2a97aef..21c347d0eb 100644 --- a/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx b/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx index 1a1de2175a..99b41f786b 100644 --- a/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx +++ b/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARPolarSynth/otb-module.cmake b/Modules/Applications/AppSARPolarSynth/otb-module.cmake index 33998128bd..357115497a 100644 --- a/Modules/Applications/AppSARPolarSynth/otb-module.cmake +++ b/Modules/Applications/AppSARPolarSynth/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt b/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt index 8f26f17b8f..7a9c2dd9da 100644 --- a/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARUtils/CMakeLists.txt b/Modules/Applications/AppSARUtils/CMakeLists.txt index 86a32487ed..320e9879a7 100644 --- a/Modules/Applications/AppSARUtils/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARUtils/app/CMakeLists.txt b/Modules/Applications/AppSARUtils/app/CMakeLists.txt index 1cc0a35935..141e03fe19 100644 --- a/Modules/Applications/AppSARUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx b/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx index 9adc7dfc7b..8f3245d3ee 100644 --- a/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx +++ b/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx b/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx index 001e34b61c..fe4d47b44d 100644 --- a/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx +++ b/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSARUtils/otb-module.cmake b/Modules/Applications/AppSARUtils/otb-module.cmake index 83edf81a9d..94a0e3b54f 100644 --- a/Modules/Applications/AppSARUtils/otb-module.cmake +++ b/Modules/Applications/AppSARUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSARUtils/test/CMakeLists.txt b/Modules/Applications/AppSARUtils/test/CMakeLists.txt index fda7d88a24..ae8852a317 100644 --- a/Modules/Applications/AppSARUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSegmentation/CMakeLists.txt b/Modules/Applications/AppSegmentation/CMakeLists.txt index e5f8316c08..5b4b144d5b 100644 --- a/Modules/Applications/AppSegmentation/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSegmentation/app/CMakeLists.txt b/Modules/Applications/AppSegmentation/app/CMakeLists.txt index 7bf47fae9c..dbd07f64fd 100644 --- a/Modules/Applications/AppSegmentation/app/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx b/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx index 1be846dd4c..61d60914ac 100644 --- a/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx b/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx index 126d7f0d08..786ad6d297 100644 --- a/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx b/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx index 85486001a6..be23c60927 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx b/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx index 1daabbd143..c7bd5e349b 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx b/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx index 3f9a359504..abbc4761bf 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx b/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx index c9265a807b..cbfda04948 100644 --- a/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx b/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx index d2328e4c65..8d5f5ec533 100644 --- a/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx +++ b/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx b/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx index 0f6b0f163b..c9e6ffc8ca 100644 --- a/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx b/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx index 5d29d9e49f..cffdfb6cce 100644 --- a/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx +++ b/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppSegmentation/otb-module.cmake b/Modules/Applications/AppSegmentation/otb-module.cmake index 6a994aa7e7..b07afd0f43 100644 --- a/Modules/Applications/AppSegmentation/otb-module.cmake +++ b/Modules/Applications/AppSegmentation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppSegmentation/test/CMakeLists.txt b/Modules/Applications/AppSegmentation/test/CMakeLists.txt index 6a43e121e9..8161617d1f 100644 --- a/Modules/Applications/AppSegmentation/test/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppStereo/CMakeLists.txt b/Modules/Applications/AppStereo/CMakeLists.txt index f247d9f07e..3568a2caaa 100644 --- a/Modules/Applications/AppStereo/CMakeLists.txt +++ b/Modules/Applications/AppStereo/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppStereo/app/CMakeLists.txt b/Modules/Applications/AppStereo/app/CMakeLists.txt index 0e7ae0c921..3ddc560cfd 100644 --- a/Modules/Applications/AppStereo/app/CMakeLists.txt +++ b/Modules/Applications/AppStereo/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppStereo/app/otbBlockMatching.cxx b/Modules/Applications/AppStereo/app/otbBlockMatching.cxx index a21cbb741b..2df939af11 100644 --- a/Modules/Applications/AppStereo/app/otbBlockMatching.cxx +++ b/Modules/Applications/AppStereo/app/otbBlockMatching.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx b/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx index 3bbd24ac73..ae4893eb71 100644 --- a/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx +++ b/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/app/otbFineRegistration.cxx b/Modules/Applications/AppStereo/app/otbFineRegistration.cxx index 4aceb17572..449fea8073 100644 --- a/Modules/Applications/AppStereo/app/otbFineRegistration.cxx +++ b/Modules/Applications/AppStereo/app/otbFineRegistration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx b/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx index 83653248a2..06ba0bcbbe 100644 --- a/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx +++ b/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/app/otbStereoFramework.cxx b/Modules/Applications/AppStereo/app/otbStereoFramework.cxx index 723f7849d8..75da53bea1 100644 --- a/Modules/Applications/AppStereo/app/otbStereoFramework.cxx +++ b/Modules/Applications/AppStereo/app/otbStereoFramework.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx b/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx index d069c8d9fc..94740df8e1 100644 --- a/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx +++ b/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppStereo/otb-module.cmake b/Modules/Applications/AppStereo/otb-module.cmake index 523b9ac0b4..520940597d 100644 --- a/Modules/Applications/AppStereo/otb-module.cmake +++ b/Modules/Applications/AppStereo/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppStereo/test/CMakeLists.txt b/Modules/Applications/AppStereo/test/CMakeLists.txt index c4fb047ed4..7beab0edc8 100644 --- a/Modules/Applications/AppStereo/test/CMakeLists.txt +++ b/Modules/Applications/AppStereo/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTest/CMakeLists.txt b/Modules/Applications/AppTest/CMakeLists.txt index 648fecef68..702b615525 100644 --- a/Modules/Applications/AppTest/CMakeLists.txt +++ b/Modules/Applications/AppTest/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTest/app/CMakeLists.txt b/Modules/Applications/AppTest/app/CMakeLists.txt index 741ebbd252..840a6f246c 100644 --- a/Modules/Applications/AppTest/app/CMakeLists.txt +++ b/Modules/Applications/AppTest/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTest/app/otbTestApplication.cxx b/Modules/Applications/AppTest/app/otbTestApplication.cxx index 2857ac8986..b195662164 100644 --- a/Modules/Applications/AppTest/app/otbTestApplication.cxx +++ b/Modules/Applications/AppTest/app/otbTestApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTest/otb-module.cmake b/Modules/Applications/AppTest/otb-module.cmake index 5d06424a58..bad21df9f7 100644 --- a/Modules/Applications/AppTest/otb-module.cmake +++ b/Modules/Applications/AppTest/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTest/test/CMakeLists.txt b/Modules/Applications/AppTest/test/CMakeLists.txt index 7494c44620..96c98fd728 100644 --- a/Modules/Applications/AppTest/test/CMakeLists.txt +++ b/Modules/Applications/AppTest/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx b/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx index 496174e00f..f82a4074e5 100644 --- a/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx +++ b/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx b/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx index 084bbf91a0..1ed924120c 100644 --- a/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx +++ b/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTextures/CMakeLists.txt b/Modules/Applications/AppTextures/CMakeLists.txt index f8497fdb66..160b2c2a14 100644 --- a/Modules/Applications/AppTextures/CMakeLists.txt +++ b/Modules/Applications/AppTextures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTextures/app/CMakeLists.txt b/Modules/Applications/AppTextures/app/CMakeLists.txt index 60feaefdda..b76d24d65d 100644 --- a/Modules/Applications/AppTextures/app/CMakeLists.txt +++ b/Modules/Applications/AppTextures/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx b/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx index fe344d00ad..1edb5fcdc7 100644 --- a/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx b/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx index 692a02b7ca..0ee794c8d9 100644 --- a/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx b/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx index 5da07e9707..36d68fbbd4 100644 --- a/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppTextures/otb-module.cmake b/Modules/Applications/AppTextures/otb-module.cmake index 7ed2907924..fe4162d373 100644 --- a/Modules/Applications/AppTextures/otb-module.cmake +++ b/Modules/Applications/AppTextures/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppTextures/test/CMakeLists.txt b/Modules/Applications/AppTextures/test/CMakeLists.txt index 98335783a1..5dde8ae711 100644 --- a/Modules/Applications/AppTextures/test/CMakeLists.txt +++ b/Modules/Applications/AppTextures/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt b/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt index 8006e338b5..4162146539 100644 --- a/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt b/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt index 5e3ae60e51..0bd8620b52 100644 --- a/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx b/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx index 7b44358c06..1c7de09299 100644 --- a/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx +++ b/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorDataTranslation/otb-module.cmake b/Modules/Applications/AppVectorDataTranslation/otb-module.cmake index 5dc852f55e..45c0cfa988 100644 --- a/Modules/Applications/AppVectorDataTranslation/otb-module.cmake +++ b/Modules/Applications/AppVectorDataTranslation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt b/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt index 387c1f43dd..9182c10e96 100644 --- a/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorUtils/CMakeLists.txt b/Modules/Applications/AppVectorUtils/CMakeLists.txt index d3bbc61197..43ba7d8201 100644 --- a/Modules/Applications/AppVectorUtils/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorUtils/app/CMakeLists.txt b/Modules/Applications/AppVectorUtils/app/CMakeLists.txt index 80d835c1e2..b16d86b5a1 100644 --- a/Modules/Applications/AppVectorUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx b/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx index 232d4594b2..167ae50b01 100644 --- a/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx b/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx index 6320c93e2e..ce2a450cdc 100644 --- a/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx b/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx index 86d039438c..5e1a749018 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx b/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx index 3dc16820ea..564be7e51c 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx b/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx index 79e45cb57b..13632aa6f6 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppVectorUtils/otb-module.cmake b/Modules/Applications/AppVectorUtils/otb-module.cmake index c9b07824cb..709dda04c7 100644 --- a/Modules/Applications/AppVectorUtils/otb-module.cmake +++ b/Modules/Applications/AppVectorUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Applications/AppVectorUtils/test/CMakeLists.txt b/Modules/Applications/AppVectorUtils/test/CMakeLists.txt index 210e346d18..37a8611c3a 100644 --- a/Modules/Applications/AppVectorUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Common/CMakeLists.txt b/Modules/Core/Common/CMakeLists.txt index b3f56865b3..164dd52a93 100644 --- a/Modules/Core/Common/CMakeLists.txt +++ b/Modules/Core/Common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Common/include/otbCast.h b/Modules/Core/Common/include/otbCast.h index 7d6fd9ac77..528f307d57 100644 --- a/Modules/Core/Common/include/otbCast.h +++ b/Modules/Core/Common/include/otbCast.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbChannelSelectorFunctor.h b/Modules/Core/Common/include/otbChannelSelectorFunctor.h index 9c311e0e11..7cb8d5703e 100644 --- a/Modules/Core/Common/include/otbChannelSelectorFunctor.h +++ b/Modules/Core/Common/include/otbChannelSelectorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbCommandProgressUpdate.h b/Modules/Core/Common/include/otbCommandProgressUpdate.h index 2da25a36fe..9e1d8d4542 100644 --- a/Modules/Core/Common/include/otbCommandProgressUpdate.h +++ b/Modules/Core/Common/include/otbCommandProgressUpdate.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbCommandProgressUpdate.hxx b/Modules/Core/Common/include/otbCommandProgressUpdate.hxx index dc6bb4cc59..8004a41547 100644 --- a/Modules/Core/Common/include/otbCommandProgressUpdate.hxx +++ b/Modules/Core/Common/include/otbCommandProgressUpdate.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h b/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h index 5a7bab6953..3dfb0ca152 100644 --- a/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h +++ b/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h b/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h index 15a3982f64..d5303a2f1f 100644 --- a/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h +++ b/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbConfigurationManager.h b/Modules/Core/Common/include/otbConfigurationManager.h index 6768fb8853..cb3ca7464a 100644 --- a/Modules/Core/Common/include/otbConfigurationManager.h +++ b/Modules/Core/Common/include/otbConfigurationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbDecimateImageFilter.h b/Modules/Core/Common/include/otbDecimateImageFilter.h index b826bc8be2..97d9e730b5 100644 --- a/Modules/Core/Common/include/otbDecimateImageFilter.h +++ b/Modules/Core/Common/include/otbDecimateImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbDecimateImageFilter.hxx b/Modules/Core/Common/include/otbDecimateImageFilter.hxx index 38ff386dd1..4fa592c0d5 100644 --- a/Modules/Core/Common/include/otbDecimateImageFilter.hxx +++ b/Modules/Core/Common/include/otbDecimateImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbExtendedFilenameHelper.h b/Modules/Core/Common/include/otbExtendedFilenameHelper.h index da9b2b69c7..e7ecb69a09 100644 --- a/Modules/Core/Common/include/otbExtendedFilenameHelper.h +++ b/Modules/Core/Common/include/otbExtendedFilenameHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbFilterWatcherBase.h b/Modules/Core/Common/include/otbFilterWatcherBase.h index cf43cd5ccb..b09f2363ce 100644 --- a/Modules/Core/Common/include/otbFilterWatcherBase.h +++ b/Modules/Core/Common/include/otbFilterWatcherBase.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbFunctionToImageFilter.h b/Modules/Core/Common/include/otbFunctionToImageFilter.h index 223752df10..85b9f9a4ea 100644 --- a/Modules/Core/Common/include/otbFunctionToImageFilter.h +++ b/Modules/Core/Common/include/otbFunctionToImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbFunctionToImageFilter.hxx b/Modules/Core/Common/include/otbFunctionToImageFilter.hxx index 7decf5343d..505aa3af31 100644 --- a/Modules/Core/Common/include/otbFunctionToImageFilter.hxx +++ b/Modules/Core/Common/include/otbFunctionToImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.h b/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.h index a40b3b715a..452693d713 100644 --- a/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.h +++ b/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.hxx b/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.hxx index 7514e897da..6c2aba34d8 100644 --- a/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.hxx +++ b/Modules/Core/Common/include/otbImageAndVectorImageOperationFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h index 6fa3d81f69..93bdf8ac30 100644 --- a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx index 76a3b60664..04bae27a98 100644 --- a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.h b/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.h index b0d4b4532e..5a3417af37 100644 --- a/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.hxx b/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.hxx index 3f68409243..d8434a7928 100644 --- a/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionNonUniformMultidimensionalSplitter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h index 7a060a2fef..20a6d91128 100644 --- a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx index 2f6f6bad2c..b868ada3f4 100644 --- a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h index 3e8b04ee4d..e7504def60 100644 --- a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx index 1727f48e3b..a8bf6c856d 100644 --- a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h index e90d9e1e5b..0be3f32f34 100644 --- a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h +++ b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx index b30f69ee53..d563d3fb8d 100644 --- a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx +++ b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h b/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h index f9488217ca..850d9fef24 100644 --- a/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h +++ b/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImportImageFilter.h b/Modules/Core/Common/include/otbImportImageFilter.h index d0686afe3b..980fec5407 100644 --- a/Modules/Core/Common/include/otbImportImageFilter.h +++ b/Modules/Core/Common/include/otbImportImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImportImageFilter.hxx b/Modules/Core/Common/include/otbImportImageFilter.hxx index 3b82c20dda..0329466f26 100644 --- a/Modules/Core/Common/include/otbImportImageFilter.hxx +++ b/Modules/Core/Common/include/otbImportImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImportVectorImageFilter.h b/Modules/Core/Common/include/otbImportVectorImageFilter.h index b58f63616f..e3c826eb1a 100644 --- a/Modules/Core/Common/include/otbImportVectorImageFilter.h +++ b/Modules/Core/Common/include/otbImportVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbImportVectorImageFilter.hxx b/Modules/Core/Common/include/otbImportVectorImageFilter.hxx index 547069a608..ad6bd2c53f 100644 --- a/Modules/Core/Common/include/otbImportVectorImageFilter.hxx +++ b/Modules/Core/Common/include/otbImportVectorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbInterval.h b/Modules/Core/Common/include/otbInterval.h index ff5662e489..a0f9e5c675 100644 --- a/Modules/Core/Common/include/otbInterval.h +++ b/Modules/Core/Common/include/otbInterval.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbLogHelpers.h b/Modules/Core/Common/include/otbLogHelpers.h index f205a69355..e58a14b375 100644 --- a/Modules/Core/Common/include/otbLogHelpers.h +++ b/Modules/Core/Common/include/otbLogHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbLogger.h b/Modules/Core/Common/include/otbLogger.h index d8820b73bd..fc7b2bf5a6 100644 --- a/Modules/Core/Common/include/otbLogger.h +++ b/Modules/Core/Common/include/otbLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbMacro.h b/Modules/Core/Common/include/otbMacro.h index 3cdd8d69cc..a6cf7a3af0 100644 --- a/Modules/Core/Common/include/otbMacro.h +++ b/Modules/Core/Common/include/otbMacro.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbMath.h b/Modules/Core/Common/include/otbMath.h index a5f7a74bbe..f8d646357e 100644 --- a/Modules/Core/Common/include/otbMath.h +++ b/Modules/Core/Common/include/otbMath.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbModelComponentBase.h b/Modules/Core/Common/include/otbModelComponentBase.h index 25964f090b..aa192a1e52 100644 --- a/Modules/Core/Common/include/otbModelComponentBase.h +++ b/Modules/Core/Common/include/otbModelComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbModelComponentBase.hxx b/Modules/Core/Common/include/otbModelComponentBase.hxx index a16dc4a559..0825b65416 100644 --- a/Modules/Core/Common/include/otbModelComponentBase.hxx +++ b/Modules/Core/Common/include/otbModelComponentBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.h b/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.h index 76dcd7acd1..5210d094f6 100644 --- a/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.h +++ b/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.hxx b/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.hxx index edc3767bad..5b3ea85a68 100644 --- a/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.hxx +++ b/Modules/Core/Common/include/otbQuaternaryFunctorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbRGBAPixelConverter.h b/Modules/Core/Common/include/otbRGBAPixelConverter.h index 38b279456b..924fbf673f 100644 --- a/Modules/Core/Common/include/otbRGBAPixelConverter.h +++ b/Modules/Core/Common/include/otbRGBAPixelConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbRGBAPixelConverter.hxx b/Modules/Core/Common/include/otbRGBAPixelConverter.hxx index 2f63c2632e..fa7007534f 100644 --- a/Modules/Core/Common/include/otbRGBAPixelConverter.hxx +++ b/Modules/Core/Common/include/otbRGBAPixelConverter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbRectangle.h b/Modules/Core/Common/include/otbRectangle.h index be7ab95123..d6dde7d2ac 100644 --- a/Modules/Core/Common/include/otbRectangle.h +++ b/Modules/Core/Common/include/otbRectangle.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbRectangle.hxx b/Modules/Core/Common/include/otbRectangle.hxx index 6ac7234510..7f9b8edef9 100644 --- a/Modules/Core/Common/include/otbRectangle.hxx +++ b/Modules/Core/Common/include/otbRectangle.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbSpan.h b/Modules/Core/Common/include/otbSpan.h index 93d27f4617..a3a6602796 100644 --- a/Modules/Core/Common/include/otbSpan.h +++ b/Modules/Core/Common/include/otbSpan.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStandardFilterWatcher.h b/Modules/Core/Common/include/otbStandardFilterWatcher.h index 50fff07dea..a6449f2fec 100644 --- a/Modules/Core/Common/include/otbStandardFilterWatcher.h +++ b/Modules/Core/Common/include/otbStandardFilterWatcher.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.h b/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.h index 603ac8471f..672f7eba5f 100644 --- a/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.h +++ b/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.hxx b/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.hxx index c53c7eea4b..be6216e978 100644 --- a/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.hxx +++ b/Modules/Core/Common/include/otbStandardOneLineFilterWatcher.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStandardOutputPrintCallback.h b/Modules/Core/Common/include/otbStandardOutputPrintCallback.h index 8bb89f4aec..ba197aaa0b 100644 --- a/Modules/Core/Common/include/otbStandardOutputPrintCallback.h +++ b/Modules/Core/Common/include/otbStandardOutputPrintCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStandardWriterWatcher.h b/Modules/Core/Common/include/otbStandardWriterWatcher.h index 446a85ea73..07df535f8c 100644 --- a/Modules/Core/Common/include/otbStandardWriterWatcher.h +++ b/Modules/Core/Common/include/otbStandardWriterWatcher.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStopwatch.h b/Modules/Core/Common/include/otbStopwatch.h index f0b3ea1031..b87bd3f4b5 100644 --- a/Modules/Core/Common/include/otbStopwatch.h +++ b/Modules/Core/Common/include/otbStopwatch.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStringToHTML.h b/Modules/Core/Common/include/otbStringToHTML.h index 93fe29e303..27bcbea474 100644 --- a/Modules/Core/Common/include/otbStringToHTML.h +++ b/Modules/Core/Common/include/otbStringToHTML.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbStringUtilities.h b/Modules/Core/Common/include/otbStringUtilities.h index b18fe076bf..089529f718 100644 --- a/Modules/Core/Common/include/otbStringUtilities.h +++ b/Modules/Core/Common/include/otbStringUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h index 9b2a0aa65d..ee91b4e4f1 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h +++ b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx index 6c28c336c4..0c3dcdb6c2 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx +++ b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h b/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h index 6b15c983ef..601bddeffe 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h +++ b/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/Common/include/otbSystem.h b/Modules/Core/Common/include/otbSystem.h index 0c65cf4f49..7350aafe11 100644 --- a/Modules/Core/Common/include/otbSystem.h +++ b/Modules/Core/Common/include/otbSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h index 321eb8b664..b377ee3ebc 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx index 51fb681fea..807c1ba0a6 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h index 210b31ea59..7e91c56fe0 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx index e70fa9611c..24b69b9529 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h index 8d3fc04da3..303b168edf 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx index 6d07f5db57..5bc8576b25 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h b/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h index d3a70e6067..2ea25404db 100644 --- a/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h +++ b/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbUtils.h b/Modules/Core/Common/include/otbUtils.h index 401db64537..b7253c61f0 100644 --- a/Modules/Core/Common/include/otbUtils.h +++ b/Modules/Core/Common/include/otbUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbVariableLengthVectorConverter.h b/Modules/Core/Common/include/otbVariableLengthVectorConverter.h index 2ba035ac52..816f3b4e10 100644 --- a/Modules/Core/Common/include/otbVariableLengthVectorConverter.h +++ b/Modules/Core/Common/include/otbVariableLengthVectorConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx b/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx index 4ea9526ba8..787751b01b 100644 --- a/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx +++ b/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h b/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h index 3792fb91e4..bc8cbc51ec 100644 --- a/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h +++ b/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h b/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h index 46188183ed..9874495b61 100644 --- a/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h +++ b/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbWriterWatcherBase.h b/Modules/Core/Common/include/otbWriterWatcherBase.h index 5de343e179..eed3ec7303 100644 --- a/Modules/Core/Common/include/otbWriterWatcherBase.h +++ b/Modules/Core/Common/include/otbWriterWatcherBase.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/include/otbZipIterator.h b/Modules/Core/Common/include/otbZipIterator.h index bc40d18331..00ca2f89cf 100644 --- a/Modules/Core/Common/include/otbZipIterator.h +++ b/Modules/Core/Common/include/otbZipIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/otb-module.cmake b/Modules/Core/Common/otb-module.cmake index 0b9196179b..4f84ba3957 100644 --- a/Modules/Core/Common/otb-module.cmake +++ b/Modules/Core/Common/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Common/src/CMakeLists.txt b/Modules/Core/Common/src/CMakeLists.txt index e019cf04a2..b287b98f22 100644 --- a/Modules/Core/Common/src/CMakeLists.txt +++ b/Modules/Core/Common/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Common/src/otbConfigurationManager.cxx b/Modules/Core/Common/src/otbConfigurationManager.cxx index 9e31d0f1f9..a94d8fdffa 100644 --- a/Modules/Core/Common/src/otbConfigurationManager.cxx +++ b/Modules/Core/Common/src/otbConfigurationManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbConfigure.h.in b/Modules/Core/Common/src/otbConfigure.h.in index 3d6c4573e1..0cec5d39b8 100644 --- a/Modules/Core/Common/src/otbConfigure.h.in +++ b/Modules/Core/Common/src/otbConfigure.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx b/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx index 088bee23f8..39ed27f412 100644 --- a/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx +++ b/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbFilterWatcherBase.cxx b/Modules/Core/Common/src/otbFilterWatcherBase.cxx index d03ee198de..883a37fd73 100644 --- a/Modules/Core/Common/src/otbFilterWatcherBase.cxx +++ b/Modules/Core/Common/src/otbFilterWatcherBase.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbLogger.cxx b/Modules/Core/Common/src/otbLogger.cxx index 6141c1d765..c629459099 100644 --- a/Modules/Core/Common/src/otbLogger.cxx +++ b/Modules/Core/Common/src/otbLogger.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStandardFilterWatcher.cxx b/Modules/Core/Common/src/otbStandardFilterWatcher.cxx index cfc2220514..a872475bef 100644 --- a/Modules/Core/Common/src/otbStandardFilterWatcher.cxx +++ b/Modules/Core/Common/src/otbStandardFilterWatcher.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx b/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx index 84a6380dd1..69d9922858 100644 --- a/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx +++ b/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStandardWriterWatcher.cxx b/Modules/Core/Common/src/otbStandardWriterWatcher.cxx index 020634bcc4..5f316fbb11 100644 --- a/Modules/Core/Common/src/otbStandardWriterWatcher.cxx +++ b/Modules/Core/Common/src/otbStandardWriterWatcher.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStopwatch.cxx b/Modules/Core/Common/src/otbStopwatch.cxx index ccb386ff3c..f82ea300bd 100644 --- a/Modules/Core/Common/src/otbStopwatch.cxx +++ b/Modules/Core/Common/src/otbStopwatch.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStringToHTML.cxx b/Modules/Core/Common/src/otbStringToHTML.cxx index bbd4956159..a7aa5e2020 100644 --- a/Modules/Core/Common/src/otbStringToHTML.cxx +++ b/Modules/Core/Common/src/otbStringToHTML.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbStringUtilities.cxx b/Modules/Core/Common/src/otbStringUtilities.cxx index a3a3f25ec2..8ad7d3787a 100644 --- a/Modules/Core/Common/src/otbStringUtilities.cxx +++ b/Modules/Core/Common/src/otbStringUtilities.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbSystem.cxx b/Modules/Core/Common/src/otbSystem.cxx index 974cdec3cd..16965ec1d0 100644 --- a/Modules/Core/Common/src/otbSystem.cxx +++ b/Modules/Core/Common/src/otbSystem.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbUtils.cxx b/Modules/Core/Common/src/otbUtils.cxx index b381b0e006..80a8977764 100644 --- a/Modules/Core/Common/src/otbUtils.cxx +++ b/Modules/Core/Common/src/otbUtils.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/src/otbWriterWatcherBase.cxx b/Modules/Core/Common/src/otbWriterWatcherBase.cxx index 33db493966..b7eeb7d3a2 100644 --- a/Modules/Core/Common/src/otbWriterWatcherBase.cxx +++ b/Modules/Core/Common/src/otbWriterWatcherBase.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/CMakeLists.txt b/Modules/Core/Common/test/CMakeLists.txt index 585160b2f8..5b5ea283e5 100644 --- a/Modules/Core/Common/test/CMakeLists.txt +++ b/Modules/Core/Common/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Common/test/otbCommonTestDriver.cxx b/Modules/Core/Common/test/otbCommonTestDriver.cxx index 07f405b9d9..a8c4a04b78 100644 --- a/Modules/Core/Common/test/otbCommonTestDriver.cxx +++ b/Modules/Core/Common/test/otbCommonTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbConfigurationManagerTest.cxx b/Modules/Core/Common/test/otbConfigurationManagerTest.cxx index 0c0fca7aac..0d5306daf2 100644 --- a/Modules/Core/Common/test/otbConfigurationManagerTest.cxx +++ b/Modules/Core/Common/test/otbConfigurationManagerTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx b/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx index ec8c8f954a..f167b5f993 100644 --- a/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx b/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx index 985b59c8d6..20110ab389 100644 --- a/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx b/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx index 1f1749bc45..bdb04e6d8c 100644 --- a/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx b/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx index 3a83bc7a7e..c9a7f4b8a4 100644 --- a/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbRGBAPixelConverter.cxx b/Modules/Core/Common/test/otbRGBAPixelConverter.cxx index 6fd1152c43..973e59e332 100644 --- a/Modules/Core/Common/test/otbRGBAPixelConverter.cxx +++ b/Modules/Core/Common/test/otbRGBAPixelConverter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbRectangle.cxx b/Modules/Core/Common/test/otbRectangle.cxx index 001ea4fac0..cd7aebfcff 100644 --- a/Modules/Core/Common/test/otbRectangle.cxx +++ b/Modules/Core/Common/test/otbRectangle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx b/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx index 85fe22aabe..0b11a3a0a6 100644 --- a/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx +++ b/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx b/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx index 5ccb17e05a..0245f499c2 100644 --- a/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx +++ b/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbStandardWriterWatcher.cxx b/Modules/Core/Common/test/otbStandardWriterWatcher.cxx index 95be8ffb2e..f8247936f9 100644 --- a/Modules/Core/Common/test/otbStandardWriterWatcher.cxx +++ b/Modules/Core/Common/test/otbStandardWriterWatcher.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbStopwatchTest.cxx b/Modules/Core/Common/test/otbStopwatchTest.cxx index 2140249788..6424b4abc8 100644 --- a/Modules/Core/Common/test/otbStopwatchTest.cxx +++ b/Modules/Core/Common/test/otbStopwatchTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Common/test/otbSystemTest.cxx b/Modules/Core/Common/test/otbSystemTest.cxx index 829005f6f8..657fd065ce 100644 --- a/Modules/Core/Common/test/otbSystemTest.cxx +++ b/Modules/Core/Common/test/otbSystemTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ComplexImage/CMakeLists.txt b/Modules/Core/ComplexImage/CMakeLists.txt index 9bde7f42fd..d51183a040 100644 --- a/Modules/Core/ComplexImage/CMakeLists.txt +++ b/Modules/Core/ComplexImage/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h b/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h index ac1e92a2b1..13caf09197 100644 --- a/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h +++ b/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ComplexImage/otb-module.cmake b/Modules/Core/ComplexImage/otb-module.cmake index b6f0ed37f8..2d7546d7b1 100644 --- a/Modules/Core/ComplexImage/otb-module.cmake +++ b/Modules/Core/ComplexImage/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ComplexImage/test/CMakeLists.txt b/Modules/Core/ComplexImage/test/CMakeLists.txt index 687d4f162b..afa329ee48 100644 --- a/Modules/Core/ComplexImage/test/CMakeLists.txt +++ b/Modules/Core/ComplexImage/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx b/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx index cff63b8354..b970540bcc 100644 --- a/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx +++ b/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx b/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx index 20aeb26134..686a1e32c9 100644 --- a/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx +++ b/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/CMakeLists.txt b/Modules/Core/Functor/CMakeLists.txt index 7d34e6d36b..ca8ed89ca1 100644 --- a/Modules/Core/Functor/CMakeLists.txt +++ b/Modules/Core/Functor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Functor/include/otbDotProductImageFilter.h b/Modules/Core/Functor/include/otbDotProductImageFilter.h index 6b1843f4d3..b5b6f510f5 100644 --- a/Modules/Core/Functor/include/otbDotProductImageFilter.h +++ b/Modules/Core/Functor/include/otbDotProductImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbFunctorImageFilter.h b/Modules/Core/Functor/include/otbFunctorImageFilter.h index f2c55dedef..5ff62df3fb 100644 --- a/Modules/Core/Functor/include/otbFunctorImageFilter.h +++ b/Modules/Core/Functor/include/otbFunctorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbFunctorImageFilter.hxx b/Modules/Core/Functor/include/otbFunctorImageFilter.hxx index 55f7a74bf2..095893940b 100644 --- a/Modules/Core/Functor/include/otbFunctorImageFilter.hxx +++ b/Modules/Core/Functor/include/otbFunctorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbSynthetizeFilter.h b/Modules/Core/Functor/include/otbSynthetizeFilter.h index 88393bcf1a..ec8ae9eb77 100644 --- a/Modules/Core/Functor/include/otbSynthetizeFilter.h +++ b/Modules/Core/Functor/include/otbSynthetizeFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbVariadicAddFunctor.h b/Modules/Core/Functor/include/otbVariadicAddFunctor.h index ab467ad361..83d5d9af18 100644 --- a/Modules/Core/Functor/include/otbVariadicAddFunctor.h +++ b/Modules/Core/Functor/include/otbVariadicAddFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h b/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h index da3148fb41..39be9ce4ed 100644 --- a/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h +++ b/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h b/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h index a09485d68e..c5860618d5 100644 --- a/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h +++ b/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h b/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h index ef582b8255..f49be5d280 100644 --- a/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h +++ b/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/otb-module.cmake b/Modules/Core/Functor/otb-module.cmake index ea44193f4d..3f6919b40b 100644 --- a/Modules/Core/Functor/otb-module.cmake +++ b/Modules/Core/Functor/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Functor/test/CMakeLists.txt b/Modules/Core/Functor/test/CMakeLists.txt index e1492c4cd4..c3d0c6c995 100644 --- a/Modules/Core/Functor/test/CMakeLists.txt +++ b/Modules/Core/Functor/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Functor/test/otbFunctorImageFilter.cxx b/Modules/Core/Functor/test/otbFunctorImageFilter.cxx index f1d50195fc..8bda5bf789 100644 --- a/Modules/Core/Functor/test/otbFunctorImageFilter.cxx +++ b/Modules/Core/Functor/test/otbFunctorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Functor/test/otbFunctorTestDriver.cxx b/Modules/Core/Functor/test/otbFunctorTestDriver.cxx index 4a822b9f56..d85d988227 100644 --- a/Modules/Core/Functor/test/otbFunctorTestDriver.cxx +++ b/Modules/Core/Functor/test/otbFunctorTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/CMakeLists.txt b/Modules/Core/ImageBase/CMakeLists.txt index e5d709239f..63df0d36a3 100644 --- a/Modules/Core/ImageBase/CMakeLists.txt +++ b/Modules/Core/ImageBase/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageBase/include/otbConvertPixelBuffer.h b/Modules/Core/ImageBase/include/otbConvertPixelBuffer.h index c43d50167c..c9044dedfb 100644 --- a/Modules/Core/ImageBase/include/otbConvertPixelBuffer.h +++ b/Modules/Core/ImageBase/include/otbConvertPixelBuffer.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbConvertPixelBuffer.hxx b/Modules/Core/ImageBase/include/otbConvertPixelBuffer.hxx index fa0c557d63..b5c31be0c2 100644 --- a/Modules/Core/ImageBase/include/otbConvertPixelBuffer.hxx +++ b/Modules/Core/ImageBase/include/otbConvertPixelBuffer.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h b/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h index de5479e60a..0b21642285 100644 --- a/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h +++ b/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbExtractROI.h b/Modules/Core/ImageBase/include/otbExtractROI.h index 59faab90c3..421d155b90 100644 --- a/Modules/Core/ImageBase/include/otbExtractROI.h +++ b/Modules/Core/ImageBase/include/otbExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbExtractROI.hxx b/Modules/Core/ImageBase/include/otbExtractROI.hxx index 3f830370f5..4b387ee14b 100644 --- a/Modules/Core/ImageBase/include/otbExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbExtractROIBase.h b/Modules/Core/ImageBase/include/otbExtractROIBase.h index e9e355c1f6..e29ff458f3 100644 --- a/Modules/Core/ImageBase/include/otbExtractROIBase.h +++ b/Modules/Core/ImageBase/include/otbExtractROIBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbExtractROIBase.hxx b/Modules/Core/ImageBase/include/otbExtractROIBase.hxx index ba461e5ad9..c0a3f93711 100644 --- a/Modules/Core/ImageBase/include/otbExtractROIBase.hxx +++ b/Modules/Core/ImageBase/include/otbExtractROIBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImage.h b/Modules/Core/ImageBase/include/otbImage.h index 9a6f1156b1..bff0458e22 100644 --- a/Modules/Core/ImageBase/include/otbImage.h +++ b/Modules/Core/ImageBase/include/otbImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImage.hxx b/Modules/Core/ImageBase/include/otbImage.hxx index 2b69b67070..cf13c7fcf1 100644 --- a/Modules/Core/ImageBase/include/otbImage.hxx +++ b/Modules/Core/ImageBase/include/otbImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageCommons.h b/Modules/Core/ImageBase/include/otbImageCommons.h index aec5d61d5b..06c284a85c 100644 --- a/Modules/Core/ImageBase/include/otbImageCommons.h +++ b/Modules/Core/ImageBase/include/otbImageCommons.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h index b556ca460d..4ce42272a8 100644 --- a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h +++ b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx index cb3b663f37..fa3cb2b088 100644 --- a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx +++ b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageIOBase.h b/Modules/Core/ImageBase/include/otbImageIOBase.h index e3e36ddc20..2020eab2b2 100644 --- a/Modules/Core/ImageBase/include/otbImageIOBase.h +++ b/Modules/Core/ImageBase/include/otbImageIOBase.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h index f135c7137d..17dd313342 100644 --- a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx index a3c69243b2..be9e3a3adb 100644 --- a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMetaImageFunction.h b/Modules/Core/ImageBase/include/otbMetaImageFunction.h index d3c425344f..fd2c5088c8 100644 --- a/Modules/Core/ImageBase/include/otbMetaImageFunction.h +++ b/Modules/Core/ImageBase/include/otbMetaImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx b/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx index e7ddf096b5..8785bfb987 100644 --- a/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx +++ b/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h index c802d7ef05..fd0bbb024f 100644 --- a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx index bfb45e70b3..8dd37bd5a5 100644 --- a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h index f3a062330c..c6b1db3125 100644 --- a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx index 4cc960db90..9d92e126b9 100644 --- a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h b/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h index c623e21cf0..fc1cc46e3b 100644 --- a/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h +++ b/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbVectorImage.h b/Modules/Core/ImageBase/include/otbVectorImage.h index b639b227f2..3c8e96161f 100644 --- a/Modules/Core/ImageBase/include/otbVectorImage.h +++ b/Modules/Core/ImageBase/include/otbVectorImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/include/otbVectorImage.hxx b/Modules/Core/ImageBase/include/otbVectorImage.hxx index 43c173b01d..8965f54ae9 100644 --- a/Modules/Core/ImageBase/include/otbVectorImage.hxx +++ b/Modules/Core/ImageBase/include/otbVectorImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/otb-module.cmake b/Modules/Core/ImageBase/otb-module.cmake index 6eb0d34332..af69b90278 100644 --- a/Modules/Core/ImageBase/otb-module.cmake +++ b/Modules/Core/ImageBase/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageBase/src/CMakeLists.txt b/Modules/Core/ImageBase/src/CMakeLists.txt index 8d246c6278..12e45c8d36 100644 --- a/Modules/Core/ImageBase/src/CMakeLists.txt +++ b/Modules/Core/ImageBase/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageBase/src/otbImage.cxx b/Modules/Core/ImageBase/src/otbImage.cxx index bf1f308ce7..d66a1f3e47 100644 --- a/Modules/Core/ImageBase/src/otbImage.cxx +++ b/Modules/Core/ImageBase/src/otbImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/src/otbImageCommons.cxx b/Modules/Core/ImageBase/src/otbImageCommons.cxx index 3fe86c7074..b6d705e443 100644 --- a/Modules/Core/ImageBase/src/otbImageCommons.cxx +++ b/Modules/Core/ImageBase/src/otbImageCommons.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/src/otbImageIOBase.cxx b/Modules/Core/ImageBase/src/otbImageIOBase.cxx index c069924aca..da60a948ea 100644 --- a/Modules/Core/ImageBase/src/otbImageIOBase.cxx +++ b/Modules/Core/ImageBase/src/otbImageIOBase.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/src/otbVectorImage.cxx b/Modules/Core/ImageBase/src/otbVectorImage.cxx index fe1da801cb..c24518fe97 100644 --- a/Modules/Core/ImageBase/src/otbVectorImage.cxx +++ b/Modules/Core/ImageBase/src/otbVectorImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx b/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx index e5ab2f7ecd..f2e1ed8091 100644 --- a/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx +++ b/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx b/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx index d98a090bab..d5e2caa9c6 100644 --- a/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx +++ b/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/CMakeLists.txt b/Modules/Core/ImageBase/test/CMakeLists.txt index f1aa0c3c1c..6eeb45489c 100644 --- a/Modules/Core/ImageBase/test/CMakeLists.txt +++ b/Modules/Core/ImageBase/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx b/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx index 55c0092afd..8c56ca2d9e 100644 --- a/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx +++ b/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx b/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx index 9b5d6f6a10..96d45b57a4 100644 --- a/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx +++ b/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbExtractROI.cxx b/Modules/Core/ImageBase/test/otbExtractROI.cxx index 9e7d08ab49..e085f4a5f0 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbExtractROI2.cxx b/Modules/Core/ImageBase/test/otbExtractROI2.cxx index 40b1648d6b..0127eb6b12 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI2.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx b/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx index 2e8d14c248..f853452141 100644 --- a/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx b/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx index be7dae7283..f9aa77cdd9 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx b/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx index 5f61b4fd17..605c40d8b3 100644 --- a/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx +++ b/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx b/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx index a1fa7cba81..295b71a7a5 100644 --- a/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx +++ b/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx b/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx index aee9a4cd41..94bdce4e7a 100644 --- a/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx +++ b/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx b/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx index 316dd1794b..39c5c73d18 100644 --- a/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx +++ b/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx b/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx index 3f76e53d24..653da9aa22 100644 --- a/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx +++ b/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx b/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx index 116978a06c..725f541c81 100644 --- a/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImagePCAShapeModelEstimatorTest.cxx b/Modules/Core/ImageBase/test/otbImagePCAShapeModelEstimatorTest.cxx index c6819a850b..f7d35d2633 100644 --- a/Modules/Core/ImageBase/test/otbImagePCAShapeModelEstimatorTest.cxx +++ b/Modules/Core/ImageBase/test/otbImagePCAShapeModelEstimatorTest.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbImageTest.cxx b/Modules/Core/ImageBase/test/otbImageTest.cxx index 6d3974be35..452274ffc4 100644 --- a/Modules/Core/ImageBase/test/otbImageTest.cxx +++ b/Modules/Core/ImageBase/test/otbImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx b/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx index a04e4c66c8..e040d474a6 100644 --- a/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx +++ b/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx b/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx index 0ea31302df..0aa73a921b 100644 --- a/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx b/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx index a02dd2c454..3a1449e1ad 100644 --- a/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbPixelComponentIteratorTest.cxx b/Modules/Core/ImageBase/test/otbPixelComponentIteratorTest.cxx index 615d80d27c..92c4d0ddae 100644 --- a/Modules/Core/ImageBase/test/otbPixelComponentIteratorTest.cxx +++ b/Modules/Core/ImageBase/test/otbPixelComponentIteratorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx b/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx index 1dc12b7b43..90e5330ed8 100644 --- a/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx +++ b/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageBase/test/otbVectorImageTest.cxx b/Modules/Core/ImageBase/test/otbVectorImageTest.cxx index 991023e8f4..c041c77e1d 100644 --- a/Modules/Core/ImageBase/test/otbVectorImageTest.cxx +++ b/Modules/Core/ImageBase/test/otbVectorImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/CMakeLists.txt b/Modules/Core/ImageList/CMakeLists.txt index 22d28a9a89..7e56d4e7e3 100644 --- a/Modules/Core/ImageList/CMakeLists.txt +++ b/Modules/Core/ImageList/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageList/include/otbImageList.h b/Modules/Core/ImageList/include/otbImageList.h index ee44054c48..5e10616676 100644 --- a/Modules/Core/ImageList/include/otbImageList.h +++ b/Modules/Core/ImageList/include/otbImageList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageList.hxx b/Modules/Core/ImageList/include/otbImageList.hxx index 95bef5f0cf..e43212fee4 100644 --- a/Modules/Core/ImageList/include/otbImageList.hxx +++ b/Modules/Core/ImageList/include/otbImageList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListSource.h b/Modules/Core/ImageList/include/otbImageListSource.h index 178def0675..5cb84d78c0 100644 --- a/Modules/Core/ImageList/include/otbImageListSource.h +++ b/Modules/Core/ImageList/include/otbImageListSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListSource.hxx b/Modules/Core/ImageList/include/otbImageListSource.hxx index 0870faa8ed..4133bb836e 100644 --- a/Modules/Core/ImageList/include/otbImageListSource.hxx +++ b/Modules/Core/ImageList/include/otbImageListSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageFilter.h b/Modules/Core/ImageList/include/otbImageListToImageFilter.h index 7fc2b0b1bb..341c8591ea 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageFilter.h +++ b/Modules/Core/ImageList/include/otbImageListToImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageFilter.hxx b/Modules/Core/ImageList/include/otbImageListToImageFilter.hxx index ce24709526..fe474a50b8 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageListToImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.h b/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.h index 2335079a52..1055c3ee83 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.h +++ b/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.hxx b/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.hxx index 52371d5694..1ae44c0d5f 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageListToImageListApplyFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageListFilter.h b/Modules/Core/ImageList/include/otbImageListToImageListFilter.h index fb1ff13003..cc6963ed75 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageListFilter.h +++ b/Modules/Core/ImageList/include/otbImageListToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToImageListFilter.hxx b/Modules/Core/ImageList/include/otbImageListToImageListFilter.hxx index 956ae77f19..a3b3b5a6a6 100644 --- a/Modules/Core/ImageList/include/otbImageListToImageListFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageListToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.h b/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.h index 05fe92261c..1bad60715c 100644 --- a/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.h +++ b/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.hxx b/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.hxx index 334864f651..a9fc1b3f61 100644 --- a/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageListToSingleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.h b/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.h index 799c4285ed..d89d79b446 100644 --- a/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.h +++ b/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.hxx b/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.hxx index bc2884e537..7abbccba70 100644 --- a/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageListToVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageToImageListFilter.h b/Modules/Core/ImageList/include/otbImageToImageListFilter.h index 5a20c32deb..ca80929704 100644 --- a/Modules/Core/ImageList/include/otbImageToImageListFilter.h +++ b/Modules/Core/ImageList/include/otbImageToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbImageToImageListFilter.hxx b/Modules/Core/ImageList/include/otbImageToImageListFilter.hxx index fdd1b333dd..311111e0b0 100644 --- a/Modules/Core/ImageList/include/otbImageToImageListFilter.hxx +++ b/Modules/Core/ImageList/include/otbImageToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.h b/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.h index d44cad898a..5d7648fe6b 100644 --- a/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.h +++ b/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.hxx b/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.hxx index 6621d56839..ae1e8bbd3a 100644 --- a/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.hxx +++ b/Modules/Core/ImageList/include/otbVectorImageToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/otb-module.cmake b/Modules/Core/ImageList/otb-module.cmake index 6aab291766..21c861d7ae 100644 --- a/Modules/Core/ImageList/otb-module.cmake +++ b/Modules/Core/ImageList/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageList/test/CMakeLists.txt b/Modules/Core/ImageList/test/CMakeLists.txt index e7ea2c34b7..624af5014b 100644 --- a/Modules/Core/ImageList/test/CMakeLists.txt +++ b/Modules/Core/ImageList/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ImageList/test/otbImageList.cxx b/Modules/Core/ImageList/test/otbImageList.cxx index 2f05c51205..eae131d812 100644 --- a/Modules/Core/ImageList/test/otbImageList.cxx +++ b/Modules/Core/ImageList/test/otbImageList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/test/otbImageListTestDriver.cxx b/Modules/Core/ImageList/test/otbImageListTestDriver.cxx index f364e29da6..f44077e82e 100644 --- a/Modules/Core/ImageList/test/otbImageListTestDriver.cxx +++ b/Modules/Core/ImageList/test/otbImageListTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/test/otbImageListToImageListApplyFilter.cxx b/Modules/Core/ImageList/test/otbImageListToImageListApplyFilter.cxx index 1e23305404..e491b1bf1b 100644 --- a/Modules/Core/ImageList/test/otbImageListToImageListApplyFilter.cxx +++ b/Modules/Core/ImageList/test/otbImageListToImageListApplyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/test/otbImageListToVectorImageFilter.cxx b/Modules/Core/ImageList/test/otbImageListToVectorImageFilter.cxx index 4bd4cb5e15..b0ea0c4c5d 100644 --- a/Modules/Core/ImageList/test/otbImageListToVectorImageFilter.cxx +++ b/Modules/Core/ImageList/test/otbImageListToVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/test/otbImageListToVectorImageFilter2.cxx b/Modules/Core/ImageList/test/otbImageListToVectorImageFilter2.cxx index a2514d8659..1bda67bb79 100644 --- a/Modules/Core/ImageList/test/otbImageListToVectorImageFilter2.cxx +++ b/Modules/Core/ImageList/test/otbImageListToVectorImageFilter2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ImageList/test/otbVectorImageToImageListFilter.cxx b/Modules/Core/ImageList/test/otbVectorImageToImageListFilter.cxx index 83fd9e353c..393e97f899 100644 --- a/Modules/Core/ImageList/test/otbVectorImageToImageListFilter.cxx +++ b/Modules/Core/ImageList/test/otbVectorImageToImageListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/CMakeLists.txt b/Modules/Core/Interpolation/CMakeLists.txt index df2a4f2965..61bafeccb1 100644 --- a/Modules/Core/Interpolation/CMakeLists.txt +++ b/Modules/Core/Interpolation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h index b81a459395..5bd8a4d1f6 100644 --- a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx index 1f11c9bcee..2714e6726e 100644 --- a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h index 24d967348a..533e340b36 100644 --- a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h +++ b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx index ffceb26f81..1061d602c5 100644 --- a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx +++ b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h index 4fcc82ed92..e6209c6359 100644 --- a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx index 8fe6927121..94aa868fb8 100644 --- a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h index 1269d27229..4ece131154 100644 --- a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx index ad914901b5..5d31211fa2 100644 --- a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h index 839af678ca..45f194f321 100644 --- a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx index 38226923ee..18712eec5d 100644 --- a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbStreamingTraits.h b/Modules/Core/Interpolation/include/otbStreamingTraits.h index 871edba60c..3d7891b04c 100644 --- a/Modules/Core/Interpolation/include/otbStreamingTraits.h +++ b/Modules/Core/Interpolation/include/otbStreamingTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbStreamingTraits.hxx b/Modules/Core/Interpolation/include/otbStreamingTraits.hxx index 8ba9613053..e0ed58fcd9 100644 --- a/Modules/Core/Interpolation/include/otbStreamingTraits.hxx +++ b/Modules/Core/Interpolation/include/otbStreamingTraits.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h index e891acbc0f..38a169f34b 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h index ea122f13aa..ec709084d7 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h index 84356c4894..7bed934f6e 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx index 2a945da66a..36f1e98c96 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h index 7bbe92482a..1ae0630a65 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h index 776a144e1e..ce4e49d9ce 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h index 03095a87a5..ab20db19cb 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h index fc5d29d2ec..32e69bcff2 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/otb-module.cmake b/Modules/Core/Interpolation/otb-module.cmake index 91c9bfef2e..a85a6148b9 100644 --- a/Modules/Core/Interpolation/otb-module.cmake +++ b/Modules/Core/Interpolation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Interpolation/test/CMakeLists.txt b/Modules/Core/Interpolation/test/CMakeLists.txt index 7176f8b003..54f13f90f4 100644 --- a/Modules/Core/Interpolation/test/CMakeLists.txt +++ b/Modules/Core/Interpolation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx b/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx index a20da199ff..ca3724af78 100644 --- a/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx b/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx index ead96e7030..a16e00559b 100644 --- a/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx +++ b/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx b/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx index b7fc38b4b0..169fc3b315 100644 --- a/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx b/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx index 7cc6dc5608..f0445d3cad 100644 --- a/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx +++ b/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx b/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx index ff59846006..5cc3ec6e6e 100644 --- a/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx b/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx index b7bde54f6e..a4c0d35ed8 100644 --- a/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx +++ b/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbStreamingTraits.cxx b/Modules/Core/Interpolation/test/otbStreamingTraits.cxx index 5acbfe845a..dd9dae4e46 100644 --- a/Modules/Core/Interpolation/test/otbStreamingTraits.cxx +++ b/Modules/Core/Interpolation/test/otbStreamingTraits.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx index 9860b33351..9be2cf561d 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx index 24b0e4f0c0..6141900a2e 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx index 2d354c5a86..aaf18e9e5d 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx index 0dd662a546..55237993a1 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx index a51fdaa6c3..8ed7ecc69d 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx index 7cff0d471a..a6e914c54c 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/CMakeLists.txt b/Modules/Core/LabelMap/CMakeLists.txt index 2bec8a64e3..0ee0dc983d 100644 --- a/Modules/Core/LabelMap/CMakeLists.txt +++ b/Modules/Core/LabelMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h b/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h index 375a49938e..57ae1a2c51 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h b/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h index e99d314150..541765b1e8 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h index dc4d753c31..ddc208336b 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx index c7f9f85789..1a199271c1 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h index 2415acc8c3..4e9b496517 100644 --- a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx index 06b7ce8100..9ba62fbbc2 100644 --- a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h index cd75852dc1..a8ce467b5d 100644 --- a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h +++ b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx index da273660ca..1ec3ac6981 100644 --- a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx +++ b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h index 95e389c60d..fac9a6d813 100644 --- a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx index a6375aa60e..e3e6e6c955 100644 --- a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.h b/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.h index bf12c49bf1..376e6196c9 100644 --- a/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.hxx b/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.hxx index 99296843e7..e03653253f 100644 --- a/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelImageToLabelMapWithAdjacencyFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapFeaturesFunctorImageFilter.h b/Modules/Core/LabelMap/include/otbLabelMapFeaturesFunctorImageFilter.h index fdcdd14a20..ab65388ac4 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapFeaturesFunctorImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapFeaturesFunctorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapSource.h b/Modules/Core/LabelMap/include/otbLabelMapSource.h index 18ef707c34..3d8b22f6a3 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapSource.h +++ b/Modules/Core/LabelMap/include/otbLabelMapSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapSource.hxx b/Modules/Core/LabelMap/include/otbLabelMapSource.hxx index b95fe491f5..bb796d17d8 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapSource.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h index 73c6ccaeca..4a1f8f752e 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx index 3fcd9f1a1f..7283fec0b5 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.h b/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.h index 30e3bc88ad..ed22033ed7 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.hxx b/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.hxx index 6da7d29312..2d178f3af3 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapToLabelImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h index 493624e6a9..8617c87b7c 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx index 56f0cb5c2b..41a9bdca82 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h b/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h index a841757164..7c14559bca 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h index 9482c809bc..933e83dacc 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx index e3dc5adade..29a003f220 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h index 8954e79d13..a98ab84a61 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx index daa5f63e23..ee7c27bf2d 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h b/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h index b06778e84c..7acaa438c3 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h index c2dc8e4dcb..f199a53f8b 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx index 70ec798f73..1f90b57a47 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx +++ b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h b/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h index 16c71cd486..4dae9de1a4 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h b/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h index 56b122f956..c0253d4c03 100644 --- a/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h +++ b/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h index 2d6285c680..48cbce6ebd 100644 --- a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx index 7d94cbfb41..6854495ba4 100644 --- a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.h index d0294d9400..4a77e1bfa9 100644 --- a/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.hxx index 8f0a9c9839..16c161c59f 100644 --- a/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbNormalizeAttributesLabelMapFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.h index edf8ec7962..99fa3da53e 100644 --- a/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.hxx index b871a13eff..a8b457b275 100644 --- a/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbShapeAttributesLabelMapFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.h b/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.h index 4247f0d531..50c1b3cc02 100644 --- a/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.hxx b/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.hxx index 877efea596..8ba25fba87 100644 --- a/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbStatisticsAttributesLabelMapFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/otb-module.cmake b/Modules/Core/LabelMap/otb-module.cmake index 5edd40c6a3..412b092b84 100644 --- a/Modules/Core/LabelMap/otb-module.cmake +++ b/Modules/Core/LabelMap/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/LabelMap/test/CMakeLists.txt b/Modules/Core/LabelMap/test/CMakeLists.txt index e0f30bc995..01b04cad01 100644 --- a/Modules/Core/LabelMap/test/CMakeLists.txt +++ b/Modules/Core/LabelMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx b/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx index 904cfac8e7..a168b96036 100644 --- a/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx b/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx index 5188f4b81d..38d5038a27 100644 --- a/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx +++ b/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx b/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx index a2ddd1a011..a401a78872 100644 --- a/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx b/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx index dfb4f8729f..3c5ee55ed8 100644 --- a/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx b/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx index 5eb833e864..8db76ec351 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx b/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx index 0e20a9f4cb..07d74be3a9 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx b/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx index 63ad4412ab..107f898def 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx b/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx index a38a3f5116..413889d889 100644 --- a/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx +++ b/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx b/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx index 287e18bfce..35a5a353f1 100644 --- a/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx b/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx index af742475fc..ea0ae4c092 100644 --- a/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/CMakeLists.txt b/Modules/Core/Metadata/CMakeLists.txt index f6227478db..3a9f12c0b4 100644 --- a/Modules/Core/Metadata/CMakeLists.txt +++ b/Modules/Core/Metadata/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h index 4659beb1c9..0dcb9629f7 100644 --- a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h index 401c1d0d47..9eef5d0544 100644 --- a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbDateTime.h b/Modules/Core/Metadata/include/otbDateTime.h index cafbf6b7cc..9db66fc5a2 100644 --- a/Modules/Core/Metadata/include/otbDateTime.h +++ b/Modules/Core/Metadata/include/otbDateTime.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h index 2b93bdf693..4608860945 100644 --- a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h index d854337f3f..15a9b73146 100644 --- a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbDimapMetadataHelper.h b/Modules/Core/Metadata/include/otbDimapMetadataHelper.h index 0d41b0b485..18820881a8 100644 --- a/Modules/Core/Metadata/include/otbDimapMetadataHelper.h +++ b/Modules/Core/Metadata/include/otbDimapMetadataHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbFilterFunctionValues.h b/Modules/Core/Metadata/include/otbFilterFunctionValues.h index b1e720452b..1dbf3b943d 100644 --- a/Modules/Core/Metadata/include/otbFilterFunctionValues.h +++ b/Modules/Core/Metadata/include/otbFilterFunctionValues.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h index 1fc39ab658..116c765437 100644 --- a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h index 37776ac3d2..5991c72117 100644 --- a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbGeomMetadataSupplier.h b/Modules/Core/Metadata/include/otbGeomMetadataSupplier.h index b5ae019cf6..50f4219711 100644 --- a/Modules/Core/Metadata/include/otbGeomMetadataSupplier.h +++ b/Modules/Core/Metadata/include/otbGeomMetadataSupplier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbGeometryMetadata.h b/Modules/Core/Metadata/include/otbGeometryMetadata.h index 080859fe05..75f680503b 100644 --- a/Modules/Core/Metadata/include/otbGeometryMetadata.h +++ b/Modules/Core/Metadata/include/otbGeometryMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h index 899bb7050b..1cac6ffefb 100644 --- a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h index 19707eea5d..2456226820 100644 --- a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbImageMetadata.h b/Modules/Core/Metadata/include/otbImageMetadata.h index abf839621d..692d891551 100644 --- a/Modules/Core/Metadata/include/otbImageMetadata.h +++ b/Modules/Core/Metadata/include/otbImageMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h b/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h index 0453fb0e0e..ab58028dcd 100644 --- a/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h +++ b/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h index ea1b0583d8..15481a80f0 100644 --- a/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbMetaDataKey.h b/Modules/Core/Metadata/include/otbMetaDataKey.h index 3a15035e7e..0ca79bb6c9 100644 --- a/Modules/Core/Metadata/include/otbMetaDataKey.h +++ b/Modules/Core/Metadata/include/otbMetaDataKey.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbMetadataStorageInterface.h b/Modules/Core/Metadata/include/otbMetadataStorageInterface.h index 892f0f5b6a..78d61e1d81 100644 --- a/Modules/Core/Metadata/include/otbMetadataStorageInterface.h +++ b/Modules/Core/Metadata/include/otbMetadataStorageInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbMetadataSupplierInterface.h b/Modules/Core/Metadata/include/otbMetadataSupplierInterface.h index d2382893a6..8bf4d4ac11 100644 --- a/Modules/Core/Metadata/include/otbMetadataSupplierInterface.h +++ b/Modules/Core/Metadata/include/otbMetadataSupplierInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbMetadataSupplierInterface.hxx b/Modules/Core/Metadata/include/otbMetadataSupplierInterface.hxx index 9d341637ba..361c05da88 100644 --- a/Modules/Core/Metadata/include/otbMetadataSupplierInterface.hxx +++ b/Modules/Core/Metadata/include/otbMetadataSupplierInterface.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbMissingMetadataException.h b/Modules/Core/Metadata/include/otbMissingMetadataException.h index 4d19d9db69..7255abb41c 100644 --- a/Modules/Core/Metadata/include/otbMissingMetadataException.h +++ b/Modules/Core/Metadata/include/otbMissingMetadataException.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbNoDataHelper.h b/Modules/Core/Metadata/include/otbNoDataHelper.h index 33f2d40725..69b44ca4c8 100644 --- a/Modules/Core/Metadata/include/otbNoDataHelper.h +++ b/Modules/Core/Metadata/include/otbNoDataHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h index c04defa0d3..d6991beb8b 100644 --- a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h index 3c8d4ef6e0..5a2ca87376 100644 --- a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h index 2fe915e18a..b671734a0b 100644 --- a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h index 74b5e87c0b..8eddfa3174 100644 --- a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h index ad18dde421..ad8ed96199 100644 --- a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h index eb32986772..076e8080e6 100644 --- a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h index 9372f58bd4..51cb75c769 100644 --- a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h index d5595ef38e..0338458b67 100644 --- a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h index 1d46587c4a..1ff46195be 100644 --- a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h index 7aa256ad10..46ce6555a8 100644 --- a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSARMetadata.h b/Modules/Core/Metadata/include/otbSARMetadata.h index fcddcf44d6..9f154c2637 100644 --- a/Modules/Core/Metadata/include/otbSARMetadata.h +++ b/Modules/Core/Metadata/include/otbSARMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h b/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h index 3821bead94..c2bb4d3885 100644 --- a/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h +++ b/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h index 2b9f56f58d..624547af1a 100644 --- a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h index bbd530df1f..4db45da9f4 100644 --- a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h b/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h index 6269d2649d..5eb4ebeceb 100644 --- a/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h index b520c0aa3a..30810c0c99 100644 --- a/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h index b336ff3435..15113f5bbf 100644 --- a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h index c81b127af2..5af43dcf4f 100644 --- a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSentinel1ThermalNoiseLookupData.h b/Modules/Core/Metadata/include/otbSentinel1ThermalNoiseLookupData.h index 6c5cfe6d62..46ea52fe1e 100644 --- a/Modules/Core/Metadata/include/otbSentinel1ThermalNoiseLookupData.h +++ b/Modules/Core/Metadata/include/otbSentinel1ThermalNoiseLookupData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h index 8ec4b70863..ec0a9d7318 100644 --- a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h index f04746e019..0bacd2ca47 100644 --- a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h b/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h index 1476eb8672..f705f9b7b9 100644 --- a/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h index 9404aedab1..e2e6b2e453 100644 --- a/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterface.h b/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterface.h index 64594603ca..3407af6696 100644 --- a/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterfaceFactory.h index 69a5a4fff3..7c652af34e 100644 --- a/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbTerraSarXSarImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h index 25acc8a6f4..3060311f79 100644 --- a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h index ab3ef01ae3..debca6b24d 100644 --- a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbXMLMetadataSupplier.h b/Modules/Core/Metadata/include/otbXMLMetadataSupplier.h index be8bb32111..506f550e14 100644 --- a/Modules/Core/Metadata/include/otbXMLMetadataSupplier.h +++ b/Modules/Core/Metadata/include/otbXMLMetadataSupplier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/otb-module.cmake b/Modules/Core/Metadata/otb-module.cmake index 3c6b2cb4a1..3dc3bd69fb 100644 --- a/Modules/Core/Metadata/otb-module.cmake +++ b/Modules/Core/Metadata/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Metadata/src/CMakeLists.txt b/Modules/Core/Metadata/src/CMakeLists.txt index b1140df7fc..c22b3f1683 100644 --- a/Modules/Core/Metadata/src/CMakeLists.txt +++ b/Modules/Core/Metadata/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx index 35a048429b..4dc10c3424 100644 --- a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx index 728ffabac0..7a7e853e50 100644 --- a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbDateTime.cxx b/Modules/Core/Metadata/src/otbDateTime.cxx index aa7d0ab78d..d9e2e32e96 100644 --- a/Modules/Core/Metadata/src/otbDateTime.cxx +++ b/Modules/Core/Metadata/src/otbDateTime.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx index 3aa57679dd..82c9b5dd48 100644 --- a/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbDimapMetadataHelper.cxx b/Modules/Core/Metadata/src/otbDimapMetadataHelper.cxx index 0666113649..b35acb5263 100644 --- a/Modules/Core/Metadata/src/otbDimapMetadataHelper.cxx +++ b/Modules/Core/Metadata/src/otbDimapMetadataHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx b/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx index 90d1ef172c..65c3f7319d 100644 --- a/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx +++ b/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx index 7b25da3845..60ad9e3f95 100644 --- a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx index dd07bb0cf3..e724a94e88 100644 --- a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbGeomMetadataSupplier.cxx b/Modules/Core/Metadata/src/otbGeomMetadataSupplier.cxx index 7bd87738ff..be284890f3 100644 --- a/Modules/Core/Metadata/src/otbGeomMetadataSupplier.cxx +++ b/Modules/Core/Metadata/src/otbGeomMetadataSupplier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbGeometryMetadata.cxx b/Modules/Core/Metadata/src/otbGeometryMetadata.cxx index 8e8d2d3336..a39f9acd54 100644 --- a/Modules/Core/Metadata/src/otbGeometryMetadata.cxx +++ b/Modules/Core/Metadata/src/otbGeometryMetadata.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx index 5de73618de..e9213dda2e 100644 --- a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx index 0d033c96cf..1d56d8e94c 100644 --- a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbImageMetadata.cxx b/Modules/Core/Metadata/src/otbImageMetadata.cxx index 0e6f9da9f6..cefece8c17 100644 --- a/Modules/Core/Metadata/src/otbImageMetadata.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadata.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx b/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx index d0297e38d2..db3dad3cd1 100644 --- a/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx index d09e7f0962..c9033153a2 100644 --- a/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbMetaDataKey.cxx b/Modules/Core/Metadata/src/otbMetaDataKey.cxx index 19f955249b..c42f130b4d 100644 --- a/Modules/Core/Metadata/src/otbMetaDataKey.cxx +++ b/Modules/Core/Metadata/src/otbMetaDataKey.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbMetadataStorageInterface.cxx b/Modules/Core/Metadata/src/otbMetadataStorageInterface.cxx index 1e87e2121a..0a7239cd40 100644 --- a/Modules/Core/Metadata/src/otbMetadataStorageInterface.cxx +++ b/Modules/Core/Metadata/src/otbMetadataStorageInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbMetadataSupplierInterface.cxx b/Modules/Core/Metadata/src/otbMetadataSupplierInterface.cxx index d3146ebfd2..9e7c3a5adb 100644 --- a/Modules/Core/Metadata/src/otbMetadataSupplierInterface.cxx +++ b/Modules/Core/Metadata/src/otbMetadataSupplierInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbNoDataHelper.cxx b/Modules/Core/Metadata/src/otbNoDataHelper.cxx index 4c13fc08cf..86d3665c6c 100644 --- a/Modules/Core/Metadata/src/otbNoDataHelper.cxx +++ b/Modules/Core/Metadata/src/otbNoDataHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx index 68b1aafa48..161ca8c52f 100644 --- a/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx index bf12fbf45b..ce2eecd574 100644 --- a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx index d2c8608de6..b8c7b01f46 100644 --- a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx index 4612ab387a..e64c163099 100644 --- a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx index 5b423b2e15..ac6ed86023 100644 --- a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx index e956349aca..d6dc8d99b4 100644 --- a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx index 9c92f7a852..a3c0b5d740 100644 --- a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx index bf149ac5ef..2000c19f43 100644 --- a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx index 79cdeaa5fd..f28287a733 100644 --- a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSARMetadata.cxx b/Modules/Core/Metadata/src/otbSARMetadata.cxx index 54b3580dee..04fb0ea8d5 100644 --- a/Modules/Core/Metadata/src/otbSARMetadata.cxx +++ b/Modules/Core/Metadata/src/otbSARMetadata.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx index 00250bdef1..286fe0a0ce 100644 --- a/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx index 93a11f6f32..1b13da50c9 100644 --- a/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx index c61e05fe0b..fce45bc80b 100644 --- a/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSentinel1CalibrationLookupData.cxx b/Modules/Core/Metadata/src/otbSentinel1CalibrationLookupData.cxx index 5295b27d4a..afa8886747 100644 --- a/Modules/Core/Metadata/src/otbSentinel1CalibrationLookupData.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1CalibrationLookupData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx index cd70025be2..90dde45527 100644 --- a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx index 2e509aff3d..bdfaf428f5 100644 --- a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSentinel1ThermalNoiseLookupData.cxx b/Modules/Core/Metadata/src/otbSentinel1ThermalNoiseLookupData.cxx index 3d09227865..2c8fc211ba 100644 --- a/Modules/Core/Metadata/src/otbSentinel1ThermalNoiseLookupData.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1ThermalNoiseLookupData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx index 3fc15191b8..93abee67b5 100644 --- a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx index d0a211f032..b21e9d1fc5 100644 --- a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx index 5e5b1fffb8..f167e972a2 100644 --- a/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx index 2b6907cd65..f9cc3e89fe 100644 --- a/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterface.cxx index cd14ddb945..c2f76c923a 100644 --- a/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterfaceFactory.cxx index 2e00958179..6b9770dd11 100644 --- a/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbTerraSarXSarImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx index 2c8693b9ed..4de1f6a4e2 100644 --- a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx index 3df232e648..f53c7415ab 100644 --- a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbXMLMetadataSupplier.cxx b/Modules/Core/Metadata/src/otbXMLMetadataSupplier.cxx index 544dfa29a7..de35df82f6 100644 --- a/Modules/Core/Metadata/src/otbXMLMetadataSupplier.cxx +++ b/Modules/Core/Metadata/src/otbXMLMetadataSupplier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/CMakeLists.txt b/Modules/Core/Metadata/test/CMakeLists.txt index 68795cc24a..4acd94c7c3 100644 --- a/Modules/Core/Metadata/test/CMakeLists.txt +++ b/Modules/Core/Metadata/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Metadata/test/otbDateTest.cxx b/Modules/Core/Metadata/test/otbDateTest.cxx index 542a6db2f2..6f446e71a4 100644 --- a/Modules/Core/Metadata/test/otbDateTest.cxx +++ b/Modules/Core/Metadata/test/otbDateTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbGeomMetadataSupplierTest.cxx b/Modules/Core/Metadata/test/otbGeomMetadataSupplierTest.cxx index 8e87ebb43d..13a6ca61e3 100644 --- a/Modules/Core/Metadata/test/otbGeomMetadataSupplierTest.cxx +++ b/Modules/Core/Metadata/test/otbGeomMetadataSupplierTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest.cxx b/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest.cxx index ed124a4433..99c0e999fe 100644 --- a/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest.cxx +++ b/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbImageMetadataTest.cxx b/Modules/Core/Metadata/test/otbImageMetadataTest.cxx index 1d8ea5345c..168b5f02b5 100644 --- a/Modules/Core/Metadata/test/otbImageMetadataTest.cxx +++ b/Modules/Core/Metadata/test/otbImageMetadataTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx b/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx index 556b4ebce3..8cd7eadcd2 100644 --- a/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx +++ b/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx b/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx index 814f685f1b..bd1e812fe5 100644 --- a/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx +++ b/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx b/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx index 2e9e058f32..4f3d1b488c 100644 --- a/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx +++ b/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbXMLMetadataSupplierTest.cxx b/Modules/Core/Metadata/test/otbXMLMetadataSupplierTest.cxx index 7368f11d05..d895b42071 100644 --- a/Modules/Core/Metadata/test/otbXMLMetadataSupplierTest.cxx +++ b/Modules/Core/Metadata/test/otbXMLMetadataSupplierTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/CMakeLists.txt b/Modules/Core/ObjectList/CMakeLists.txt index a360f37aa7..b20f1711dc 100644 --- a/Modules/Core/ObjectList/CMakeLists.txt +++ b/Modules/Core/ObjectList/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ObjectList/include/otbDataObjectListInterface.h b/Modules/Core/ObjectList/include/otbDataObjectListInterface.h index 5a6319d035..fa8f47c7fb 100644 --- a/Modules/Core/ObjectList/include/otbDataObjectListInterface.h +++ b/Modules/Core/ObjectList/include/otbDataObjectListInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectList.h b/Modules/Core/ObjectList/include/otbObjectList.h index 0c34f9e1df..403834025f 100644 --- a/Modules/Core/ObjectList/include/otbObjectList.h +++ b/Modules/Core/ObjectList/include/otbObjectList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectList.hxx b/Modules/Core/ObjectList/include/otbObjectList.hxx index 3773c5f22e..853f7f3f13 100644 --- a/Modules/Core/ObjectList/include/otbObjectList.hxx +++ b/Modules/Core/ObjectList/include/otbObjectList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectListSource.h b/Modules/Core/ObjectList/include/otbObjectListSource.h index 74aef96633..bb994e2baa 100644 --- a/Modules/Core/ObjectList/include/otbObjectListSource.h +++ b/Modules/Core/ObjectList/include/otbObjectListSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectListSource.hxx b/Modules/Core/ObjectList/include/otbObjectListSource.hxx index d2c134f596..45d628012e 100644 --- a/Modules/Core/ObjectList/include/otbObjectListSource.hxx +++ b/Modules/Core/ObjectList/include/otbObjectListSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h index 91e139a019..993282e3a9 100644 --- a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h +++ b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx index d4a4e0237f..3bfe93b178 100644 --- a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h index dd1da5b316..ea7f81e708 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx index ea9bdb0960..27d58b9acf 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h index b761428dd0..b6fb2b1880 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx index 5f270f03fc..cd535a048b 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/otb-module.cmake b/Modules/Core/ObjectList/otb-module.cmake index ceafcaf04f..e836e0f7d6 100644 --- a/Modules/Core/ObjectList/otb-module.cmake +++ b/Modules/Core/ObjectList/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ObjectList/test/CMakeLists.txt b/Modules/Core/ObjectList/test/CMakeLists.txt index 1278bd4d95..f5855cd6f6 100644 --- a/Modules/Core/ObjectList/test/CMakeLists.txt +++ b/Modules/Core/ObjectList/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/ObjectList/test/otbImageList.cxx b/Modules/Core/ObjectList/test/otbImageList.cxx index 2f05c51205..eae131d812 100644 --- a/Modules/Core/ObjectList/test/otbImageList.cxx +++ b/Modules/Core/ObjectList/test/otbImageList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx b/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx index 1e23305404..e491b1bf1b 100644 --- a/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx index 4bd4cb5e15..b0ea0c4c5d 100644 --- a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx index a2514d8659..1bda67bb79 100644 --- a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbObjectList.cxx b/Modules/Core/ObjectList/test/otbObjectList.cxx index 3085153012..07405ecc91 100644 --- a/Modules/Core/ObjectList/test/otbObjectList.cxx +++ b/Modules/Core/ObjectList/test/otbObjectList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbObjectList2.cxx b/Modules/Core/ObjectList/test/otbObjectList2.cxx index bb2b9f7b4d..ee12558146 100644 --- a/Modules/Core/ObjectList/test/otbObjectList2.cxx +++ b/Modules/Core/ObjectList/test/otbObjectList2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx b/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx index 82d8489020..cc5841976f 100644 --- a/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx +++ b/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx b/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx index b7a8cb30f2..1402cc5937 100644 --- a/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx +++ b/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/CMakeLists.txt b/Modules/Core/PointSet/CMakeLists.txt index 0354bae5ef..3629604c61 100644 --- a/Modules/Core/PointSet/CMakeLists.txt +++ b/Modules/Core/PointSet/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/PointSet/include/otbImageToPointSetFilter.h b/Modules/Core/PointSet/include/otbImageToPointSetFilter.h index 6fb7255327..8cfcf23699 100644 --- a/Modules/Core/PointSet/include/otbImageToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx b/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx index 41fa744bba..82aec38bc1 100644 --- a/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h b/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h index a405e13735..cb1dd51cb0 100644 --- a/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h +++ b/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetExtractROI.h b/Modules/Core/PointSet/include/otbPointSetExtractROI.h index 5f7c84e763..fe3fb5e1b7 100644 --- a/Modules/Core/PointSet/include/otbPointSetExtractROI.h +++ b/Modules/Core/PointSet/include/otbPointSetExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx b/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx index 5e06922250..1d8c24db3b 100644 --- a/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx +++ b/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetFunction.h b/Modules/Core/PointSet/include/otbPointSetFunction.h index 60293bdc31..fa6f1f77a5 100644 --- a/Modules/Core/PointSet/include/otbPointSetFunction.h +++ b/Modules/Core/PointSet/include/otbPointSetFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetFunction.hxx b/Modules/Core/PointSet/include/otbPointSetFunction.hxx index 727698ce72..c8031bf0c5 100644 --- a/Modules/Core/PointSet/include/otbPointSetFunction.hxx +++ b/Modules/Core/PointSet/include/otbPointSetFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetSource.h b/Modules/Core/PointSet/include/otbPointSetSource.h index 2211dda3d2..f787c63a05 100644 --- a/Modules/Core/PointSet/include/otbPointSetSource.h +++ b/Modules/Core/PointSet/include/otbPointSetSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetSource.hxx b/Modules/Core/PointSet/include/otbPointSetSource.hxx index db21d385a2..c7c28a40ee 100644 --- a/Modules/Core/PointSet/include/otbPointSetSource.hxx +++ b/Modules/Core/PointSet/include/otbPointSetSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h index 12b7ca388a..18bc6daf98 100644 --- a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx index 0a3d744c2f..ddcec76824 100644 --- a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbRandomPointSetSource.h b/Modules/Core/PointSet/include/otbRandomPointSetSource.h index 747fc4927b..df8d32a3b9 100644 --- a/Modules/Core/PointSet/include/otbRandomPointSetSource.h +++ b/Modules/Core/PointSet/include/otbRandomPointSetSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx b/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx index 4b65a8030f..6db4373242 100644 --- a/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx +++ b/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h b/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h index bf6ba124ab..b0fac3bbf8 100644 --- a/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h +++ b/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h index acdbb0df3e..5249f592cd 100644 --- a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx index 22be53563c..623b9a5b31 100644 --- a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbTransformPointSetFilter.h b/Modules/Core/PointSet/include/otbTransformPointSetFilter.h index a81c5d405b..0b108c950d 100644 --- a/Modules/Core/PointSet/include/otbTransformPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbTransformPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx b/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx index 16b3b6f6bf..a7d3900a37 100644 --- a/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/otb-module.cmake b/Modules/Core/PointSet/otb-module.cmake index 4f2e6d719c..bb71250551 100644 --- a/Modules/Core/PointSet/otb-module.cmake +++ b/Modules/Core/PointSet/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/PointSet/test/CMakeLists.txt b/Modules/Core/PointSet/test/CMakeLists.txt index 47193a243f..f75f0d0c27 100644 --- a/Modules/Core/PointSet/test/CMakeLists.txt +++ b/Modules/Core/PointSet/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx b/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx index 0b1b25f2f7..a28a0277b5 100644 --- a/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx +++ b/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx b/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx index ce30f0cd87..d448f43a13 100644 --- a/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx +++ b/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx b/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx index f7ffbe9a6d..5972c3dff3 100644 --- a/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx +++ b/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx b/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx index 774ba375c6..be33945a6d 100644 --- a/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx +++ b/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx b/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx index 80d3ba46ad..44a75c9712 100644 --- a/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx +++ b/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx b/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx index 2d8be0a15a..51ccf04ee9 100644 --- a/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx +++ b/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx b/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx index edbb055655..e65246a5a5 100644 --- a/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx +++ b/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx b/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx index a4f4d49bbf..c8b9c4b3b5 100644 --- a/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx +++ b/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/CMakeLists.txt b/Modules/Core/Streaming/CMakeLists.txt index 0f4fa17e08..d353120254 100644 --- a/Modules/Core/Streaming/CMakeLists.txt +++ b/Modules/Core/Streaming/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h index 16f8330443..3043b5a1da 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx index 09f810c817..ec047c2fbe 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h index e7f1eb8e1e..bf0a603f71 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx index 100e276ed7..f66b8de0ce 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h index 229b3fd760..45e5cb035c 100644 --- a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx index f709ac6a54..7b001a48b2 100644 --- a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h index 000d55d641..133af2c366 100644 --- a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h +++ b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx index 34e641c589..a91e5febc9 100644 --- a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx +++ b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbPersistentImageFilter.h b/Modules/Core/Streaming/include/otbPersistentImageFilter.h index 0491dc755c..6e76927d8c 100644 --- a/Modules/Core/Streaming/include/otbPersistentImageFilter.h +++ b/Modules/Core/Streaming/include/otbPersistentImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h b/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h index d4025d8556..11c3244578 100644 --- a/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h +++ b/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h index 712c811889..b2299e7948 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx index 6af4da07ea..bf43678587 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h index cc4f486707..0baa99df24 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx index c3d556b53c..231f0fd0b6 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h index 8216a29006..b8c4685c35 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx index bccceb1c27..e28d228c03 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h index d191ffde4e..02cd16cb98 100644 --- a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h +++ b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx index 85c2c9a902..2cae874627 100644 --- a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx +++ b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbStreamingManager.h b/Modules/Core/Streaming/include/otbStreamingManager.h index 28804d9b74..cadbe9a737 100644 --- a/Modules/Core/Streaming/include/otbStreamingManager.h +++ b/Modules/Core/Streaming/include/otbStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbStreamingManager.hxx b/Modules/Core/Streaming/include/otbStreamingManager.hxx index cabfccae2e..1b919f07d4 100644 --- a/Modules/Core/Streaming/include/otbStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h index 03963a9805..88061b1029 100644 --- a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx index 61c12e7067..6b7c9c6dce 100644 --- a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/otb-module.cmake b/Modules/Core/Streaming/otb-module.cmake index fe1ab8c218..25104bfeff 100644 --- a/Modules/Core/Streaming/otb-module.cmake +++ b/Modules/Core/Streaming/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Streaming/src/CMakeLists.txt b/Modules/Core/Streaming/src/CMakeLists.txt index 62d3c154d9..073e7b6245 100644 --- a/Modules/Core/Streaming/src/CMakeLists.txt +++ b/Modules/Core/Streaming/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx b/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx index 4304c7c9e7..022f012cad 100644 --- a/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx +++ b/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/test/CMakeLists.txt b/Modules/Core/Streaming/test/CMakeLists.txt index 93b3cdbee2..09cef7dd79 100644 --- a/Modules/Core/Streaming/test/CMakeLists.txt +++ b/Modules/Core/Streaming/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx b/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx index 7dc3cee40d..ae115618cf 100644 --- a/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx +++ b/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/test/otbStreamingManager.cxx b/Modules/Core/Streaming/test/otbStreamingManager.cxx index 2f2a60a3c4..9277f6dcfc 100644 --- a/Modules/Core/Streaming/test/otbStreamingManager.cxx +++ b/Modules/Core/Streaming/test/otbStreamingManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx b/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx index fd752074ea..4716675c9b 100644 --- a/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx +++ b/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/CMakeLists.txt b/Modules/Core/Transform/CMakeLists.txt index 3d2932afbf..5723782fbf 100644 --- a/Modules/Core/Transform/CMakeLists.txt +++ b/Modules/Core/Transform/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Transform/include/otbCompositeTransform.h b/Modules/Core/Transform/include/otbCompositeTransform.h index 72bebd7cc5..cba6386568 100644 --- a/Modules/Core/Transform/include/otbCompositeTransform.h +++ b/Modules/Core/Transform/include/otbCompositeTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbCompositeTransform.hxx b/Modules/Core/Transform/include/otbCompositeTransform.hxx index 192565a7a1..343282a72a 100644 --- a/Modules/Core/Transform/include/otbCompositeTransform.hxx +++ b/Modules/Core/Transform/include/otbCompositeTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGenericMapProjection.h b/Modules/Core/Transform/include/otbGenericMapProjection.h index a795787655..f1955a0eb1 100644 --- a/Modules/Core/Transform/include/otbGenericMapProjection.h +++ b/Modules/Core/Transform/include/otbGenericMapProjection.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGenericMapProjection.hxx b/Modules/Core/Transform/include/otbGenericMapProjection.hxx index ed8750eefd..ca431bcb8a 100644 --- a/Modules/Core/Transform/include/otbGenericMapProjection.hxx +++ b/Modules/Core/Transform/include/otbGenericMapProjection.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGenericRSTransform.h b/Modules/Core/Transform/include/otbGenericRSTransform.h index bc8e8c9ac7..9f8a3541d1 100644 --- a/Modules/Core/Transform/include/otbGenericRSTransform.h +++ b/Modules/Core/Transform/include/otbGenericRSTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGenericRSTransform.hxx b/Modules/Core/Transform/include/otbGenericRSTransform.hxx index f545d39465..0e0f29dcd9 100644 --- a/Modules/Core/Transform/include/otbGenericRSTransform.hxx +++ b/Modules/Core/Transform/include/otbGenericRSTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGeocentricTransform.h b/Modules/Core/Transform/include/otbGeocentricTransform.h index 21316fa2c3..63ed364890 100644 --- a/Modules/Core/Transform/include/otbGeocentricTransform.h +++ b/Modules/Core/Transform/include/otbGeocentricTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbGeocentricTransform.hxx b/Modules/Core/Transform/include/otbGeocentricTransform.hxx index 43c8ac0d21..faadbbdcf5 100644 --- a/Modules/Core/Transform/include/otbGeocentricTransform.hxx +++ b/Modules/Core/Transform/include/otbGeocentricTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h index 869ca3776a..68694c825b 100644 --- a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h +++ b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx index caece7a40c..b84d67e079 100644 --- a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx +++ b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbInverseLogPolarTransform.h b/Modules/Core/Transform/include/otbInverseLogPolarTransform.h index 0ce01d93d8..d5fd3a5a3e 100644 --- a/Modules/Core/Transform/include/otbInverseLogPolarTransform.h +++ b/Modules/Core/Transform/include/otbInverseLogPolarTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx b/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx index c4e37f9176..416cf76326 100644 --- a/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx +++ b/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbLogPolarTransform.h b/Modules/Core/Transform/include/otbLogPolarTransform.h index 9b2b8915a3..7a95487f3d 100644 --- a/Modules/Core/Transform/include/otbLogPolarTransform.h +++ b/Modules/Core/Transform/include/otbLogPolarTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbLogPolarTransform.hxx b/Modules/Core/Transform/include/otbLogPolarTransform.hxx index 95725e1635..8dc7b25df2 100644 --- a/Modules/Core/Transform/include/otbLogPolarTransform.hxx +++ b/Modules/Core/Transform/include/otbLogPolarTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCForwardTransform.h b/Modules/Core/Transform/include/otbRPCForwardTransform.h index 1f2194d3b5..9bb057bfe2 100644 --- a/Modules/Core/Transform/include/otbRPCForwardTransform.h +++ b/Modules/Core/Transform/include/otbRPCForwardTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCForwardTransform.hxx b/Modules/Core/Transform/include/otbRPCForwardTransform.hxx index b4203f8da8..75363a2dd4 100644 --- a/Modules/Core/Transform/include/otbRPCForwardTransform.hxx +++ b/Modules/Core/Transform/include/otbRPCForwardTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCInverseTransform.h b/Modules/Core/Transform/include/otbRPCInverseTransform.h index a091939d9f..5f89d35473 100644 --- a/Modules/Core/Transform/include/otbRPCInverseTransform.h +++ b/Modules/Core/Transform/include/otbRPCInverseTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCInverseTransform.hxx b/Modules/Core/Transform/include/otbRPCInverseTransform.hxx index ff17f6f08f..35d34e4c9f 100644 --- a/Modules/Core/Transform/include/otbRPCInverseTransform.hxx +++ b/Modules/Core/Transform/include/otbRPCInverseTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCTransformBase.h b/Modules/Core/Transform/include/otbRPCTransformBase.h index 817922fdcc..4a24908762 100644 --- a/Modules/Core/Transform/include/otbRPCTransformBase.h +++ b/Modules/Core/Transform/include/otbRPCTransformBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbRPCTransformBase.hxx b/Modules/Core/Transform/include/otbRPCTransformBase.hxx index 9709bbc5ed..395be67f70 100644 --- a/Modules/Core/Transform/include/otbRPCTransformBase.hxx +++ b/Modules/Core/Transform/include/otbRPCTransformBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarForwardTransform.h b/Modules/Core/Transform/include/otbSarForwardTransform.h index 0e97047a13..bc3ffb6530 100644 --- a/Modules/Core/Transform/include/otbSarForwardTransform.h +++ b/Modules/Core/Transform/include/otbSarForwardTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarForwardTransform.hxx b/Modules/Core/Transform/include/otbSarForwardTransform.hxx index 94b0a98dc8..fe5e6d0f57 100644 --- a/Modules/Core/Transform/include/otbSarForwardTransform.hxx +++ b/Modules/Core/Transform/include/otbSarForwardTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarInverseTransform.h b/Modules/Core/Transform/include/otbSarInverseTransform.h index fa7c4416b9..e439cb4e40 100644 --- a/Modules/Core/Transform/include/otbSarInverseTransform.h +++ b/Modules/Core/Transform/include/otbSarInverseTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarInverseTransform.hxx b/Modules/Core/Transform/include/otbSarInverseTransform.hxx index f837b47a77..6e1063b1ad 100644 --- a/Modules/Core/Transform/include/otbSarInverseTransform.hxx +++ b/Modules/Core/Transform/include/otbSarInverseTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarSensorModel.h b/Modules/Core/Transform/include/otbSarSensorModel.h index 404ec1f3b1..aba2715e0f 100644 --- a/Modules/Core/Transform/include/otbSarSensorModel.h +++ b/Modules/Core/Transform/include/otbSarSensorModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarTransformBase.h b/Modules/Core/Transform/include/otbSarTransformBase.h index 3a85aecb89..2eb0ecfdab 100644 --- a/Modules/Core/Transform/include/otbSarTransformBase.h +++ b/Modules/Core/Transform/include/otbSarTransformBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSarTransformBase.hxx b/Modules/Core/Transform/include/otbSarTransformBase.hxx index 4b347dcd8c..fdc78acf69 100644 --- a/Modules/Core/Transform/include/otbSarTransformBase.hxx +++ b/Modules/Core/Transform/include/otbSarTransformBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSensorTransformBase.h b/Modules/Core/Transform/include/otbSensorTransformBase.h index e01954c760..bf2f658257 100644 --- a/Modules/Core/Transform/include/otbSensorTransformBase.h +++ b/Modules/Core/Transform/include/otbSensorTransformBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h b/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h index 0089f60ddc..dfc7bfb69b 100644 --- a/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h +++ b/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbStreamingWarpImageFilter.hxx b/Modules/Core/Transform/include/otbStreamingWarpImageFilter.hxx index a8e495282c..f95c75922c 100644 --- a/Modules/Core/Transform/include/otbStreamingWarpImageFilter.hxx +++ b/Modules/Core/Transform/include/otbStreamingWarpImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbTransform.h b/Modules/Core/Transform/include/otbTransform.h index bec7e44e0a..1820d37882 100644 --- a/Modules/Core/Transform/include/otbTransform.h +++ b/Modules/Core/Transform/include/otbTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbTransformFactories.h b/Modules/Core/Transform/include/otbTransformFactories.h index fae73288ff..d8bb02b859 100644 --- a/Modules/Core/Transform/include/otbTransformFactories.h +++ b/Modules/Core/Transform/include/otbTransformFactories.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/otb-module.cmake b/Modules/Core/Transform/otb-module.cmake index cb02b2918a..82a7e82a01 100644 --- a/Modules/Core/Transform/otb-module.cmake +++ b/Modules/Core/Transform/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Transform/src/CMakeLists.txt b/Modules/Core/Transform/src/CMakeLists.txt index d66edb5ccd..8042c40b45 100644 --- a/Modules/Core/Transform/src/CMakeLists.txt +++ b/Modules/Core/Transform/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Transform/src/otbSarSensorModel.cxx b/Modules/Core/Transform/src/otbSarSensorModel.cxx index 99541b578d..40379e8bcd 100644 --- a/Modules/Core/Transform/src/otbSarSensorModel.cxx +++ b/Modules/Core/Transform/src/otbSarSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/src/otbSensorTransformFactory.cxx b/Modules/Core/Transform/src/otbSensorTransformFactory.cxx index b013a63f88..d043e7f12c 100644 --- a/Modules/Core/Transform/src/otbSensorTransformFactory.cxx +++ b/Modules/Core/Transform/src/otbSensorTransformFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/CMakeLists.txt b/Modules/Core/Transform/test/CMakeLists.txt index 6e03377d78..bea70ecc4d 100644 --- a/Modules/Core/Transform/test/CMakeLists.txt +++ b/Modules/Core/Transform/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Transform/test/SensorModelBorder.cxx b/Modules/Core/Transform/test/SensorModelBorder.cxx index 0bf9df2010..d8e77967d2 100644 --- a/Modules/Core/Transform/test/SensorModelBorder.cxx +++ b/Modules/Core/Transform/test/SensorModelBorder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx b/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx index c0382b3d73..e8d26d2715 100644 --- a/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx +++ b/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbGenericMapProjection.cxx b/Modules/Core/Transform/test/otbGenericMapProjection.cxx index aebca41c2e..a183a7a7f9 100644 --- a/Modules/Core/Transform/test/otbGenericMapProjection.cxx +++ b/Modules/Core/Transform/test/otbGenericMapProjection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx b/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx index 2354e2a2f4..0460370701 100644 --- a/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx +++ b/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbGeocentricTransform.cxx b/Modules/Core/Transform/test/otbGeocentricTransform.cxx index ab0b66e922..6f8e26236b 100644 --- a/Modules/Core/Transform/test/otbGeocentricTransform.cxx +++ b/Modules/Core/Transform/test/otbGeocentricTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx b/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx index 293e9553fe..7c6b016ebd 100644 --- a/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx +++ b/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx b/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx index f193beb5c4..ec0254e8fb 100644 --- a/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx +++ b/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbLogPolarTransform.cxx b/Modules/Core/Transform/test/otbLogPolarTransform.cxx index cebddd9fd6..361f638ab7 100644 --- a/Modules/Core/Transform/test/otbLogPolarTransform.cxx +++ b/Modules/Core/Transform/test/otbLogPolarTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx b/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx index 33b493d80e..7afed81f45 100644 --- a/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx +++ b/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbRPCTransformTest.cxx b/Modules/Core/Transform/test/otbRPCTransformTest.cxx index 60f5b96d89..39d7589ff0 100644 --- a/Modules/Core/Transform/test/otbRPCTransformTest.cxx +++ b/Modules/Core/Transform/test/otbRPCTransformTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbSarSensorModelTest.cxx b/Modules/Core/Transform/test/otbSarSensorModelTest.cxx index 67b2c9f8ef..c1aa6e3dd1 100644 --- a/Modules/Core/Transform/test/otbSarSensorModelTest.cxx +++ b/Modules/Core/Transform/test/otbSarSensorModelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbSarTransformTest.cxx b/Modules/Core/Transform/test/otbSarTransformTest.cxx index 7d79708854..be1354b97a 100644 --- a/Modules/Core/Transform/test/otbSarTransformTest.cxx +++ b/Modules/Core/Transform/test/otbSarTransformTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbSentinel1SensorModelTest.cxx b/Modules/Core/Transform/test/otbSentinel1SensorModelTest.cxx index e6f104bd00..b33230a5d7 100644 --- a/Modules/Core/Transform/test/otbSentinel1SensorModelTest.cxx +++ b/Modules/Core/Transform/test/otbSentinel1SensorModelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx b/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx index 1f18c8f17b..93acb880e7 100644 --- a/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx +++ b/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx b/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx index 7bd60aa939..2a5e0a17bd 100644 --- a/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx +++ b/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbTransformTestDriver.cxx b/Modules/Core/Transform/test/otbTransformTestDriver.cxx index 5de7e030bc..c246609f9e 100644 --- a/Modules/Core/Transform/test/otbTransformTestDriver.cxx +++ b/Modules/Core/Transform/test/otbTransformTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/CMakeLists.txt b/Modules/Core/VectorDataBase/CMakeLists.txt index 77ce9ed38f..91d4b4d933 100644 --- a/Modules/Core/VectorDataBase/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/VectorDataBase/include/otbDataNode.h b/Modules/Core/VectorDataBase/include/otbDataNode.h index d3700ffbaf..f4d8a9336d 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNode.h +++ b/Modules/Core/VectorDataBase/include/otbDataNode.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbDataNode.hxx b/Modules/Core/VectorDataBase/include/otbDataNode.hxx index f7468c0ff8..b4649e959a 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNode.hxx +++ b/Modules/Core/VectorDataBase/include/otbDataNode.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h b/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h index 796b7f1a70..8e9e030ae5 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h +++ b/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h index 00a28265a3..71380bc658 100644 --- a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h +++ b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx index 931fe521f7..5e65236b8f 100644 --- a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx +++ b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbPolygon.h b/Modules/Core/VectorDataBase/include/otbPolygon.h index 0ee5698c13..2cbba3ec8c 100644 --- a/Modules/Core/VectorDataBase/include/otbPolygon.h +++ b/Modules/Core/VectorDataBase/include/otbPolygon.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbPolygon.hxx b/Modules/Core/VectorDataBase/include/otbPolygon.hxx index d4f3cc9824..08df220cd4 100644 --- a/Modules/Core/VectorDataBase/include/otbPolygon.hxx +++ b/Modules/Core/VectorDataBase/include/otbPolygon.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorData.h b/Modules/Core/VectorDataBase/include/otbVectorData.h index f4cc48da26..6bea1719a3 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorData.h +++ b/Modules/Core/VectorDataBase/include/otbVectorData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorData.hxx b/Modules/Core/VectorDataBase/include/otbVectorData.hxx index c0c17ba2f8..f22d88a8df 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorData.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorData.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h b/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h index eb30efbfad..a6befcb81c 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h b/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h index 63a7f917c6..67198be733 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h index 1ea936af62..b88f50eefc 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx index 97139cfe03..22c945f253 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataSource.h b/Modules/Core/VectorDataBase/include/otbVectorDataSource.h index b9363042ac..a4b8ec3af1 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataSource.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx b/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx index c7df51fa5f..66b8680adf 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/otb-module.cmake b/Modules/Core/VectorDataBase/otb-module.cmake index 549bb5be44..469bd2cc62 100644 --- a/Modules/Core/VectorDataBase/otb-module.cmake +++ b/Modules/Core/VectorDataBase/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/VectorDataBase/src/CMakeLists.txt b/Modules/Core/VectorDataBase/src/CMakeLists.txt index 8a8d6a1b3a..90d05a3f12 100644 --- a/Modules/Core/VectorDataBase/src/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx b/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx index 0a6a351b7e..11a08ebc29 100644 --- a/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx +++ b/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx b/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx index 80f19865c7..fb83ea598e 100644 --- a/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx +++ b/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/CMakeLists.txt b/Modules/Core/VectorDataBase/test/CMakeLists.txt index ecb16d6b50..83676a9516 100644 --- a/Modules/Core/VectorDataBase/test/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx b/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx index b1994f1fdd..c8c192c9a2 100644 --- a/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx +++ b/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/otbPolygon.cxx b/Modules/Core/VectorDataBase/test/otbPolygon.cxx index 4b447e45e5..edf41f6be2 100644 --- a/Modules/Core/VectorDataBase/test/otbPolygon.cxx +++ b/Modules/Core/VectorDataBase/test/otbPolygon.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx b/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx index 47035a9d01..eb93aaea37 100644 --- a/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx +++ b/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/otbVectorData.cxx b/Modules/Core/VectorDataBase/test/otbVectorData.cxx index 6f79f056cc..9f95601dfa 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorData.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx b/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx index 7d6b24136c..4c5d93a7ab 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx b/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx index 2c657be617..517907a312 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/CMakeLists.txt b/Modules/Detection/CloudDetection/CMakeLists.txt index f98813e908..9c2ccfa7ad 100644 --- a/Modules/Detection/CloudDetection/CMakeLists.txt +++ b/Modules/Detection/CloudDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h index 1e0779e591..26d7bd2a28 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx index 074d64e5c5..efe002080e 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h b/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h index fd60c1956f..b61d90a259 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h index 6409a97b44..fe7561ad87 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx index d4574f2059..aa119350fc 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h index 86d4496e25..428f2201ad 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/otb-module.cmake b/Modules/Detection/CloudDetection/otb-module.cmake index 5a7e41489e..7ad5bf9033 100644 --- a/Modules/Detection/CloudDetection/otb-module.cmake +++ b/Modules/Detection/CloudDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Detection/CloudDetection/test/CMakeLists.txt b/Modules/Detection/CloudDetection/test/CMakeLists.txt index 27501ffcc2..e2145b366e 100644 --- a/Modules/Detection/CloudDetection/test/CMakeLists.txt +++ b/Modules/Detection/CloudDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx b/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx index d0ba9bb664..b6d2eb7483 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx b/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx index c987ee814f..8df4ffa4ae 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx b/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx index f0f9c08951..d29d7865f6 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx b/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx index 3f58174a31..6a3acbee25 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/CMakeLists.txt b/Modules/Feature/Corner/CMakeLists.txt index 6e57c242a0..fccab33c26 100644 --- a/Modules/Feature/Corner/CMakeLists.txt +++ b/Modules/Feature/Corner/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Corner/include/otbHarrisImageFilter.h b/Modules/Feature/Corner/include/otbHarrisImageFilter.h index b336ac2c82..a9c2fd0323 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageFilter.h +++ b/Modules/Feature/Corner/include/otbHarrisImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx b/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx index 12cd40a455..691a8b0e06 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx +++ b/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h index e4fb4305c1..23baddebba 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h +++ b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx index 284c89a4b3..c9e22b9633 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx +++ b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h index 4d14058175..84a5d4cb48 100644 --- a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h +++ b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx index efff83f862..fba55daf0b 100644 --- a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx +++ b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/otb-module.cmake b/Modules/Feature/Corner/otb-module.cmake index 4d0e3d8f88..77695db987 100644 --- a/Modules/Feature/Corner/otb-module.cmake +++ b/Modules/Feature/Corner/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Corner/test/CMakeLists.txt b/Modules/Feature/Corner/test/CMakeLists.txt index fc83b1f966..ff6a8f0754 100644 --- a/Modules/Feature/Corner/test/CMakeLists.txt +++ b/Modules/Feature/Corner/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Corner/test/otbCornerTestDriver.cxx b/Modules/Feature/Corner/test/otbCornerTestDriver.cxx index 37fb679ec3..a75b438667 100644 --- a/Modules/Feature/Corner/test/otbCornerTestDriver.cxx +++ b/Modules/Feature/Corner/test/otbCornerTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/test/otbHarrisImage.cxx b/Modules/Feature/Corner/test/otbHarrisImage.cxx index d372b35361..f6cab01f97 100644 --- a/Modules/Feature/Corner/test/otbHarrisImage.cxx +++ b/Modules/Feature/Corner/test/otbHarrisImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx b/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx index 2f528a45c8..3ffeeeabd7 100644 --- a/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx +++ b/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx b/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx index 7e5160ee52..cd1b14d570 100644 --- a/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx +++ b/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/CMakeLists.txt b/Modules/Feature/Density/CMakeLists.txt index 4339b41ab0..107e922a45 100644 --- a/Modules/Feature/Density/CMakeLists.txt +++ b/Modules/Feature/Density/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h index 710e4dbfc9..99cb2cc61a 100644 --- a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h +++ b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx index 9ec32c90d9..28cdbba6e0 100644 --- a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx +++ b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h index 28d3a8c0ec..3b5c07ee6e 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx index e89c5c95a1..44e446c911 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityFunction.h b/Modules/Feature/Density/include/otbPointSetDensityFunction.h index bfe039b6af..26bbabffa1 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx b/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx index f5b3101514..a7e24cb186 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h index dbf3af7479..ad9834badb 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx index 11d53c8c03..561be1932e 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h index bdbd655c41..9bb8b3f995 100644 --- a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h +++ b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx index 3b682589ef..c8c3aec0bd 100644 --- a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx +++ b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/otb-module.cmake b/Modules/Feature/Density/otb-module.cmake index 55f1bbbb2d..53df6a41b7 100644 --- a/Modules/Feature/Density/otb-module.cmake +++ b/Modules/Feature/Density/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Density/test/CMakeLists.txt b/Modules/Feature/Density/test/CMakeLists.txt index 0848888f76..d86a2c7701 100644 --- a/Modules/Feature/Density/test/CMakeLists.txt +++ b/Modules/Feature/Density/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Density/test/otbDensityTestDriver.cxx b/Modules/Feature/Density/test/otbDensityTestDriver.cxx index 14cb4edf17..4bb4c273a8 100644 --- a/Modules/Feature/Density/test/otbDensityTestDriver.cxx +++ b/Modules/Feature/Density/test/otbDensityTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx b/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx index 98b65b6bbe..da51b2d2f3 100644 --- a/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx +++ b/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx b/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx index 12f69013b3..13609e50aa 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx b/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx index f80b8a0416..f4b359e326 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx b/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx index 51c2a72bea..2d3226cac7 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx b/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx index f77511bfb9..32cc7e1694 100644 --- a/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/CMakeLists.txt b/Modules/Feature/Descriptors/CMakeLists.txt index 4ba30670a7..ca6a57a59e 100644 --- a/Modules/Feature/Descriptors/CMakeLists.txt +++ b/Modules/Feature/Descriptors/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h index 1bc70ec5ee..150f3feeb6 100644 --- a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx index bb3d397f20..2b61764235 100644 --- a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h index 6f03f4f558..122e42da71 100644 --- a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h +++ b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx index 873ec2cb97..f5a755f5c5 100644 --- a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx +++ b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h b/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h index 93f7b1e403..177d782fcd 100644 --- a/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h index 27242a2dbe..cd4474986d 100644 --- a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h +++ b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx index 52c52d80d0..e7edb87c06 100644 --- a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx +++ b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h index 5d4d992bd0..9c3c3c54d8 100644 --- a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx index 814b7c0834..64b753f0ce 100644 --- a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h index 9b53b76853..fc29273e17 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx index b3151fcd0d..d4bb7adf16 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h index 8d3aa99e9c..4f2ab25467 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx index 0d95d73326..cd62f9b553 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h index d61f170397..f6437d43cf 100644 --- a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h +++ b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx index c17a7638d9..38a7c30689 100644 --- a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbLandmark.h b/Modules/Feature/Descriptors/include/otbLandmark.h index 8c9cc26a7b..a9339671c2 100644 --- a/Modules/Feature/Descriptors/include/otbLandmark.h +++ b/Modules/Feature/Descriptors/include/otbLandmark.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h index 797a9fd497..29a8f71b90 100644 --- a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx index bc1eebf572..4b529d7347 100644 --- a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/otb-module.cmake b/Modules/Feature/Descriptors/otb-module.cmake index 7fd1d598e6..22034b0dff 100644 --- a/Modules/Feature/Descriptors/otb-module.cmake +++ b/Modules/Feature/Descriptors/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Descriptors/test/CMakeLists.txt b/Modules/Feature/Descriptors/test/CMakeLists.txt index 0a65e07e49..5dc8404fc3 100644 --- a/Modules/Feature/Descriptors/test/CMakeLists.txt +++ b/Modules/Feature/Descriptors/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx b/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx index 0efeab7a03..b66fc4d7ae 100644 --- a/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx +++ b/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx b/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx index 306443c2e8..f8eff2e11b 100644 --- a/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx +++ b/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx b/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx index b940a3c17a..e10573c06b 100644 --- a/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx +++ b/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx b/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx index 38a3581461..27ff2e2afe 100644 --- a/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx +++ b/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx b/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx index 64e39d9419..79fc4901f4 100644 --- a/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx +++ b/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx b/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx index 276190f457..88197fb198 100644 --- a/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx +++ b/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/CMakeLists.txt b/Modules/Feature/Edge/CMakeLists.txt index bce78d4983..904fbfc580 100644 --- a/Modules/Feature/Edge/CMakeLists.txt +++ b/Modules/Feature/Edge/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h b/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h index ce1760c7ed..f42e2c674c 100644 --- a/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h +++ b/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h index e1482c8a30..0dcbff8d8b 100644 --- a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx index 4f6e8bc987..edcdc80162 100644 --- a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h index b8bb11c8c4..e49bb5b522 100644 --- a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h +++ b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx index 4d442bda31..d52317a698 100644 --- a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h index 7b75069589..e3b4132191 100644 --- a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx index 5ec244b128..d7cf24b1f7 100644 --- a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h b/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h index 3910c0375b..22c66521dc 100644 --- a/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h index 7aa75e31a0..c46be29b50 100644 --- a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx index b5526ed102..d09efd02c3 100644 --- a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h index 3857761c39..f37eb325e6 100644 --- a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h +++ b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx index 500e598fe9..5564408c67 100644 --- a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx +++ b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h index 9ee3cd4f52..410c0e3b9c 100644 --- a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx index 5d8416ebc2..ad8166c9e0 100644 --- a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineSegmentDetector.h b/Modules/Feature/Edge/include/otbLineSegmentDetector.h index bcaaeb942b..903d016b58 100644 --- a/Modules/Feature/Edge/include/otbLineSegmentDetector.h +++ b/Modules/Feature/Edge/include/otbLineSegmentDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx b/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx index 497b12c4cd..178055b738 100644 --- a/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx +++ b/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.h b/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.h index 541d536317..7eeb66e5b5 100644 --- a/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.h +++ b/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.hxx b/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.hxx index d96d05a710..d1abbae38b 100644 --- a/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbPersistentVectorizationImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h index 327644bc40..29ce87d2f9 100644 --- a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h +++ b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx index b34fcfaa04..85adf30e71 100644 --- a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h b/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h index c008414bf8..7598722756 100644 --- a/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.h b/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.h index f14cb07896..70ec1840a3 100644 --- a/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.h +++ b/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.hxx b/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.hxx index 96ea530a4f..8dc7c74042 100644 --- a/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.hxx +++ b/Modules/Feature/Edge/include/otbStreamingLineSegmentDetector.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h index d11402bc18..bb87ea7afa 100644 --- a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx index 9a53b45b0d..548d78cc19 100644 --- a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h b/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h index e70a97503d..08371f3030 100644 --- a/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/otb-module.cmake b/Modules/Feature/Edge/otb-module.cmake index e28867d8e7..413bb222aa 100644 --- a/Modules/Feature/Edge/otb-module.cmake +++ b/Modules/Feature/Edge/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx b/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx index 7a03755a98..1ed488789e 100644 --- a/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx +++ b/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/0000433-LineSegmentDetector_8b_16b_compare.cxx b/Modules/Feature/Edge/test/0000433-LineSegmentDetector_8b_16b_compare.cxx index 1bba13d538..5f9830983a 100644 --- a/Modules/Feature/Edge/test/0000433-LineSegmentDetector_8b_16b_compare.cxx +++ b/Modules/Feature/Edge/test/0000433-LineSegmentDetector_8b_16b_compare.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/CMakeLists.txt b/Modules/Feature/Edge/test/CMakeLists.txt index 89fc0e9db5..4096718e3d 100644 --- a/Modules/Feature/Edge/test/CMakeLists.txt +++ b/Modules/Feature/Edge/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx b/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx index df22e96031..2977f74a83 100644 --- a/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx +++ b/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx b/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx index c288ae0dc4..0a3c331797 100644 --- a/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx +++ b/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx b/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx index bbb997a2b6..bced7afc3f 100644 --- a/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx b/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx index 3205ec7c3f..55820cd99b 100644 --- a/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx b/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx index 3f2d6e9d61..b3005773b1 100644 --- a/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx +++ b/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx b/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx index 2b7a8fb2df..f4264c2e4b 100644 --- a/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx b/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx index 3d79f9509a..db18853bda 100644 --- a/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx b/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx index a54f58e304..b86a9dc97e 100644 --- a/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx +++ b/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbLineRatioDetector.cxx b/Modules/Feature/Edge/test/otbLineRatioDetector.cxx index 5a27336d77..0ee252e5a3 100644 --- a/Modules/Feature/Edge/test/otbLineRatioDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineRatioDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx b/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx index d5ea87be1d..d85d8b71b2 100644 --- a/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx +++ b/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx b/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx index b8aa73c5e8..9b91bb1dea 100644 --- a/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx b/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx index 8004d1f789..b888ac2cb1 100644 --- a/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx +++ b/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx b/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx index c540cb9ef3..54775a6953 100644 --- a/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx +++ b/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx b/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx index 993335879a..6d372dc9a7 100644 --- a/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx b/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx index 924d14aa49..fb37248cb0 100644 --- a/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx +++ b/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx b/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx index 13440ed507..f7e0a5f05b 100644 --- a/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx +++ b/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx b/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx index f5f4dacf61..81faeddf9b 100644 --- a/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx +++ b/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx b/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx index 2853664893..42faead850 100644 --- a/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Feature/Moments/CMakeLists.txt b/Modules/Feature/Moments/CMakeLists.txt index a779fd257a..be87a32794 100644 --- a/Modules/Feature/Moments/CMakeLists.txt +++ b/Modules/Feature/Moments/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h index b1782f98be..9a9f99ead1 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx index e02b3f081d..00226a3993 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h index ae874a2fe9..cf3c29882f 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx index 00c1cb5c22..7ff3b39722 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h index a888cb73e7..87ca906883 100644 --- a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx index 4591bebb37..987bd6e470 100644 --- a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbFlusserPathFunction.h b/Modules/Feature/Moments/include/otbFlusserPathFunction.h index 07aa223d91..5d62660299 100644 --- a/Modules/Feature/Moments/include/otbFlusserPathFunction.h +++ b/Modules/Feature/Moments/include/otbFlusserPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx b/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx index 50907c8354..cf5ae13cc5 100644 --- a/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h b/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h index 1040e88087..55e2572356 100644 --- a/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h index 5deda926be..f2a8fa8e14 100644 --- a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx index e5c013fdef..4c03f5e268 100644 --- a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbHuPathFunction.h b/Modules/Feature/Moments/include/otbHuPathFunction.h index e3927fb5d5..5cb292e863 100644 --- a/Modules/Feature/Moments/include/otbHuPathFunction.h +++ b/Modules/Feature/Moments/include/otbHuPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbHuPathFunction.hxx b/Modules/Feature/Moments/include/otbHuPathFunction.hxx index e568f2df2b..291ba010ef 100644 --- a/Modules/Feature/Moments/include/otbHuPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbHuPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h b/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h index 657d7c5610..5037bfd1f5 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h index ed12285f55..ef0c6caea1 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx index 4bd6dd21c5..211d1c43b5 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h index 606add9ba7..55d46853f6 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx index 60947bf453..dc9828ff90 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRealMomentPathFunction.h b/Modules/Feature/Moments/include/otbRealMomentPathFunction.h index f3c2c70003..c4b5b48c7e 100644 --- a/Modules/Feature/Moments/include/otbRealMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbRealMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h index 909c818bb2..1c489b45b1 100644 --- a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx index 84ae7eb8be..8cd3a56fac 100644 --- a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/otb-module.cmake b/Modules/Feature/Moments/otb-module.cmake index 284bbd6297..9f25fe51d2 100644 --- a/Modules/Feature/Moments/otb-module.cmake +++ b/Modules/Feature/Moments/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Moments/test/CMakeLists.txt b/Modules/Feature/Moments/test/CMakeLists.txt index 1b818daccc..029b98433f 100644 --- a/Modules/Feature/Moments/test/CMakeLists.txt +++ b/Modules/Feature/Moments/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Moments/test/otbComplexMomentPath.cxx b/Modules/Feature/Moments/test/otbComplexMomentPath.cxx index a118ae4f4f..ad4a91bb9f 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentPath.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx b/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx index 0f1dddd005..78e420d3ac 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx b/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx index 334ab08b21..29d856200c 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx b/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx index d1c8a775f2..132eba0151 100644 --- a/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbFlusserPath.cxx b/Modules/Feature/Moments/test/otbFlusserPath.cxx index 914a6f6676..c3be17b673 100644 --- a/Modules/Feature/Moments/test/otbFlusserPath.cxx +++ b/Modules/Feature/Moments/test/otbFlusserPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx b/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx index 5ae977ade1..12cdade636 100644 --- a/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbHuPath.cxx b/Modules/Feature/Moments/test/otbHuPath.cxx index ff873f646d..1240a73ae7 100644 --- a/Modules/Feature/Moments/test/otbHuPath.cxx +++ b/Modules/Feature/Moments/test/otbHuPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx b/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx index 5afa99369b..0e47e75224 100644 --- a/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx +++ b/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx index d4f6dd7d79..8207e3c0fc 100644 --- a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx +++ b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx index 88c3afda38..e58f930a7e 100644 --- a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx b/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx index b54bb65a7c..8bfc3977d5 100644 --- a/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/CMakeLists.txt b/Modules/Feature/Textures/CMakeLists.txt index 2a763df203..9e7ef23840 100644 --- a/Modules/Feature/Textures/CMakeLists.txt +++ b/Modules/Feature/Textures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h index 1bf7be502b..4bd8f6b3af 100644 --- a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h +++ b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx index a0605dbb6b..7e443f88b8 100644 --- a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx +++ b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h index e70b91608f..53ccce563f 100644 --- a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h +++ b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx index 6e0b9be91c..a552c23f51 100644 --- a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx +++ b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h b/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h index eb408910ff..d6b5d0f96f 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h +++ b/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h index b3a3644e61..bda6e56efc 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h +++ b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx index 09543e9e31..da3ddf69f0 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx +++ b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h index 6c448c8db6..b382e2699a 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx index 984ea096d7..41045fbb9b 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h index 93fc98117a..b8a7f9b886 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx index 8d2a5e41f9..8b4f85b5c0 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h index 5d92f856ec..3920d02a05 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx index 1e4e8aef50..34b831e0fc 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h index 6b106426ac..f484a9a162 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx index 9a177279f4..0514fe985e 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbTextureImageFunction.h b/Modules/Feature/Textures/include/otbTextureImageFunction.h index e3f7b84f47..d19f1b1bef 100644 --- a/Modules/Feature/Textures/include/otbTextureImageFunction.h +++ b/Modules/Feature/Textures/include/otbTextureImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/include/otbTextureImageFunction.hxx b/Modules/Feature/Textures/include/otbTextureImageFunction.hxx index 2e1784313f..f6ec57b10b 100644 --- a/Modules/Feature/Textures/include/otbTextureImageFunction.hxx +++ b/Modules/Feature/Textures/include/otbTextureImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/otb-module.cmake b/Modules/Feature/Textures/otb-module.cmake index da3d92d557..1b2f9242cd 100644 --- a/Modules/Feature/Textures/otb-module.cmake +++ b/Modules/Feature/Textures/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Textures/test/CMakeLists.txt b/Modules/Feature/Textures/test/CMakeLists.txt index dc2e135766..c4dd57915b 100644 --- a/Modules/Feature/Textures/test/CMakeLists.txt +++ b/Modules/Feature/Textures/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx b/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx index 3813bb67d6..6e65edce43 100644 --- a/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx +++ b/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx b/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx index 6f72bf2e66..077cf36965 100644 --- a/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx +++ b/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx b/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx index c3e3446eba..fc0a7f1827 100644 --- a/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx +++ b/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx b/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx index d4220eba19..97018ba926 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx b/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx index b9e639dd47..bba9e283ca 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx b/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx index cc74fb8826..4ce68f2e83 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx b/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx index d43251cc4f..2bbdbae5ff 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx b/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx index 8e33f23504..05ff0b7f43 100644 --- a/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx +++ b/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/CMakeLists.txt b/Modules/Filtering/ChangeDetection/CMakeLists.txt index 3a76cc4c53..e4c441fae4 100644 --- a/Modules/Filtering/ChangeDetection/CMakeLists.txt +++ b/Modules/Filtering/ChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h index f1d48b60c1..d2776bb9b2 100644 --- a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx index 674b755da3..b9bdad3cae 100644 --- a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbCBAMI.h b/Modules/Filtering/ChangeDetection/include/otbCBAMI.h index 16a00a4cf5..738fd9b910 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCBAMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbCBAMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h b/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h index ee7bcdf9b2..521b7cd1c4 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h b/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h index 6146ec8577..d2c98437c8 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h b/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h index 1ce2dd7fec..71d55eeac3 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h +++ b/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h index 686d4c3c53..58f893b210 100644 --- a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h index ffe2f345b7..ef71a8c080 100644 --- a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h index eb2f377a28..022073bf81 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx index dbdf42708f..dfc3e30192 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h index 17d2e507f0..88096968a1 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx index 01f413d761..2670575d98 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h index 0ad4d00a60..244881886d 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx index 1efde96a41..d667d9defe 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/ChangeDetection/include/otbLHMI.h b/Modules/Filtering/ChangeDetection/include/otbLHMI.h index 01ecd905dd..5e92fb8cbd 100644 --- a/Modules/Filtering/ChangeDetection/include/otbLHMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbLHMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h b/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h index cd20122c04..357d82faea 100644 --- a/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h b/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h index ab7aae8a85..ba91f3647a 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h index 93941d0c24..5e17e6733c 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h b/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h index 995e830048..9fac4bb5e2 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h index 8ad430fdbc..df0b0ed8ec 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h index 401b36b93f..0ac74864b0 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx index 405cb656eb..d279581561 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/otb-module.cmake b/Modules/Filtering/ChangeDetection/otb-module.cmake index 00c497315c..9b35b04746 100644 --- a/Modules/Filtering/ChangeDetection/otb-module.cmake +++ b/Modules/Filtering/ChangeDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ChangeDetection/test/CMakeLists.txt b/Modules/Filtering/ChangeDetection/test/CMakeLists.txt index 5c4ae41dc9..6c1af43e08 100644 --- a/Modules/Filtering/ChangeDetection/test/CMakeLists.txt +++ b/Modules/Filtering/ChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx index 9c13c0b0bc..96856aff84 100644 --- a/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx b/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx index 5995acfafb..0c909d350d 100644 --- a/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx index c0067995fb..ed526ad4d1 100644 --- a/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx index ca358fe82c..b30acaae0b 100644 --- a/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx index 074a8c1602..c6f9c9507b 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx index e36231626a..35c6c2f6ce 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx index d0621846a2..93a8602e23 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx index 2d68dfd0c7..1383f0b008 100644 --- a/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx index 4fc3f2ff0d..1713294538 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx b/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx index 5f31838e4a..b23ecbfc90 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx b/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx index 1609e54b16..6db46a391c 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/CMakeLists.txt b/Modules/Filtering/ColorMap/CMakeLists.txt index 8d8e22805d..f546eb9414 100644 --- a/Modules/Filtering/ColorMap/CMakeLists.txt +++ b/Modules/Filtering/ColorMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h index 89f49a5eb8..afc9a1ed4f 100644 --- a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h +++ b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx index ed4a25a638..120132c72b 100644 --- a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx +++ b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h index d62dfb89fb..92b02f2971 100644 --- a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h +++ b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx index 24a32ff422..ccc5fb1d27 100644 --- a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx +++ b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/otb-module.cmake b/Modules/Filtering/ColorMap/otb-module.cmake index 30dbe01d80..47dd058d35 100644 --- a/Modules/Filtering/ColorMap/otb-module.cmake +++ b/Modules/Filtering/ColorMap/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ColorMap/test/CMakeLists.txt b/Modules/Filtering/ColorMap/test/CMakeLists.txt index a1ce133503..899e971c89 100644 --- a/Modules/Filtering/ColorMap/test/CMakeLists.txt +++ b/Modules/Filtering/ColorMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx b/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx index 168c8235b1..851839bf73 100644 --- a/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx +++ b/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx b/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx index 68b69b2943..cd87acbe18 100644 --- a/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx +++ b/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2021 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/CMakeLists.txt b/Modules/Filtering/Contrast/CMakeLists.txt index df0c237979..379405cc5d 100644 --- a/Modules/Filtering/Contrast/CMakeLists.txt +++ b/Modules/Filtering/Contrast/CMakeLists.txt @@ -1,5 +1