From d53d7060f182a9d4a6e34fbe5d225f02c5227434 Mon Sep 17 00:00:00 2001 From: Guillaume Pernot <guillaume.pernot@c-s.fr> Date: Fri, 20 Mar 2020 11:10:01 +0100 Subject: [PATCH 01/37] updated pcre and itk --- SuperBuild/CMake/External_itk.cmake | 4 ++-- SuperBuild/CMake/External_pcre.cmake | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SuperBuild/CMake/External_itk.cmake b/SuperBuild/CMake/External_itk.cmake index 5f26f8ffcb..7cd21d5a42 100644 --- a/SuperBuild/CMake/External_itk.cmake +++ b/SuperBuild/CMake/External_itk.cmake @@ -146,8 +146,8 @@ set(_SB_ITK_DIR ${SB_INSTALL_PREFIX}/lib/cmake/ITK-${SB_ITK_VERSION_MAJOR}.${SB_ ExternalProject_Add(ITK PREFIX ITK - URL "https://sourceforge.net/projects/itk/files/itk/4.13/InsightToolkit-4.13.1.tar.gz" - URL_MD5 c7e229802c4ee64e1b2a6d48b1df67e9 + URL "https://sourceforge.net/projects/itk/files/itk/4.13/InsightToolkit-4.13.2.tar.gz" + URL_MD5 1b6ae17dbd605d6c36564cc3d2cc1ee8 SOURCE_DIR ${ITK_SB_SRC} BINARY_DIR ${ITK_SB_BUILD_DIR} INSTALL_DIR ${SB_INSTALL_PREFIX} diff --git a/SuperBuild/CMake/External_pcre.cmake b/SuperBuild/CMake/External_pcre.cmake index 702edd15df..92c38e2880 100644 --- a/SuperBuild/CMake/External_pcre.cmake +++ b/SuperBuild/CMake/External_pcre.cmake @@ -25,8 +25,8 @@ if(MSVC) else() ExternalProject_Add(PCRE PREFIX PCRE - URL "http://downloads.sourceforge.net/project/pcre/pcre/8.36/pcre-8.36.tar.gz" - URL_MD5 ff7b4bb14e355f04885cf18ff4125c98 + URL "https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz" + URL_MD5 3bcd2441024d00009a5fee43f058987c BINARY_DIR ${PCRE_SB_BUILD_DIR} INSTALL_DIR ${SB_INSTALL_PREFIX} DOWNLOAD_DIR ${DOWNLOAD_LOCATION} -- GitLab From c93be2c6c3dc2b9015de16d7e639bf9ee1b6021e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Wed, 1 Apr 2020 17:47:02 +0200 Subject: [PATCH 02/37] REFAC: factorize spectral angle code in the library --- .../include/otbBinarySpectralAngleFunctor.h | 33 +---- .../include/otbSpectralAngleFunctor.h | 89 +++++++------- .../include/otbSqrtSpectralAngleFunctor.h | 37 ++++-- .../otbWaterSqrtSpectralAngleImageFilter.h | 114 +++++++++--------- .../otbWaterSqrtSpectralAngleImageFilter.cxx | 3 +- .../otbConnectedComponentMuParserFunctor.h | 27 +---- 6 files changed, 138 insertions(+), 165 deletions(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h index dd41727317..759a7708fb 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h @@ -23,6 +23,7 @@ #include <algorithm> #include "otbMath.h" +#include "otbSpectralAngleFunctor.h" namespace otb { @@ -40,40 +41,14 @@ template <class TInput1, class TInput2, class TOutputValue> class BinarySpectralAngleFunctor { public: - BinarySpectralAngleFunctor() - { - } + BinarySpectralAngleFunctor() = default; - virtual ~BinarySpectralAngleFunctor() - { - } + virtual ~BinarySpectralAngleFunctor() = default; // Binary operator inline TOutputValue operator()(const TInput1& a, const TInput2& b) const { - const double Epsilon = 1E-10; - double dist = 0.0; - double scalarProd = 0.0; - double norma = 0.0; - double normb = 0.0; - double sqrtNormProd = 0.0; - for (unsigned int i = 0; i < std::min(a.Size(), b.Size()); ++i) - { - scalarProd += a[i] * b[i]; - norma += a[i] * a[i]; - normb += b[i] * b[i]; - } - sqrtNormProd = std::sqrt(norma * normb); - if (std::abs(sqrtNormProd) < Epsilon || scalarProd / sqrtNormProd > 1) - { - dist = 0.0; - } - else - { - dist = std::acos(scalarProd / sqrtNormProd); - } - - return static_cast<TOutputValue>(dist); + return SpectralAngleDetails::ComputeSpectralAngle<TInput1, TInput2, TOutputValue>(a, b, b.GetNorm()); } }; diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 0d0de1cd42..c66af8902f 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -26,13 +26,42 @@ namespace otb { +namespace Functor +{ + +namespace SpectralAngleDetails +{ + +template <class TInput, class TReference, class TOutput> +TOutput ComputeSpectralAngle(TInput const & input, TReference const & reference, + typename TReference::ValueType refNorm) +{ + // Compute norm and scalar product. + double scalarProduct = 0.0; + double squaredNormInput = 0.0; + for (unsigned int i = 0; i < std::min(input.Size(), reference.Size()); ++i) + { + scalarProduct += input[i] * reference[i]; + squaredNormInput += input[i] * input[i]; + } + auto normProd = std::sqrt(squaredNormInput) * refNorm; + if ((normProd == 0.0) || (scalarProduct / normProd > 1)) + { + return static_cast<TOutput>(0.0); + } + else + { + return static_cast<TOutput>(std::acos(scalarProduct / normProd)); + } +} + +} // end namespace SpectralAngleDetails + /** \class SpectralAngleFunctor * \brief This functor computes the spectral angle according to a reference pixel. * * \ingroup OTBImageManipulation */ -namespace Functor -{ template <class TInput, class TOutputValue> class SpectralAngleFunctor { @@ -43,66 +72,34 @@ public: m_ReferencePixel.Fill(1); } - virtual ~SpectralAngleFunctor() - { - } + virtual ~SpectralAngleFunctor() = default; + // Binary operator - inline TOutputValue operator()(const TInput& inPix) const + inline TOutputValue operator()(TInput const & inPix) const { - return this->Evaluate(inPix); + return SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, m_ReferencePixel, m_RefNorm); } - void SetReferencePixel(TInput ref) + void SetReferencePixel(TInput const & ref) { m_ReferencePixel = ref; - m_RefNorm = 0.0; - for (unsigned int i = 0; i < ref.Size(); ++i) - { - m_RefNorm += ref[i] * ref[i]; - } - m_RefNorm = std::sqrt(static_cast<double>(m_RefNorm)); + m_RefNorm = ref.GetNorm(); } + TInput GetReferencePixel() const { return m_ReferencePixel; } -protected: - // This method can be reimplemented in subclasses to actually - // compute the index value - virtual TOutputValue Evaluate(const TInput& inPix) const - { - TOutputValue out; - - double dist = 0.0; - double scalarProd = 0.0; - double normProd = 0.0; - double normProd1 = 0.0; - double sqrtNormProd = 0.0; - for (unsigned int i = 0; i < std::min(inPix.Size(), m_ReferencePixel.Size()); ++i) - { - scalarProd += inPix[i] * m_ReferencePixel[i]; - normProd1 += inPix[i] * inPix[i]; - } - normProd = normProd1 * m_RefNorm * m_RefNorm; - sqrtNormProd = std::sqrt(normProd); - if ((sqrtNormProd == 0.0) || (scalarProd / sqrtNormProd > 1)) - { - dist = 0.0; - } - else - { - dist = std::acos(scalarProd / sqrtNormProd); - } - - out = static_cast<TOutputValue>(dist); - return out; - } - +private : TInput m_ReferencePixel; double m_RefNorm; }; + + + + } // end namespace functor } // end namespace otb diff --git a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h index 65f94b23a0..b1eaf2f035 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h @@ -35,25 +35,44 @@ namespace Functor * * \ingroup OTBImageManipulation */ -template <class TInputVectorPixel, class TOutputPixel> -class SqrtSpectralAngleFunctor : public SpectralAngleFunctor<TInputVectorPixel, TOutputPixel> + +/** \class SpectralAngleFunctor + * \brief This functor computes the spectral angle according to a reference pixel. + * + * \ingroup OTBImageManipulation + */ +template <class TInput, class TOutputValue> +class SqrtSpectralAngleFunctor { public: - typedef SqrtSpectralAngleFunctor Self; - typedef SpectralAngleFunctor<TInputVectorPixel, TOutputPixel> Superclass; - SqrtSpectralAngleFunctor() { + m_ReferencePixel.SetSize(4); + m_ReferencePixel.Fill(1); } - ~SqrtSpectralAngleFunctor() override + + virtual ~SqrtSpectralAngleFunctor() = default; + + // Binary operator + inline TOutputValue operator()(TInput const & inPix) const { + return std::sqrt(SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, m_ReferencePixel, m_RefNorm)); } -protected: - TOutputPixel Evaluate(const TInputVectorPixel& inPix) const override + void SetReferencePixel(TInput const & ref) { - return static_cast<TOutputPixel>(std::sqrt(Superclass::Evaluate(inPix))); + m_ReferencePixel = ref; + m_RefNorm = ref.GetNorm(); } + + TInput GetReferencePixel() const + { + return m_ReferencePixel; + } + +private : + TInput m_ReferencePixel; + double m_RefNorm; }; } // end namespace Functor diff --git a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h index 0d44c5a062..f56c7eb5a7 100644 --- a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h +++ b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h @@ -23,6 +23,7 @@ #include "otbSqrtSpectralAngleFunctor.h" #include "itkUnaryFunctorImageFilter.h" +#include "otbRadiometricIndex.h" namespace otb { @@ -38,100 +39,103 @@ namespace Functor * * \ingroup OTBIndices */ -template <class TInputVectorPixel, class TOutputPixel> -class WaterSqrtSpectralAngleFunctor : public SqrtSpectralAngleFunctor<TInputVectorPixel, TOutputPixel> +template <class TInput, class TOutput> +class WaterSqrtSpectralAngleFunctor : public RadiometricIndex<TInput, TOutput> { public: - typedef WaterSqrtSpectralAngleFunctor Self; - typedef SqrtSpectralAngleFunctor<TInputVectorPixel, TOutputPixel> Superclass; - typedef TInputVectorPixel InputVectorPixelType; - WaterSqrtSpectralAngleFunctor() - { + using typename RadiometricIndex<TInput, TOutput>::PixelType; - // Set the channels indices - m_BlueIndex = 0; - m_GreenIndex = 1; - m_RedIndex = 2; - m_NIRIndex = 3; - - // Set reference water value - InputVectorPixelType reference; - reference.SetSize(4); - reference[0] = 136.0; - reference[1] = 132.0; - reference[2] = 47.0; - reference[3] = 24.0; - this->SetReferenceWaterPixel(reference); + WaterSqrtSpectralAngleFunctor() + : RadiometricIndex<TInput, TOutput>({CommonBandNames::BLUE, CommonBandNames::GREEN, CommonBandNames::RED, CommonBandNames::NIR} ) + { + // Set default reference water value + m_ReferencePixel.SetSize(4); + m_ReferencePixel[0] = 136.0; + m_ReferencePixel[1] = 132.0; + m_ReferencePixel[2] = 47.0; + m_ReferencePixel[3] = 24.0; + m_RefNorm = m_ReferencePixel.GetNorm(); } - ~WaterSqrtSpectralAngleFunctor() override + + virtual ~WaterSqrtSpectralAngleFunctor() = default; + + /** Set Reference Pixel + * \param ref : The new reference pixel, the band indices will be used. + * */ + void SetReferenceWaterPixel(PixelType ref) { + assert(m_ReferencePixel.Size == 4); + m_ReferencePixel[0] = this->Value(CommonBandNames::BLUE, ref); + m_ReferencePixel[1] = this->Value(CommonBandNames::GREEN, ref); + m_ReferencePixel[2] = this->Value(CommonBandNames::RED, ref); + m_ReferencePixel[3] = this->Value(CommonBandNames::NIR, ref); + m_RefNorm = m_ReferencePixel.GetNorm(); } - /** Set Reference Pixel */ - void SetReferenceWaterPixel(InputVectorPixelType ref) + // Binary operator + inline TOutput operator()(PixelType const & inPix) const override { - if (ref.GetSize() != 4) - { - } - InputVectorPixelType reference; - reference.SetSize(4); - reference[m_BlueIndex] = ref[0]; - reference[m_GreenIndex] = ref[1]; - reference[m_RedIndex] = ref[2]; - reference[m_NIRIndex] = ref[3]; - this->SetReferencePixel(reference); + PixelType pix(4); + pix[0] = this->Value(CommonBandNames::BLUE, inPix); + pix[1] = this->Value(CommonBandNames::GREEN, inPix); + pix[2] = this->Value(CommonBandNames::RED, inPix); + pix[3] = this->Value(CommonBandNames::NIR, inPix); + + return std::sqrt(SpectralAngleDetails::ComputeSpectralAngle<PixelType, PixelType, TOutput> + (pix, + m_ReferencePixel, + m_RefNorm)); } - /** Getters and setters */ + /**@{*/ + /** Legacy getters and setters (use SetBandIndex/GetBandIndex instead) + * \deprecated + * */ void SetBlueChannel(unsigned int channel) { - m_BlueIndex = channel; + this->SetBandIndex(CommonBandNames::BLUE, channel + 1); } unsigned int GetBlueChannel() const { - return m_BlueIndex; + return this->GetBandIndex(CommonBandNames::BLUE) - 1; } void SetGreenChannel(unsigned int channel) { - m_GreenIndex = channel; + this->SetBandIndex(CommonBandNames::GREEN, channel + 1); } unsigned int GetGreenChannel() const { - return m_GreenIndex; + return this->GetBandIndex(CommonBandNames::GREEN) - 1; } void SetRedChannel(unsigned int channel) { - m_RedIndex = channel; + this->SetBandIndex(CommonBandNames::RED, channel + 1); } unsigned int GetRedChannel() const { - return m_RedIndex; + return this->GetBandIndex(CommonBandNames::RED) - 1; } void SetNIRChannel(unsigned int channel) { - m_NIRIndex = channel; + this->SetBandIndex(CommonBandNames::NIR, channel + 1); } unsigned int GetNIRChannel() const { - return m_NIRIndex; + return this->GetBandIndex(CommonBandNames::NIR) - 1; } + /**@}*/ + -protected: - inline TOutputPixel Evaluate(const TInputVectorPixel& inPix) const override - { - return static_cast<TOutputPixel>(Superclass::Evaluate(inPix)); - } +private: - /** Channels */ - int m_BlueIndex; - int m_GreenIndex; - int m_RedIndex; - int m_NIRIndex; + PixelType m_ReferencePixel; + double m_RefNorm; }; } // End namespace Functor /** \class WaterSqrtSpectralAngleImageFilter + * \deprecated * \brief Compute a radiometric water indice * * This filter calculates a pixel wise water indice by calculating @@ -147,11 +151,11 @@ protected: * probability of water. * * \sa SpectralAngleDistanceImageFilter - * + * * \ingroup OTBIndices */ template <class TInputVectorImage, class TOutputImage, - class TFunction = Functor::WaterSqrtSpectralAngleFunctor<typename TInputVectorImage::PixelType, typename TOutputImage::PixelType>> + class TFunction = Functor::WaterSqrtSpectralAngleFunctor<double, typename TOutputImage::PixelType>> class ITK_EXPORT WaterSqrtSpectralAngleImageFilter : public itk::UnaryFunctorImageFilter<TInputVectorImage, TOutputImage, TFunction> { public: diff --git a/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx b/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx index 07e8df9bb4..71fd7483c4 100644 --- a/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx +++ b/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx @@ -39,6 +39,7 @@ int otbWaterSqrtSpectralAngleImageFilter(int itkNotUsed(argc), char* argv[]) // Instantiating objects WaterSqrtSpectralAngleImageFilterType::Pointer filter = WaterSqrtSpectralAngleImageFilterType::New(); + ReaderType::Pointer reader = ReaderType::New(); WriterType::Pointer writer = WriterType::New(); @@ -60,7 +61,7 @@ int otbWaterSqrtSpectralAngleImageFilter(int itkNotUsed(argc), char* argv[]) filter->SetInput(reader->GetOutput()); writer->SetInput(filter->GetOutput()); + writer->Update(); - return EXIT_SUCCESS; } diff --git a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h index 6d23441974..14193dcdae 100644 --- a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h +++ b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h @@ -25,7 +25,7 @@ #include "otbParser.h" #include "otbMacro.h" - +#include "otbSpectralAngleFunctor.h" #include <vnl/algo/vnl_lsqr.h> #include <vnl/vnl_sparse_matrix_linear_system.h> @@ -116,30 +116,7 @@ public: m_Distance = std::sqrt(m_Distance); - // compute spectralAngle - double scalarProd = 0.0; - double normProd = 0.0; - double normProd1 = 0.0; - double normProd2 = 0.0; - - for (unsigned int i = 0; i < p1.Size(); ++i) - { - scalarProd += p1[i] * p2[i]; - normProd1 += p1[i] * p1[i]; - normProd2 += p2[i] * p2[i]; - } - normProd = normProd1 * normProd2; - - if (normProd == 0.0) - { - m_SpectralAngle = 0.0; - } - else - { - m_SpectralAngle = std::acos(scalarProd / std::sqrt(normProd)); - } - - // + m_SpectralAngle = SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, double>(p1, p2, p2.GetNorm()); value = m_Parser->Eval(); -- GitLab From 87b0c5114fa0951960ac057e83519730248fda0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 2 Apr 2020 13:58:11 +0200 Subject: [PATCH 03/37] ENH: add functor to compute spectral angle on a vector of reference pixel --- .../include/otbSpectralAngleFunctor.h | 45 ++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index c66af8902f..dac520b850 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -96,9 +96,52 @@ private : double m_RefNorm; }; - +template <class TInput, class TReference, class TOutput> +class SpectralAngleMapperFunctor +{ +public: + SpectralAngleMapperFunctor() = default; + virtual ~SpectralAngleMapperFunctor() = default; + // Binary operator + inline TOutput operator()(const TInput& inPix) const + { + TOutput res; + res.SetSize(m_ReferencePixels.size()); + + for (unsigned int i = 0; i< m_ReferencePixels.size(); i++) + { + res[i] = SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, typename TOutput::ValueType> + (inPix, m_ReferencePixels[i], m_ReferenceNorm[i]); + } + + return res; + } + + size_t OutputSize(...) const + { + return m_ReferencePixels.size(); + } + + void SetReferencePixels(std::vector<TReference> const & ref) + { + m_ReferencePixels = ref; + // Precompute the norm of reference pixels + for (auto const & pix : ref) + { + m_ReferenceNorm.push_back(pix.GetNorm()); + } + } + std::vector<TReference> GetReferencePixels() const + { + return m_ReferencePixels; + } + +private: + std::vector<TReference> m_ReferencePixels; + std::vector<double> m_ReferenceNorm; +}; } // end namespace functor } // end namespace otb -- GitLab From 3fac966a792a6a5595bc69d7a7b7f8188dc019c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 2 Apr 2020 13:59:23 +0200 Subject: [PATCH 04/37] ENH: add new application SpectralAngleClassification (only SAM mode is implemented at the moment) --- .../AppHyperspectral/app/CMakeLists.txt | 5 + .../app/otbSpectralAngleClassification.cxx | 173 ++++++++++++++++++ 2 files changed, 178 insertions(+) create mode 100644 Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx diff --git a/Modules/Applications/AppHyperspectral/app/CMakeLists.txt b/Modules/Applications/AppHyperspectral/app/CMakeLists.txt index fa72364e74..2f2a60e1e0 100644 --- a/Modules/Applications/AppHyperspectral/app/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/app/CMakeLists.txt @@ -38,3 +38,8 @@ otb_create_application( SOURCES otbEndmemberNumberEstimation.cxx LINK_LIBRARIES ${${otb-module}_LIBRARIES}) +otb_create_application( + NAME SpectralAngleClassification + SOURCES otbSpectralAngleClassification.cxx + LINK_LIBRARIES ${${otb-module}_LIBRARIES}) + diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx new file mode 100644 index 0000000000..4a1539cfb6 --- /dev/null +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -0,0 +1,173 @@ +/* + * Copyright (C) 2005-2019 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. + */ + +#include "otbWrapperApplication.h" +#include "otbWrapperApplicationFactory.h" + +#include "otbSpectralAngleFunctor.h" +#include "otbFunctorImageFilter.h" + + +namespace otb +{ +namespace Wrapper +{ + +class SpectralAngleClassification : public Application +{ +public: + /** Standard class typedefs. */ + using Self = SpectralAngleClassification; + using Superclass = Application; + using Pointer = itk::SmartPointer<Self>; + using ConstPointer = itk::SmartPointer<const Self>; + + /** Standard macro */ + itkNewMacro(Self); + + itkTypeMacro(SpectralAngleClassification, otb::Application); + + using ValueType = float; + using ImageType = otb::VectorImage<ValueType>; + using PixelType = ImageType::PixelType; + using SAMFilterType = otb::FunctorImageFilter<otb::Functor::SpectralAngleMapperFunctor<PixelType, PixelType, PixelType>>; + +private: + void DoInit() override + { + SetName("SpectralAngleClassification"); + SetDescription("Classifies an image using a spectral angle measure."); + + // Documentation + SetDocLongDescription("TODO"); + SetDocLimitations("None"); + SetDocAuthors("OTB-Team"); + SetDocSeeAlso("VertexComponentAnalysis \n" + "Du, Yingzi & Chang, Chein-I & Ren, Hsuan & Chang, Chein-Chi & Jensen, James & D'Amico, Francis. (2004). " + "New Hyperspectral Discrimination Measure for Spectral Characterization. Optical Engineering - OPT ENG. 43." + " 1777-1786. 10.1117/1.1766301. "); + + AddDocTag(Tags::Hyperspectral); + + AddParameter(ParameterType_InputImage, "in", "Input Image Filename"); + SetParameterDescription("in", "The hyperspectral data cube input"); + + AddParameter(ParameterType_InputImage, "ie", "Input endmembers"); + SetParameterDescription("ie", + "The endmembers (estimated pure pixels) to " + "use for unmixing. Must be stored as a multispectral image, where " + "each pixel is interpreted as an endmember."); + + AddParameter(ParameterType_OutputImage, "measure", "Output spectral angle values"); + SetParameterDescription("measure", + "Output image containing for each pixel from the input image the computed measure relative to each endmember"); + MandatoryOff("measure"); + + AddParameter(ParameterType_OutputImage, "out", "Output classified image"); + SetParameterDescription("out", + "Output classified image."); + + MandatoryOff("out"); + + AddParameter(ParameterType_Choice, "mode", "Measure used for classification"); + SetParameterDescription("mode", "Measure used for classification"); + MandatoryOff("mode"); + + AddChoice("mode.sam", "Spectral angle mapper"); + SetParameterDescription("mode.sam", "Spectral angle mapper (SAM) measure."); + + AddChoice("mode.sid", "Spectral information divergence"); + SetParameterDescription("mode.sid", "Spectral information divergence (SID) measure."); + + AddRAMParameter(); + SetMultiWriting(true); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "cupriteSubHsi.tif"); + SetDocExampleParameterValue("ie", "cupriteEndmembers.tif"); + SetDocExampleParameterValue("out", "classification.tif"); + SetDocExampleParameterValue("measure", "measure.tif"); + SetDocExampleParameterValue("mode", "sam"); + + SetOfficialDocLink(); + } + + void DoUpdateParameters() override + { + // Nothing to do here : all parameters are independent + } + + void DoExecute() override + { + auto inputEndmemberImage = GetParameterImage("ie"); + inputEndmemberImage->Update(); + itk::ImageRegionConstIterator<ImageType> it(inputEndmemberImage, inputEndmemberImage->GetLargestPossibleRegion()); + std::vector<PixelType> endmembers; + + for (it.GoToBegin(); !it.IsAtEnd(); ++it) + { + endmembers.push_back(it.Get()); + } + + auto SAMFilter = SAMFilterType::New(); + + SAMFilter->GetModifiableFunctor().SetReferencePixels(endmembers); + SAMFilter->SetInput(GetParameterImage("in")); + + + if (HasValue("measure")) + { + SetParameterOutputImage("measure", SAMFilter->GetOutput()); + } + + if (HasValue("out")) + { + // This lambda return the index of the minimum value in a pixel + auto minIndexLambda = [](PixelType const & pixel) + { + auto min = std::numeric_limits<ValueType>::max(); + unsigned int res = 0; + for (unsigned int i = 0; i < pixel.Size(); i++) + { + if (pixel[i] < min) + { + min = pixel[i]; + res = i; + } + } + return res; + }; + + auto classificationFilter = NewFunctorFilter(minIndexLambda); + classificationFilter->SetInput(SAMFilter->GetOutput()); + + SetParameterOutputImage("out", classificationFilter->GetOutput()); + RegisterPipeline(); + } + else + { + RegisterPipeline(); + } + } +}; +} +} + +OTB_APPLICATION_EXPORT(otb::Wrapper::SpectralAngleClassification) -- GitLab From 3ff93d3688483a503902dfddcdf54a4c97811f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 2 Apr 2020 19:06:42 +0200 Subject: [PATCH 05/37] ENH: added functor for SID computation --- .../otbSpectralInformationDivergenceFunctor.h | 110 ++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h new file mode 100644 index 0000000000..7337e948ca --- /dev/null +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -0,0 +1,110 @@ +/* + * Copyright (C) 2005-2019 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 otbSpectralInformationDivergenceFunctor_h +#define otbSpectralInformationDivergenceFunctor_h + +#include "otbMath.h" +#include <algorithm> + +namespace otb +{ +namespace Functor +{ + +template <class TInput, class TReference, class TOutput> +class SpectralInformationDivergenceFunctor +{ +public: + SpectralInformationDivergenceFunctor() = default; + virtual ~SpectralInformationDivergenceFunctor() = default; + + using OutputValueType = typename TOutput::ValueType; + + // Binary operator + inline TOutput operator()(const TInput& input) const + { + TOutput res; + res.SetSize(m_ReferenceProbabilities.size()); + + TInput inputProbability = ComputeProbabilityMassFunction(input); + + for (unsigned int i = 0; i< m_ReferenceProbabilities.size(); i++) + { + res[i] = ComputeSpectralInformationDivergence(inputProbability, m_ReferenceProbabilities[i]); + } + + return res; + } + + size_t OutputSize(...) const + { + return m_ReferenceProbabilities.size(); + } + + void SetReferencePixels(std::vector<TReference> const & ref) + { + m_ReferenceProbabilities.clear(); + for (auto const & pixel : ref) + { + m_ReferenceProbabilities.push_back(ComputeProbabilityMassFunction(pixel)); + } + } + +private: + inline TInput ComputeProbabilityMassFunction(TInput const & input) const + { + double sum = 0.0; + for (unsigned int i = 0; i < input.Size(); i++) + { + // Input pixel should be non negative (e.g. reflectance, radiance) + if (input[i] <= 0) + { + throw std::domain_error("Input pixel of the spectral information divergence algorithm should be strictly positive."); + } + sum += input[i]; + } + TInput res(input.Size()); + for (unsigned int i = 0; i < input.Size(); i++) + { + res[i] = input[i] / sum; + } + return res; + } + + inline OutputValueType ComputeSpectralInformationDivergence(TInput const & p, TInput const & q) const + { + assert(p.Size() == q.Size()); + OutputValueType sid = 0.0; + for (unsigned int i = 0; i < p.Size(); i++) + { + sid += p[i] * std::log(p[i]/q[i]) + q[i] * std::log(q[i]/p[i]); + } + return sid; + } + + /** Probability mass function associated with the */ + std::vector<TReference> m_ReferenceProbabilities; +}; + +} // end namespace functor +} // end namespace otb + +#endif //otbSpectralInformationDivergenceFunctor_h -- GitLab From 880d6cfa8099a0ffb3cc2f55edf40698ab7f946e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 2 Apr 2020 19:08:55 +0200 Subject: [PATCH 06/37] BUG: reset the norm of the reference pixels when setting a new vector of reference pixels --- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index dac520b850..3d680d3b06 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -126,6 +126,7 @@ public: void SetReferencePixels(std::vector<TReference> const & ref) { m_ReferencePixels = ref; + m_ReferenceNorm.clear(); // Precompute the norm of reference pixels for (auto const & pix : ref) { -- GitLab From 8c7f4cd31547c0a0d3fd2cf59cf00f43b330dd0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 2 Apr 2020 19:09:36 +0200 Subject: [PATCH 07/37] ENH: Added the SID algorithm to SpectralAngleClassification --- .../app/otbSpectralAngleClassification.cxx | 35 ++++++++++++++----- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index 4a1539cfb6..03ee42e29c 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -23,7 +23,7 @@ #include "otbSpectralAngleFunctor.h" #include "otbFunctorImageFilter.h" - +#include "otbSpectralInformationDivergenceFunctor.h" namespace otb { @@ -48,6 +48,7 @@ public: using ImageType = otb::VectorImage<ValueType>; using PixelType = ImageType::PixelType; using SAMFilterType = otb::FunctorImageFilter<otb::Functor::SpectralAngleMapperFunctor<PixelType, PixelType, PixelType>>; + using SIDFilterType = otb::FunctorImageFilter<otb::Functor::SpectralInformationDivergenceFunctor<PixelType, PixelType, PixelType>>; private: void DoInit() override @@ -126,15 +127,33 @@ private: endmembers.push_back(it.Get()); } - auto SAMFilter = SAMFilterType::New(); - - SAMFilter->GetModifiableFunctor().SetReferencePixels(endmembers); - SAMFilter->SetInput(GetParameterImage("in")); - + // Process objects to keep references on the actual filter instanciated below and its output + itk::LightObject::Pointer filter; + ImageType::Pointer filterOutput; + auto mode = GetParameterString("mode"); + if (mode == "sam") + { + auto SAMFilter = SAMFilterType::New(); + + SAMFilter->GetModifiableFunctor().SetReferencePixels(endmembers); + SAMFilter->SetInput(GetParameterImage("in")); + filter = SAMFilter; + filterOutput = SAMFilter->GetOutput(); + } + else if (mode == "sid") + { + auto SIDFilter = SIDFilterType::New(); + + SIDFilter->GetModifiableFunctor().SetReferencePixels(endmembers); + SIDFilter->SetInput(GetParameterImage("in")); + filter = SIDFilter; + filterOutput = SIDFilter->GetOutput(); + } + if (HasValue("measure")) { - SetParameterOutputImage("measure", SAMFilter->GetOutput()); + SetParameterOutputImage("measure", filterOutput); } if (HasValue("out")) @@ -156,7 +175,7 @@ private: }; auto classificationFilter = NewFunctorFilter(minIndexLambda); - classificationFilter->SetInput(SAMFilter->GetOutput()); + classificationFilter->SetInput(filterOutput); SetParameterOutputImage("out", classificationFilter->GetOutput()); RegisterPipeline(); -- GitLab From 69ef64edc6625744f48c89b46f17746912d99be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Fri, 3 Apr 2020 09:52:26 +0200 Subject: [PATCH 08/37] ENH: the norm of the input is now also a parameter of SpectralAngleDetails:ComputeSpectralAngle --- .../include/otbBinarySpectralAngleFunctor.h | 16 ++++++++++++++-- .../include/otbSpectralAngleFunctor.h | 16 ++++++++-------- .../include/otbSqrtSpectralAngleFunctor.h | 2 +- .../otbWaterSqrtSpectralAngleImageFilter.h | 5 ++--- .../otbConnectedComponentMuParserFunctor.h | 7 ++++--- 5 files changed, 29 insertions(+), 17 deletions(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h index 759a7708fb..59d0bf2f3c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h @@ -30,6 +30,9 @@ namespace otb /** \class BinarySpectralAngleFunctor * \brief This functor computes the spectral angle between two pixels. * + * If the pixels have different sizes, only the first components of the + * largest pixel will be considered. + * * It can be used as a functor in a BinaryFunctorImageFilter to * compute the pixel-by-pixel spectral angles. * @@ -46,9 +49,18 @@ public: virtual ~BinarySpectralAngleFunctor() = default; // Binary operator - inline TOutputValue operator()(const TInput1& a, const TInput2& b) const + inline TOutputValue operator()(const TInput1& in1, const TInput2& in2) const { - return SpectralAngleDetails::ComputeSpectralAngle<TInput1, TInput2, TOutputValue>(a, b, b.GetNorm()); + // Compute norms. + auto in1Norm = 0; + auto in2Norm = 0; + for (unsigned int i = 0; i < std::min(in1.Size(), in2.Size()); ++i) + { + in1Norm += in1[i] * in1[i]; + in2Norm += in2[i] * in2[i]; + } + + return SpectralAngleDetails::ComputeSpectralAngle<TInput1, TInput2, TOutputValue>(in1, in1Norm, in2, in2Norm); } }; diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 3d680d3b06..eee6541d56 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -33,18 +33,16 @@ namespace SpectralAngleDetails { template <class TInput, class TReference, class TOutput> -TOutput ComputeSpectralAngle(TInput const & input, TReference const & reference, - typename TReference::ValueType refNorm) +TOutput ComputeSpectralAngle(TInput const & input, typename TInput ::ValueType const & inputNorm, + TReference const & reference, typename TReference::ValueType refNorm) { - // Compute norm and scalar product. + // Compute scalar product. double scalarProduct = 0.0; - double squaredNormInput = 0.0; for (unsigned int i = 0; i < std::min(input.Size(), reference.Size()); ++i) { scalarProduct += input[i] * reference[i]; - squaredNormInput += input[i] * input[i]; } - auto normProd = std::sqrt(squaredNormInput) * refNorm; + auto normProd = inputNorm * refNorm; if ((normProd == 0.0) || (scalarProduct / normProd > 1)) { return static_cast<TOutput>(0.0); @@ -77,7 +75,7 @@ public: // Binary operator inline TOutputValue operator()(TInput const & inPix) const { - return SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, m_ReferencePixel, m_RefNorm); + return SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, inPix.GetNorm(), m_ReferencePixel, m_RefNorm); } void SetReferencePixel(TInput const & ref) @@ -109,10 +107,12 @@ public: TOutput res; res.SetSize(m_ReferencePixels.size()); + auto inputNorm = inPix.GetNorm(); + for (unsigned int i = 0; i< m_ReferencePixels.size(); i++) { res[i] = SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, typename TOutput::ValueType> - (inPix, m_ReferencePixels[i], m_ReferenceNorm[i]); + (inPix, inputNorm, m_ReferencePixels[i], m_ReferenceNorm[i]); } return res; diff --git a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h index b1eaf2f035..51d5b570fb 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h @@ -56,7 +56,7 @@ public: // Binary operator inline TOutputValue operator()(TInput const & inPix) const { - return std::sqrt(SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, m_ReferencePixel, m_RefNorm)); + return std::sqrt(SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, TOutputValue>(inPix, inPix.GetNorm(), m_ReferencePixel, m_RefNorm)); } void SetReferencePixel(TInput const & ref) diff --git a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h index f56c7eb5a7..6a195b2569 100644 --- a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h +++ b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h @@ -82,9 +82,8 @@ public: pix[3] = this->Value(CommonBandNames::NIR, inPix); return std::sqrt(SpectralAngleDetails::ComputeSpectralAngle<PixelType, PixelType, TOutput> - (pix, - m_ReferencePixel, - m_RefNorm)); + (pix, pix.GetNorm(), + m_ReferencePixel, m_RefNorm)); } /**@{*/ diff --git a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h index 14193dcdae..c98a9db037 100644 --- a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h +++ b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h @@ -25,7 +25,7 @@ #include "otbParser.h" #include "otbMacro.h" -#include "otbSpectralAngleFunctor.h" +#include "otbBinarySpectralAngleFunctor.h" #include <vnl/algo/vnl_lsqr.h> #include <vnl/vnl_sparse_matrix_linear_system.h> @@ -115,8 +115,9 @@ public: m_IntensityP2 = m_IntensityP2 / (static_cast<double>(m_NbOfBands)); m_Distance = std::sqrt(m_Distance); - - m_SpectralAngle = SpectralAngleDetails::ComputeSpectralAngle<TInput, TInput, double>(p1, p2, p2.GetNorm()); + + BinarySpectralAngleFunctor<TInput, TInput, double> spectralAngleFunctor; + m_SpectralAngle = spectralAngleFunctor(p1, p2); value = m_Parser->Eval(); -- GitLab From d405ccb9c5327858459c5cf2d777d46f3a214ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Fri, 3 Apr 2020 18:01:01 +0200 Subject: [PATCH 09/37] ENH: add theshold and bv parameters to SpectralAngleClassification --- .../app/otbSpectralAngleClassification.cxx | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index 03ee42e29c..3045e3fe1c 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -97,6 +97,20 @@ private: AddChoice("mode.sid", "Spectral information divergence"); SetParameterDescription("mode.sid", "Spectral information divergence (SID) measure."); + + AddParameter(ParameterType_Float, "threshold", "Classification threshold"); + SetParameterDescription("threshold", + "Pixel with a measurement greater than this threshold relatively to " + "a reference pixel are not classified. The same threshold is used for all classes."); + MandatoryOff("threshold"); + + AddParameter(ParameterType_Int, "bv", "Background value"); + SetParameterDescription("bv", + "Value of unclassified pixels in the classification image " + "(this parameter is only used if threshold is set)."); + MandatoryOff("bv"); + SetDefaultParameterInt("bv", -1); + AddRAMParameter(); SetMultiWriting(true); @@ -158,11 +172,16 @@ private: if (HasValue("out")) { - // This lambda return the index of the minimum value in a pixel - auto minIndexLambda = [](PixelType const & pixel) + auto threshold = HasValue("threshold") ? GetParameterFloat("threshold") + : std::numeric_limits<ValueType>::max(); + auto bv = GetParameterInt("bv"); + + // This lambda return the index of the minimum value in a pixel, values above threshold are not classified. + auto minIndexLambda = [threshold, bv](PixelType const & pixel) { - auto min = std::numeric_limits<ValueType>::max(); - unsigned int res = 0; + auto min = threshold; + int res = bv; + for (unsigned int i = 0; i < pixel.Size(); i++) { if (pixel[i] < min) -- GitLab From d539c13a24eaa94c4c0f14a03c74b4c27de49da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Fri, 3 Apr 2020 18:01:25 +0200 Subject: [PATCH 10/37] BUG: add missing include --- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 1 + .../include/otbSpectralInformationDivergenceFunctor.h | 1 + 2 files changed, 2 insertions(+) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index eee6541d56..221b8397dc 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -23,6 +23,7 @@ #include "otbMath.h" #include <algorithm> +#include <vector> namespace otb { diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index 7337e948ca..73c4bf5717 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -23,6 +23,7 @@ #include "otbMath.h" #include <algorithm> +#include <vector> namespace otb { -- GitLab From 29208a86dce54fce5f34a6d1d2615d645f84fea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Fri, 3 Apr 2020 21:12:36 +0200 Subject: [PATCH 11/37] DOC: more documentation for SpectralAngleClassification --- .../app/otbSpectralAngleClassification.cxx | 40 +++++++++++++------ .../include/otbSpectralAngleFunctor.h | 9 +++++ .../otbSpectralInformationDivergenceFunctor.h | 13 +++++- 3 files changed, 49 insertions(+), 13 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index 3045e3fe1c..98aeb935cb 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -33,16 +33,21 @@ namespace Wrapper class SpectralAngleClassification : public Application { public: - /** Standard class typedefs. */ + /** @name Standard class typedefs + * @{ + */ using Self = SpectralAngleClassification; using Superclass = Application; using Pointer = itk::SmartPointer<Self>; using ConstPointer = itk::SmartPointer<const Self>; + /** @} */ - /** Standard macro */ + /** @name Standard macro + * @{ + */ itkNewMacro(Self); - itkTypeMacro(SpectralAngleClassification, otb::Application); + /** @} */ using ValueType = float; using ImageType = otb::VectorImage<ValueType>; @@ -54,14 +59,23 @@ private: void DoInit() override { SetName("SpectralAngleClassification"); - SetDescription("Classifies an image using a spectral angle measure."); + SetDescription("Classifies an image using a spectral measure."); // Documentation - SetDocLongDescription("TODO"); - SetDocLimitations("None"); + SetDocLongDescription("This application computes a spectral measure on a hyperspectral data cube using a set of " + "reference pixels. The image is then classified by finding for each pixel the index of its closest endmember, " + "i.e. the endmember corresponding to the lowest measurement value. The output classification is " + "labeled from 1 to L, L being the nulber of endmembers. A threshold can be set for the " + "classification step, only measurement values lower than this threshold will be considered, other " + "will be classified as `background values` (default value of 0). \n\n" + "Two measures are available : the spectral angle mapper and the spectral information divergence. See [1] for details"); + + SetDocLimitations("In sid mode, the pixels of the input image and the input endmembers should be strictly positive. \n" + "The endmember image is fully loaded in memory."); + SetDocAuthors("OTB-Team"); SetDocSeeAlso("VertexComponentAnalysis \n" - "Du, Yingzi & Chang, Chein-I & Ren, Hsuan & Chang, Chein-Chi & Jensen, James & D'Amico, Francis. (2004). " + "[1] Du, Yingzi & Chang, Chein-I & Ren, Hsuan & Chang, Chein-Chi & Jensen, James & D'Amico, Francis. (2004). " "New Hyperspectral Discrimination Measure for Spectral Characterization. Optical Engineering - OPT ENG. 43." " 1777-1786. 10.1117/1.1766301. "); @@ -83,7 +97,7 @@ private: AddParameter(ParameterType_OutputImage, "out", "Output classified image"); SetParameterDescription("out", - "Output classified image."); + "Output classified image, classified pixels are labeled from 1 to L, L being the number of endmember in the image."); MandatoryOff("out"); @@ -95,7 +109,8 @@ private: SetParameterDescription("mode.sam", "Spectral angle mapper (SAM) measure."); AddChoice("mode.sid", "Spectral information divergence"); - SetParameterDescription("mode.sid", "Spectral information divergence (SID) measure."); + SetParameterDescription("mode.sid", "Spectral information divergence (SID) measure. " + "Input pixel values should be strictly positive."); AddParameter(ParameterType_Float, "threshold", "Classification threshold"); @@ -107,9 +122,9 @@ private: AddParameter(ParameterType_Int, "bv", "Background value"); SetParameterDescription("bv", "Value of unclassified pixels in the classification image " - "(this parameter is only used if threshold is set)."); + "(this parameter is only used if a threshold is set)."); MandatoryOff("bv"); - SetDefaultParameterInt("bv", -1); + SetDefaultParameterInt("bv", 0); AddRAMParameter(); SetMultiWriting(true); @@ -120,6 +135,7 @@ private: SetDocExampleParameterValue("out", "classification.tif"); SetDocExampleParameterValue("measure", "measure.tif"); SetDocExampleParameterValue("mode", "sam"); + SetDocExampleParameterValue("threshold", "0.1"); SetOfficialDocLink(); } @@ -187,7 +203,7 @@ private: if (pixel[i] < min) { min = pixel[i]; - res = i; + res = i+1; } } return res; diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 221b8397dc..3670a8c840 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -33,6 +33,10 @@ namespace Functor namespace SpectralAngleDetails { +/** \fn + * \brief This function computes spectral angle between a pixel and a reference, the norm of these inputs. + * should also be given as parameter of this function. + * */ template <class TInput, class TReference, class TOutput> TOutput ComputeSpectralAngle(TInput const & input, typename TInput ::ValueType const & inputNorm, TReference const & reference, typename TReference::ValueType refNorm) @@ -95,6 +99,11 @@ private : double m_RefNorm; }; +/** \class SpectralAngleMapperFunctor + * \brief This functor computes the spectral angle according to a vector of reference pixel. + * + * \ingroup OTBImageManipulation + */ template <class TInput, class TReference, class TOutput> class SpectralAngleMapperFunctor { diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index 73c4bf5717..6236a0aded 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -30,6 +30,15 @@ namespace otb namespace Functor { +/** \class SpectralAngleFunctor + * \brief This functor computes the spectral information divergence according to a reference pixel. + * + * Du, Yingzi & Chang, Chein-I & Ren, Hsuan & Chang, Chein-Chi & Jensen, James & D'Amico, Francis. (2004). " + "New Hyperspectral Discrimination Measure for Spectral Characterization. Optical Engineering - OPT ENG. 43." + " 1777-1786. 10.1117/1.1766301. + * + * \ingroup OTBImageManipulation + */ template <class TInput, class TReference, class TOutput> class SpectralInformationDivergenceFunctor { @@ -62,6 +71,8 @@ public: void SetReferencePixels(std::vector<TReference> const & ref) { + // We only store the probability mass function associated with the reference pixels, are the latter are not needed + // in the sid computation. m_ReferenceProbabilities.clear(); for (auto const & pixel : ref) { @@ -101,7 +112,7 @@ private: return sid; } - /** Probability mass function associated with the */ + /** Probability mass function associated with the reference pixel */ std::vector<TReference> m_ReferenceProbabilities; }; -- GitLab From 96b41ab64d4ccdafb52a2f7d2ca8e36a66ce9557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Fri, 3 Apr 2020 21:13:18 +0200 Subject: [PATCH 12/37] ENH: Added tests for SpectralAngleClassification --- .../apTvHySpectralAngleClassification_sam.tif | 3 ++ .../apTvHySpectralAngleClassification_sid.tif | 3 ++ ...pectralAngleClassification_sid_measure.tif | 3 ++ .../AppHyperspectral/test/CMakeLists.txt | 31 +++++++++++++++++++ 4 files changed, 40 insertions(+) create mode 100644 Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sam.tif create mode 100644 Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid.tif create mode 100644 Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid_measure.tif diff --git a/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sam.tif b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sam.tif new file mode 100644 index 0000000000..5b40c8cb58 --- /dev/null +++ b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sam.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ba89a71a9bb2af17ba1bc66f0e1197fb843b59a207a7eae6bffb44f2578dc1 +size 400 diff --git a/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid.tif b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid.tif new file mode 100644 index 0000000000..6e4a138620 --- /dev/null +++ b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86975e7d76ce475074fef8fd6d276fd8bb3c5bc091b296402cbf146154dfb7f +size 684 diff --git a/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid_measure.tif b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid_measure.tif new file mode 100644 index 0000000000..68c604fc5b --- /dev/null +++ b/Data/Baseline/OTB/Images/apTvHySpectralAngleClassification_sid_measure.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c6285dfdf032e26076dfbde20b23d99931a49ca392a72b7e0671792d3dfa691 +size 6332 diff --git a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt index 9d7a04bf7e..1e225b3463 100644 --- a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt @@ -75,3 +75,34 @@ otb_test_application(NAME apTvHyLocalRxDetection ${BASELINE}/apTvHyLocalRxDetection.tif ${TEMP}/apTvHyLocalRxDetection.tif ) + + +#----------- SpectralAngleClassification TESTS ------------------------ +otb_test_application(NAME apTvHySpectralAngleClassification_sam + APP SpectralAngleClassification + OPTIONS -in ${OTB_DATA_ROOT}/Input/Hyperspectral/synthetic/hsi_cube.tif + -ie ${INPUTDATA}/Hyperspectral/synthetic/endmembers.tif + -out ${TEMP}/apTvHySpectralAngleClassification_sam.tif + -mode sam + VALID --compare-image ${EPSILON_9} + ${BASELINE}/apTvHySpectralAngleClassification_sam.tif + ${TEMP}/apTvHySpectralAngleClassification_sam.tif +) + + +#----------- LocalRxDetection TESTS ------------------------ +otb_test_application(NAME apTvHySpectralAngleClassification_sid + APP SpectralAngleClassification + OPTIONS -in ${OTB_DATA_ROOT}/Input/Hyperspectral/synthetic/hsi_cube.tif + -ie ${INPUTDATA}/Hyperspectral/synthetic/endmembers.tif + -out ${TEMP}/apTvHySpectralAngleClassification_sid.tif + -mode sid + -measure ${TEMP}/apTvHySpectralAngleClassification_sid_measure.tif + -threshold 0.1 + -bv -1 + VALID --compare-n-images ${EPSILON_9} 2 + ${BASELINE}/apTvHySpectralAngleClassification_sid.tif + ${TEMP}/apTvHySpectralAngleClassification_sid.tif + ${BASELINE}/apTvHySpectralAngleClassification_sid_measure.tif + ${TEMP}/apTvHySpectralAngleClassification_sid_measure.tif +) -- GitLab From 3597436eb6cc85618e1ec2cc94170d951f562330 Mon Sep 17 00:00:00 2001 From: Guillaume Pernot <guillaume.pernot@c-s.fr> Date: Sun, 29 Mar 2020 12:48:06 +0200 Subject: [PATCH 13/37] SB: Upgrade QT5 CI: Use QT_QPA_PLATFORM=offscreen --- .gitlab-ci.yml | 15 ++-- .../MonteverdiCore/include/mvdAlgorithm.h | 11 ++- SuperBuild/CMake/External_qt5.cmake | 4 +- .../patches/QT5/qt5-1-jpeg-detection-win.diff | 12 ---- .../patches/QT5/qt5-2-undefVar-macx.diff | 70 ------------------- .../QT5/qt5-3-png-freetype-detection-all.diff | 25 ------- 6 files changed, 15 insertions(+), 122 deletions(-) delete mode 100644 SuperBuild/patches/QT5/qt5-1-jpeg-detection-win.diff delete mode 100644 SuperBuild/patches/QT5/qt5-2-undefVar-macx.diff delete mode 100644 SuperBuild/patches/QT5/qt5-3-png-freetype-detection-all.diff diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3822e6e38..25c72acc11 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -141,7 +141,7 @@ debian-build: image: $BUILD_IMAGE_REGISTRY/otb-debian-native:testing allow_failure: true script: - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=debian-testing-gcc + - QT_QPA_PLATFORM=offscreen ctest -V -S CI/main_ci.cmake -DIMAGE_NAME:string=debian-testing-gcc after_script: - export CI_ALLOW_FAILURE=ON - python3 -u CI/cdash_handler.py @@ -159,11 +159,12 @@ ubuntu-xdk-build-doc: extends: .common-build image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-superbuild-base:18.04 script: - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" ctest -V -S CI/main_superbuild.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-xdk + - export QT_QPA_PLATFORM=offscreen + - ctest -V -S CI/main_superbuild.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-xdk - mv build/CookBook-*-html.tar.gz . || true - mv build/Documentation/Cookbook/latex/CookBook-*.pdf . || true - mv build/Documentation/Doxygen/OTB-Doxygen-*.tar.bz2 . || true - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" ctest -V -S CI/main_packages.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-xdk -DNAME_SUFFIX:string=-glibc-2.27 + - ctest -V -S CI/main_packages.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-xdk -DNAME_SUFFIX:string=-glibc-2.27 - mv build_packages/OTB-*.run . || true needs: - job: ubuntu-xdk-prepare @@ -180,8 +181,9 @@ centos-xdk-build: extends: .common-build image: $BUILD_IMAGE_REGISTRY/otb-centos-superbuild-base:6.6 script: - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" ctest -V -S CI/main_superbuild.cmake -DIMAGE_NAME:string=centos-6.6-gcc - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" ctest -V -S CI/main_packages.cmake -DIMAGE_NAME:string=centos-6.6-gcc + - export QT_QPA_PLATFORM=offscreen + - ctest -V -S CI/main_superbuild.cmake -DIMAGE_NAME:string=centos-6.6-gcc + - ctest -V -S CI/main_packages.cmake -DIMAGE_NAME:string=centos-6.6-gcc - mv build_packages/OTB-*.run . || true needs: - job: centos-xdk-prepare @@ -286,8 +288,7 @@ ubuntu-xdk-qa-code-coverage: - $SONAR_OTB_TOKEN image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-superbuild-qa:18.04 script: - - xvfb-run -a -n 1 -s "-screen 0 1024x768x24 -dpi 96" - ctest -V -S CI/main_qa.cmake + - QT_QPA_PLATFORM=offscreen ctest -V -S CI/main_qa.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-qa -DQA:BOOL=ON - ./CI/otb_coverage.sh diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h b/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h index 8b93c1857f..93fea67487 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h @@ -494,11 +494,10 @@ inline QString ToQString<float>(const float& val) { assert(!std::isnan(val)); - QString valf; - // See IEEE-754 // Ref. http://en.wikipedia.org/wiki/Single-precision_floating-point_format - valf.sprintf("%.9g", val); + + QString valf = QString("%1").arg(val, 0, 'g', 9); #if 0 std::cout @@ -522,11 +521,11 @@ inline QString ToQString<double>(const double& val) { assert(!std::isnan(val)); - QString vald; - // See IEEE-754 // Ref. http://en.wikipedia.org/wiki/Double_precision - vald.sprintf("%.17g", val); + + QString vald = QString("%1").arg(val, 0, 'g', 17); + #if 0 std::cout diff --git a/SuperBuild/CMake/External_qt5.cmake b/SuperBuild/CMake/External_qt5.cmake index 87db40d8be..65281c88b7 100644 --- a/SuperBuild/CMake/External_qt5.cmake +++ b/SuperBuild/CMake/External_qt5.cmake @@ -130,8 +130,8 @@ configure_file( ${QT5_CONFIGURE_COMMAND_IN} ${QT5_CONFIGURE_COMMAND} @ONLY ) ExternalProject_Add(QT5 PREFIX QT5 - URL "https://download.qt.io/archive/qt/5.10/5.10.1/single/qt-everywhere-src-5.10.1.tar.xz" - URL_MD5 7e167b9617e7bd64012daaacb85477af + URL "https://download.qt.io/archive/qt/5.14/5.14.1/single/qt-everywhere-src-5.14.1.tar.xz" + URL_MD5 781c3179410aff7ef84607214e1e91b4 BINARY_DIR ${QT5_SB_BUILD_DIR} INSTALL_DIR ${SB_INSTALL_PREFIX} DOWNLOAD_DIR ${DOWNLOAD_LOCATION} diff --git a/SuperBuild/patches/QT5/qt5-1-jpeg-detection-win.diff b/SuperBuild/patches/QT5/qt5-1-jpeg-detection-win.diff deleted file mode 100644 index df7bc1e769..0000000000 --- a/SuperBuild/patches/QT5/qt5-1-jpeg-detection-win.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- qt-everywhere-src-5.10.1/qtbase/src/gui/configure.json 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/gui/configure.json 2018-04-10 11:50:15.631526687 +0200 -@@ -278,8 +278,7 @@ - "main": "jpeg_create_compress(cinfo);" - }, - "sources": [ -- { "libs": "-llibjpeg", "condition": "config.msvc" }, -- { "libs": "-ljpeg", "condition": "!config.msvc" } -+ { "libs": "-ljpeg" } - ] - }, - "libpng": { diff --git a/SuperBuild/patches/QT5/qt5-2-undefVar-macx.diff b/SuperBuild/patches/QT5/qt5-2-undefVar-macx.diff deleted file mode 100644 index 7fcdd42a69..0000000000 --- a/SuperBuild/patches/QT5/qt5-2-undefVar-macx.diff +++ /dev/null @@ -1,70 +0,0 @@ ---- qt-everywhere-src-5.10.1/qtbase/src/corelib/kernel/qcore_mac_p.h 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/corelib/kernel/qcore_mac_p.h 2018-04-11 15:26:28.118640978 +0200 -@@ -86,7 +86,7 @@ - QAppleRefCounted(const QAppleRefCounted &other) : value(other.value) { if (value) RetainFunction(value); } - ~QAppleRefCounted() { if (value) ReleaseFunction(value); } - operator T() { return value; } -- void swap(QAppleRefCounted &other) Q_DECL_NOEXCEPT_EXPR(noexcept(qSwap(value, other.value))) -+ void swap(QAppleRefCounted &other) Q_DECL_NOEXCEPT_EXPR(noexcept(qSwap(this->value, other.value))) - { qSwap(value, other.value); } - QAppleRefCounted &operator=(const QAppleRefCounted &other) - { QAppleRefCounted copy(other); swap(copy); return *this; } ---- qt-everywhere-src-5.10.1/qtbase/src/corelib/kernel/qcore_foundation.mm 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/corelib/kernel/qcore_foundation.mm 2018-04-11 17:03:51.018596589 +0200 -@@ -488,7 +488,7 @@ - */ - NSTimeZone *QTimeZone::toNSTimeZone() const - { -- return [static_cast<NSTimeZone *>(toCFTimeZone()) autorelease]; -+ return [((NSTimeZone *) toCFTimeZone()) autorelease]; - } - #endif - ---- qt-everywhere-src-5.10.1/qtbase/src/platformsupport/clipboard/qmacmime.mm 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/platformsupport/clipboard/qmacmime.mm 2018-04-11 17:13:54.799982725 +0200 -@@ -853,11 +853,11 @@ - - QImage img = qvariant_cast<QImage>(variant); - NSDictionary *props = @{ -- static_cast<NSString *>(kCGImagePropertyPixelWidth) : [NSNumber numberWithInt:img.width()], -- static_cast<NSString *>(kCGImagePropertyPixelHeight) : [NSNumber numberWithInt:img.height()] -+ ((NSString *) kCGImagePropertyPixelWidth) : [NSNumber numberWithInt:img.width()], -+ ((NSString *) kCGImagePropertyPixelHeight) : [NSNumber numberWithInt:img.height()] - }; - -- CGImageDestinationAddImage(imageDestination, qt_mac_toCGImage(img), static_cast<CFDictionaryRef>(props)); -+ CGImageDestinationAddImage(imageDestination, qt_mac_toCGImage(img), (CFDictionaryRef) props); - CGImageDestinationFinalize(imageDestination); - - return QList<QByteArray>() << QByteArray::fromCFData(data); ---- qt-everywhere-src-5.10.1/qtbase/src/plugins/platforms/cocoa/qcocoawindow.mm 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/plugins/platforms/cocoa/qcocoawindow.mm 2018-04-11 17:36:09.563188504 +0200 -@@ -1684,7 +1684,7 @@ - - if (!m_drawContentBorderGradient) { - window.styleMask = window.styleMask & ~NSTexturedBackgroundWindowMask; -- [window.contentView.superview setNeedsDisplay:YES]; -+ [[[window contentView] superview] setNeedsDisplay:YES]; - window.titlebarAppearsTransparent = NO; - return; - } ---- qt-everywhere-src-5.10.1/qtbase/src/plugins/platforms/cocoa/qnswindow.mm 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/qtbase/src/plugins/platforms/cocoa/qnswindow.mm 2018-04-11 18:27:43.952730012 +0200 -@@ -231,7 +231,7 @@ - if (pw->frameStrutEventsEnabled() && isMouseEvent(theEvent)) { - NSPoint loc = [theEvent locationInWindow]; - NSRect windowFrame = [self convertRectFromScreen:self.frame]; -- NSRect contentFrame = self.contentView.frame; -+ NSRect contentFrame = [[self contentView] frame]; - if (NSMouseInRect(loc, windowFrame, NO) && !NSMouseInRect(loc, contentFrame, NO)) - [qnsview_cast(pw->view()) handleFrameStrutMouseEvent:theEvent]; - } -@@ -260,7 +260,7 @@ - + (void)applicationActivationChanged:(NSNotification*)notification - { - const id sender = self; -- NSEnumerator<NSWindow*> *windowEnumerator = nullptr; -+ NSEnumerator *windowEnumerator = nullptr; - NSApplication *application = [NSApplication sharedApplication]; - - #if QT_MACOS_PLATFORM_SDK_EQUAL_OR_ABOVE(__MAC_10_12) diff --git a/SuperBuild/patches/QT5/qt5-3-png-freetype-detection-all.diff b/SuperBuild/patches/QT5/qt5-3-png-freetype-detection-all.diff deleted file mode 100644 index 1a46b0acd8..0000000000 --- a/SuperBuild/patches/QT5/qt5-3-png-freetype-detection-all.diff +++ /dev/null @@ -1,25 +0,0 @@ ---- qt-everywhere-src-5.10.1/qtbase/src/gui/configure.json 2018-02-08 19:24:48.000000000 +0100 -+++ QT5/src/QT5/qtbase/src/gui/configure.json 2018-04-10 14:34:05.529668610 +0200 -@@ -158,8 +158,8 @@ - ] - }, - "sources": [ -- { "type": "pkgConfig", "args": "freetype2" }, -- { "type": "freetype", "libs": "-lfreetype" } -+ { "type": "freetype", "libs": "-lfreetype" }, -+ { "type": "pkgConfig", "args": "freetype2" } - ] - }, - "fontconfig": { -@@ -289,9 +289,9 @@ - "main": "(void) png_create_read_struct(PNG_LIBPNG_VER_STRING,0,0,0);" - }, - "sources": [ -- { "type": "pkgConfig", "args": "libpng" }, -+ { "libs": "-lpng", "condition": "!config.msvc" }, - { "libs": "-llibpng", "condition": "config.msvc" }, -- { "libs": "-lpng", "condition": "!config.msvc" } -+ { "type": "pkgConfig", "args": "libpng" } - ], - "use": [ - { "lib": "zlib", "condition": "features.system-zlib" } -- GitLab From c11300367adc095448866dcec54c5058ba2beab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Mon, 6 Apr 2020 09:59:07 +0200 Subject: [PATCH 14/37] REFAC: deprecate spectralAngleDistanceImageFilter --- .../include/otbSpectralAngleDistanceImageFilter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h index 31fac3069b..a23c7ba1dc 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h @@ -26,6 +26,7 @@ namespace otb { /** \class SpectralAngleDistanceImageFilter + * \deprecated * \brief This filter implements the computation of the spectral angle * distance with respect to a reference pixel. * -- GitLab From bc89644a801968fb21abe2823c4214856407ff58 Mon Sep 17 00:00:00 2001 From: Guillaume Pernot <guillaume.pernot@c-s.fr> Date: Mon, 6 Apr 2020 11:13:29 +0200 Subject: [PATCH 15/37] Added dxgi.dll to WINDOWS_SYSTEM_DLLS --- Packaging/PackageGlobals.cmake | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Packaging/PackageGlobals.cmake b/Packaging/PackageGlobals.cmake index 22202d0ddc..9212e1ffab 100644 --- a/Packaging/PackageGlobals.cmake +++ b/Packaging/PackageGlobals.cmake @@ -46,20 +46,21 @@ set(WINDOWS_SYSTEM_DLLS advapi32.dll comdlg32.dll crypt32.dll + d2d1.dll + d3d11.dll + d3d9.dll dnsapi.dll dwmapi.dll dwrite.dll - d2d1.dll - d3d9.dll - d3d11.dll + dxgi.dll gdi32.dll glu32.dll imm32.dll iphlpapi.dll kernel32.dll + mpr.dll netapi32.dll normaliz.dll - mpr.dll odbc32.dll ole32.dll oleaut32.dll -- GitLab From 12f7e8c5328743137a1f3922930e9800a7b28460 Mon Sep 17 00:00:00 2001 From: Guillaume Pernot <guillaume.pernot@c-s.fr> Date: Mon, 6 Apr 2020 12:20:51 +0200 Subject: [PATCH 16/37] Added WTSAPI32.dll to WINDOWS_SYSTEM_DLLS --- Packaging/PackageGlobals.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/Packaging/PackageGlobals.cmake b/Packaging/PackageGlobals.cmake index 9212e1ffab..4a3144a926 100644 --- a/Packaging/PackageGlobals.cmake +++ b/Packaging/PackageGlobals.cmake @@ -43,6 +43,7 @@ elseif(APPLE) endif() set(WINDOWS_SYSTEM_DLLS + WTSAPI32.dll advapi32.dll comdlg32.dll crypt32.dll -- GitLab From 49e9b9a07d343f896cc8fb0f9c4a0c9a609b7fec Mon Sep 17 00:00:00 2001 From: Guillaume Pernot <guillaume.pernot@c-s.fr> Date: Mon, 6 Apr 2020 15:14:40 +0200 Subject: [PATCH 17/37] Added libqcocoa.dylib to APPLE_SYSTEM_DLLS --- Packaging/PackageGlobals.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/Packaging/PackageGlobals.cmake b/Packaging/PackageGlobals.cmake index 4a3144a926..8f1fd7be41 100644 --- a/Packaging/PackageGlobals.cmake +++ b/Packaging/PackageGlobals.cmake @@ -144,6 +144,7 @@ set(APPLE_SYSTEM_DLLS libgcc_s.*dylib libcups.*dylib libomp.dylib + libqcocoa.dylib ) if(WIN32) -- GitLab From 4432f301d799a9a2e757c013371b06c217827074 Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Tue, 7 Apr 2020 09:58:26 +0200 Subject: [PATCH 18/37] BUG: Fix tests for ExtendedFilenameToWriterOptions with nodata extention --- .../ioTvExtendedFilenameToWriterOptions_FullOptions.txt | 2 ++ .../ioTvExtendedFilenameToWriterOptions_NoOptions.txt | 1 + Modules/IO/ExtendedFilename/test/CMakeLists.txt | 4 ++-- .../test/otbExtendedFilenameToWriterOptionsTest.cxx | 7 +++++++ 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt index 24aa9176ad..5eda84963c 100644 --- a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt +++ b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt @@ -6,3 +6,5 @@ BLOCKYSIZE=1024 QUALITY=75 TILED=YES +1 +1 ; -99999 diff --git a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt index bc148dae46..e45b143d67 100644 --- a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt +++ b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt @@ -3,3 +3,4 @@ 0 1 0 +0 diff --git a/Modules/IO/ExtendedFilename/test/CMakeLists.txt b/Modules/IO/ExtendedFilename/test/CMakeLists.txt index e6b14d78eb..806ff2aec0 100644 --- a/Modules/IO/ExtendedFilename/test/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/test/CMakeLists.txt @@ -58,7 +58,7 @@ otb_add_test(NAME ioTvExtendedFilenameToReaderOptions_FullOptions COMMAND otbExt ${BASELINE}/ioTvExtendedFilenameToReaderOptions_FullOptions.txt ${TEMP}/ioTvExtendedFilenameToReaderOptions_FullOptions.txt otbExtendedFilenameToReaderOptions - /home/data/filename.tif?&geom=/home/dev/custom.geom&sdataidx=2&resol=4&skipcarto=On&bands=-23,:3,45:,-6:-6,234:-5&nodata=-99999 + /home/data/filename.tif?&geom=/home/dev/custom.geom&sdataidx=2&resol=4&skipcarto=On&bands=-23,:3,45:,-6:-6,234:-5 ${TEMP}/ioTvExtendedFilenameToReaderOptions_FullOptions.txt ) @@ -86,7 +86,7 @@ otb_add_test(NAME ioTvExtendedFilenameToWriterOptions_FullOptions COMMAND otbExt ${BASELINE}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt ${TEMP}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt otbExtendedFilenameToWriterOptions - /home/data/filename.tif?&writegeom=ON&gdal:co:QUALITY=75&gdal:co:TILED=YES&gdal:co:BLOCKYSIZE=1024 + /home/data/filename.tif?&writegeom=ON&gdal:co:QUALITY=75&gdal:co:TILED=YES&gdal:co:BLOCKYSIZE=1024&nodata=-99999 ${TEMP}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt ) diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx index fd4b64437e..fd919e6fc6 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx @@ -50,5 +50,12 @@ int otbExtendedFilenameToWriterOptions(int itkNotUsed(argc), char* argv[]) file << helper->GetgdalCreationOptions()[i] << std::endl; } + file << helper->NoDataValueIsSet() << std::endl; + if (helper->NoDataValueIsSet()) + for (unsigned int i = 0; i < helper->GetNoDataList().size(); i++) + { + file << helper->GetNoDataList()[i].first << " ; " << helper->GetNoDataList()[i].second << std::endl; + } + return EXIT_SUCCESS; } -- GitLab From 439cb25e80c54bd476f2eac8021498e853482c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 13:47:26 +0200 Subject: [PATCH 19/37] TEST: increase tolerance for apTvHySpectralAngleClassification_sid --- Modules/Applications/AppHyperspectral/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt index 1e225b3463..022b41ea09 100644 --- a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt @@ -100,7 +100,7 @@ otb_test_application(NAME apTvHySpectralAngleClassification_sid -measure ${TEMP}/apTvHySpectralAngleClassification_sid_measure.tif -threshold 0.1 -bv -1 - VALID --compare-n-images ${EPSILON_9} 2 + VALID --compare-n-images ${EPSILON_6} 2 ${BASELINE}/apTvHySpectralAngleClassification_sid.tif ${TEMP}/apTvHySpectralAngleClassification_sid.tif ${BASELINE}/apTvHySpectralAngleClassification_sid_measure.tif -- GitLab From 8465c06dd2d7cf8b0add5b7dbc3e19225243a5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 16:31:30 +0200 Subject: [PATCH 20/37] ENH: code review --- .../app/otbSpectralAngleClassification.cxx | 16 +++----------- .../include/otbBinarySpectralAngleFunctor.h | 5 +++-- .../include/otbSpectralAngleFunctor.h | 22 +++++++------------ .../otbSpectralInformationDivergenceFunctor.h | 5 +++-- 4 files changed, 17 insertions(+), 31 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index 98aeb935cb..5e4eec3dd6 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -192,21 +192,11 @@ private: : std::numeric_limits<ValueType>::max(); auto bv = GetParameterInt("bv"); - // This lambda return the index of the minimum value in a pixel, values above threshold are not classified. + // This lambda return the index of the minimum value in a pixel, values above threshold are classified as background values. auto minIndexLambda = [threshold, bv](PixelType const & pixel) { - auto min = threshold; - int res = bv; - - for (unsigned int i = 0; i < pixel.Size(); i++) - { - if (pixel[i] < min) - { - min = pixel[i]; - res = i+1; - } - } - return res; + auto minElem = std::min_element(&pixel[0], &pixel[pixel.Size()]); + return static_cast<int>(*minElem < threshold ? std::distance(&pixel[0], minElem) + 1 : bv); }; auto classificationFilter = NewFunctorFilter(minIndexLambda); diff --git a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h index 59d0bf2f3c..34a476efea 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h @@ -49,12 +49,13 @@ public: virtual ~BinarySpectralAngleFunctor() = default; // Binary operator - inline TOutputValue operator()(const TInput1& in1, const TInput2& in2) const + TOutputValue operator()(const TInput1& in1, const TInput2& in2) const { // Compute norms. auto in1Norm = 0; auto in2Norm = 0; - for (unsigned int i = 0; i < std::min(in1.Size(), in2.Size()); ++i) + auto nbIter = std::min(in1.Size(), in2.Size()); + for (unsigned int i = 0; i < nbIter; ++i) { in1Norm += in1[i] * in1[i]; in2Norm += in2[i] * in2[i]; diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 3670a8c840..8b6c1ab132 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -41,12 +41,7 @@ template <class TInput, class TReference, class TOutput> TOutput ComputeSpectralAngle(TInput const & input, typename TInput ::ValueType const & inputNorm, TReference const & reference, typename TReference::ValueType refNorm) { - // Compute scalar product. - double scalarProduct = 0.0; - for (unsigned int i = 0; i < std::min(input.Size(), reference.Size()); ++i) - { - scalarProduct += input[i] * reference[i]; - } + double scalarProduct = std::inner_product(&input[0], &input[input.Size()], &reference[0], 0. ); auto normProd = inputNorm * refNorm; if ((normProd == 0.0) || (scalarProduct / normProd > 1)) { @@ -75,7 +70,7 @@ public: m_ReferencePixel.Fill(1); } - virtual ~SpectralAngleFunctor() = default; + ~SpectralAngleFunctor() = default; // Binary operator inline TOutputValue operator()(TInput const & inPix) const @@ -114,8 +109,7 @@ public: // Binary operator inline TOutput operator()(const TInput& inPix) const { - TOutput res; - res.SetSize(m_ReferencePixels.size()); + TOutput res(m_ReferencePixels.size()); auto inputNorm = inPix.GetNorm(); @@ -133,18 +127,18 @@ public: return m_ReferencePixels.size(); } - void SetReferencePixels(std::vector<TReference> const & ref) + void SetReferencePixels(std::vector<TReference> ref) { - m_ReferencePixels = ref; + m_ReferencePixels = std::move(ref); m_ReferenceNorm.clear(); // Precompute the norm of reference pixels - for (auto const & pix : ref) + for (auto const & pixel : m_ReferencePixels) { - m_ReferenceNorm.push_back(pix.GetNorm()); + m_ReferenceNorm.push_back(pixel.GetNorm()); } } - std::vector<TReference> GetReferencePixels() const + std::vector<TReference> const & GetReferencePixels() const { return m_ReferencePixels; } diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index 6236a0aded..b89f84a8e5 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -89,7 +89,7 @@ private: // Input pixel should be non negative (e.g. reflectance, radiance) if (input[i] <= 0) { - throw std::domain_error("Input pixel of the spectral information divergence algorithm should be strictly positive."); + throw std::runtime_error("Input pixels of the spectral information divergence algorithm should be strictly positive."); } sum += input[i]; } @@ -107,7 +107,8 @@ private: OutputValueType sid = 0.0; for (unsigned int i = 0; i < p.Size(); i++) { - sid += p[i] * std::log(p[i]/q[i]) + q[i] * std::log(q[i]/p[i]); + // Compute SID : p[i] * std::log(p[i]/q[i]) + q[i] * std::log(q[i]/p[i]); + sid += (p[i] - q[i]) * std::log(p[i]/q[i]); } return sid; } -- GitLab From f7cddc11a58d595c97c40e05ae7d8e070dc83a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 16:34:46 +0200 Subject: [PATCH 21/37] BUG: Fix assert --- .../Indices/include/otbWaterSqrtSpectralAngleImageFilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h index 6a195b2569..f03f954517 100644 --- a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h +++ b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h @@ -64,7 +64,7 @@ public: * */ void SetReferenceWaterPixel(PixelType ref) { - assert(m_ReferencePixel.Size == 4); + assert(m_ReferencePixel.Size() == 4); m_ReferencePixel[0] = this->Value(CommonBandNames::BLUE, ref); m_ReferencePixel[1] = this->Value(CommonBandNames::GREEN, ref); m_ReferencePixel[2] = this->Value(CommonBandNames::RED, ref); -- GitLab From 165fd9f2480f5f28eef9e57049bfe7248d5f71ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 17:00:16 +0200 Subject: [PATCH 22/37] BUG: add missing include (numeric) --- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 8b6c1ab132..36da5ecf11 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -24,6 +24,7 @@ #include "otbMath.h" #include <algorithm> #include <vector> +#include <numeric> namespace otb { -- GitLab From c035b3400cb399ef55c69bae567d2fd3df80292b Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Tue, 7 Apr 2020 19:10:33 +0200 Subject: [PATCH 23/37] ENH: Add possibility to access the OGRSpatialReference from the otbSpatialReference --- Modules/Adapters/GdalAdapters/include/otbSpatialReference.h | 5 +++++ Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h index 37611309fd..ca2059fd57 100644 --- a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h @@ -176,6 +176,11 @@ public: */ static void UTMFromGeoPoint(double lon, double lat, unsigned int& zone, hemisphere& hem); + /** + * Returns the internal OGRSpatialReference + */ + OGRSpatialReference* getOGRSpatialReference(); + private: /// Constructor from wrapped type. ref will be cloned. SpatialReference(const OGRSpatialReference* ref); diff --git a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx index 120f8d0ae2..1e3f4b8c8f 100644 --- a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx @@ -294,6 +294,11 @@ void SpatialReference::UTMFromGeoPoint(double lon, double lat, unsigned int& zon assert(zone <= 60); } +OGRSpatialReference* SpatialReference::getOGRSpatialReference() +{ + return m_SR.get(); +} + #if GDAL_VERSION_NUM >= 3000000 void SpatialReference::SetAxisMappingStrategy(OSRAxisMappingStrategy strategy) { -- GitLab From 47507622ea11bc5fc657bd9c47f2be082481c8c7 Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Tue, 7 Apr 2020 19:13:46 +0200 Subject: [PATCH 24/37] ENH: Add possibility to define the output projection with EPSG code in otbGDALImageIO --- Modules/IO/IOGDAL/include/otbGDALImageIO.h | 7 ++++++- Modules/IO/IOGDAL/src/otbGDALImageIO.cxx | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Modules/IO/IOGDAL/include/otbGDALImageIO.h b/Modules/IO/IOGDAL/include/otbGDALImageIO.h index aeb1870fac..42bedbfab3 100644 --- a/Modules/IO/IOGDAL/include/otbGDALImageIO.h +++ b/Modules/IO/IOGDAL/include/otbGDALImageIO.h @@ -30,6 +30,7 @@ #include "otbImageIOBase.h" #include "OTBIOGDALExport.h" +#include "otbSpatialReference.h" namespace otb { @@ -197,6 +198,9 @@ public: itkGetMacro(NbBands, int); + /** Set the projection system from EPSG code */ + void SetEpsgCode(const unsigned int wellKnownCRS); + protected: /** * Constructor. @@ -246,9 +250,10 @@ private: /** GDAL parameters. */ typedef itk::SmartPointer<GDALDatasetWrapper> GDALDatasetWrapperPointer; GDALDatasetWrapperPointer m_Dataset; + unsigned int m_epsgCode; GDALDataTypeWrapper* m_PxType; - /** Nombre d'octets par pixel */ + /** Number of bytes per pixel */ int m_BytePerPixel; bool GDALInfoReportCorner(const char* corner_name, double x, double y, double& dfGeoX, double& dfGeoY) const; diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx index 165b4549ec..86e0d2ded1 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx @@ -116,6 +116,8 @@ GDALImageIO::GDALImageIO() m_ResolutionFactor = 0; m_BytePerPixel = 0; m_WriteRPCTags = false; + + m_epsgCode = 0; } GDALImageIO::~GDALImageIO() @@ -405,6 +407,11 @@ std::vector<std::string> GDALImageIO::GetOverviewsInfo() return desc; } +void GDALImageIO::SetEpsgCode(const unsigned int epsgCode) +{ + m_epsgCode = epsgCode; +} + void GDALImageIO::InternalReadImageInformation() { itk::ExposeMetaData<unsigned int>(this->GetMetaDataDictionary(), MetaDataKey::ResolutionFactor, m_ResolutionFactor); @@ -1165,6 +1172,13 @@ void GDALImageIO::Write(const void* buffer) lFirstColumn = 0; } + // If needed, set the coordinate reference + if (m_epsgCode != 0) + { + auto spatialReference = SpatialReference::FromEPSG(m_epsgCode); + m_Dataset->GetDataSet()->SetSpatialRef(spatialReference.getOGRSpatialReference()); + } + // Convert buffer from void * to unsigned char * // unsigned char *p = static_cast<unsigned char*>( const_cast<void *>(buffer)); // printDataBuffer(p, m_PxType->pixType, m_NbBands, 10*2); // Buffer incorrect -- GitLab From d3501c26ad1166f9a9ef8bfbfa8c83d36609354b Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Tue, 7 Apr 2020 19:18:03 +0200 Subject: [PATCH 25/37] ENH: Add new Extendded Filename 'epsg' to set the projection of the output image with an EPSG code + tests + doc --- ...dedFilenameToWriterOptions_FullOptions.txt | 2 + ...endedFilenameToWriterOptions_NoOptions.txt | 1 + .../ioTvImageFileWriterTIF2TIFOutput.tif | 3 ++ .../Cookbook/rst/ExtendedFilenames.rst | 12 ++++++ .../otbExtendedFilenameToWriterOptions.h | 11 ++++- .../otbExtendedFilenameToWriterOptions.cxx | 42 ++++++++++++++++++- .../IO/ExtendedFilename/test/CMakeLists.txt | 2 +- ...otbExtendedFilenameToWriterOptionsTest.cxx | 4 ++ .../IO/ImageIO/include/otbImageFileWriter.h | 2 +- .../IO/ImageIO/include/otbImageFileWriter.hxx | 4 +- Modules/IO/ImageIO/test/CMakeLists.txt | 7 ++++ 11 files changed, 85 insertions(+), 5 deletions(-) create mode 100644 Data/Baseline/OTB/Images/ioTvImageFileWriterTIF2TIFOutput.tif diff --git a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt index 5eda84963c..cb15e8af02 100644 --- a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt +++ b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_FullOptions.txt @@ -8,3 +8,5 @@ QUALITY=75 TILED=YES 1 1 ; -99999 +1 +4326 diff --git a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt index e45b143d67..36b5af85f7 100644 --- a/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt +++ b/Data/Baseline/OTB/Images/ioTvExtendedFilenameToWriterOptions_NoOptions.txt @@ -4,3 +4,4 @@ 1 0 0 +0 diff --git a/Data/Baseline/OTB/Images/ioTvImageFileWriterTIF2TIFOutput.tif b/Data/Baseline/OTB/Images/ioTvImageFileWriterTIF2TIFOutput.tif new file mode 100644 index 0000000000..cc6fa20f33 --- /dev/null +++ b/Data/Baseline/OTB/Images/ioTvImageFileWriterTIF2TIFOutput.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066954e96682c1d8f0641c8501ab29f6d82d0dce44bb170ec9f9166552cd7982 +size 250778 diff --git a/Documentation/Cookbook/rst/ExtendedFilenames.rst b/Documentation/Cookbook/rst/ExtendedFilenames.rst index e1319dfe62..cb2d22b5dc 100644 --- a/Documentation/Cookbook/rst/ExtendedFilenames.rst +++ b/Documentation/Cookbook/rst/ExtendedFilenames.rst @@ -323,6 +323,18 @@ The available syntax for boolean options are: ----------------------------------------------- +:: + + &epsg=<(int)value> + +- To set the projection system of the output image. + +- Provide the `EPSG code`_ of the desired projection. + +.. _EPSG code : https://en.wikipedia.org/wiki/EPSG_Geodetic_Parameter_Dataset + +----------------------------------------------- + :: &multiwrite==<(bool)false> diff --git a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h index 582e6136ac..675e1a694d 100644 --- a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h +++ b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h @@ -37,7 +37,13 @@ namespace otb * - &gdal:co:<KEY>=<VALUE> : the gdal creation option <KEY> * - streaming modes * - box - * See http://wiki.orfeo-toolbox.org/index.php/ExtendedFileName + * - &bands=<BANDS_LIST> : to select a subset of bands from the output image + * - &nodata=<VALUE>/<VALUE:VALUE...> : to set specific nodata values + * - &multiwrite=<(bool)false> : to desactivate multi-writing + * - &epsg=<VALUE> : to set the spatial reference system + * + * See http://wiki.orfeo-toolbox.org/index.php/ExtendedFileName for + * more information * * \sa ImageFileWriter * @@ -76,6 +82,7 @@ public: std::pair<bool, double> streamingSizeValue; std::pair<bool, std::string> box; std::pair<bool, std::string> bandRange; + std::pair<bool, unsigned int> srsValue; std::vector<std::string> optionList; }; @@ -111,6 +118,8 @@ public: bool StreamingSizeValueIsSet() const; double GetStreamingSizeValue() const; std::string GetBandRange() const; + bool SrsValueIsSet() const; + unsigned int GetSrsValue() const; bool BoxIsSet() const; std::string GetBox() const; diff --git a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx index 068063e411..657e781040 100644 --- a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx +++ b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx @@ -52,8 +52,10 @@ ExtendedFilenameToWriterOptions::ExtendedFilenameToWriterOptions() : ExtendedFil m_Options.bandRange.first = false; m_Options.bandRange.second = ""; + m_Options.srsValue.first = false; + m_Options.optionList = {"writegeom", "writerpctags", "multiwrite", "streaming:type", - "streaming:sizemode", "streaming:sizevalue", "nodata", "box", "bands"}; + "streaming:sizemode", "streaming:sizevalue", "nodata", "box", "bands", "epsg"}; } void ExtendedFilenameToWriterOptions::SetExtendedFileName(const char* extFname) @@ -216,6 +218,34 @@ void ExtendedFilenameToWriterOptions::SetExtendedFileName(const std::string& ext } } + if (!map["epsg"].empty()) + { + int code; + try + { + code = std::stoi(map["epsg"]); + } + catch(const std::invalid_argument& e) + { + itkWarningMacro("Invalid value (" + << map["epsg"] + << ") for Geographic coordinate reference system. Must be integer."); + code = 0; + } + if (code < 0) + { + itkWarningMacro("Invalid value (" + << map["epsg"] + << ") for Geographic coordinate reference system. Must be positive."); + code = 0; + } + if (code > 0) + { + m_Options.srsValue.first = true; + m_Options.srsValue.second = (unsigned int) code; + } + } + // Option Checking for (it = map.begin(); it != map.end(); it++) { @@ -336,4 +366,14 @@ std::string ExtendedFilenameToWriterOptions::GetBandRange() const return m_Options.bandRange.second; } +bool ExtendedFilenameToWriterOptions::SrsValueIsSet() const +{ + return m_Options.srsValue.first; +} + +unsigned int ExtendedFilenameToWriterOptions::GetSrsValue() const +{ + return m_Options.srsValue.second; +} + } // end namespace otb diff --git a/Modules/IO/ExtendedFilename/test/CMakeLists.txt b/Modules/IO/ExtendedFilename/test/CMakeLists.txt index 806ff2aec0..336195cdca 100644 --- a/Modules/IO/ExtendedFilename/test/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/test/CMakeLists.txt @@ -86,7 +86,7 @@ otb_add_test(NAME ioTvExtendedFilenameToWriterOptions_FullOptions COMMAND otbExt ${BASELINE}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt ${TEMP}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt otbExtendedFilenameToWriterOptions - /home/data/filename.tif?&writegeom=ON&gdal:co:QUALITY=75&gdal:co:TILED=YES&gdal:co:BLOCKYSIZE=1024&nodata=-99999 + /home/data/filename.tif?&writegeom=ON&gdal:co:QUALITY=75&gdal:co:TILED=YES&gdal:co:BLOCKYSIZE=1024&nodata=-99999&epsg=4326 ${TEMP}/ioTvExtendedFilenameToWriterOptions_FullOptions.txt ) diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx index fd919e6fc6..15109cdcb0 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx @@ -57,5 +57,9 @@ int otbExtendedFilenameToWriterOptions(int itkNotUsed(argc), char* argv[]) file << helper->GetNoDataList()[i].first << " ; " << helper->GetNoDataList()[i].second << std::endl; } + file << helper->SrsValueIsSet() << std::endl; + if (helper->SrsValueIsSet()) + file << helper->GetSrsValue() << std::endl; + return EXIT_SUCCESS; } diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.h b/Modules/IO/ImageIO/include/otbImageFileWriter.h index 41abb75f0f..633a54f18a 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.h +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.h @@ -57,7 +57,7 @@ namespace otb * \sa ImageFileReader * \sa ImageSeriesReader * \sa ImageIOBase - * \sa ExtendedFilenameToReaderOptions + * \sa ExtendedFilenameToWriterOptions * * \ingroup OTBImageIO */ diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx index fd3a8ae57f..0dd50641f7 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx @@ -421,7 +421,7 @@ void ImageFileWriter<TInputImage>::GenerateOutputInformation(void) // Manage extended filename if ((strcmp(m_ImageIO->GetNameOfClass(), "GDALImageIO") == 0) && - (m_FilenameHelper->gdalCreationOptionsIsSet() || m_FilenameHelper->WriteRPCTagsIsSet() || m_FilenameHelper->NoDataValueIsSet())) + (m_FilenameHelper->gdalCreationOptionsIsSet() || m_FilenameHelper->WriteRPCTagsIsSet() || m_FilenameHelper->NoDataValueIsSet() || m_FilenameHelper->SrsValueIsSet())) { typename GDALImageIO::Pointer imageIO = dynamic_cast<GDALImageIO*>(m_ImageIO.GetPointer()); @@ -438,6 +438,8 @@ void ImageFileWriter<TInputImage>::GenerateOutputInformation(void) imageIO->SetWriteRPCTags(m_FilenameHelper->GetWriteRPCTags()); if (m_FilenameHelper->NoDataValueIsSet()) imageIO->SetNoDataList(m_FilenameHelper->GetNoDataList()); + if (m_FilenameHelper->SrsValueIsSet()) + imageIO->SetEpsgCode(m_FilenameHelper->GetSrsValue()); } diff --git a/Modules/IO/ImageIO/test/CMakeLists.txt b/Modules/IO/ImageIO/test/CMakeLists.txt index 0c93a78ab6..5eebf4358d 100644 --- a/Modules/IO/ImageIO/test/CMakeLists.txt +++ b/Modules/IO/ImageIO/test/CMakeLists.txt @@ -910,6 +910,13 @@ otb_add_test(NAME ioTvImageFileWriterPNG2BSQ COMMAND otbImageIOTestDriver otbImageFileWriterTest ${INPUTDATA}/cthead1.png ${TEMP}/ioImageFileWriterPNG2BSQ_cthead1.hdr ) + +otb_add_test(NAME ioTvImageFileWriterTIF2TIF COMMAND otbImageIOTestDriver + --compare-image ${EPSILON_9} ${BASELINE}/ioTvImageFileWriterTIF2TIFOutput.tif + ${TEMP}/ioImageFileWriterTIF2TIF_QB_Toulouse_Ortho_PAN.tif + otbImageFileWriterTest + ${INPUTDATA}/QB_Toulouse_Ortho_PAN.tif + ${TEMP}/ioImageFileWriterTIF2TIF_QB_Toulouse_Ortho_PAN.tif?epsg=4326 ) otb_add_test(NAME ioTvCompareWritingComplexImage_TIF COMMAND otbImageIOTestDriver otbCompareWritingComplexImageTest -- GitLab From 295e5634ba3180d32da515e8656ed3ebc28159bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 19:42:37 +0200 Subject: [PATCH 26/37] BUG: use the minimum size between the two inputs to compute the scalar product --- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 36da5ecf11..93eb63455e 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -42,7 +42,8 @@ template <class TInput, class TReference, class TOutput> TOutput ComputeSpectralAngle(TInput const & input, typename TInput ::ValueType const & inputNorm, TReference const & reference, typename TReference::ValueType refNorm) { - double scalarProduct = std::inner_product(&input[0], &input[input.Size()], &reference[0], 0. ); + auto minSize = std::min(input.Size(), reference.Size()); + double scalarProduct = std::inner_product(&input[0], &input[minSize], &reference[0],0. ); auto normProd = inputNorm * refNorm; if ((normProd == 0.0) || (scalarProduct / normProd > 1)) { -- GitLab From 6976b5aa0713dabeba1121ff7f73e5f525eaeba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Tue, 7 Apr 2020 19:43:33 +0200 Subject: [PATCH 27/37] ENH: use std accumulate and division operator of VLV when computing the probability mass function --- .../otbSpectralInformationDivergenceFunctor.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index b89f84a8e5..aec7bf06a9 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -54,7 +54,7 @@ public: TOutput res; res.SetSize(m_ReferenceProbabilities.size()); - TInput inputProbability = ComputeProbabilityMassFunction(input); + auto inputProbability = ComputeProbabilityMassFunction(input); for (unsigned int i = 0; i< m_ReferenceProbabilities.size(); i++) { @@ -83,7 +83,6 @@ public: private: inline TInput ComputeProbabilityMassFunction(TInput const & input) const { - double sum = 0.0; for (unsigned int i = 0; i < input.Size(); i++) { // Input pixel should be non negative (e.g. reflectance, radiance) @@ -91,14 +90,9 @@ private: { throw std::runtime_error("Input pixels of the spectral information divergence algorithm should be strictly positive."); } - sum += input[i]; } - TInput res(input.Size()); - for (unsigned int i = 0; i < input.Size(); i++) - { - res[i] = input[i] / sum; - } - return res; + + return input / std::accumulate(&input[0], &input[input.Size()], 0.0); } inline OutputValueType ComputeSpectralInformationDivergence(TInput const & p, TInput const & q) const -- GitLab From 01b3e6c6f19f5bbf82017dadce65e2bfc29731c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Wed, 8 Apr 2020 00:04:05 +0200 Subject: [PATCH 28/37] BUG: add missing include --- .../include/otbSpectralInformationDivergenceFunctor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index aec7bf06a9..ceb8ef05be 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -24,6 +24,7 @@ #include "otbMath.h" #include <algorithm> #include <vector> +#include <numeric> namespace otb { -- GitLab From ae8ccf9c0da5bb2fb7e15a936c1556ea99cbb9a4 Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Wed, 8 Apr 2020 10:09:14 +0200 Subject: [PATCH 29/37] FIX: Remove dependency to GDAL3 methods. Add my email to .mailmap file. --- .mailmap | 1 + Modules/Adapters/GdalAdapters/include/otbSpatialReference.h | 5 ----- Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx | 5 ----- Modules/IO/IOGDAL/src/otbGDALImageIO.cxx | 2 +- 4 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.mailmap b/.mailmap index 4f5b296731..40ef95e52d 100644 --- a/.mailmap +++ b/.mailmap @@ -54,6 +54,7 @@ Julien Malik <julien.malik@c-s.fr> Julien Malik <julien.m Julien Michel <julien.michel@cnes.fr> Julien Michel <julien.michel@cnes.fr> Julien Michel <julien.michel@c-s.fr> Julien Michel <julien.michel@cnes.fr> Julien Michel <julien.michel@orfeo-toolbox.org> +Julien Osman <julien.osman@c-s.fr> Laurențiu Nicola <lnicola@dend.ro> Laurentiu Nicola <lnicola@dend.ro> Laurențiu Nicola <lnicola@dend.ro> Laurențiu Nicola <grayshade@gmail.com> Luc Hermitte <luc.hermitte@c-s.fr> Luc Hermitte <luc.hermitte@cnes.fr> diff --git a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h index ca2059fd57..37611309fd 100644 --- a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h @@ -176,11 +176,6 @@ public: */ static void UTMFromGeoPoint(double lon, double lat, unsigned int& zone, hemisphere& hem); - /** - * Returns the internal OGRSpatialReference - */ - OGRSpatialReference* getOGRSpatialReference(); - private: /// Constructor from wrapped type. ref will be cloned. SpatialReference(const OGRSpatialReference* ref); diff --git a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx index 1e3f4b8c8f..120f8d0ae2 100644 --- a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx @@ -294,11 +294,6 @@ void SpatialReference::UTMFromGeoPoint(double lon, double lat, unsigned int& zon assert(zone <= 60); } -OGRSpatialReference* SpatialReference::getOGRSpatialReference() -{ - return m_SR.get(); -} - #if GDAL_VERSION_NUM >= 3000000 void SpatialReference::SetAxisMappingStrategy(OSRAxisMappingStrategy strategy) { diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx index 86e0d2ded1..1cbbea7e22 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx @@ -1176,7 +1176,7 @@ void GDALImageIO::Write(const void* buffer) if (m_epsgCode != 0) { auto spatialReference = SpatialReference::FromEPSG(m_epsgCode); - m_Dataset->GetDataSet()->SetSpatialRef(spatialReference.getOGRSpatialReference()); + m_Dataset->GetDataSet()->SetProjection(spatialReference.ToWkt().c_str()); } // Convert buffer from void * to unsigned char * -- GitLab From ac178857f3e9c8b9909d92ecb8a2666793cfa4ee Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Wed, 8 Apr 2020 12:45:50 +0200 Subject: [PATCH 30/37] STYLE: Update file headers --- .../include/otbExtendedFilenameToWriterOptions.h | 2 +- .../ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx | 2 +- Modules/IO/ExtendedFilename/test/CMakeLists.txt | 1 + .../test/otbExtendedFilenameToWriterOptionsTest.cxx | 1 + Modules/IO/IOGDAL/include/otbGDALImageIO.h | 2 +- Modules/IO/IOGDAL/src/otbGDALImageIO.cxx | 2 +- Modules/IO/ImageIO/include/otbImageFileWriter.h | 1 + Modules/IO/ImageIO/include/otbImageFileWriter.hxx | 2 +- Modules/IO/ImageIO/test/CMakeLists.txt | 1 + 9 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h index 675e1a694d..e9f03a8684 100644 --- a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h +++ b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) - * Copyright (C) 2018 CS Systemes d'Information (CS SI) + * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx index 657e781040..055923bb52 100644 --- a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx +++ b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) - * Copyright (C) 2018 CS Systemes d'Information (CS SI) + * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/test/CMakeLists.txt b/Modules/IO/ExtendedFilename/test/CMakeLists.txt index 336195cdca..6be14b984b 100644 --- a/Modules/IO/ExtendedFilename/test/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/test/CMakeLists.txt @@ -1,5 +1,6 @@ # # Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2020 CS Systemes d'Information (CS SI) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx index 15109cdcb0..e7f61af501 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx @@ -1,5 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbGDALImageIO.h b/Modules/IO/IOGDAL/include/otbGDALImageIO.h index 42bedbfab3..7de21d9db9 100644 --- a/Modules/IO/IOGDAL/include/otbGDALImageIO.h +++ b/Modules/IO/IOGDAL/include/otbGDALImageIO.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) - * Copyright (C) 2018 CS Systemes d'Information (CS SI) + * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx index 1cbbea7e22..81e4492bad 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) - * Copyright (C) 2018 CS Systemes d'Information (CS SI) + * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.h b/Modules/IO/ImageIO/include/otbImageFileWriter.h index 633a54f18a..ef987d753e 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.h +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.h @@ -1,5 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx index 0dd50641f7..543639ccdb 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) - * Copyright (C) 2018 CS Systemes d'Information (CS SI) + * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/CMakeLists.txt b/Modules/IO/ImageIO/test/CMakeLists.txt index 5eebf4358d..203716f813 100644 --- a/Modules/IO/ImageIO/test/CMakeLists.txt +++ b/Modules/IO/ImageIO/test/CMakeLists.txt @@ -1,5 +1,6 @@ # # Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2020 CS Systemes d'Information (CS SI) # # This file is part of Orfeo Toolbox # -- GitLab From 56f33fa2b51abbc33f26f6b23310020f885f5b22 Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Thu, 9 Apr 2020 14:45:09 +0200 Subject: [PATCH 31/37] PERF: follow OTB guidlines + optimize a loop --- .../test/otbExtendedFilenameToWriterOptionsTest.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx index e7f61af501..6ad79a8f89 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx @@ -46,17 +46,21 @@ int otbExtendedFilenameToWriterOptions(int itkNotUsed(argc), char* argv[]) file << helper->gdalCreationOptionsIsSet() << std::endl; if (helper->gdalCreationOptionsIsSet()) + { for (unsigned int i = 0; i < helper->GetgdalCreationOptions().size(); i++) { file << helper->GetgdalCreationOptions()[i] << std::endl; } + } file << helper->NoDataValueIsSet() << std::endl; if (helper->NoDataValueIsSet()) - for (unsigned int i = 0; i < helper->GetNoDataList().size(); i++) + { + for (auto const& nodata_kv : helper->GetNoDataList()) { - file << helper->GetNoDataList()[i].first << " ; " << helper->GetNoDataList()[i].second << std::endl; + file << nodata_kv.first << " ; " << nodata_kv.second << "\n"; } + } file << helper->SrsValueIsSet() << std::endl; if (helper->SrsValueIsSet()) -- GitLab From 500b0c41cac5794f5cfaab77342cbade7092726c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Wed, 15 Apr 2020 14:44:58 +0200 Subject: [PATCH 32/37] REFAC: remove the qfixed macos patch for QT5 (5.14.1 has the changes) --- SuperBuild/patches/QT5/qt5-4-fix-qfixed-macx.diff | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 SuperBuild/patches/QT5/qt5-4-fix-qfixed-macx.diff diff --git a/SuperBuild/patches/QT5/qt5-4-fix-qfixed-macx.diff b/SuperBuild/patches/QT5/qt5-4-fix-qfixed-macx.diff deleted file mode 100644 index 1d874cc94a..0000000000 --- a/SuperBuild/patches/QT5/qt5-4-fix-qfixed-macx.diff +++ /dev/null @@ -1,9 +0,0 @@ ---- a/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm -+++ b/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm -@@ -824,7 +824,7 @@ void QCoreTextFontEngine::getUnscaledGlyph(glyph_t glyph, QPainterPath *path, gl - - QFixed QCoreTextFontEngine::emSquareSize() const - { -- return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont))); -+ return QFixed(int(CTFontGetUnitsPerEm(ctfont))); - } -- GitLab From 5baeddf38d10f4284782cb92cdcf07b12b076f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 16 Apr 2020 19:37:09 +0200 Subject: [PATCH 33/37] BUG: add patch for qt5 on macos (SDK path is not written in cmake config file) --- .../QT5/qt5-1-opengl_include_dir-macx.diff | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 SuperBuild/patches/QT5/qt5-1-opengl_include_dir-macx.diff diff --git a/SuperBuild/patches/QT5/qt5-1-opengl_include_dir-macx.diff b/SuperBuild/patches/QT5/qt5-1-opengl_include_dir-macx.diff new file mode 100644 index 0000000000..e0b254426e --- /dev/null +++ b/SuperBuild/patches/QT5/qt5-1-opengl_include_dir-macx.diff @@ -0,0 +1,27 @@ +diff -burN qt-everywhere-src-5.14.1_orig/qtbase/src/gui/gui.pro qt-everywhere-src-5.14.1/qtbase/src/gui/gui.pro +--- qt-everywhere-src-5.14.1_orig/qtbase/src/gui/gui.pro 2020-01-23 13:37:32.000000000 +0100 ++++ qt-everywhere-src-5.14.1/qtbase/src/gui/gui.pro 2020-04-16 19:12:38.828564743 +0200 +@@ -53,6 +53,11 @@ + + QMAKE_LIBS += $$QMAKE_LIBS_GUI + ++# load(qt_module) removes the sdk prefix on QMAKE_INCDIR_OPENGL ++# (by including build//qtbase/src/gui/qtgui-config.pri) ++# We want to write the path with the sdk prefix in the cmake config file, ++# to be able to find openGL headers in cmake. ++QMAKE_INCDIR_OPENGL_TMP = $${QMAKE_INCDIR_OPENGL} + load(qt_module) + load(cmake_functions) + +@@ -84,8 +89,8 @@ + CMAKE_GL_HEADER_NAME = GLES2/gl2.h + CMAKE_QT_OPENGL_IMPLEMENTATION = GLESv2 + } else: qtConfig(opengl) { +- !isEmpty(QMAKE_INCDIR_OPENGL): CMAKE_GL_INCDIRS = $$cmakeTargetPaths($$QMAKE_INCDIR_OPENGL) +- CMAKE_OPENGL_INCDIRS = $$cmakePortablePaths($$QMAKE_INCDIR_OPENGL) ++ !isEmpty(QMAKE_INCDIR_OPENGL_TMP): CMAKE_GL_INCDIRS = $$cmakeTargetPaths($$QMAKE_INCDIR_OPENGL_TMP) ++ CMAKE_OPENGL_INCDIRS = $$cmakePortablePaths($$QMAKE_INCDIR_OPENGL_TMP) + !qtConfig(dynamicgl): CMAKE_OPENGL_LIBS = $$cmakeProcessLibs($$QMAKE_LIBS_OPENGL) + !isEmpty(QMAKE_LIBDIR_OPENGL): CMAKE_OPENGL_LIBDIR = $$cmakePortablePaths($$QMAKE_LIBDIR_OPENGL) + CMAKE_GL_HEADER_NAME = GL/gl.h + -- GitLab From 0bd0be37b6f25792bf279dfca3317714ea8f5ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Thu, 23 Apr 2020 09:42:34 +0200 Subject: [PATCH 34/37] BUG: compare floating point with an epsilon instead of 0.0, as it is not safe --- .../ImageManipulation/include/otbSpectralAngleFunctor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 93eb63455e..0910556961 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -45,7 +45,7 @@ TOutput ComputeSpectralAngle(TInput const & input, typename TInput ::ValueType c auto minSize = std::min(input.Size(), reference.Size()); double scalarProduct = std::inner_product(&input[0], &input[minSize], &reference[0],0. ); auto normProd = inputNorm * refNorm; - if ((normProd == 0.0) || (scalarProduct / normProd > 1)) + if ((normProd < 1.e-12) || (scalarProduct / normProd > 1)) { return static_cast<TOutput>(0.0); } -- GitLab From 9a187f989b4eaaed3e94e6d5a0d1fe01562a9869 Mon Sep 17 00:00:00 2001 From: Julien Osman <julien.osman@c-s.fr> Date: Thu, 23 Apr 2020 12:23:42 +0200 Subject: [PATCH 35/37] STYLE: Update the headers with the good date for the copyright --- .travis.yml | 2 +- CI/cdash_handler.py | 2 +- CI/check_twin_pipelines.py | 2 +- CI/configure_options.cmake | 2 +- CI/debian-testing-gcc.cmake | 2 +- CI/deploy-prod.sh | 2 +- CI/deploy.sh | 2 +- CI/dev_env.bat | 2 +- CI/headers_check.py | 2 +- CI/macos-10.11.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.0.cmake | 2 +- CI/windows-8.1-x64-vc14.0.cmake | 2 +- CI/windows-8.1-x86-vc14.0.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/FindOssim.cmake | 2 +- CMake/FindQwt.cmake | 2 +- CMake/FindShark.cmake | 2 +- CMake/FindTinyXML.cmake | 2 +- CMake/GenerateExportHeaderCustom.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 +- 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/OSSIMAdapters/CMakeLists.txt | 2 +- Modules/Adapters/OSSIMAdapters/include/otbDEMHandler.h | 2 +- Modules/Adapters/OSSIMAdapters/include/otbDateTimeAdapter.h | 2 +- Modules/Adapters/OSSIMAdapters/include/otbEllipsoidAdapter.h | 2 +- Modules/Adapters/OSSIMAdapters/include/otbImageKeywordlist.h | 2 +- Modules/Adapters/OSSIMAdapters/include/otbRPCSolverAdapter.h | 2 +- .../Adapters/OSSIMAdapters/include/otbSarSensorModelAdapter.h | 2 +- Modules/Adapters/OSSIMAdapters/include/otbSensorModelAdapter.h | 2 +- Modules/Adapters/OSSIMAdapters/otb-module.cmake | 2 +- Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt | 2 +- Modules/Adapters/OSSIMAdapters/src/otbDEMHandler.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbDateTimeAdapter.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbEllipsoidAdapter.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbImageKeywordlist.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbSarSensorModelAdapter.cxx | 2 +- Modules/Adapters/OSSIMAdapters/src/otbSensorModelAdapter.cxx | 2 +- Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt | 2 +- Modules/Adapters/OSSIMAdapters/test/otbDEMHandlerTest.cxx | 2 +- .../Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx | 2 +- .../Adapters/OSSIMAdapters/test/otbOssimElevManagerTest2.cxx | 2 +- .../Adapters/OSSIMAdapters/test/otbOssimElevManagerTest4.cxx | 2 +- .../OSSIMAdapters/test/otbOssimJpegFileResourceLeakTest.cxx | 2 +- Modules/Adapters/OSSIMAdapters/test/otbRPCSolverAdapterTest.cxx | 2 +- .../OSSIMAdapters/test/otbSarSensorModelAdapterTest.cxx | 2 +- Modules/Adapters/OSSIMAdapters/test/otbTestImageKeywordlist.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/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/otbDownloadSRTMTiles.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/otbSplitImage.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/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/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 +- .../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/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/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/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/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/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/otbTestMultiExtractMultiUpdate.cxx | 2 +- Modules/Core/ImageBase/test/otbVectorImageTest.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 +- .../Core/Metadata/include/otbDefaultImageMetadataInterface.h | 2 +- .../Metadata/include/otbDefaultImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbFilterFunctionValues.h | 2 +- .../Core/Metadata/include/otbFormosatImageMetadataInterface.h | 2 +- .../Metadata/include/otbFormosatImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h | 2 +- .../Metadata/include/otbIkonosImageMetadataInterfaceFactory.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/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/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 +- Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h | 2 +- .../Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h | 2 +- Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h | 2 +- .../Metadata/include/otbSpotImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbTerraSarImageMetadataInterface.h | 2 +- .../Metadata/include/otbTerraSarImageMetadataInterfaceFactory.h | 2 +- .../Core/Metadata/include/otbWorldView2ImageMetadataInterface.h | 2 +- .../include/otbWorldView2ImageMetadataInterfaceFactory.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 +- .../Metadata/src/otbDefaultImageMetadataInterfaceFactory.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/otbIkonosImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbIkonosImageMetadataInterfaceFactory.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/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 +- .../Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx | 2 +- .../Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.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 +- Modules/Core/Metadata/src/otbTerraSarImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbTerraSarImageMetadataInterfaceFactory.cxx | 2 +- .../Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx | 2 +- .../Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx | 2 +- Modules/Core/Metadata/test/CMakeLists.txt | 2 +- Modules/Core/Metadata/test/otbDefaultImageMetadataInterface.cxx | 2 +- .../Core/Metadata/test/otbImageMetadataInterfaceBaseTest.cxx | 2 +- Modules/Core/Metadata/test/otbImageMetadataInterfaceTest2.cxx | 2 +- Modules/Core/Metadata/test/otbMetadataTestDriver.cxx | 2 +- Modules/Core/Metadata/test/otbNoDataHelperTest.cxx | 2 +- .../Metadata/test/otbOpticalDefaultImageMetadataInterface.cxx | 2 +- .../Core/Metadata/test/otbOpticalImageMetadataInterfaceTest.cxx | 2 +- Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx | 2 +- .../Core/Metadata/test/otbSarDefaultImageMetadataInterface.cxx | 2 +- Modules/Core/Metadata/test/otbSarImageMetadataInterfaceTest.cxx | 2 +- Modules/Core/ObjectList/CMakeLists.txt | 2 +- Modules/Core/ObjectList/include/otbDataObjectListInterface.h | 2 +- Modules/Core/ObjectList/include/otbImageList.h | 2 +- Modules/Core/ObjectList/include/otbImageList.hxx | 2 +- Modules/Core/ObjectList/include/otbImageListSource.h | 2 +- Modules/Core/ObjectList/include/otbImageListSource.hxx | 2 +- Modules/Core/ObjectList/include/otbImageListToImageFilter.h | 2 +- Modules/Core/ObjectList/include/otbImageListToImageFilter.hxx | 2 +- .../ObjectList/include/otbImageListToImageListApplyFilter.h | 2 +- .../ObjectList/include/otbImageListToImageListApplyFilter.hxx | 2 +- Modules/Core/ObjectList/include/otbImageListToImageListFilter.h | 2 +- .../Core/ObjectList/include/otbImageListToImageListFilter.hxx | 2 +- .../Core/ObjectList/include/otbImageListToSingleImageFilter.h | 2 +- .../Core/ObjectList/include/otbImageListToSingleImageFilter.hxx | 2 +- .../Core/ObjectList/include/otbImageListToVectorImageFilter.h | 2 +- .../Core/ObjectList/include/otbImageListToVectorImageFilter.hxx | 2 +- Modules/Core/ObjectList/include/otbImageToImageListFilter.h | 2 +- Modules/Core/ObjectList/include/otbImageToImageListFilter.hxx | 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 +- .../Core/ObjectList/include/otbVectorImageToImageListFilter.h | 2 +- .../Core/ObjectList/include/otbVectorImageToImageListFilter.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/otbForwardSensorModel.h | 2 +- Modules/Core/Transform/include/otbForwardSensorModel.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/otbInverseSensorModel.h | 2 +- Modules/Core/Transform/include/otbInverseSensorModel.hxx | 2 +- Modules/Core/Transform/include/otbLogPolarTransform.h | 2 +- Modules/Core/Transform/include/otbLogPolarTransform.hxx | 2 +- Modules/Core/Transform/include/otbSensorModelBase.h | 2 +- Modules/Core/Transform/include/otbSensorModelBase.hxx | 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/otb-module.cmake | 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/otbCreateProjectionWithOSSIM.cxx | 2 +- Modules/Core/Transform/test/otbCreateProjectionWithOTB.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 +- .../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/otbChangeInformationImageFilter.h | 2 +- .../include/otbChangeInformationImageFilter.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 +- .../Filtering/ImageManipulation/include/otbConvertTypeFunctor.h | 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 +- .../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 +- .../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/otbChangeInformationImageFilter.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/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/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/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/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/otbGDALOverviewsBuilder.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/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/otbGDALOverviewsBuilder.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/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 +- Modules/IO/ImageIO/test/otbWriteGeomFile.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/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/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/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 +- .../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/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/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/OpenThreads/CMakeLists.txt | 2 +- Modules/ThirdParty/OpenThreads/otb-module-init.cmake | 2 +- Modules/ThirdParty/OpenThreads/otb-module.cmake | 2 +- Modules/ThirdParty/Ossim/CMakeLists.txt | 2 +- Modules/ThirdParty/Ossim/include/otb_ossim.h | 2 +- Modules/ThirdParty/Ossim/otb-module-init.cmake | 2 +- Modules/ThirdParty/Ossim/otb-module.cmake | 2 +- Modules/ThirdParty/OssimPlugins/CMakeLists.txt | 2 +- Modules/ThirdParty/OssimPlugins/otb-module.cmake | 2 +- Modules/ThirdParty/OssimPlugins/src/CMakeLists.txt | 2 +- Modules/ThirdParty/OssimPlugins/test/CMakeLists.txt | 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/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 +- .../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 +- .../ApplicationEngine/src/otbWrapperInputImageParameter.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 +- .../ApplicationEngine/src/otbWrapperOutputImageParameter.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_openthreads.cmake | 2 +- SuperBuild/CMake/External_ossim.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/SystemCheckup/CMakeLists.txt | 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/MUPARSER/CMakeLists.txt | 2 +- SuperBuild/patches/OPENTHREADS/CMakeLists.txt | 2 +- SuperBuild/patches/OSSIM/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/SuperbuildDownloadList.sh | 2 +- Utilities/Maintenance/TravisBuild.cmake | 2 +- Utilities/Maintenance/TravisBuild.sh | 2 +- i18n/CMakeLists.txt | 2 +- 3692 files changed, 3692 insertions(+), 3692 deletions(-) diff --git a/.travis.yml b/.travis.yml index cfa41ecef3..1f54ad2cc3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 79b70468dc..dd22f62507 100644 --- a/CI/cdash_handler.py +++ b/CI/cdash_handler.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6276ec1bab..d29f5b86c5 100644 --- a/CI/check_twin_pipelines.py +++ b/CI/check_twin_pipelines.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2de6844a26..25a271891b 100644 --- a/CI/configure_options.cmake +++ b/CI/configure_options.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9d94b441ee..f1d6923367 100644 --- a/CI/debian-testing-gcc.cmake +++ b/CI/debian-testing-gcc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6e9b818f15..da194d7a09 100644 --- a/CI/deploy-prod.sh +++ b/CI/deploy-prod.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/deploy.sh b/CI/deploy.sh index a80f9f7a78..b03391d378 100755 --- a/CI/deploy.sh +++ b/CI/deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c5091ba916..2986ed1629 100644 --- a/CI/dev_env.bat +++ b/CI/dev_env.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 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 b03211f132..63d11ebf76 100755 --- a/CI/headers_check.py +++ b/CI/headers_check.py @@ -2,7 +2,7 @@ # # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/macos-10.11.6-clang.cmake b/CI/macos-10.11.6-clang.cmake index 46b8873673..82c926244f 100644 --- a/CI/macos-10.11.6-clang.cmake +++ b/CI/macos-10.11.6-clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/macros.cmake b/CI/macros.cmake index 036772ca2b..38dbf0aeab 100644 --- a/CI/macros.cmake +++ b/CI/macros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 324c18fe11..4d2d1750f6 100644 --- a/CI/main_ci.cmake +++ b/CI/main_ci.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a9c3f330f9..1540999dd8 100644 --- a/CI/main_packages.cmake +++ b/CI/main_packages.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b58b216d9d..8faf27791d 100644 --- a/CI/main_qa.cmake +++ b/CI/main_qa.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f6f0b1d7af..720d1e9cfa 100644 --- a/CI/main_superbuild.cmake +++ b/CI/main_superbuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 97af083aa6..bb8b8013f1 100755 --- a/CI/otb_coverage.sh +++ b/CI/otb_coverage.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1801b6ddff..79a217d038 100644 --- a/CI/prepare_superbuild.cmake +++ b/CI/prepare_superbuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 70e52cf4b3..26de661303 100644 --- a/CI/sb_configure_options.cmake +++ b/CI/sb_configure_options.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b179954e6d..ba05bcb31a 100644 --- a/CI/test/cdash_test.py +++ b/CI/test/cdash_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cac1176ac6..e2c10adaea 100644 --- a/CI/ubuntu-18.04-fast.cmake +++ b/CI/ubuntu-18.04-fast.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0b2efec855..05955b8d22 100644 --- a/CI/ubuntu-18.04-gcc.cmake +++ b/CI/ubuntu-18.04-gcc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 27ab15d0cd..4882271253 100644 --- a/CI/ubuntu-18.04-llvm-nodoc.cmake +++ b/CI/ubuntu-18.04-llvm-nodoc.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0aea390ca3..8ef8f1b101 100644 --- a/CI/ubuntu-18.04-llvm-qa.cmake +++ b/CI/ubuntu-18.04-llvm-qa.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d59dcba481..479b38a252 100644 --- a/CI/ubuntu-18.04-llvm-xdk.cmake +++ b/CI/ubuntu-18.04-llvm-xdk.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9b838da433..76346d5471 100644 --- a/CI/ubuntu-18.04-llvm.cmake +++ b/CI/ubuntu-18.04-llvm.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/windows-10-x64-vc14.0.cmake b/CI/windows-10-x64-vc14.0.cmake index dc954ec8ce..8d8b3ad3d6 100644 --- a/CI/windows-10-x64-vc14.0.cmake +++ b/CI/windows-10-x64-vc14.0.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/windows-8.1-x64-vc14.0.cmake b/CI/windows-8.1-x64-vc14.0.cmake index de06cc7a12..b2d96699ad 100644 --- a/CI/windows-8.1-x64-vc14.0.cmake +++ b/CI/windows-8.1-x64-vc14.0.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CI/windows-8.1-x86-vc14.0.cmake b/CI/windows-8.1-x86-vc14.0.cmake index b0f5796065..120dc84e98 100644 --- a/CI/windows-8.1-x86-vc14.0.cmake +++ b/CI/windows-8.1-x86-vc14.0.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8e1019b558..4b7f814d28 100644 --- a/CMake/CTestCustom.cmake.in +++ b/CMake/CTestCustom.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGBenchmark.cmake b/CMake/FindGBenchmark.cmake index 44a49cec0b..d3a7ba0e19 100644 --- a/CMake/FindGBenchmark.cmake +++ b/CMake/FindGBenchmark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGLFW.cmake b/CMake/FindGLFW.cmake index 2d5e3ea516..ae0e0e0193 100644 --- a/CMake/FindGLFW.cmake +++ b/CMake/FindGLFW.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindGeoTIFF.cmake b/CMake/FindGeoTIFF.cmake index 87c9c7871f..b293806af9 100644 --- a/CMake/FindGeoTIFF.cmake +++ b/CMake/FindGeoTIFF.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindLibKML.cmake b/CMake/FindLibKML.cmake index ee3c3376c2..703034466c 100644 --- a/CMake/FindLibKML.cmake +++ b/CMake/FindLibKML.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindMuParser.cmake b/CMake/FindMuParser.cmake index ecfd7e7157..2e84940101 100644 --- a/CMake/FindMuParser.cmake +++ b/CMake/FindMuParser.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindMuParserX.cmake b/CMake/FindMuParserX.cmake index f437828e9b..a17d9f9156 100644 --- a/CMake/FindMuParserX.cmake +++ b/CMake/FindMuParserX.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindNumpy.cmake b/CMake/FindNumpy.cmake index f308db88b9..5d3e73829a 100644 --- a/CMake/FindNumpy.cmake +++ b/CMake/FindNumpy.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindOpenCV.cmake b/CMake/FindOpenCV.cmake index b7b99b4402..ef308ab56b 100644 --- a/CMake/FindOpenCV.cmake +++ b/CMake/FindOpenCV.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindOssim.cmake b/CMake/FindOssim.cmake index dd2211a417..a7012f9787 100644 --- a/CMake/FindOssim.cmake +++ b/CMake/FindOssim.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindQwt.cmake b/CMake/FindQwt.cmake index dbf736abdc..8cca3db8c5 100644 --- a/CMake/FindQwt.cmake +++ b/CMake/FindQwt.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindShark.cmake b/CMake/FindShark.cmake index a3daa3a6e1..6472494df4 100644 --- a/CMake/FindShark.cmake +++ b/CMake/FindShark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/FindTinyXML.cmake b/CMake/FindTinyXML.cmake index 7cf48c537f..49e97f2807 100644 --- a/CMake/FindTinyXML.cmake +++ b/CMake/FindTinyXML.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/GenerateExportHeaderCustom.cmake b/CMake/GenerateExportHeaderCustom.cmake index 6cd3304858..97bbf719a9 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) 2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) # - Added support of XXX_EXPORT_TEMPLATE and XXX_EXPORT_EXPLICIT_TEMPLATE macros #.rst: diff --git a/CMake/MonteverdiApplicationMacros.cmake b/CMake/MonteverdiApplicationMacros.cmake index 07feacc7d1..7ebfde9a78 100644 --- a/CMake/MonteverdiApplicationMacros.cmake +++ b/CMake/MonteverdiApplicationMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/NamespaceHandler.cmake b/CMake/NamespaceHandler.cmake index d9afe3a379..a275fb87b3 100644 --- a/CMake/NamespaceHandler.cmake +++ b/CMake/NamespaceHandler.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBApplicationMacros.cmake b/CMake/OTBApplicationMacros.cmake index 6e735760fc..4049c3f3f6 100644 --- a/CMake/OTBApplicationMacros.cmake +++ b/CMake/OTBApplicationMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBCheckSSEFeatures.cmake b/CMake/OTBCheckSSEFeatures.cmake index f09e0eeede..c05d8cda98 100644 --- a/CMake/OTBCheckSSEFeatures.cmake +++ b/CMake/OTBCheckSSEFeatures.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBCheckTargetSystemArch.cmake b/CMake/OTBCheckTargetSystemArch.cmake index 0e5891d622..ead761cd56 100644 --- a/CMake/OTBCheckTargetSystemArch.cmake +++ b/CMake/OTBCheckTargetSystemArch.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6974cc0d5f..a18efa9a7e 100644 --- a/CMake/OTBConfig.cmake.in +++ b/CMake/OTBConfig.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 57efeb5aa8..cb6c148e97 100644 --- a/CMake/OTBConfigVersion.cmake.in +++ b/CMake/OTBConfigVersion.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBGroups.cmake b/CMake/OTBGroups.cmake index 2e4a7199e0..e3eee85cfa 100644 --- a/CMake/OTBGroups.cmake +++ b/CMake/OTBGroups.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBManageLargeInputPaths.cmake b/CMake/OTBManageLargeInputPaths.cmake index aeec1d4ee1..29831b4f9b 100644 --- a/CMake/OTBManageLargeInputPaths.cmake +++ b/CMake/OTBManageLargeInputPaths.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleAPI.cmake b/CMake/OTBModuleAPI.cmake index 2fcd5d7dc2..ca7ac4e6a9 100644 --- a/CMake/OTBModuleAPI.cmake +++ b/CMake/OTBModuleAPI.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleCPPCheckTest.cmake b/CMake/OTBModuleCPPCheckTest.cmake index b2c3953fae..8b1c083d11 100644 --- a/CMake/OTBModuleCPPCheckTest.cmake +++ b/CMake/OTBModuleCPPCheckTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleDoxygen.cmake b/CMake/OTBModuleDoxygen.cmake index 826c54d192..f6dc96602d 100644 --- a/CMake/OTBModuleDoxygen.cmake +++ b/CMake/OTBModuleDoxygen.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleEnablement.cmake b/CMake/OTBModuleEnablement.cmake index 00e58e585b..1ee222d76b 100644 --- a/CMake/OTBModuleEnablement.cmake +++ b/CMake/OTBModuleEnablement.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleExternal.cmake b/CMake/OTBModuleExternal.cmake index 4badc425a6..09401b819d 100644 --- a/CMake/OTBModuleExternal.cmake +++ b/CMake/OTBModuleExternal.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleHeaderTest.cmake b/CMake/OTBModuleHeaderTest.cmake index ed89a0fc55..eb3eb2fe40 100644 --- a/CMake/OTBModuleHeaderTest.cmake +++ b/CMake/OTBModuleHeaderTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d1d858a07f..a3e3752ab0 100644 --- a/CMake/OTBModuleInfo.cmake.in +++ b/CMake/OTBModuleInfo.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleMacros.cmake b/CMake/OTBModuleMacros.cmake index 57013195d3..501484780c 100644 --- a/CMake/OTBModuleMacros.cmake +++ b/CMake/OTBModuleMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleRemote.cmake b/CMake/OTBModuleRemote.cmake index 98969e57e1..1427c569af 100644 --- a/CMake/OTBModuleRemote.cmake +++ b/CMake/OTBModuleRemote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBModuleTest.cmake b/CMake/OTBModuleTest.cmake index 912f8f1762..8a3d64c27b 100644 --- a/CMake/OTBModuleTest.cmake +++ b/CMake/OTBModuleTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBSetStandardCompilerFlags.cmake b/CMake/OTBSetStandardCompilerFlags.cmake index a9f4e19d67..34c42242df 100644 --- a/CMake/OTBSetStandardCompilerFlags.cmake +++ b/CMake/OTBSetStandardCompilerFlags.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/OTBStandaloneModuleMacros.cmake b/CMake/OTBStandaloneModuleMacros.cmake index 5771498ab5..3d46c91142 100644 --- a/CMake/OTBStandaloneModuleMacros.cmake +++ b/CMake/OTBStandaloneModuleMacros.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 26114bd0f2..93d6101c78 100644 --- a/CMake/OTB_CheckCXXCompilerFlag.cmake +++ b/CMake/OTB_CheckCXXCompilerFlag.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/PreventInBuildInstalls.cmake b/CMake/PreventInBuildInstalls.cmake index 99228c16b8..821abbc043 100644 --- a/CMake/PreventInBuildInstalls.cmake +++ b/CMake/PreventInBuildInstalls.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/PreventInSourceBuilds.cmake b/CMake/PreventInSourceBuilds.cmake index 2020278cae..ad3f138697 100644 --- a/CMake/PreventInSourceBuilds.cmake +++ b/CMake/PreventInSourceBuilds.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 07c16c6582..bde1c249b8 100644 --- a/CMake/RemoveTemporaryFiles.cmake.in +++ b/CMake/RemoveTemporaryFiles.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/SourceStatus.cmake b/CMake/SourceStatus.cmake index 7dd7e8dc98..e98a9d2318 100644 --- a/CMake/SourceStatus.cmake +++ b/CMake/SourceStatus.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMake/UseOTB.cmake b/CMake/UseOTB.cmake index 970cd2d0af..7340ddf325 100644 --- a/CMake/UseOTB.cmake +++ b/CMake/UseOTB.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a289418a41..d97a335eb3 100644 --- a/CMake/cmake_uninstall.cmake.in +++ b/CMake/cmake_uninstall.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aae5d8f92a..b7cac81d1c 100644 --- a/CMake/i18n_qt.cmake +++ b/CMake/i18n_qt.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2066aee948..8f6ddeacef 100644 --- a/CMake/otbcli.bat.in +++ b/CMake/otbcli.bat.in @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 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 bc2d824d24..ab706ba636 100644 --- a/CMake/otbcli.sh.in +++ b/CMake/otbcli.sh.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 56b47d4df1..b32d324099 100644 --- a/CMake/otbgui.bat.in +++ b/CMake/otbgui.bat.in @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 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 1320edf270..39c3915f5b 100644 --- a/CMake/otbgui.sh.in +++ b/CMake/otbgui.sh.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CMakeLists.txt b/CMakeLists.txt index 405dfb0964..570bee7cff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/CTestConfig.cmake b/CTestConfig.cmake index d8f1654981..e3acafc8cd 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Copyright/CodeCopyright.txt b/Copyright/CodeCopyright.txt index 5a2da0dcdb..62c3cc673a 100644 --- a/Copyright/CodeCopyright.txt +++ b/Copyright/CodeCopyright.txt @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 18463d6cb4..b6b6098cd7 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-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3fa4541078..edfb6a76fd 100644 --- a/Documentation/Cookbook/CMakeLists.txt +++ b/Documentation/Cookbook/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 41cb849897..631bc3197a 100755 --- a/Documentation/Cookbook/Scripts/RunExamples.py +++ b/Documentation/Cookbook/Scripts/RunExamples.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 27d5a890c0..8497f7cf76 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-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f534a97dcb..3e8e4e8669 100644 --- a/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGenerateExamplesRstDoc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 ef00898ff1..736576147a 100755 --- a/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 053a99f752..eab06e7f15 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-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 760819ae90..63243e814d 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-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1144ae7927..4fc3adc4a3 100644 --- a/Documentation/Cookbook/_static/js/versions.js +++ b/Documentation/Cookbook/_static/js/versions.js @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5a2da0dcdb..62c3cc673a 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4c4f2179c4..d32bd41f24 100644 --- a/Examples/Application/ApplicationExample.cxx +++ b/Examples/Application/ApplicationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0f59fc3503..4958da7aca 100644 --- a/Examples/Application/CMakeLists.txt +++ b/Examples/Application/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0bcd6a6b30..61b0b15c49 100644 --- a/Examples/Application/test/CMakeLists.txt +++ b/Examples/Application/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 baaa6b931f..2c7b4dfee2 100644 --- a/Examples/BasicFilters/BandMathFilterExample.cxx +++ b/Examples/BasicFilters/BandMathFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0837e9f4af..de955058ba 100644 --- a/Examples/BasicFilters/BandMathXImageFilterExample.cxx +++ b/Examples/BasicFilters/BandMathXImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 14808a56ef..30320e12bd 100644 --- a/Examples/BasicFilters/CMakeLists.txt +++ b/Examples/BasicFilters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7f8d627b63..1a90810bc0 100644 --- a/Examples/BasicFilters/DEMToRainbowExample.cxx +++ b/Examples/BasicFilters/DEMToRainbowExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 500daaa5f3..99d935c676 100644 --- a/Examples/BasicFilters/FrostImageFilter.cxx +++ b/Examples/BasicFilters/FrostImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 053767bcad..aa57e7be5e 100644 --- a/Examples/BasicFilters/HillShadingExample.cxx +++ b/Examples/BasicFilters/HillShadingExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 05a1e15bee..3e20881e9d 100644 --- a/Examples/BasicFilters/IndexedToRGBExample.cxx +++ b/Examples/BasicFilters/IndexedToRGBExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2a1be0839f..455ef8e2d5 100644 --- a/Examples/BasicFilters/LeeImageFilter.cxx +++ b/Examples/BasicFilters/LeeImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce3897a3a3..1411e9d11d 100644 --- a/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx +++ b/Examples/BasicFilters/MeanShiftSegmentationFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cdbc271d42..fea9e88b1e 100644 --- a/Examples/BasicFilters/PrintableImageFilterExample.cxx +++ b/Examples/BasicFilters/PrintableImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 adf2ff204c..145ee0858a 100644 --- a/Examples/BasicFilters/ScalingFilterExample.cxx +++ b/Examples/BasicFilters/ScalingFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9f804ca472..777743508d 100644 --- a/Examples/BasicFilters/test/CMakeLists.txt +++ b/Examples/BasicFilters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Examples/CMakeLists.txt b/Examples/CMakeLists.txt index f4132f8e4c..45dc734d7c 100644 --- a/Examples/CMakeLists.txt +++ b/Examples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 686649aedc..718f420c4d 100644 --- a/Examples/ChangeDetection/CMakeLists.txt +++ b/Examples/ChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cabcf8ad8c..80d4c8238a 100644 --- a/Examples/ChangeDetection/CorrelChDet.cxx +++ b/Examples/ChangeDetection/CorrelChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 57980a449d..d79743b066 100644 --- a/Examples/ChangeDetection/DiffChDet.cxx +++ b/Examples/ChangeDetection/DiffChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2dc1d439fb..29c08c15fc 100644 --- a/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx +++ b/Examples/ChangeDetection/KullbackLeiblerDistanceChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c92669cb61..705c673946 100644 --- a/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx +++ b/Examples/ChangeDetection/KullbackLeiblerProfileChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 54612a51e4..05004ab0b5 100644 --- a/Examples/ChangeDetection/MultivariateAlterationDetector.cxx +++ b/Examples/ChangeDetection/MultivariateAlterationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f74cfd95e6..4e7c1a1771 100644 --- a/Examples/ChangeDetection/RatioChDet.cxx +++ b/Examples/ChangeDetection/RatioChDet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 76d9eada21..4eeccabfdd 100644 --- a/Examples/ChangeDetection/test/CMakeLists.txt +++ b/Examples/ChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 342ac7045d..a437a0d9f0 100644 --- a/Examples/Classification/CMakeLists.txt +++ b/Examples/Classification/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7c0c0aa1cd..fefcc33a45 100644 --- a/Examples/Classification/ClassificationMapRegularizationExample.cxx +++ b/Examples/Classification/ClassificationMapRegularizationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f73e8cba84..f48cc5f5b3 100644 --- a/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx +++ b/Examples/Classification/DempsterShaferFusionOfClassificationMapsExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9155a235ca..cd31fdd5e1 100644 --- a/Examples/Classification/SOMImageClassificationExample.cxx +++ b/Examples/Classification/SOMImageClassificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3ccc92cf8e..53e99eb34c 100644 --- a/Examples/Classification/SupervisedImageClassificationExample.cxx +++ b/Examples/Classification/SupervisedImageClassificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4a565fa4f3..41365c900a 100644 --- a/Examples/Classification/test/CMakeLists.txt +++ b/Examples/Classification/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 08570dfdc5..8c88113413 100644 --- a/Examples/DimensionReduction/CMakeLists.txt +++ b/Examples/DimensionReduction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2d55be58de..db8e3d22e3 100644 --- a/Examples/DimensionReduction/ICAExample.cxx +++ b/Examples/DimensionReduction/ICAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 da9343ba77..5814e30f56 100644 --- a/Examples/DimensionReduction/MNFExample.cxx +++ b/Examples/DimensionReduction/MNFExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c7a3510fa1..33a4702ee4 100644 --- a/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx +++ b/Examples/DimensionReduction/MaximumAutocorrelationFactor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3586dd81ea..01a8a1dee9 100644 --- a/Examples/DimensionReduction/NAPCAExample.cxx +++ b/Examples/DimensionReduction/NAPCAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9127983ce6..c57bdbf9f1 100644 --- a/Examples/DimensionReduction/PCAExample.cxx +++ b/Examples/DimensionReduction/PCAExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01785765b6..80b6dc89b2 100644 --- a/Examples/DimensionReduction/test/CMakeLists.txt +++ b/Examples/DimensionReduction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 48cc521101..668e864174 100644 --- a/Examples/DisparityMap/CMakeLists.txt +++ b/Examples/DisparityMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 831dc0f7b0..305272346d 100644 --- a/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx +++ b/Examples/DisparityMap/FineRegistrationImageFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 174494baeb..f46120aed4 100644 --- a/Examples/DisparityMap/NCCRegistrationFilterExample.cxx +++ b/Examples/DisparityMap/NCCRegistrationFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 41c1efb478..72ac03ab56 100644 --- a/Examples/DisparityMap/StereoReconstructionExample.cxx +++ b/Examples/DisparityMap/StereoReconstructionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3966ebf296..cd9253cdca 100644 --- a/Examples/DisparityMap/test/CMakeLists.txt +++ b/Examples/DisparityMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 69e5c3840c..f3a39bafa2 100644 --- a/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/AsymmetricFusionOfLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5d48aead0d..432aa3b9d4 100644 --- a/Examples/FeatureExtraction/CMakeLists.txt +++ b/Examples/FeatureExtraction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 11e15a5484..e268049d8b 100644 --- a/Examples/FeatureExtraction/CloudDetectionExample.cxx +++ b/Examples/FeatureExtraction/CloudDetectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6032d5d493..4f95139011 100644 --- a/Examples/FeatureExtraction/ComplexMomentPathExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentPathExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 156c3cef66..0c79493a5b 100644 --- a/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/ComplexMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f3ec4b2251..8defce6c1c 100644 --- a/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/CorrelationLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 39571a9dde..b4440f2938 100644 --- a/Examples/FeatureExtraction/EdgeDensityExample.cxx +++ b/Examples/FeatureExtraction/EdgeDensityExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ff63d86ae6..ae26a19201 100644 --- a/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/FlusserMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 63f58fc31a..19679bdd61 100644 --- a/Examples/FeatureExtraction/HarrisExample.cxx +++ b/Examples/FeatureExtraction/HarrisExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 09331ca6b2..44a8499952 100644 --- a/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx +++ b/Examples/FeatureExtraction/HuMomentsImageFunctionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 96fc322a6d..8b07a0d277 100644 --- a/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx +++ b/Examples/FeatureExtraction/LineSegmentDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3066ca7e1b..ecb6533768 100644 --- a/Examples/FeatureExtraction/PanTexExample.cxx +++ b/Examples/FeatureExtraction/PanTexExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1ea17023b8..64382a01c0 100644 --- a/Examples/FeatureExtraction/RatioLineDetectorExample.cxx +++ b/Examples/FeatureExtraction/RatioLineDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6a20332b20..eb17967c1b 100644 --- a/Examples/FeatureExtraction/RightAngleDetectionExample.cxx +++ b/Examples/FeatureExtraction/RightAngleDetectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1916fe0f0d..a5530113d9 100644 --- a/Examples/FeatureExtraction/SFSExample.cxx +++ b/Examples/FeatureExtraction/SFSExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 85020bcc31..e6eb791492 100644 --- a/Examples/FeatureExtraction/SURFExample.cxx +++ b/Examples/FeatureExtraction/SURFExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 69198def26..60edc1ea69 100644 --- a/Examples/FeatureExtraction/TextureExample.cxx +++ b/Examples/FeatureExtraction/TextureExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf95ba45b4..17afae2728 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 43b7d79a18..3288b11ade 100644 --- a/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx +++ b/Examples/FeatureExtraction/TouziEdgeDetectorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bea835448e..fac35ae981 100644 --- a/Examples/FeatureExtraction/test/CMakeLists.txt +++ b/Examples/FeatureExtraction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fd272951c3..adf9ac42c1 100644 --- a/Examples/Filtering/CMakeLists.txt +++ b/Examples/Filtering/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 208b94d02d..32950ecff5 100644 --- a/Examples/Filtering/CompositeFilterExample.cxx +++ b/Examples/Filtering/CompositeFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 baca942dfe..ba8a2d4b52 100644 --- a/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx +++ b/Examples/Filtering/DanielssonDistanceMapImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e7dacd6611..5a9e95a8c3 100644 --- a/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx +++ b/Examples/Filtering/SecondDerivativeRecursiveGaussianImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7a49eaf6ad..0f9cd906af 100644 --- a/Examples/Filtering/test/CMakeLists.txt +++ b/Examples/Filtering/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 50cc7d31d5..aa586db965 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2f8080428f..6f7660e7fd 100644 --- a/Examples/Fusion/CMakeLists.txt +++ b/Examples/Fusion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8d30bf6ba2..d357d503e1 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 46372fd482..b5ed910401 100644 --- a/Examples/Fusion/test/CMakeLists.txt +++ b/Examples/Fusion/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 829c4a4219..f6ad1452c2 100644 --- a/Examples/Hyperspectral/CMakeLists.txt +++ b/Examples/Hyperspectral/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f323ef644a..1a65418af7 100644 --- a/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx +++ b/Examples/Hyperspectral/HyperspectralUnmixingExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 84ab5be4d6..6e666a84aa 100644 --- a/Examples/Hyperspectral/test/CMakeLists.txt +++ b/Examples/Hyperspectral/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f6221a9d2a..0a80a2f3ed 100644 --- a/Examples/IO/CMakeLists.txt +++ b/Examples/IO/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6ebdd56696..a692a05aad 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a133e2eff4..85df83d955 100644 --- a/Examples/IO/DEMHandlerExample.cxx +++ b/Examples/IO/DEMHandlerExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5e6925daba..424d990e9a 100644 --- a/Examples/IO/DEMToImageGenerator.cxx +++ b/Examples/IO/DEMToImageGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 78d7587b0b..bc6a704846 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c1a066c384..d839e6d2e2 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 05661299cf..6a4dbe3e39 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2bf09ac11a..ecc878b69f 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 467eada48f..228a213b4a 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2defc8098a..da116e919b 100644 --- a/Examples/IO/MetadataExample.cxx +++ b/Examples/IO/MetadataExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8973c80686..8bab185cc0 100644 --- a/Examples/IO/MultibandImageReadWrite.cxx +++ b/Examples/IO/MultibandImageReadWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dc8b451ccf..cd8db69678 100644 --- a/Examples/IO/VectorDataIOExample.cxx +++ b/Examples/IO/VectorDataIOExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fa7ef6c81c..e4ece80fe2 100644 --- a/Examples/IO/test/CMakeLists.txt +++ b/Examples/IO/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9e577edb50..0592a700f4 100644 --- a/Examples/Image/CMakeLists.txt +++ b/Examples/Image/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 19c082c57b..4ba295cc43 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 811640cab6..9ad5fe2bbc 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c437bd44a4..c43c3ca64e 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1f2581fb35..554eb2380c 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6cf21c0843..baa38b3747 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 717414b90b..dad7fedfc9 100644 --- a/Examples/Image/ImageListExample.cxx +++ b/Examples/Image/ImageListExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f0391ea38d..f53f0bb12f 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0e97c4d16c..235c6808f4 100644 --- a/Examples/Image/test/CMakeLists.txt +++ b/Examples/Image/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aaabcdc45e..e74ecf4665 100644 --- a/Examples/Installation/CMakeLists.txt +++ b/Examples/Installation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 211962f634..5d3d2cea9a 100644 --- a/Examples/Installation/HelloWorld.cxx +++ b/Examples/Installation/HelloWorld.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01785765b6..80b6dc89b2 100644 --- a/Examples/Installation/test/CMakeLists.txt +++ b/Examples/Installation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1923ea1dc7..be61606bd6 100644 --- a/Examples/Iterators/CMakeLists.txt +++ b/Examples/Iterators/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 32a8f3861b..b33f3c6b16 100644 --- a/Examples/Iterators/ImageLinearIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageLinearIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 96da9b9e6a..7eb9d21b29 100644 --- a/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx +++ b/Examples/Iterators/ImageLinearIteratorWithIndex2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 414fdf1f3d..7ea0889b30 100644 --- a/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageRandomConstIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 331d86fb17..34829bce53 100644 --- a/Examples/Iterators/ImageRegionIterator.cxx +++ b/Examples/Iterators/ImageRegionIterator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8fcffda237..e69ec87300 100644 --- a/Examples/Iterators/ImageRegionIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageRegionIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 66dbf8336a..8c75de8a6e 100644 --- a/Examples/Iterators/ImageSliceIteratorWithIndex.cxx +++ b/Examples/Iterators/ImageSliceIteratorWithIndex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b0c370d80c..af3edcd997 100644 --- a/Examples/Iterators/IteratorsExamples.cxx +++ b/Examples/Iterators/IteratorsExamples.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e35b336bca..a4a6d987c4 100644 --- a/Examples/Iterators/NeighborhoodIterators1.cxx +++ b/Examples/Iterators/NeighborhoodIterators1.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c615e5553a..32a16bbb36 100644 --- a/Examples/Iterators/NeighborhoodIterators2.cxx +++ b/Examples/Iterators/NeighborhoodIterators2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 683c6104e1..af99b3eb59 100644 --- a/Examples/Iterators/NeighborhoodIterators3.cxx +++ b/Examples/Iterators/NeighborhoodIterators3.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d3bc066d2d..041270146f 100644 --- a/Examples/Iterators/NeighborhoodIterators4.cxx +++ b/Examples/Iterators/NeighborhoodIterators4.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6718c9ce46..87c4bad5f8 100644 --- a/Examples/Iterators/NeighborhoodIterators5.cxx +++ b/Examples/Iterators/NeighborhoodIterators5.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 afc136a7bd..3574590003 100644 --- a/Examples/Iterators/NeighborhoodIterators6.cxx +++ b/Examples/Iterators/NeighborhoodIterators6.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d994592eec..cbe4a8fad7 100644 --- a/Examples/Iterators/ShapedNeighborhoodIterators1.cxx +++ b/Examples/Iterators/ShapedNeighborhoodIterators1.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 082d60a162..dfcb6ba3ad 100644 --- a/Examples/Iterators/ShapedNeighborhoodIterators2.cxx +++ b/Examples/Iterators/ShapedNeighborhoodIterators2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 316823ffa7..8167307214 100644 --- a/Examples/Iterators/test/CMakeLists.txt +++ b/Examples/Iterators/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 70bce4fd32..a7be362934 100644 --- a/Examples/Learning/CMakeLists.txt +++ b/Examples/Learning/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2bcd6ae5e9..7ec497cf02 100644 --- a/Examples/Learning/GenerateTrainingImageExample.cxx +++ b/Examples/Learning/GenerateTrainingImageExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c1291eafd6..5559c42ee1 100644 --- a/Examples/Learning/SEMModelEstimatorExample.cxx +++ b/Examples/Learning/SEMModelEstimatorExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6dd1624667..352cd5101e 100644 --- a/Examples/Learning/SOMClassifierExample.cxx +++ b/Examples/Learning/SOMClassifierExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bad9b7ca1d..a2e1c110cb 100644 --- a/Examples/Learning/SOMExample.cxx +++ b/Examples/Learning/SOMExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 910b99e524..e1edb867cc 100644 --- a/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx +++ b/Examples/Learning/SVMImageEstimatorClassificationMultiExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1016a6581b..8b36e4081b 100644 --- a/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx +++ b/Examples/Learning/TrainMachineLearningModelFromImagesExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1551fcf8bf..51b6fe49a3 100644 --- a/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx +++ b/Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f0569ed7ef..f6afbd796d 100644 --- a/Examples/Learning/test/CMakeLists.txt +++ b/Examples/Learning/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e8bc46a115..e5d3947903 100644 --- a/Examples/Markov/CMakeLists.txt +++ b/Examples/Markov/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c37508180b..aa04d89703 100644 --- a/Examples/Markov/MarkovClassification1Example.cxx +++ b/Examples/Markov/MarkovClassification1Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cb1091b2b5..9547e1226f 100644 --- a/Examples/Markov/MarkovClassification2Example.cxx +++ b/Examples/Markov/MarkovClassification2Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d71db51270..55781fafb9 100644 --- a/Examples/Markov/MarkovClassification3Example.cxx +++ b/Examples/Markov/MarkovClassification3Example.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 71f8d57784..eca197d4e7 100644 --- a/Examples/Markov/MarkovRegularizationExample.cxx +++ b/Examples/Markov/MarkovRegularizationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fbadae46d1..36bacae289 100644 --- a/Examples/Markov/MarkovRestorationExample.cxx +++ b/Examples/Markov/MarkovRestorationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9f54ff9cb1..30054e1be7 100644 --- a/Examples/Markov/test/CMakeLists.txt +++ b/Examples/Markov/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 06b8a0baa5..ed6a9b7e01 100644 --- a/Examples/OBIA/CMakeLists.txt +++ b/Examples/OBIA/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 bcd6adcc46..36b173712a 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b88ee2425c..8dcb38b11a 100644 --- a/Examples/OBIA/LabelMapToVectorData.cxx +++ b/Examples/OBIA/LabelMapToVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 848dd62674..77e15fb222 100644 --- a/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx +++ b/Examples/OBIA/RadiometricAttributesLabelMapFilterExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 563fdaf618..bb14185987 100644 --- a/Examples/OBIA/test/CMakeLists.txt +++ b/Examples/OBIA/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2d275cff1b..9030b70d2f 100644 --- a/Examples/Patented/CMakeLists.txt +++ b/Examples/Patented/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e235feb606..c75417399d 100644 --- a/Examples/Patented/SIFTDensityExample.cxx +++ b/Examples/Patented/SIFTDensityExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 be80a5044c..b4aff0068f 100644 --- a/Examples/Patented/SIFTDisparityMapEstimation.cxx +++ b/Examples/Patented/SIFTDisparityMapEstimation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 697206fe3a..96b3f089c0 100644 --- a/Examples/Patented/SIFTExample.cxx +++ b/Examples/Patented/SIFTExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4a5f8251a6..c70f23fe66 100644 --- a/Examples/Patented/SIFTFastExample.cxx +++ b/Examples/Patented/SIFTFastExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3a134c94a4..8f7ec06b97 100644 --- a/Examples/Patented/test/CMakeLists.txt +++ b/Examples/Patented/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c75b06d320..100d01ecc9 100644 --- a/Examples/Projections/CMakeLists.txt +++ b/Examples/Projections/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cdf0fb28d0..ffb11c3704 100644 --- a/Examples/Projections/EstimateRPCSensorModelExample.cxx +++ b/Examples/Projections/EstimateRPCSensorModelExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3cd7a42788..77845a2c5e 100644 --- a/Examples/Projections/GeometriesProjectionExample.cxx +++ b/Examples/Projections/GeometriesProjectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bb0415e5d6..fc974226ad 100644 --- a/Examples/Projections/OrthoRectificationExample.cxx +++ b/Examples/Projections/OrthoRectificationExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 82f17c393f..23e10ad6b0 100644 --- a/Examples/Projections/PlaceNameToLonLatExample.cxx +++ b/Examples/Projections/PlaceNameToLonLatExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cd98c36c77..d548a51e7f 100644 --- a/Examples/Projections/VectorDataExtractROIExample.cxx +++ b/Examples/Projections/VectorDataExtractROIExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 282cb306e9..ea8c3c99f8 100644 --- a/Examples/Projections/VectorDataProjectionExample.cxx +++ b/Examples/Projections/VectorDataProjectionExample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5cd898e291..e73c5f0164 100644 --- a/Examples/Projections/test/CMakeLists.txt +++ b/Examples/Projections/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f544a7cee5..ac0cbbf00d 100644 --- a/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx +++ b/Examples/Radiometry/ARVIMultiChannelRAndBAndNIRVegetationIndexImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 67598f04d5..210552c805 100644 --- a/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx +++ b/Examples/Radiometry/AVIMultiChannelRAndGAndNIRVegetationIndexImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f7167700e6..879c339533 100644 --- a/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx +++ b/Examples/Radiometry/AtmosphericCorrectionSequencement.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 edb63b4c96..7e72199ac1 100644 --- a/Examples/Radiometry/CMakeLists.txt +++ b/Examples/Radiometry/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 4bd6befaff..f320437e0a 100644 --- a/Examples/Radiometry/test/CMakeLists.txt +++ b/Examples/Radiometry/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fc4ada650c..d8a5fcc3f4 100644 --- a/Examples/Simulation/CMakeLists.txt +++ b/Examples/Simulation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a7427c9822..0dfb17b3d0 100644 --- a/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx +++ b/Examples/Simulation/LAIAndPROSAILToSensorResponse.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e2cb6cd5b4..8650d6213b 100644 --- a/Examples/Simulation/LAIFromNDVIImageTransform.cxx +++ b/Examples/Simulation/LAIFromNDVIImageTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ecae20f2d4..56c98b28b9 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dc791b71cc..a6ce05eda9 100644 --- a/Examples/Simulation/test/CMakeLists.txt +++ b/Examples/Simulation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 39a14512cb..1fac931b35 100644 --- a/Examples/Tutorials/CMakeLists.txt +++ b/Examples/Tutorials/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 43158b4535..0d9d1991bc 100644 --- a/Examples/Tutorials/FilteringPipeline.cxx +++ b/Examples/Tutorials/FilteringPipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 45a0887f00..f8ccd74299 100644 --- a/Examples/Tutorials/HelloWorldOTB.cxx +++ b/Examples/Tutorials/HelloWorldOTB.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 47ee5173e7..42fc0fff76 100644 --- a/Examples/Tutorials/Multispectral.cxx +++ b/Examples/Tutorials/Multispectral.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2f40ce9f87..c45b377fd1 100644 --- a/Examples/Tutorials/OrthoFusion.cxx +++ b/Examples/Tutorials/OrthoFusion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 02a06931dd..b3abc33bc0 100644 --- a/Examples/Tutorials/Pipeline.cxx +++ b/Examples/Tutorials/Pipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c7450105c5..140b59665d 100644 --- a/Examples/Tutorials/ScalingPipeline.cxx +++ b/Examples/Tutorials/ScalingPipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e1e7252ab4..7b9bf9ec80 100644 --- a/Examples/Tutorials/test/CMakeLists.txt +++ b/Examples/Tutorials/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9c83998f26..c9f757e406 100644 --- a/Modules/Adapters/BoostAdapters/CMakeLists.txt +++ b/Modules/Adapters/BoostAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f86be58e5d..dcda058045 100644 --- a/Modules/Adapters/BoostAdapters/include/otbBoostDox.h +++ b/Modules/Adapters/BoostAdapters/include/otbBoostDox.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e5e5610635..8c2cbea50d 100644 --- a/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h +++ b/Modules/Adapters/BoostAdapters/include/otbJoinContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b829c16351..0d548a125b 100644 --- a/Modules/Adapters/BoostAdapters/include/otbStringUtils.h +++ b/Modules/Adapters/BoostAdapters/include/otbStringUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a15db2a350..c33884e257 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2cfcc4ead2..0a08d0fd35 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d1ecaae933..9104be904b 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 de573a1241..15a2ee744a 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f0510b85d9..54f9cb2439 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5ff45154ad..a5c2d8ebc1 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 77fd21ac8f..3810195cfc 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cc092d18b5..d8c3a415b7 100644 --- a/Modules/Adapters/BoostAdapters/otb-module.cmake +++ b/Modules/Adapters/BoostAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e07633152f..5dc6c4bea7 100644 --- a/Modules/Adapters/CurlAdapters/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5ad091ce37..bad7e07cad 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d784e41e66..2ec32785c9 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelperInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ca2e60fc59..14f38d43e9 100644 --- a/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h +++ b/Modules/Adapters/CurlAdapters/include/otbCurlHelperStub.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 89c3bc976f..f153b5b572 100644 --- a/Modules/Adapters/CurlAdapters/otb-module.cmake +++ b/Modules/Adapters/CurlAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8c42b02506..e34779dcbe 100644 --- a/Modules/Adapters/CurlAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 dc55f15cc2..803de2a772 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 399bd59a1f..815d2bb5dc 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelperInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 724374d50c..f3ad01aa31 100644 --- a/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx +++ b/Modules/Adapters/CurlAdapters/src/otbCurlHelperStub.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6db0d9087e..34ad2e12bd 100644 --- a/Modules/Adapters/CurlAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/CurlAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c30f119a25..16a0c9b848 100644 --- a/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx +++ b/Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2611817c38..6895e14207 100644 --- a/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx +++ b/Modules/Adapters/CurlAdapters/test/otbIsNightlyRevision.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7bf98709e2..97d743c0b0 100644 --- a/Modules/Adapters/GdalAdapters/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 53331dc22d..518987ffaa 100644 --- a/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h +++ b/Modules/Adapters/GdalAdapters/include/otbCoordinateTransformation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1b5a79e9dc..4ebd4713b7 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h +++ b/Modules/Adapters/GdalAdapters/include/otbGdalDataTypeBridge.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10960f7c3d..3dfb5c37c0 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesSet.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c42d7a7ff1..8debec9ed4 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 49ca46be12..bb4d578a46 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dba14ed5e9..215e33e2f2 100644 --- a/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbGeometriesToGeometriesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8d88be652f..4a79cb0485 100644 --- a/Modules/Adapters/GdalAdapters/include/otbImageReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbImageReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 58bcd88ab0..f98766c854 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGR.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGR.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 451e1f063c..a84d7f019a 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b16b6b2a18..eb3d59f4f2 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDataSourceWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 28f2859c6f..ead86a5293 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRDriversInit.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e35c8ed357..dae07cd73b 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRExtendedFilenameToOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 73ca7571b3..ede4c38b92 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 02c72bfe75..b2b3ef98f8 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFeatureWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a3a39546b0..76729acf15 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b5c3af8a79..5527be4198 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx +++ b/Modules/Adapters/GdalAdapters/include/otbOGRFieldWrapper.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 33d4db682d..8fd67b4812 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRGeometriesVisitor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c38b22da1f..b76f6fbccd 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRGeometryWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d54ee7f257..334d551ce5 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a11151a384..1a4eba8380 100644 --- a/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h +++ b/Modules/Adapters/GdalAdapters/include/otbOGRLayerWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 37611309fd..4f3fbbd73e 100644 --- a/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h +++ b/Modules/Adapters/GdalAdapters/include/otbSpatialReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bd5b778611..f5450bfe52 100644 --- a/Modules/Adapters/GdalAdapters/otb-module.cmake +++ b/Modules/Adapters/GdalAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 ff61bcd0f1..01ef351268 100644 --- a/Modules/Adapters/GdalAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 574444a7f6..465e33d832 100644 --- a/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbCoordinateTransformation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93c63e14e0..1452f58e1e 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesSet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1b59f2f643..ec072be3e3 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesSource.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 770c001e78..b18871e12e 100644 --- a/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbGeometriesToGeometriesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ff152e01aa..60e62ff56b 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRDataSourceWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 eff2de0cf9..1d8b7ee3c2 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRDriversInit.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e0bab17000..69db3aa5e9 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRExtendedFilenameToOptions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ed416aae66..8fe58c23b6 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRFeatureWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9070130b3d..edec4610b0 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRFieldWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 06852f3fc5..8448025179 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 056326c1dd..f0fdb0a9ba 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRHelpers.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fe6f72fb1f..3b61c46778 100644 --- a/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbOGRLayerWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 120f8d0ae2..bb80d9823c 100644 --- a/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx +++ b/Modules/Adapters/GdalAdapters/src/otbSpatialReference.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d636ed7e43..75a50079d1 100644 --- a/Modules/Adapters/GdalAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/GdalAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5fd814979e..d340e7fefe 100644 --- a/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbCoordinateTransformationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 327a33f618..7857c16636 100644 --- a/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbGdalAdaptersTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8d737b5136..f34c2f6120 100644 --- a/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbMapProjectionAdapterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bec648fe7e..d78fd3eab5 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 476452fe9b..bc0f049024 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e90b84af55..49e06b8d6e 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsGDALTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 45152572ee..ff9bcf0c44 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRExtendedFilenameToOptionsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c60bbba292..bca45d8797 100644 --- a/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbOGRTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f66220dfbc..15b9768120 100644 --- a/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx +++ b/Modules/Adapters/GdalAdapters/test/otbSpatialReferenceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/CMakeLists.txt b/Modules/Adapters/OSSIMAdapters/CMakeLists.txt index 4ed8c4a935..8dffcbc06a 100644 --- a/Modules/Adapters/OSSIMAdapters/CMakeLists.txt +++ b/Modules/Adapters/OSSIMAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/OSSIMAdapters/include/otbDEMHandler.h b/Modules/Adapters/OSSIMAdapters/include/otbDEMHandler.h index 3474bcc8c7..6dd03da5d0 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbDEMHandler.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbDEMHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbDateTimeAdapter.h b/Modules/Adapters/OSSIMAdapters/include/otbDateTimeAdapter.h index 82de9616b4..9462923d39 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbDateTimeAdapter.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbDateTimeAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbEllipsoidAdapter.h b/Modules/Adapters/OSSIMAdapters/include/otbEllipsoidAdapter.h index 3d8b89304d..1621480490 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbEllipsoidAdapter.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbEllipsoidAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbImageKeywordlist.h b/Modules/Adapters/OSSIMAdapters/include/otbImageKeywordlist.h index 7a3bdfd6e8..c290a1d070 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbImageKeywordlist.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbImageKeywordlist.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbRPCSolverAdapter.h b/Modules/Adapters/OSSIMAdapters/include/otbRPCSolverAdapter.h index 99859f3a4e..09649170a4 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbRPCSolverAdapter.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbRPCSolverAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbSarSensorModelAdapter.h b/Modules/Adapters/OSSIMAdapters/include/otbSarSensorModelAdapter.h index 777f396e24..344db4c659 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbSarSensorModelAdapter.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbSarSensorModelAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/include/otbSensorModelAdapter.h b/Modules/Adapters/OSSIMAdapters/include/otbSensorModelAdapter.h index c72d7a8abd..aa4726d4d9 100644 --- a/Modules/Adapters/OSSIMAdapters/include/otbSensorModelAdapter.h +++ b/Modules/Adapters/OSSIMAdapters/include/otbSensorModelAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/otb-module.cmake b/Modules/Adapters/OSSIMAdapters/otb-module.cmake index 265c6f9232..346059b6ae 100644 --- a/Modules/Adapters/OSSIMAdapters/otb-module.cmake +++ b/Modules/Adapters/OSSIMAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt b/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt index 9e5e00c634..a12d2b6efc 100644 --- a/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/OSSIMAdapters/src/otbDEMHandler.cxx b/Modules/Adapters/OSSIMAdapters/src/otbDEMHandler.cxx index 5fb4dcfd5f..92c9ce40b3 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbDEMHandler.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbDEMHandler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbDateTimeAdapter.cxx b/Modules/Adapters/OSSIMAdapters/src/otbDateTimeAdapter.cxx index c63c5bb98e..e22d75aa2d 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbDateTimeAdapter.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbDateTimeAdapter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbEllipsoidAdapter.cxx b/Modules/Adapters/OSSIMAdapters/src/otbEllipsoidAdapter.cxx index 8f20cb74f2..a3b4ee8942 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbEllipsoidAdapter.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbEllipsoidAdapter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbImageKeywordlist.cxx b/Modules/Adapters/OSSIMAdapters/src/otbImageKeywordlist.cxx index 03715f28f6..453d246534 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbImageKeywordlist.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbImageKeywordlist.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx b/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx index 48e58fb872..fed3560e03 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbSarSensorModelAdapter.cxx b/Modules/Adapters/OSSIMAdapters/src/otbSarSensorModelAdapter.cxx index 8f80499034..fc2a74139d 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbSarSensorModelAdapter.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbSarSensorModelAdapter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/src/otbSensorModelAdapter.cxx b/Modules/Adapters/OSSIMAdapters/src/otbSensorModelAdapter.cxx index 799e340e8a..629cf6e6ff 100644 --- a/Modules/Adapters/OSSIMAdapters/src/otbSensorModelAdapter.cxx +++ b/Modules/Adapters/OSSIMAdapters/src/otbSensorModelAdapter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt b/Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt index 51a0d3af8f..6a3aed38b9 100644 --- a/Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Adapters/OSSIMAdapters/test/otbDEMHandlerTest.cxx b/Modules/Adapters/OSSIMAdapters/test/otbDEMHandlerTest.cxx index 41eef979e6..7388ca058c 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbDEMHandlerTest.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbDEMHandlerTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx b/Modules/Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx index 1a9cc40926..6346389566 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest2.cxx b/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest2.cxx index a22e5cd82e..0dcf7e8bd6 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest2.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest4.cxx b/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest4.cxx index 312ed7b6cf..4fb258cb13 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest4.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbOssimElevManagerTest4.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbOssimJpegFileResourceLeakTest.cxx b/Modules/Adapters/OSSIMAdapters/test/otbOssimJpegFileResourceLeakTest.cxx index 8ee9646f4f..a9af13b1a3 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbOssimJpegFileResourceLeakTest.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbOssimJpegFileResourceLeakTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbRPCSolverAdapterTest.cxx b/Modules/Adapters/OSSIMAdapters/test/otbRPCSolverAdapterTest.cxx index 2c12bf5ab2..10f0514383 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbRPCSolverAdapterTest.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbRPCSolverAdapterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbSarSensorModelAdapterTest.cxx b/Modules/Adapters/OSSIMAdapters/test/otbSarSensorModelAdapterTest.cxx index 52b8780688..9ae2f1dc2b 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbSarSensorModelAdapterTest.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbSarSensorModelAdapterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Adapters/OSSIMAdapters/test/otbTestImageKeywordlist.cxx b/Modules/Adapters/OSSIMAdapters/test/otbTestImageKeywordlist.cxx index 4d89e46f56..963a7d840e 100644 --- a/Modules/Adapters/OSSIMAdapters/test/otbTestImageKeywordlist.cxx +++ b/Modules/Adapters/OSSIMAdapters/test/otbTestImageKeywordlist.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 51536dad5d..7023a02fea 100644 --- a/Modules/Adapters/QtAdapters/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6d9bde5f28..1534a30de5 100644 --- a/Modules/Adapters/QtAdapters/include/otbQtAdapters.h +++ b/Modules/Adapters/QtAdapters/include/otbQtAdapters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a36d2da506..10b7f11c7f 100644 --- a/Modules/Adapters/QtAdapters/otb-module.cmake +++ b/Modules/Adapters/QtAdapters/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 10769560e8..3517238aeb 100644 --- a/Modules/Adapters/QtAdapters/src/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2da765bb2c..4caa279a79 100644 --- a/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx +++ b/Modules/Adapters/QtAdapters/src/otbQtAdapters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0eb8d0c87c..e8f7e25254 100644 --- a/Modules/Adapters/QtAdapters/test/CMakeLists.txt +++ b/Modules/Adapters/QtAdapters/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0e23ca00a3..248a6c54e5 100644 --- a/Modules/Applications/AppChangeDetection/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7f1ba4c9be..2c970d365a 100644 --- a/Modules/Applications/AppChangeDetection/app/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 67c4cd5b15..d6da353e8c 100644 --- a/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx +++ b/Modules/Applications/AppChangeDetection/app/otbMultivariateAlterationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a882494a28..a586e145e2 100644 --- a/Modules/Applications/AppChangeDetection/otb-module.cmake +++ b/Modules/Applications/AppChangeDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 daa0e3b311..fd3612db46 100644 --- a/Modules/Applications/AppChangeDetection/test/CMakeLists.txt +++ b/Modules/Applications/AppChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2ad80068d8..0b48c0995f 100644 --- a/Modules/Applications/AppClassification/CMakeLists.txt +++ b/Modules/Applications/AppClassification/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 dec69e29e9..298e3bb3ea 100644 --- a/Modules/Applications/AppClassification/app/CMakeLists.txt +++ b/Modules/Applications/AppClassification/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c4604c2e9c..1c8748d56f 100644 --- a/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx +++ b/Modules/Applications/AppClassification/app/otbClassificationMapRegularization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 04aa37fbd5..48293af9af 100644 --- a/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeConfusionMatrix.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fe542c6b8d..0e01df32a0 100644 --- a/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeImagesStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b941f38c87..3cc67a2570 100644 --- a/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbComputeOGRLayersFeaturesStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 67018407b9..97d1ad0b88 100644 --- a/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx +++ b/Modules/Applications/AppClassification/app/otbFusionOfClassifications.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9edc7c716c..548e1a2a86 100644 --- a/Modules/Applications/AppClassification/app/otbImageClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbImageClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 02aa8986da..ea743b97fb 100644 --- a/Modules/Applications/AppClassification/app/otbImageRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbImageRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 58a875b543..c335697636 100644 --- a/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx +++ b/Modules/Applications/AppClassification/app/otbKMeansClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ba34fb1e51..4ce60a4213 100644 --- a/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx +++ b/Modules/Applications/AppClassification/app/otbMultiImageSamplingRate.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9192c38a2..221d42f2f9 100644 --- a/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbOGRLayerClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 21c4edcdfe..0a7979ba28 100644 --- a/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx +++ b/Modules/Applications/AppClassification/app/otbPolygonClassStatistics.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dd560c775a..8c10fed6d3 100644 --- a/Modules/Applications/AppClassification/app/otbSOMClassification.cxx +++ b/Modules/Applications/AppClassification/app/otbSOMClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 967a84a2e1..a5ec09d83f 100644 --- a/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleAugmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 76b13103f9..ad66167908 100644 --- a/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fb109d463b..daf849099e 100644 --- a/Modules/Applications/AppClassification/app/otbSampleSelection.cxx +++ b/Modules/Applications/AppClassification/app/otbSampleSelection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 67ca2c21e2..2b80a7fa9f 100644 --- a/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainImagesClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 42cc299718..781770dea0 100644 --- a/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainImagesRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 51b5d71fe4..038f60c62b 100644 --- a/Modules/Applications/AppClassification/app/otbTrainRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e8da413ea2..94ee4ecbb2 100644 --- a/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainVectorClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b96761b21a..58d83cf14a 100644 --- a/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbTrainVectorRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4308f19ac6..d753c1777d 100644 --- a/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbVectorClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d4e23d4e49..2f9a047f5f 100644 --- a/Modules/Applications/AppClassification/app/otbVectorRegression.cxx +++ b/Modules/Applications/AppClassification/app/otbVectorRegression.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f6c91fc565..1a473b9e27 100644 --- a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h +++ b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e402166313..2efa7fb55e 100644 --- a/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx +++ b/Modules/Applications/AppClassification/include/otbLearningApplicationBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6c831522a8..beff81c25c 100644 --- a/Modules/Applications/AppClassification/include/otbTrainBoost.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainBoost.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e9c6416321..4cbcb4b705 100644 --- a/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainDecisionTree.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7b0ce54662..e3f821ac6e 100644 --- a/Modules/Applications/AppClassification/include/otbTrainImagesBase.h +++ b/Modules/Applications/AppClassification/include/otbTrainImagesBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 85e2857782..207a11b391 100644 --- a/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainImagesBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9ea9a91e4b..056b4fb965 100644 --- a/Modules/Applications/AppClassification/include/otbTrainKNN.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainKNN.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8ac23cc879..160fccfc0f 100644 --- a/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainLibSVM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6047eab2f7..35af597bdb 100644 --- a/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainNeuralNetwork.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4f090b42e2..dc3ee3382d 100644 --- a/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainNormalBayes.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 799de6d5df..80ba16ccdc 100644 --- a/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainRandomForests.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 06ae626f62..8c2daa86f9 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSVM.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSVM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b517a937cf..a56b377c31 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSharkKMeans.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 55beff2618..5ce351c62d 100644 --- a/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainSharkRandomForests.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ab5cd8740b..ae19d2c218 100644 --- a/Modules/Applications/AppClassification/include/otbTrainVectorBase.h +++ b/Modules/Applications/AppClassification/include/otbTrainVectorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 834be9e9f5..36b748b06a 100644 --- a/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx +++ b/Modules/Applications/AppClassification/include/otbTrainVectorBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8dd7004c4b..4063d2f85b 100644 --- a/Modules/Applications/AppClassification/include/otbVectorPrediction.h +++ b/Modules/Applications/AppClassification/include/otbVectorPrediction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9e5d97c8d2..fc3ff8c65f 100644 --- a/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx +++ b/Modules/Applications/AppClassification/include/otbVectorPrediction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a35bd17816..6ebbe5307c 100644 --- a/Modules/Applications/AppClassification/otb-module.cmake +++ b/Modules/Applications/AppClassification/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8e99d91e33..5ae60b15b8 100644 --- a/Modules/Applications/AppClassification/test/CMakeLists.txt +++ b/Modules/Applications/AppClassification/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8f46c82995..beb6c40033 100644 --- a/Modules/Applications/AppDescriptors/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 44a6963e8f..4aefc2d881 100644 --- a/Modules/Applications/AppDescriptors/app/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 24f4eb8b95..653c330272 100644 --- a/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx +++ b/Modules/Applications/AppDescriptors/app/otbHomologousPointsExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8e7618f292..e459b1b4ce 100644 --- a/Modules/Applications/AppDescriptors/otb-module.cmake +++ b/Modules/Applications/AppDescriptors/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3b2f300ced..aaee13b3d3 100644 --- a/Modules/Applications/AppDescriptors/test/CMakeLists.txt +++ b/Modules/Applications/AppDescriptors/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 19bbaa728c..eddb9b56c0 100644 --- a/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 4a108ce0f2..835d6ad5a5 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9463c67405..e655cd4d7a 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c8c1be7e94..0e9546ba50 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbImageDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6959a9f8f1..6961b0bc1c 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbTrainDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d196e3bff6..5eadf8188f 100644 --- a/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx +++ b/Modules/Applications/AppDimensionalityReduction/app/otbVectorDimensionalityReduction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8ff5c9e5d1..b138612384 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e90289c8d3..59d43a0de7 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5760310c8b..0d7fbd1a95 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f0e9d0edfe..8f0288114b 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3114d973df..f680d53c3c 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6e49ef078b..c227065d5b 100644 --- a/Modules/Applications/AppDimensionalityReduction/otb-module.cmake +++ b/Modules/Applications/AppDimensionalityReduction/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 82d8b013b9..2aabc822b4 100644 --- a/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt +++ b/Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a65d749ecd..a3c7bb381b 100644 --- a/Modules/Applications/AppDomainTransform/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 baa0de1257..847a7f0255 100644 --- a/Modules/Applications/AppDomainTransform/app/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fe675fb55c..eebe1c8535 100644 --- a/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx +++ b/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c763e766c2..971bb3ac2c 100644 --- a/Modules/Applications/AppDomainTransform/otb-module.cmake +++ b/Modules/Applications/AppDomainTransform/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 80cc68c25f..58ab158589 100644 --- a/Modules/Applications/AppDomainTransform/test/CMakeLists.txt +++ b/Modules/Applications/AppDomainTransform/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 619f6b8ea2..80fe2fbc94 100644 --- a/Modules/Applications/AppEdge/CMakeLists.txt +++ b/Modules/Applications/AppEdge/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 bf52809122..db9c539494 100644 --- a/Modules/Applications/AppEdge/app/CMakeLists.txt +++ b/Modules/Applications/AppEdge/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d9b6992359..755503246e 100644 --- a/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx +++ b/Modules/Applications/AppEdge/app/otbEdgeExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fc79795e4d..53914202da 100644 --- a/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx +++ b/Modules/Applications/AppEdge/app/otbLineSegmentDetection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf6a30856f..e2b9590b9c 100644 --- a/Modules/Applications/AppEdge/otb-module.cmake +++ b/Modules/Applications/AppEdge/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c5eb278ce0..c51bbaea26 100644 --- a/Modules/Applications/AppEdge/test/CMakeLists.txt +++ b/Modules/Applications/AppEdge/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 87c84a7998..df87e17b33 100644 --- a/Modules/Applications/AppFiltering/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3d31246802..2a8bf41c4d 100644 --- a/Modules/Applications/AppFiltering/app/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c62aa0decd..d2808c202e 100644 --- a/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx +++ b/Modules/Applications/AppFiltering/app/otbContrastEnhancement.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c6e12f241b..5fa6b5e8d4 100644 --- a/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx +++ b/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2018 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4803bc7e93..fc96c26f2d 100644 --- a/Modules/Applications/AppFiltering/app/otbSmoothing.cxx +++ b/Modules/Applications/AppFiltering/app/otbSmoothing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 768d5485bf..f711159e26 100644 --- a/Modules/Applications/AppFiltering/otb-module.cmake +++ b/Modules/Applications/AppFiltering/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 73fad582ae..cc4c8e6d32 100644 --- a/Modules/Applications/AppFiltering/test/CMakeLists.txt +++ b/Modules/Applications/AppFiltering/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 34432a8f09..5cb0858c3d 100644 --- a/Modules/Applications/AppFusion/CMakeLists.txt +++ b/Modules/Applications/AppFusion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 83f5a0cb52..e86007f424 100644 --- a/Modules/Applications/AppFusion/app/CMakeLists.txt +++ b/Modules/Applications/AppFusion/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 607e7fae7c..f06633cdb4 100644 --- a/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx +++ b/Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f5bf1b0d5f..9bbb7ccf37 100644 --- a/Modules/Applications/AppFusion/app/otbPansharpening.cxx +++ b/Modules/Applications/AppFusion/app/otbPansharpening.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 df1f617c86..9a7dafa017 100644 --- a/Modules/Applications/AppFusion/otb-module.cmake +++ b/Modules/Applications/AppFusion/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d94aaf02a7..0577eaa786 100644 --- a/Modules/Applications/AppFusion/test/CMakeLists.txt +++ b/Modules/Applications/AppFusion/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 970543da4c..6f09e653ce 100644 --- a/Modules/Applications/AppHyperspectral/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fa72364e74..062aecb339 100644 --- a/Modules/Applications/AppHyperspectral/app/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3b0a892f09..1291c89a4b 100644 --- a/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 526c50de0d..752e7db01e 100644 --- a/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3809ef5440..7fede9ec07 100644 --- a/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbLocalRxDetection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce46ae5f72..889bb0de01 100644 --- a/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbVertexComponentAnalysis.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 98d9cd527d..c75fbc6d60 100644 --- a/Modules/Applications/AppHyperspectral/otb-module.cmake +++ b/Modules/Applications/AppHyperspectral/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9d7a04bf7e..1a9b6ae1e8 100644 --- a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 661a29b0de..dab8d923a2 100644 --- a/Modules/Applications/AppImageUtils/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 4c393e458d..8f2981b694 100644 --- a/Modules/Applications/AppImageUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8afbeda9d6..3820cf43ce 100644 --- a/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx +++ b/Modules/Applications/AppImageUtils/app/otbColorMapping.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4f597e1a0a..bf7ed517eb 100644 --- a/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx +++ b/Modules/Applications/AppImageUtils/app/otbCompareImages.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5f7efe6325..cceddd15bd 100644 --- a/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx +++ b/Modules/Applications/AppImageUtils/app/otbConcatenateImages.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Applications/AppImageUtils/app/otbDownloadSRTMTiles.cxx b/Modules/Applications/AppImageUtils/app/otbDownloadSRTMTiles.cxx index c28e9e10f1..2c56e61505 100644 --- a/Modules/Applications/AppImageUtils/app/otbDownloadSRTMTiles.cxx +++ b/Modules/Applications/AppImageUtils/app/otbDownloadSRTMTiles.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0aa340849d..3212cb2a4d 100644 --- a/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx +++ b/Modules/Applications/AppImageUtils/app/otbDynamicConvert.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 707889a3c7..4dbab35664 100644 --- a/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx +++ b/Modules/Applications/AppImageUtils/app/otbExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c9e1660dbc..7fd7fed0d2 100644 --- a/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx +++ b/Modules/Applications/AppImageUtils/app/otbManageNoData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fda65b2b7c..8ae68279eb 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93adab953c..b363c05345 100644 --- a/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx +++ b/Modules/Applications/AppImageUtils/app/otbMultiResolutionPyramid.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce7edc9dad..67acfe116e 100644 --- a/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx +++ b/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9523e889c..5f6c304aad 100644 --- a/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx +++ b/Modules/Applications/AppImageUtils/app/otbQuicklook.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9b8a6ccc42..c4ea4414a1 100644 --- a/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx +++ b/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d386d3fc71..8e0e8ded57 100644 --- a/Modules/Applications/AppImageUtils/app/otbRescale.cxx +++ b/Modules/Applications/AppImageUtils/app/otbRescale.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9a116c5b3a..d57ac6b54f 100644 --- a/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx +++ b/Modules/Applications/AppImageUtils/app/otbSplitImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6b8beb4be2..07503af91d 100644 --- a/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx +++ b/Modules/Applications/AppImageUtils/app/otbTileFusion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0b75500469..758df41a15 100644 --- a/Modules/Applications/AppImageUtils/otb-module.cmake +++ b/Modules/Applications/AppImageUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 73a1ed86a3..350b31b3df 100644 --- a/Modules/Applications/AppImageUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppImageUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c265667a05..5a43050bdf 100644 --- a/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx +++ b/Modules/Applications/AppImageUtils/test/otbAppImageUtilsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 543bc4bafb..fc6542be7b 100644 --- a/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx +++ b/Modules/Applications/AppImageUtils/test/otbExtractROIAppTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 00019c6a34..5745c5adf7 100644 --- a/Modules/Applications/AppIndices/CMakeLists.txt +++ b/Modules/Applications/AppIndices/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 89d74a2c32..fd671697f9 100644 --- a/Modules/Applications/AppIndices/app/CMakeLists.txt +++ b/Modules/Applications/AppIndices/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 654ca832cd..8c2bcd18e5 100644 --- a/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx +++ b/Modules/Applications/AppIndices/app/otbRadiometricIndices.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3c100b67fa..42d5dcb429 100644 --- a/Modules/Applications/AppIndices/otb-module.cmake +++ b/Modules/Applications/AppIndices/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 49b99a5595..444a58261b 100644 --- a/Modules/Applications/AppIndices/test/CMakeLists.txt +++ b/Modules/Applications/AppIndices/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e8e4c6d42f..420c7257d5 100644 --- a/Modules/Applications/AppKMZ/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5dfed2343d..29f6af078a 100644 --- a/Modules/Applications/AppKMZ/app/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 14de31bd43..40c5e8d3e6 100644 --- a/Modules/Applications/AppKMZ/app/otbKmzExport.cxx +++ b/Modules/Applications/AppKMZ/app/otbKmzExport.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5ae2c2fc61..a6c3b97a48 100644 --- a/Modules/Applications/AppKMZ/otb-module.cmake +++ b/Modules/Applications/AppKMZ/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a69fde7863..7649e98188 100644 --- a/Modules/Applications/AppKMZ/test/CMakeLists.txt +++ b/Modules/Applications/AppKMZ/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 12b2abcdb5..500a6c56e5 100644 --- a/Modules/Applications/AppMathParser/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b6b22d4699..4e97f026e4 100644 --- a/Modules/Applications/AppMathParser/app/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6bacc023d2..916128240e 100644 --- a/Modules/Applications/AppMathParser/app/otbBandMath.cxx +++ b/Modules/Applications/AppMathParser/app/otbBandMath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b9cb426d67..cb707c1376 100644 --- a/Modules/Applications/AppMathParser/otb-module.cmake +++ b/Modules/Applications/AppMathParser/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 022d639061..eb86c5b6b5 100644 --- a/Modules/Applications/AppMathParser/test/CMakeLists.txt +++ b/Modules/Applications/AppMathParser/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 4965233ce5..304b1226d1 100644 --- a/Modules/Applications/AppMathParserX/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e21df120c3..e291c28f46 100644 --- a/Modules/Applications/AppMathParserX/app/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 12d2886911..580f6d32f1 100644 --- a/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx +++ b/Modules/Applications/AppMathParserX/app/otbBandMathX.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 eda0082072..d4624ed50b 100644 --- a/Modules/Applications/AppMathParserX/otb-module.cmake +++ b/Modules/Applications/AppMathParserX/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 65e464ffec..2f4102aad7 100644 --- a/Modules/Applications/AppMathParserX/test/CMakeLists.txt +++ b/Modules/Applications/AppMathParserX/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0ebb533ac1..042b06d20b 100644 --- a/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx +++ b/Modules/Applications/AppMathParserX/test/otbBandMathXAppTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7de11d83d5..35e0b3287e 100644 --- a/Modules/Applications/AppMoments/CMakeLists.txt +++ b/Modules/Applications/AppMoments/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f8fe78ee11..bbd1ef231e 100644 --- a/Modules/Applications/AppMoments/app/CMakeLists.txt +++ b/Modules/Applications/AppMoments/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 420ec2b9c0..11a46545c2 100644 --- a/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx +++ b/Modules/Applications/AppMoments/app/otbLocalStatisticExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6be2bec222..74a0db771d 100644 --- a/Modules/Applications/AppMoments/otb-module.cmake +++ b/Modules/Applications/AppMoments/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 567ccb1c09..a6b93e5f6e 100644 --- a/Modules/Applications/AppMoments/test/CMakeLists.txt +++ b/Modules/Applications/AppMoments/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d6ca672305..375e033879 100644 --- a/Modules/Applications/AppMorphology/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7b3f47c7c0..5badcae472 100644 --- a/Modules/Applications/AppMorphology/app/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 2dc489f4bd..4b6816e2c7 100644 --- a/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx +++ b/Modules/Applications/AppMorphology/app/otbBinaryMorphologicalOperation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 576bc7fb4e..a2d7ed7c3e 100644 --- a/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx +++ b/Modules/Applications/AppMorphology/app/otbGrayScaleMorphologicalOperation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 498e078414..4f1f20b12e 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 698e7ce473..ba96f66495 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalMultiScaleDecomposition.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf11a32e5d..b9d30e7d5e 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4926fbb72f..df15e25a25 100644 --- a/Modules/Applications/AppMorphology/otb-module.cmake +++ b/Modules/Applications/AppMorphology/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cbeb694853..263322896d 100644 --- a/Modules/Applications/AppMorphology/test/CMakeLists.txt +++ b/Modules/Applications/AppMorphology/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d7d8afcfef..699f4f3ad5 100644 --- a/Modules/Applications/AppOpticalCalibration/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7e44ac1520..2ed0c4f4e8 100644 --- a/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 866f176c09..fa05c2169b 100644 --- a/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx +++ b/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d1c75ac114..6206fcdd8e 100644 --- a/Modules/Applications/AppOpticalCalibration/otb-module.cmake +++ b/Modules/Applications/AppOpticalCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d0d2776983..03827191e6 100644 --- a/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt +++ b/Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c62f76f514..f0d330cda2 100644 --- a/Modules/Applications/AppProjection/CMakeLists.txt +++ b/Modules/Applications/AppProjection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 94f88b16d3..fb00e931f9 100644 --- a/Modules/Applications/AppProjection/app/CMakeLists.txt +++ b/Modules/Applications/AppProjection/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0cc3fc875d..1582d65c97 100644 --- a/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbConvertCartoToGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 18f0fab64a..2104388cd2 100644 --- a/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbConvertSensorToGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 670d1ab1eb..ae0432c400 100644 --- a/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx +++ b/Modules/Applications/AppProjection/app/otbGenerateRPCSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b7ad47b1ea..0a4ce5c264 100644 --- a/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx +++ b/Modules/Applications/AppProjection/app/otbGridBasedImageResampling.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4993d22ba9..c35d90c285 100644 --- a/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx +++ b/Modules/Applications/AppProjection/app/otbImageEnvelope.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c8ed5b4d97..f420382ca5 100644 --- a/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx +++ b/Modules/Applications/AppProjection/app/otbObtainUTMZoneFromGeoPoint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8d00e7e61f..ae1916ca7e 100644 --- a/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx +++ b/Modules/Applications/AppProjection/app/otbOrthoRectification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c3c42ef90d..4796181cba 100644 --- a/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx +++ b/Modules/Applications/AppProjection/app/otbRefineSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6992a82394..7b64435eb8 100644 --- a/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx +++ b/Modules/Applications/AppProjection/app/otbRigidTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 40b9d592cd..2edfa2aeeb 100644 --- a/Modules/Applications/AppProjection/app/otbSuperimpose.cxx +++ b/Modules/Applications/AppProjection/app/otbSuperimpose.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d13debcd5e..0b4656b125 100644 --- a/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx +++ b/Modules/Applications/AppProjection/app/otbVectorDataReprojection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7ff85a201e..710967984e 100644 --- a/Modules/Applications/AppProjection/otb-module.cmake +++ b/Modules/Applications/AppProjection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7a9e6d2c8c..4637dacd5f 100644 --- a/Modules/Applications/AppProjection/test/CMakeLists.txt +++ b/Modules/Applications/AppProjection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b7881870c4..426a631426 100644 --- a/Modules/Applications/AppSARCalibration/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5d3414ccb6..442cefcf50 100644 --- a/Modules/Applications/AppSARCalibration/app/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a4b112bcbf..797b175158 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARBurstExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5309556c43..9b334fa966 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARCalibration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 853d64fe86..c96db1f981 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARConcatenateBursts.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 283eb29c19..a8a0c5402b 100644 --- a/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx +++ b/Modules/Applications/AppSARCalibration/app/otbSARDeburst.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 67bb833544..4b6fe0f3f8 100644 --- a/Modules/Applications/AppSARCalibration/otb-module.cmake +++ b/Modules/Applications/AppSARCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b92acf552f..c05cde1361 100644 --- a/Modules/Applications/AppSARCalibration/test/CMakeLists.txt +++ b/Modules/Applications/AppSARCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0ae7027a77..f59485ef74 100644 --- a/Modules/Applications/AppSARDecompositions/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0a932091e3..fc07221ce2 100644 --- a/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 625c2c6f20..425a608973 100644 --- a/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx +++ b/Modules/Applications/AppSARDecompositions/app/otbSARDecompositions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7ea45f44c5..7cc2ed5379 100644 --- a/Modules/Applications/AppSARDecompositions/otb-module.cmake +++ b/Modules/Applications/AppSARDecompositions/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0d31ba626b..308ae96926 100644 --- a/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt +++ b/Modules/Applications/AppSARDecompositions/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 bac004a16d..14fa0b048e 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 45ce8ba52b..495d76f555 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a772a24ea8..2a6796ccf1 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx +++ b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 71c58fe273..d16cde1cab 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake +++ b/Modules/Applications/AppSARPolarMatrixConvert/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 56ed2b28b4..6b75d79a9e 100644 --- a/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarMatrixConvert/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 027884662b..e8dbf9c320 100644 --- a/Modules/Applications/AppSARPolarSynth/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e64bd7e882..0fd2a97aef 100644 --- a/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fd88a8f05a..1a1de2175a 100644 --- a/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx +++ b/Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 48edaeb24f..33998128bd 100644 --- a/Modules/Applications/AppSARPolarSynth/otb-module.cmake +++ b/Modules/Applications/AppSARPolarSynth/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 34f92dc162..8f26f17b8f 100644 --- a/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt +++ b/Modules/Applications/AppSARPolarSynth/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a6415e933e..86a32487ed 100644 --- a/Modules/Applications/AppSARUtils/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6b62febf03..1cc0a35935 100644 --- a/Modules/Applications/AppSARUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d84780755b..9adc7dfc7b 100644 --- a/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx +++ b/Modules/Applications/AppSARUtils/app/otbComputeModulusAndPhase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d7fb4983cf..001e34b61c 100644 --- a/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx +++ b/Modules/Applications/AppSARUtils/app/otbDespeckle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 145c7d6196..83edf81a9d 100644 --- a/Modules/Applications/AppSARUtils/otb-module.cmake +++ b/Modules/Applications/AppSARUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7350d7a019..fda7d88a24 100644 --- a/Modules/Applications/AppSARUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppSARUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 bcd3c3f3e8..e5f8316c08 100644 --- a/Modules/Applications/AppSegmentation/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 58e73aacae..7bf47fae9c 100644 --- a/Modules/Applications/AppSegmentation/app/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1ebaa2a606..b11319eda7 100644 --- a/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbConnectedComponentSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d12252dc6e..36c41147e8 100644 --- a/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbHooverCompareSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f04ad87139..85486001a6 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b1cf797a90..1daabbd143 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSSmallRegionsMerging.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f2ac45e543..3f9a359504 100644 --- a/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLSMSVectorization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b2f6ea3c8d..e5ecda6d8f 100644 --- a/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx +++ b/Modules/Applications/AppSegmentation/app/otbLargeScaleMeanShift.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a1bcd3b715..2f8f01a1ae 100644 --- a/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx +++ b/Modules/Applications/AppSegmentation/app/otbMeanShiftSmoothing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b60648ecd4..e977261b2b 100644 --- a/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx +++ b/Modules/Applications/AppSegmentation/app/otbSegmentation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f95e2f6e7c..5d29d9e49f 100644 --- a/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx +++ b/Modules/Applications/AppSegmentation/app/otbSmallRegionsMerging.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10c797bea0..6a994aa7e7 100644 --- a/Modules/Applications/AppSegmentation/otb-module.cmake +++ b/Modules/Applications/AppSegmentation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b8a5a84d44..6a43e121e9 100644 --- a/Modules/Applications/AppSegmentation/test/CMakeLists.txt +++ b/Modules/Applications/AppSegmentation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 87e061ab37..f247d9f07e 100644 --- a/Modules/Applications/AppStereo/CMakeLists.txt +++ b/Modules/Applications/AppStereo/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5011282358..0e7ae0c921 100644 --- a/Modules/Applications/AppStereo/app/CMakeLists.txt +++ b/Modules/Applications/AppStereo/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 6e11ca61ca..a21cbb741b 100644 --- a/Modules/Applications/AppStereo/app/otbBlockMatching.cxx +++ b/Modules/Applications/AppStereo/app/otbBlockMatching.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f7f49154f2..3bbd24ac73 100644 --- a/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx +++ b/Modules/Applications/AppStereo/app/otbDisparityMapToElevationMap.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8c6186cba4..4aceb17572 100644 --- a/Modules/Applications/AppStereo/app/otbFineRegistration.cxx +++ b/Modules/Applications/AppStereo/app/otbFineRegistration.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1dd7cada3e..c7f79b7e2b 100644 --- a/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx +++ b/Modules/Applications/AppStereo/app/otbGeneratePlyFile.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9314dd1165..6bd5d3377c 100644 --- a/Modules/Applications/AppStereo/app/otbStereoFramework.cxx +++ b/Modules/Applications/AppStereo/app/otbStereoFramework.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a7b84fa154..a2e2d3f33e 100644 --- a/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx +++ b/Modules/Applications/AppStereo/app/otbStereoRectificationGridGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7205e96863..523b9ac0b4 100644 --- a/Modules/Applications/AppStereo/otb-module.cmake +++ b/Modules/Applications/AppStereo/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 497ba0d156..c4fb047ed4 100644 --- a/Modules/Applications/AppStereo/test/CMakeLists.txt +++ b/Modules/Applications/AppStereo/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 333cf2df53..648fecef68 100644 --- a/Modules/Applications/AppTest/CMakeLists.txt +++ b/Modules/Applications/AppTest/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1312e2420d..741ebbd252 100644 --- a/Modules/Applications/AppTest/app/CMakeLists.txt +++ b/Modules/Applications/AppTest/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f9ecc488c0..2857ac8986 100644 --- a/Modules/Applications/AppTest/app/otbTestApplication.cxx +++ b/Modules/Applications/AppTest/app/otbTestApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9b8e3effa..5d06424a58 100644 --- a/Modules/Applications/AppTest/otb-module.cmake +++ b/Modules/Applications/AppTest/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0da6397d89..7494c44620 100644 --- a/Modules/Applications/AppTest/test/CMakeLists.txt +++ b/Modules/Applications/AppTest/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0462493119..496174e00f 100644 --- a/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx +++ b/Modules/Applications/AppTest/test/otbAppTestTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 84e6e4899f..084bbf91a0 100644 --- a/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx +++ b/Modules/Applications/AppTest/test/otbWrapperApplicationDocTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 839bb98646..f8497fdb66 100644 --- a/Modules/Applications/AppTextures/CMakeLists.txt +++ b/Modules/Applications/AppTextures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 35119ec652..60feaefdda 100644 --- a/Modules/Applications/AppTextures/app/CMakeLists.txt +++ b/Modules/Applications/AppTextures/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f40feb89b4..9ccd0f8aa3 100644 --- a/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbHaralickTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5655c7bd5e..0c52199204 100644 --- a/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 405094eee6..5da07e9707 100644 --- a/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx +++ b/Modules/Applications/AppTextures/app/otbSFSTextureExtraction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1f5503d142..7ed2907924 100644 --- a/Modules/Applications/AppTextures/otb-module.cmake +++ b/Modules/Applications/AppTextures/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 074c1d9695..98335783a1 100644 --- a/Modules/Applications/AppTextures/test/CMakeLists.txt +++ b/Modules/Applications/AppTextures/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 13c9b38138..8006e338b5 100644 --- a/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f67767a143..5e3ae60e51 100644 --- a/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 05f7ba865f..c0df1aafb7 100644 --- a/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx +++ b/Modules/Applications/AppVectorDataTranslation/app/otbRasterization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 94344913a8..5dc852f55e 100644 --- a/Modules/Applications/AppVectorDataTranslation/otb-module.cmake +++ b/Modules/Applications/AppVectorDataTranslation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a8dd3d86a9..387c1f43dd 100644 --- a/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt +++ b/Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aee5068fd7..d3bbc61197 100644 --- a/Modules/Applications/AppVectorUtils/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 877d7622d2..80d835c1e2 100644 --- a/Modules/Applications/AppVectorUtils/app/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/app/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7f5dbb5e89..232d4594b2 100644 --- a/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbConcatenateVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6eafcedb75..6320c93e2e 100644 --- a/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 457fa28304..54648775d6 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6a8904fe8b..3dc16820ea 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataSetField.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 00bd39a81c..272b526252 100644 --- a/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx +++ b/Modules/Applications/AppVectorUtils/app/otbVectorDataTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1559faa8af..c9b07824cb 100644 --- a/Modules/Applications/AppVectorUtils/otb-module.cmake +++ b/Modules/Applications/AppVectorUtils/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b7c6de1e11..210e346d18 100644 --- a/Modules/Applications/AppVectorUtils/test/CMakeLists.txt +++ b/Modules/Applications/AppVectorUtils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1ac5f03b69..b3f56865b3 100644 --- a/Modules/Core/Common/CMakeLists.txt +++ b/Modules/Core/Common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 097b24339e..7d6fd9ac77 100644 --- a/Modules/Core/Common/include/otbCast.h +++ b/Modules/Core/Common/include/otbCast.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bbf86e41ac..9c311e0e11 100644 --- a/Modules/Core/Common/include/otbChannelSelectorFunctor.h +++ b/Modules/Core/Common/include/otbChannelSelectorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 522b516e90..2da25a36fe 100644 --- a/Modules/Core/Common/include/otbCommandProgressUpdate.h +++ b/Modules/Core/Common/include/otbCommandProgressUpdate.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 33fb88ab23..dc6bb4cc59 100644 --- a/Modules/Core/Common/include/otbCommandProgressUpdate.hxx +++ b/Modules/Core/Common/include/otbCommandProgressUpdate.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 eb381badd1..5a7bab6953 100644 --- a/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h +++ b/Modules/Core/Common/include/otbComplexToIntensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 915a499f05..15a3982f64 100644 --- a/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h +++ b/Modules/Core/Common/include/otbComplexToVectorImageCastFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 db70d02c0d..6768fb8853 100644 --- a/Modules/Core/Common/include/otbConfigurationManager.h +++ b/Modules/Core/Common/include/otbConfigurationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 16609d8fd6..b826bc8be2 100644 --- a/Modules/Core/Common/include/otbDecimateImageFilter.h +++ b/Modules/Core/Common/include/otbDecimateImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0a94a6dd25..38ff386dd1 100644 --- a/Modules/Core/Common/include/otbDecimateImageFilter.hxx +++ b/Modules/Core/Common/include/otbDecimateImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6971470976..da9b2b69c7 100644 --- a/Modules/Core/Common/include/otbExtendedFilenameHelper.h +++ b/Modules/Core/Common/include/otbExtendedFilenameHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 eabc1a6bdc..cf43cd5ccb 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3e98ca5c71..a4db56054c 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8267f6536f..7decf5343d 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5c5f8f3eb6..a40b3b715a 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d646cd3a38..7514e897da 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fbb9a3abae..e170b7d92c 100644 --- a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f36fb4a57a..76a3b60664 100644 --- a/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionAdaptativeSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9577494aa3..b0d4b4532e 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a697bc54d2..3f68409243 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 79dc445ad4..7a060a2fef 100644 --- a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9491c79436..2f6f6bad2c 100644 --- a/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionSquareTileSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5305a6fb92..3e8b04ee4d 100644 --- a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h +++ b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a8fc8d5aa0..1727f48e3b 100644 --- a/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx +++ b/Modules/Core/Common/include/otbImageRegionTileMapSplitter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f75914b3a7..21abcc7bf3 100644 --- a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h +++ b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 13b0bd881c..b30f69ee53 100644 --- a/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx +++ b/Modules/Core/Common/include/otbImageToModulusAndDirectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7c5e4f4d89..f9488217ca 100644 --- a/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h +++ b/Modules/Core/Common/include/otbImaginaryImageToComplexImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9f5dd49893..d0686afe3b 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5c7124db58..3b82c20dda 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3d76b9068d..b58f63616f 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ccd6f5159d..547069a608 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e2f50daacf..d8820b73bd 100644 --- a/Modules/Core/Common/include/otbLogger.h +++ b/Modules/Core/Common/include/otbLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 30dd66aca6..59213a3cb2 100644 --- a/Modules/Core/Common/include/otbMacro.h +++ b/Modules/Core/Common/include/otbMacro.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b2ad8950b8..a5f7a74bbe 100644 --- a/Modules/Core/Common/include/otbMath.h +++ b/Modules/Core/Common/include/otbMath.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 27ef0912f2..25964f090b 100644 --- a/Modules/Core/Common/include/otbModelComponentBase.h +++ b/Modules/Core/Common/include/otbModelComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 772f6cca6d..a16dc4a559 100644 --- a/Modules/Core/Common/include/otbModelComponentBase.hxx +++ b/Modules/Core/Common/include/otbModelComponentBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0fe7ebf3bb..76dcd7acd1 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 632d84ba5b..edc3767bad 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 efc8c30925..38b279456b 100644 --- a/Modules/Core/Common/include/otbRGBAPixelConverter.h +++ b/Modules/Core/Common/include/otbRGBAPixelConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a2fb1fed6f..2f63c2632e 100644 --- a/Modules/Core/Common/include/otbRGBAPixelConverter.hxx +++ b/Modules/Core/Common/include/otbRGBAPixelConverter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f9f63ffa42..be7ab95123 100644 --- a/Modules/Core/Common/include/otbRectangle.h +++ b/Modules/Core/Common/include/otbRectangle.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 65b287443f..6ac7234510 100644 --- a/Modules/Core/Common/include/otbRectangle.hxx +++ b/Modules/Core/Common/include/otbRectangle.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 53e56c4507..50fff07dea 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 40b7d671ac..603ac8471f 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3a8a94aeb0..c53c7eea4b 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 55e6d5b247..8bb89f4aec 100644 --- a/Modules/Core/Common/include/otbStandardOutputPrintCallback.h +++ b/Modules/Core/Common/include/otbStandardOutputPrintCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6f923efeed..446a85ea73 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ed95065248..f0b3ea1031 100644 --- a/Modules/Core/Common/include/otbStopwatch.h +++ b/Modules/Core/Common/include/otbStopwatch.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4593fb6fe5..93fe29e303 100644 --- a/Modules/Core/Common/include/otbStringToHTML.h +++ b/Modules/Core/Common/include/otbStringToHTML.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5a2a7844e3..9b2a0aa65d 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h +++ b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e11898a401..6c28c336c4 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx +++ b/Modules/Core/Common/include/otbSubsampledImageRegionConstIterator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 39387573bd..6b15c983ef 100644 --- a/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h +++ b/Modules/Core/Common/include/otbSubsampledImageRegionIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 37e9d93ee9..0c65cf4f49 100644 --- a/Modules/Core/Common/include/otbSystem.h +++ b/Modules/Core/Common/include/otbSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 670aa9614f..321eb8b664 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7abd783549..51fb681fea 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorNeighborhoodVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9dc2b7bc9c..210b31ea59 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 797e96a7d4..e70fa9611c 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6995e76240..4f59de9f2b 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h +++ b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a9874cec7f..6d07f5db57 100644 --- a/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx +++ b/Modules/Core/Common/include/otbUnaryFunctorWithIndexWithOutputSizeImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3bf28ac053..d3a70e6067 100644 --- a/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h +++ b/Modules/Core/Common/include/otbUniformAlphaBlendingFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4d76a35a88..401db64537 100644 --- a/Modules/Core/Common/include/otbUtils.h +++ b/Modules/Core/Common/include/otbUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6739e46948..6398a6217f 100644 --- a/Modules/Core/Common/include/otbVariableLengthVectorConverter.h +++ b/Modules/Core/Common/include/otbVariableLengthVectorConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 036e1ad94b..4ea9526ba8 100644 --- a/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx +++ b/Modules/Core/Common/include/otbVariableLengthVectorConverter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4d9f79ccf7..3792fb91e4 100644 --- a/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h +++ b/Modules/Core/Common/include/otbVectorImageToASImageAdaptor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8856a3ea48..46188183ed 100644 --- a/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h +++ b/Modules/Core/Common/include/otbVectorImageToASPixelAccessor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 722da6f361..5de343e179 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c44e570160..0b9196179b 100644 --- a/Modules/Core/Common/otb-module.cmake +++ b/Modules/Core/Common/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cfbef0afd4..7f6d20d427 100644 --- a/Modules/Core/Common/src/CMakeLists.txt +++ b/Modules/Core/Common/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 93a49234a4..9e31d0f1f9 100644 --- a/Modules/Core/Common/src/otbConfigurationManager.cxx +++ b/Modules/Core/Common/src/otbConfigurationManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ebe59a18bc..3d6c4573e1 100644 --- a/Modules/Core/Common/src/otbConfigure.h.in +++ b/Modules/Core/Common/src/otbConfigure.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 efd11f6ea3..088bee23f8 100644 --- a/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx +++ b/Modules/Core/Common/src/otbExtendedFilenameHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 05c1793e29..d03ee198de 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 663e92dd21..6141c1d765 100644 --- a/Modules/Core/Common/src/otbLogger.cxx +++ b/Modules/Core/Common/src/otbLogger.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 af8937c9b5..cfc2220514 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4e778ca088..84a6380dd1 100644 --- a/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx +++ b/Modules/Core/Common/src/otbStandardOutputPrintCallback.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dc52cc0c31..020634bcc4 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 28cb8fac93..ccb386ff3c 100644 --- a/Modules/Core/Common/src/otbStopwatch.cxx +++ b/Modules/Core/Common/src/otbStopwatch.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10ae6c6f65..bbd4956159 100644 --- a/Modules/Core/Common/src/otbStringToHTML.cxx +++ b/Modules/Core/Common/src/otbStringToHTML.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b55039835f..974cdec3cd 100644 --- a/Modules/Core/Common/src/otbSystem.cxx +++ b/Modules/Core/Common/src/otbSystem.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f067607bd5..b381b0e006 100644 --- a/Modules/Core/Common/src/otbUtils.cxx +++ b/Modules/Core/Common/src/otbUtils.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8eb14c066a..33db493966 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ff73b3f3ea..585160b2f8 100644 --- a/Modules/Core/Common/test/CMakeLists.txt +++ b/Modules/Core/Common/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b659f2360e..07f405b9d9 100644 --- a/Modules/Core/Common/test/otbCommonTestDriver.cxx +++ b/Modules/Core/Common/test/otbCommonTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 691e197cc3..0c0fca7aac 100644 --- a/Modules/Core/Common/test/otbConfigurationManagerTest.cxx +++ b/Modules/Core/Common/test/otbConfigurationManagerTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 521e47232c..ec8c8f954a 100644 --- a/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionAdaptativeSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 46bae9e160..985b59c8d6 100644 --- a/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionNonUniformMultidimensionalSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 65292ff506..1f1749bc45 100644 --- a/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionSquareTileSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cb5aee5dfd..3a83bc7a7e 100644 --- a/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx +++ b/Modules/Core/Common/test/otbImageRegionTileMapSplitter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1e350faa3d..6fd1152c43 100644 --- a/Modules/Core/Common/test/otbRGBAPixelConverter.cxx +++ b/Modules/Core/Common/test/otbRGBAPixelConverter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 40d0a52642..001ea4fac0 100644 --- a/Modules/Core/Common/test/otbRectangle.cxx +++ b/Modules/Core/Common/test/otbRectangle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 db056b3b8f..85fe22aabe 100644 --- a/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx +++ b/Modules/Core/Common/test/otbStandardFilterWatcherNew.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bdb1a3d0ee..5ccb17e05a 100644 --- a/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx +++ b/Modules/Core/Common/test/otbStandardOneLineFilterWatcherTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 458d46518c..95be8ffb2e 100644 --- a/Modules/Core/Common/test/otbStandardWriterWatcher.cxx +++ b/Modules/Core/Common/test/otbStandardWriterWatcher.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3a70280acb..2140249788 100644 --- a/Modules/Core/Common/test/otbStopwatchTest.cxx +++ b/Modules/Core/Common/test/otbStopwatchTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 557f1f527a..829005f6f8 100644 --- a/Modules/Core/Common/test/otbSystemTest.cxx +++ b/Modules/Core/Common/test/otbSystemTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 73ab5e7134..9bde7f42fd 100644 --- a/Modules/Core/ComplexImage/CMakeLists.txt +++ b/Modules/Core/ComplexImage/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aa518474c1..2c6999483e 100644 --- a/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h +++ b/Modules/Core/ComplexImage/include/otbAmplitudePhaseToRGBFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 63a34faddc..b6f0ed37f8 100644 --- a/Modules/Core/ComplexImage/otb-module.cmake +++ b/Modules/Core/ComplexImage/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 8a898d5932..687d4f162b 100644 --- a/Modules/Core/ComplexImage/test/CMakeLists.txt +++ b/Modules/Core/ComplexImage/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 14399d3736..cff63b8354 100644 --- a/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx +++ b/Modules/Core/ComplexImage/test/otbAmplitudePhaseToRGBFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ab124e2017..20aeb26134 100644 --- a/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx +++ b/Modules/Core/ComplexImage/test/otbComplexImageTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 41f966294d..7d34e6d36b 100644 --- a/Modules/Core/Functor/CMakeLists.txt +++ b/Modules/Core/Functor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 58769e142d..6b1843f4d3 100644 --- a/Modules/Core/Functor/include/otbDotProductImageFilter.h +++ b/Modules/Core/Functor/include/otbDotProductImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 052d8a4431..03c493da1e 100644 --- a/Modules/Core/Functor/include/otbFunctorImageFilter.h +++ b/Modules/Core/Functor/include/otbFunctorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0a0e7a6d31..cf39399c98 100644 --- a/Modules/Core/Functor/include/otbFunctorImageFilter.hxx +++ b/Modules/Core/Functor/include/otbFunctorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 923ebaf32b..ab467ad361 100644 --- a/Modules/Core/Functor/include/otbVariadicAddFunctor.h +++ b/Modules/Core/Functor/include/otbVariadicAddFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cfa4665531..da3148fb41 100644 --- a/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h +++ b/Modules/Core/Functor/include/otbVariadicConcatenateFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 79f46a3054..65f7ea2b02 100644 --- a/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h +++ b/Modules/Core/Functor/include/otbVariadicInputsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 60505a03d2..354e9c5494 100644 --- a/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h +++ b/Modules/Core/Functor/include/otbVariadicNamedInputsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b45fb9327d..ea44193f4d 100644 --- a/Modules/Core/Functor/otb-module.cmake +++ b/Modules/Core/Functor/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f30e85eea3..e1492c4cd4 100644 --- a/Modules/Core/Functor/test/CMakeLists.txt +++ b/Modules/Core/Functor/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b0fcf645f4..f1d50195fc 100644 --- a/Modules/Core/Functor/test/otbFunctorImageFilter.cxx +++ b/Modules/Core/Functor/test/otbFunctorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f5e9195cf6..4a822b9f56 100644 --- a/Modules/Core/Functor/test/otbFunctorTestDriver.cxx +++ b/Modules/Core/Functor/test/otbFunctorTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 70a7402e6b..e5d709239f 100644 --- a/Modules/Core/ImageBase/CMakeLists.txt +++ b/Modules/Core/ImageBase/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aed7106166..c43d50167c 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 87d96f2acf..fa0c557d63 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ca73279104..de5479e60a 100644 --- a/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h +++ b/Modules/Core/ImageBase/include/otbDefaultConvertPixelTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 47bb1cb8da..66bc239feb 100644 --- a/Modules/Core/ImageBase/include/otbExtractROI.h +++ b/Modules/Core/ImageBase/include/otbExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 37f5137d70..4f6acb71ea 100644 --- a/Modules/Core/ImageBase/include/otbExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 27c635aa84..ef3af59334 100644 --- a/Modules/Core/ImageBase/include/otbExtractROIBase.h +++ b/Modules/Core/ImageBase/include/otbExtractROIBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 54948d2d1f..2f4c3ac41e 100644 --- a/Modules/Core/ImageBase/include/otbExtractROIBase.hxx +++ b/Modules/Core/ImageBase/include/otbExtractROIBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 29a338f3de..0905f2a8b4 100644 --- a/Modules/Core/ImageBase/include/otbImage.h +++ b/Modules/Core/ImageBase/include/otbImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3325c2fc7b..bc1ead9913 100644 --- a/Modules/Core/ImageBase/include/otbImage.hxx +++ b/Modules/Core/ImageBase/include/otbImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c45c1a8a63..b556ca460d 100644 --- a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h +++ b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 060e9ff116..cb3b663f37 100644 --- a/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx +++ b/Modules/Core/ImageBase/include/otbImageFunctionAdaptor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 45c3541c01..55699547c7 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c586d23729..125c321294 100644 --- a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8eac4abb5e..e10b64236f 100644 --- a/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbImageOfVectorsToMonoChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2d6b9994e5..d3c425344f 100644 --- a/Modules/Core/ImageBase/include/otbMetaImageFunction.h +++ b/Modules/Core/ImageBase/include/otbMetaImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9d1b13eed3..e7ddf096b5 100644 --- a/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx +++ b/Modules/Core/ImageBase/include/otbMetaImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6d26aca8a8..e726a5b03d 100644 --- a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4e73382e49..ab5ed78e0e 100644 --- a/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbMultiChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 796e04ddec..a84c0ca83c 100644 --- a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h +++ b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 223d2f366c..0cae7d34df 100644 --- a/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx +++ b/Modules/Core/ImageBase/include/otbMultiToMonoChannelExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 87ff075590..d7c229f335 100644 --- a/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h +++ b/Modules/Core/ImageBase/include/otbRemoteSensingRegion.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cd771f7924..9f08cc64fd 100644 --- a/Modules/Core/ImageBase/include/otbVectorImage.h +++ b/Modules/Core/ImageBase/include/otbVectorImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e4f04da990..bbc379b0c8 100644 --- a/Modules/Core/ImageBase/include/otbVectorImage.hxx +++ b/Modules/Core/ImageBase/include/otbVectorImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf43d8ba4d..a277aaf3c9 100644 --- a/Modules/Core/ImageBase/otb-module.cmake +++ b/Modules/Core/ImageBase/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 33ef659786..5bce747df0 100644 --- a/Modules/Core/ImageBase/src/CMakeLists.txt +++ b/Modules/Core/ImageBase/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f28a3170f9..bf1f308ce7 100644 --- a/Modules/Core/ImageBase/src/otbImage.cxx +++ b/Modules/Core/ImageBase/src/otbImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b03f76bef6..35fb4884e2 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0673b295ab..fe1da801cb 100644 --- a/Modules/Core/ImageBase/src/otbVectorImage.cxx +++ b/Modules/Core/ImageBase/src/otbVectorImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 20cd019a26..e5ab2f7ecd 100644 --- a/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx +++ b/Modules/Core/ImageBase/test/0000307-ExtractROICompareRegionsImplementations.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 49fa17ff6b..d98a090bab 100644 --- a/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx +++ b/Modules/Core/ImageBase/test/0000428-CastImageFilterStreaming.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fa1a342caf..f1cfd586cc 100644 --- a/Modules/Core/ImageBase/test/CMakeLists.txt +++ b/Modules/Core/ImageBase/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 fd8e0ed8f0..55c0092afd 100644 --- a/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx +++ b/Modules/Core/ImageBase/test/otbComplexToIntensityFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 78551f16c0..9b5d6f6a10 100644 --- a/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx +++ b/Modules/Core/ImageBase/test/otbComplexToVectorImageCastFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4217e9ddb9..9e7d08ab49 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e9f2248ab6..40b1648d6b 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI2.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d3c3061185..2e8d14c248 100644 --- a/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROITestMetaData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a7949907a6..be7dae7283 100644 --- a/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx +++ b/Modules/Core/ImageBase/test/otbExtractROI_RGB.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce6acd9fb1..5f61b4fd17 100644 --- a/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx +++ b/Modules/Core/ImageBase/test/otbFlexibleDistanceWithMissingValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f759f6067f..a1fa7cba81 100644 --- a/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx +++ b/Modules/Core/ImageBase/test/otbFunctionToImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fde114bd20..aee9a4cd41 100644 --- a/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx +++ b/Modules/Core/ImageBase/test/otbImageAndVectorImageOperationFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 13ab9578db..316dd1794b 100644 --- a/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx +++ b/Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 271f21701a..4492462b4b 100644 --- a/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx +++ b/Modules/Core/ImageBase/test/otbImageFunctionAdaptor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dda1e9e498..116978a06c 100644 --- a/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbImageOfVectorsToMonoChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 620367bc15..b3f2cdf2e8 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4c93930877..e404e7a200 100644 --- a/Modules/Core/ImageBase/test/otbImageTest.cxx +++ b/Modules/Core/ImageBase/test/otbImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 57690b281f..a04e4c66c8 100644 --- a/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx +++ b/Modules/Core/ImageBase/test/otbMetaImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2359f42b42..0ea31302df 100644 --- a/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbMultiChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 efca7f2b6a..a02dd2c454 100644 --- a/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx +++ b/Modules/Core/ImageBase/test/otbMultiToMonoChannelExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8f668c93b1..1dc12b7b43 100644 --- a/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx +++ b/Modules/Core/ImageBase/test/otbTestMultiExtractMultiUpdate.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c5a0c743bd..3704869650 100644 --- a/Modules/Core/ImageBase/test/otbVectorImageTest.cxx +++ b/Modules/Core/ImageBase/test/otbVectorImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 98193e0016..df2a4f2965 100644 --- a/Modules/Core/Interpolation/CMakeLists.txt +++ b/Modules/Core/Interpolation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f70d93c6b6..120d1cd800 100644 --- a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9070621aee..1f11c9bcee 100644 --- a/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbBCOInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 923f6ebaf0..24d967348a 100644 --- a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h +++ b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b99d7b3a2f..ffceb26f81 100644 --- a/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx +++ b/Modules/Core/Interpolation/include/otbBSplineDecompositionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9eb2fa07fe..6190017f98 100644 --- a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c79af6a238..96babb215d 100644 --- a/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbBSplineInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a9b5ee310b..1269d27229 100644 --- a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d43390fdd7..ad914901b5 100644 --- a/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbGenericInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ef255812b3..839af678ca 100644 --- a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h +++ b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a34b616afe..38226923ee 100644 --- a/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx +++ b/Modules/Core/Interpolation/include/otbProlateInterpolateImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 81c3de50b1..871edba60c 100644 --- a/Modules/Core/Interpolation/include/otbStreamingTraits.h +++ b/Modules/Core/Interpolation/include/otbStreamingTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0d777589f2..8ba9613053 100644 --- a/Modules/Core/Interpolation/include/otbStreamingTraits.hxx +++ b/Modules/Core/Interpolation/include/otbStreamingTraits.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2a5c020ea1..e891acbc0f 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageBlackmanFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0296a172d2..ea122f13aa 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageCosineFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 302b7844cc..84356c4894 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9fd53977ae..2a945da66a 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageFunctionBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bb18983ec0..7bbe92482a 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageGaussianFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6a48b814d9..776a144e1e 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageHammingFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ea8ec8769a..03095a87a5 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageLanczosFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6b07f87d87..fc5d29d2ec 100644 --- a/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h +++ b/Modules/Core/Interpolation/include/otbWindowedSincInterpolateImageWelchFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ba83d2cdd0..91c9bfef2e 100644 --- a/Modules/Core/Interpolation/otb-module.cmake +++ b/Modules/Core/Interpolation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 51d13668f8..7176f8b003 100644 --- a/Modules/Core/Interpolation/test/CMakeLists.txt +++ b/Modules/Core/Interpolation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a94b2a02bb..a20da199ff 100644 --- a/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbBCOInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d5f4395b22..ead96e7030 100644 --- a/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx +++ b/Modules/Core/Interpolation/test/otbBSplineDecompositionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d21b9c0de5..b7fc38b4b0 100644 --- a/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbBSplineInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf4739395f..7cc6dc5608 100644 --- a/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx +++ b/Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 aaa2a04af4..ff59846006 100644 --- a/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx +++ b/Modules/Core/Interpolation/test/otbProlateInterpolateImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 af71625aad..b7bde54f6e 100644 --- a/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx +++ b/Modules/Core/Interpolation/test/otbProlateValidationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b690c364a9..5acbfe845a 100644 --- a/Modules/Core/Interpolation/test/otbStreamingTraits.cxx +++ b/Modules/Core/Interpolation/test/otbStreamingTraits.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 864fe8300f..9860b33351 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageBlackmanFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f528971492..24b0e4f0c0 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageCosineFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 982b2161b1..2d354c5a86 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageGaussianFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 60534423a5..0dd662a546 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageHammingFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e7c8c3fe1a..a51fdaa6c3 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageLanczosFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 146b56014e..7cff0d471a 100644 --- a/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx +++ b/Modules/Core/Interpolation/test/otbWindowedSincInterpolateImageWelchFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 766e509f02..2bec8a64e3 100644 --- a/Modules/Core/LabelMap/CMakeLists.txt +++ b/Modules/Core/LabelMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e354a2847b..375a49938e 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapLabelObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2f5e8ec2fc..e99d314150 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapLabelObjectWithClassLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 60ac0ae62d..dc4d753c31 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2baadbf2b6..c7f9f85789 100644 --- a/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbAttributesMapOpeningLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4fb765de29..2415acc8c3 100644 --- a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf53d517b8..06b7ce8100 100644 --- a/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbBandsStatisticsAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 465ff45b16..cd75852dc1 100644 --- a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h +++ b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6d624e5041..da273660ca 100644 --- a/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx +++ b/Modules/Core/LabelMap/include/otbImageToLabelMapWithAttributesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2fb2ddbd0b..95e389c60d 100644 --- a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1d0dac3858..a6375aa60e 100644 --- a/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbKMeansAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 669cd62925..bf12c49bf1 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dad55db19f..99296843e7 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 51bbcb2e90..fdcdd14a20 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1464f784af..18ef707c34 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapSource.h +++ b/Modules/Core/LabelMap/include/otbLabelMapSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d517e30ea8..b95fe491f5 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapSource.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4a9fae78af..73c6ccaeca 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 330be6f38b..3fcd9f1a1f 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapToAttributeImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8277637903..30e3bc88ad 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6db768d930..6da7d29312 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a7252818d7..493624e6a9 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f9a1862b32..56f0cb5c2b 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapToSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 52eebcac55..a841757164 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithAdjacency.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1e9c8ccae4..9482c809bc 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 28066253ef..e3dc5adade 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToClassLabelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4730fe41fe..2fc42803df 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 42d37c1f15..daa5f63e23 100644 --- a/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx +++ b/Modules/Core/LabelMap/include/otbLabelMapWithClassLabelToLabeledSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ad6e245318..b06778e84c 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectFieldsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5db2780259..c2dc8e4dcb 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cd93ac3c02..70ec798f73 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx +++ b/Modules/Core/LabelMap/include/otbLabelObjectToPolygonFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 553714421e..16c71cd486 100644 --- a/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h +++ b/Modules/Core/LabelMap/include/otbLabelObjectWithClassLabelFieldsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6c8a86b909..56b122f956 100644 --- a/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h +++ b/Modules/Core/LabelMap/include/otbMergeLabelObjectFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10b6469e57..2d6285c680 100644 --- a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h +++ b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5d29979f48..7d94cbfb41 100644 --- a/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx +++ b/Modules/Core/LabelMap/include/otbMinMaxAttributesLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c736eff11c..d0294d9400 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 383848c605..8f0a9c9839 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ac34b2f7a8..edf8ec7962 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9c8146b40..b871a13eff 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a2b54159dd..4247f0d531 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1d8626e8cf..877efea596 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0bda8f8e10..5edd40c6a3 100644 --- a/Modules/Core/LabelMap/otb-module.cmake +++ b/Modules/Core/LabelMap/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 be4639ecdd..e0f30bc995 100644 --- a/Modules/Core/LabelMap/test/CMakeLists.txt +++ b/Modules/Core/LabelMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 995fc50471..904cfac8e7 100644 --- a/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbBandsStatisticsAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a2b04c4580..5188f4b81d 100644 --- a/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx +++ b/Modules/Core/LabelMap/test/otbImageToLabelMapWithAttributesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 df6cd0f471..a2ddd1a011 100644 --- a/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbKMeansAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 de492db4d3..dfb4f8729f 100644 --- a/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelImageToLabelMapWithAdjacencyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8783e2543b..5eb833e864 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3c8d83ad20..0e20a9f4cb 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapToSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f7034b6ad6..63ad4412ab 100644 --- a/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx +++ b/Modules/Core/LabelMap/test/otbLabelMapWithClassLabelToLabeledSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 21406929ac..a38a3f5116 100644 --- a/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx +++ b/Modules/Core/LabelMap/test/otbLabelObjectMapVectorizer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a5099e6c4c..287e18bfce 100644 --- a/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbMinMaxAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9411976514..af742475fc 100644 --- a/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx +++ b/Modules/Core/LabelMap/test/otbNormalizeAttributesLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ec4453f034..f6227478db 100644 --- a/Modules/Core/Metadata/CMakeLists.txt +++ b/Modules/Core/Metadata/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3ef4ade969..2c7dcb874a 100644 --- a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bc7948aa72..401c1d0d47 100644 --- a/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbCosmoImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c9d28ca29a..0412cf70bc 100644 --- a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0997f3b2f5..d854337f3f 100644 --- a/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 040507f5e8..b1e720452b 100644 --- a/Modules/Core/Metadata/include/otbFilterFunctionValues.h +++ b/Modules/Core/Metadata/include/otbFilterFunctionValues.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a8e467eb15..279daa346f 100644 --- a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b6df900569..37776ac3d2 100644 --- a/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbFormosatImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93c1fc673d..fcef22d014 100644 --- a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cf5cc68804..19707eea5d 100644 --- a/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbIkonosImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1a99dab5b4..7494b0e0ca 100644 --- a/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h +++ b/Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 92a3aa9155..6b270c6066 100644 --- a/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 901aac7f37..691f4fc95e 100644 --- a/Modules/Core/Metadata/include/otbMetaDataKey.h +++ b/Modules/Core/Metadata/include/otbMetaDataKey.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d52448fa4a..c393976cc4 100644 --- a/Modules/Core/Metadata/include/otbNoDataHelper.h +++ b/Modules/Core/Metadata/include/otbNoDataHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3805d5e78b..d86a3614b0 100644 --- a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1a4f87d78c..3c8d4ef6e0 100644 --- a/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbOpticalDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f805a6704c..425608957e 100644 --- a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 25e254e1e2..fa44728cc1 100644 --- a/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbOpticalImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6b39bec759..5e8c227722 100644 --- a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0bdb7df5c4..eb32986772 100644 --- a/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbPleiadesImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bcbde318ba..82c7636ad0 100644 --- a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3843d0c10c..d5595ef38e 100644 --- a/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbQuickBirdImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 544bd8be36..a50708de5e 100644 --- a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dbee16e3f6..7aa256ad10 100644 --- a/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbRadarsat2ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3e6b136788..d5a71dfcee 100644 --- a/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h +++ b/Modules/Core/Metadata/include/otbSarCalibrationLookupData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5c6a10c6da..6965e3f32e 100644 --- a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b0b272f7f9..bbd530df1f 100644 --- a/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSarDefaultImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d0144785a1..b68966c1e9 100644 --- a/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSarImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6c4c600486..a968d81a4e 100644 --- a/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSarImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f7536a8dcc..f26e47c840 100644 --- a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 259aa4c79e..c81b127af2 100644 --- a/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSentinel1ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d2eab33014..7df7fb193a 100644 --- a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 42b2445063..f04746e019 100644 --- a/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSpot6ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0ff5cbc371..08148031b0 100644 --- a/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbSpotImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f4e2cf5f6f..9404aedab1 100644 --- a/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbSpotImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterface.h b/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterface.h index 9cf2615760..dcaa62cee7 100644 --- a/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterfaceFactory.h b/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterfaceFactory.h index b2186a2dff..f3d83696b9 100644 --- a/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbTerraSarImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f99a07ff56..3505c60afa 100644 --- a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h +++ b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 04da4a7255..ab3ef01ae3 100644 --- a/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h +++ b/Modules/Core/Metadata/include/otbWorldView2ImageMetadataInterfaceFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1ed23d3161..326c7532ff 100644 --- a/Modules/Core/Metadata/otb-module.cmake +++ b/Modules/Core/Metadata/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d997479729..59da7b2f42 100644 --- a/Modules/Core/Metadata/src/CMakeLists.txt +++ b/Modules/Core/Metadata/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 d6e6764409..8b87a1e693 100644 --- a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 35c4d164db..728ffabac0 100644 --- a/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbCosmoImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7c5ef869b1..3aa57679dd 100644 --- a/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 270699e25e..90d1ef172c 100644 --- a/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx +++ b/Modules/Core/Metadata/src/otbFilterFunctionValues.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 303b9fcd32..93524e9c21 100644 --- a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8bdb799cee..dd07bb0cf3 100644 --- a/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbFormosatImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7cd7f14723..7bd28780cd 100644 --- a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c6e7268d1c..0d033c96cf 100644 --- a/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbIkonosImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 41b536596c..d71634cab1 100644 --- a/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadataInterfaceBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dd6b53de82..c8155fe0ff 100644 --- a/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 14e3463359..c687572b5d 100644 --- a/Modules/Core/Metadata/src/otbMetaDataKey.cxx +++ b/Modules/Core/Metadata/src/otbMetaDataKey.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b67315a0c2..5c768df4fa 100644 --- a/Modules/Core/Metadata/src/otbNoDataHelper.cxx +++ b/Modules/Core/Metadata/src/otbNoDataHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2670f9e83a..68b1aafa48 100644 --- a/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbOpticalDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 04867b7537..4635c6cf1e 100644 --- a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f6d1c55ddc..a287cbcbe7 100644 --- a/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbOpticalImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0177134a2f..f5f1558fdc 100644 --- a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 07b65a29a1..5b423b2e15 100644 --- a/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbPleiadesImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b6f22c87bb..86c0d40cba 100644 --- a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4223ba4f36..9c92f7a852 100644 --- a/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbQuickBirdImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b936c3aa5a..ecd98438ba 100644 --- a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9d2873d35..79cdeaa5fd 100644 --- a/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbRadarsat2ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10d374e88e..00250bdef1 100644 --- a/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSarDefaultImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a787211417..ce026e33c3 100644 --- a/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSarImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0f353cf2d0..a770a4d8a2 100644 --- a/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSarImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 354522b971..17a296e73a 100644 --- a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 19cc645ebf..2e509aff3d 100644 --- a/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSentinel1ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1f65fd9a3e..4721ae9c95 100644 --- a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dbd19d95a2..d0a211f032 100644 --- a/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSpot6ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1e2c85ef68..56412787e8 100644 --- a/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbSpotImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1aea031052..2b6907cd65 100644 --- a/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbSpotImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterface.cxx b/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterface.cxx index b5af2b8b0c..5083de427b 100644 --- a/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterfaceFactory.cxx index 1fda8bfbd1..a74e1a3638 100644 --- a/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbTerraSarImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 65f1274dd3..ef803bdbf5 100644 --- a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8d88630a5d..3df232e648 100644 --- a/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbWorldView2ImageMetadataInterfaceFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8bd35348c4..a9732b867d 100644 --- a/Modules/Core/Metadata/test/CMakeLists.txt +++ b/Modules/Core/Metadata/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Core/Metadata/test/otbDefaultImageMetadataInterface.cxx b/Modules/Core/Metadata/test/otbDefaultImageMetadataInterface.cxx index 878936bcbd..df31aa3c22 100644 --- a/Modules/Core/Metadata/test/otbDefaultImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/test/otbDefaultImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbImageMetadataInterfaceBaseTest.cxx b/Modules/Core/Metadata/test/otbImageMetadataInterfaceBaseTest.cxx index a1121c4730..1c02bbe4ff 100644 --- a/Modules/Core/Metadata/test/otbImageMetadataInterfaceBaseTest.cxx +++ b/Modules/Core/Metadata/test/otbImageMetadataInterfaceBaseTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest2.cxx b/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest2.cxx index bfe5e16902..a33302c5de 100644 --- a/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest2.cxx +++ b/Modules/Core/Metadata/test/otbImageMetadataInterfaceTest2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01bbec13f1..25b34b33b1 100644 --- a/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx +++ b/Modules/Core/Metadata/test/otbMetadataTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93ea4da592..a2a9bf5085 100644 --- a/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx +++ b/Modules/Core/Metadata/test/otbNoDataHelperTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbOpticalDefaultImageMetadataInterface.cxx b/Modules/Core/Metadata/test/otbOpticalDefaultImageMetadataInterface.cxx index a0bff22434..b7017a41a2 100644 --- a/Modules/Core/Metadata/test/otbOpticalDefaultImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/test/otbOpticalDefaultImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbOpticalImageMetadataInterfaceTest.cxx b/Modules/Core/Metadata/test/otbOpticalImageMetadataInterfaceTest.cxx index d5958b7f73..b5a2b3e1c5 100644 --- a/Modules/Core/Metadata/test/otbOpticalImageMetadataInterfaceTest.cxx +++ b/Modules/Core/Metadata/test/otbOpticalImageMetadataInterfaceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 13f347c818..790c192e93 100644 --- a/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx +++ b/Modules/Core/Metadata/test/otbSarCalibrationLookupDataTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbSarDefaultImageMetadataInterface.cxx b/Modules/Core/Metadata/test/otbSarDefaultImageMetadataInterface.cxx index 41dc8ae8f5..4109e282b2 100644 --- a/Modules/Core/Metadata/test/otbSarDefaultImageMetadataInterface.cxx +++ b/Modules/Core/Metadata/test/otbSarDefaultImageMetadataInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Metadata/test/otbSarImageMetadataInterfaceTest.cxx b/Modules/Core/Metadata/test/otbSarImageMetadataInterfaceTest.cxx index f564e6989e..27c99b53f9 100644 --- a/Modules/Core/Metadata/test/otbSarImageMetadataInterfaceTest.cxx +++ b/Modules/Core/Metadata/test/otbSarImageMetadataInterfaceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7260847e7d..a360f37aa7 100644 --- a/Modules/Core/ObjectList/CMakeLists.txt +++ b/Modules/Core/ObjectList/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5fbd564678..742947e6a1 100644 --- a/Modules/Core/ObjectList/include/otbDataObjectListInterface.h +++ b/Modules/Core/ObjectList/include/otbDataObjectListInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageList.h b/Modules/Core/ObjectList/include/otbImageList.h index c4dc2fc183..04f908faeb 100644 --- a/Modules/Core/ObjectList/include/otbImageList.h +++ b/Modules/Core/ObjectList/include/otbImageList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageList.hxx b/Modules/Core/ObjectList/include/otbImageList.hxx index d802a6be56..95bef5f0cf 100644 --- a/Modules/Core/ObjectList/include/otbImageList.hxx +++ b/Modules/Core/ObjectList/include/otbImageList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListSource.h b/Modules/Core/ObjectList/include/otbImageListSource.h index 5fea13550d..c432eec6e2 100644 --- a/Modules/Core/ObjectList/include/otbImageListSource.h +++ b/Modules/Core/ObjectList/include/otbImageListSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListSource.hxx b/Modules/Core/ObjectList/include/otbImageListSource.hxx index b5ee471d3f..0870faa8ed 100644 --- a/Modules/Core/ObjectList/include/otbImageListSource.hxx +++ b/Modules/Core/ObjectList/include/otbImageListSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageFilter.h b/Modules/Core/ObjectList/include/otbImageListToImageFilter.h index 383c52e2bc..4aea932b66 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageFilter.h +++ b/Modules/Core/ObjectList/include/otbImageListToImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageFilter.hxx b/Modules/Core/ObjectList/include/otbImageListToImageFilter.hxx index 58b32db653..ce24709526 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageListToImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.h b/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.h index 9c6c0e96a3..30b8c71e1b 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.h +++ b/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.hxx b/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.hxx index c180859ac9..52371d5694 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageListToImageListApplyFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageListFilter.h b/Modules/Core/ObjectList/include/otbImageListToImageListFilter.h index e75ee3349a..6d269108d0 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageListFilter.h +++ b/Modules/Core/ObjectList/include/otbImageListToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToImageListFilter.hxx b/Modules/Core/ObjectList/include/otbImageListToImageListFilter.hxx index af4bebed0a..956ae77f19 100644 --- a/Modules/Core/ObjectList/include/otbImageListToImageListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageListToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.h b/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.h index 7b15bdf29f..32c47f0ead 100644 --- a/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.h +++ b/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.hxx b/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.hxx index e22277a4fb..334864f651 100644 --- a/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageListToSingleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.h b/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.h index 82cd31b6c7..90e1a5228a 100644 --- a/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.h +++ b/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.hxx b/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.hxx index d050c100bc..3209599475 100644 --- a/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageListToVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageToImageListFilter.h b/Modules/Core/ObjectList/include/otbImageToImageListFilter.h index 9803ada069..dcd22d08c2 100644 --- a/Modules/Core/ObjectList/include/otbImageToImageListFilter.h +++ b/Modules/Core/ObjectList/include/otbImageToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbImageToImageListFilter.hxx b/Modules/Core/ObjectList/include/otbImageToImageListFilter.hxx index a109786e65..fdd1b333dd 100644 --- a/Modules/Core/ObjectList/include/otbImageToImageListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbImageToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c35eb7812d..3db87b0d81 100644 --- a/Modules/Core/ObjectList/include/otbObjectList.h +++ b/Modules/Core/ObjectList/include/otbObjectList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 57845f2c76..3773c5f22e 100644 --- a/Modules/Core/ObjectList/include/otbObjectList.hxx +++ b/Modules/Core/ObjectList/include/otbObjectList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 46eaed60e4..74aef96633 100644 --- a/Modules/Core/ObjectList/include/otbObjectListSource.h +++ b/Modules/Core/ObjectList/include/otbObjectListSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0324f9ea14..d2c134f596 100644 --- a/Modules/Core/ObjectList/include/otbObjectListSource.hxx +++ b/Modules/Core/ObjectList/include/otbObjectListSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3095a2269d..91e139a019 100644 --- a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h +++ b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ffbf75de70..d4a4e0237f 100644 --- a/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbObjectListToObjectListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8b54a07fe8..dd1da5b316 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f6fa57d477..ea9bdb0960 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListBooleanFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01c2c94148..b761428dd0 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8797df6740..5f270f03fc 100644 --- a/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbUnaryFunctorObjectListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.h b/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.h index a07b0cd4e2..1a92ca9424 100644 --- a/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.h +++ b/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.hxx b/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.hxx index d30e03bafb..6621d56839 100644 --- a/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.hxx +++ b/Modules/Core/ObjectList/include/otbVectorImageToImageListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f4ee3a5f54..34cf2ce0af 100644 --- a/Modules/Core/ObjectList/otb-module.cmake +++ b/Modules/Core/ObjectList/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 ba9e991df9..ab392f9f10 100644 --- a/Modules/Core/ObjectList/test/CMakeLists.txt +++ b/Modules/Core/ObjectList/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c3d78fe086..2f05c51205 100644 --- a/Modules/Core/ObjectList/test/otbImageList.cxx +++ b/Modules/Core/ObjectList/test/otbImageList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93c53fcba6..1e23305404 100644 --- a/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToImageListApplyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ef673fac1c..4bd4cb5e15 100644 --- a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5e97a2fd77..a2514d8659 100644 --- a/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx +++ b/Modules/Core/ObjectList/test/otbImageListToVectorImageFilter2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ab9f7c1841..3085153012 100644 --- a/Modules/Core/ObjectList/test/otbObjectList.cxx +++ b/Modules/Core/ObjectList/test/otbObjectList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f5371e5339..bb2b9f7b4d 100644 --- a/Modules/Core/ObjectList/test/otbObjectList2.cxx +++ b/Modules/Core/ObjectList/test/otbObjectList2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 aff278a811..23dc18e01f 100644 --- a/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx +++ b/Modules/Core/ObjectList/test/otbObjectListTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a39c34b525..b7a8cb30f2 100644 --- a/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx +++ b/Modules/Core/ObjectList/test/otbVectorImageToImageListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2ef2116d9e..0354bae5ef 100644 --- a/Modules/Core/PointSet/CMakeLists.txt +++ b/Modules/Core/PointSet/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 dbdfa8de0c..6fb7255327 100644 --- a/Modules/Core/PointSet/include/otbImageToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0c730e7e16..41fa744bba 100644 --- a/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1b99d3b525..a405e13735 100644 --- a/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h +++ b/Modules/Core/PointSet/include/otbPointSetAndValuesFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5191f369d1..5f7c84e763 100644 --- a/Modules/Core/PointSet/include/otbPointSetExtractROI.h +++ b/Modules/Core/PointSet/include/otbPointSetExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cde85a283e..5e06922250 100644 --- a/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx +++ b/Modules/Core/PointSet/include/otbPointSetExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5441498aaf..60293bdc31 100644 --- a/Modules/Core/PointSet/include/otbPointSetFunction.h +++ b/Modules/Core/PointSet/include/otbPointSetFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d83661c56b..727698ce72 100644 --- a/Modules/Core/PointSet/include/otbPointSetFunction.hxx +++ b/Modules/Core/PointSet/include/otbPointSetFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6775db42ac..2211dda3d2 100644 --- a/Modules/Core/PointSet/include/otbPointSetSource.h +++ b/Modules/Core/PointSet/include/otbPointSetSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8b732cb06d..db21d385a2 100644 --- a/Modules/Core/PointSet/include/otbPointSetSource.hxx +++ b/Modules/Core/PointSet/include/otbPointSetSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3a0c12d4fb..12b7ca388a 100644 --- a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6c5e372289..0a3d744c2f 100644 --- a/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbPointSetToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3e896ed514..747fc4927b 100644 --- a/Modules/Core/PointSet/include/otbRandomPointSetSource.h +++ b/Modules/Core/PointSet/include/otbRandomPointSetSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c322a286e7..4b65a8030f 100644 --- a/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx +++ b/Modules/Core/PointSet/include/otbRandomPointSetSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 03fb19ad49..d58bdafa81 100644 --- a/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h +++ b/Modules/Core/PointSet/include/otbSimplePointCountStrategy.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 48245c8fa7..acdbb0df3e 100644 --- a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 10c67e1b4f..22be53563c 100644 --- a/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbThresholdImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 73df980445..a81c5d405b 100644 --- a/Modules/Core/PointSet/include/otbTransformPointSetFilter.h +++ b/Modules/Core/PointSet/include/otbTransformPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5a70dfd436..16b3b6f6bf 100644 --- a/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx +++ b/Modules/Core/PointSet/include/otbTransformPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 65c1388373..4f2e6d719c 100644 --- a/Modules/Core/PointSet/otb-module.cmake +++ b/Modules/Core/PointSet/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 29dbbc9eda..47193a243f 100644 --- a/Modules/Core/PointSet/test/CMakeLists.txt +++ b/Modules/Core/PointSet/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5bd6846901..0b1b25f2f7 100644 --- a/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx +++ b/Modules/Core/PointSet/test/otbImageToPointSetFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 274b7c9e45..ce30f0cd87 100644 --- a/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx +++ b/Modules/Core/PointSet/test/otbPointSetExtractROITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 65676dfb58..f7ffbe9a6d 100644 --- a/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx +++ b/Modules/Core/PointSet/test/otbPointSetSourceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 62eb5149ab..774ba375c6 100644 --- a/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx +++ b/Modules/Core/PointSet/test/otbPointSetTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6eaab0d817..80d3ba46ad 100644 --- a/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx +++ b/Modules/Core/PointSet/test/otbRandomPointSetSourceTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 555a7338e6..2d8be0a15a 100644 --- a/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx +++ b/Modules/Core/PointSet/test/otbSimplePointCountStrategyTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 48329c9a01..edbb055655 100644 --- a/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx +++ b/Modules/Core/PointSet/test/otbThresholdImageToPointSetTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 56415341a9..a4f4d49bbf 100644 --- a/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx +++ b/Modules/Core/PointSet/test/otbTransformPointSetFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7eb4ab69a2..0f4fa17e08 100644 --- a/Modules/Core/Streaming/CMakeLists.txt +++ b/Modules/Core/Streaming/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 80cb0def52..16f8330443 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 084d0b318f..09f810c817 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 96acdb6cfd..e7f1eb8e1e 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8bce717e14..100e276ed7 100644 --- a/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfDivisionsTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0df401c9bf..229b3fd760 100644 --- a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0a6c13f9a5..f709ac6a54 100644 --- a/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbNumberOfLinesStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fbd62383ea..000d55d641 100644 --- a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h +++ b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 abaed7a61f..34e641c589 100644 --- a/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx +++ b/Modules/Core/Streaming/include/otbPersistentFilterStreamingDecorator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2c7f48c897..0491dc755c 100644 --- a/Modules/Core/Streaming/include/otbPersistentImageFilter.h +++ b/Modules/Core/Streaming/include/otbPersistentImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 aee949d71f..d4025d8556 100644 --- a/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h +++ b/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fd0156ad09..3ec07879e6 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1eb5c80642..1748bc4014 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenAdaptativeStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 973787f293..cc4f486707 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 77f2c514d9..c3d556b53c 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenStrippedStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d1b9727290..8216a29006 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 25c38b14f3..bccceb1c27 100644 --- a/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbRAMDrivenTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7c0b16ca56..d191ffde4e 100644 --- a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h +++ b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 31f954f5b9..85c2c9a902 100644 --- a/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx +++ b/Modules/Core/Streaming/include/otbStreamingImageVirtualWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 38d8df23b0..28804d9b74 100644 --- a/Modules/Core/Streaming/include/otbStreamingManager.h +++ b/Modules/Core/Streaming/include/otbStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01d63b80d6..cabfccae2e 100644 --- a/Modules/Core/Streaming/include/otbStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1205fe50e7..03963a9805 100644 --- a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h +++ b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1dcdc26704..61c12e7067 100644 --- a/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx +++ b/Modules/Core/Streaming/include/otbTileDimensionTiledStreamingManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 83c747ab7c..9a7a0b8a43 100644 --- a/Modules/Core/Streaming/otb-module.cmake +++ b/Modules/Core/Streaming/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 cc214e9643..b975913a0c 100644 --- a/Modules/Core/Streaming/src/CMakeLists.txt +++ b/Modules/Core/Streaming/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 7fb7482c3f..4304c7c9e7 100644 --- a/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx +++ b/Modules/Core/Streaming/src/otbPipelineMemoryPrintCalculator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c194575bf5..93b3cdbee2 100644 --- a/Modules/Core/Streaming/test/CMakeLists.txt +++ b/Modules/Core/Streaming/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9c65626b8a..7dc3cee40d 100644 --- a/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx +++ b/Modules/Core/Streaming/test/otbPipelineMemoryPrintCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b90920e50b..b34048c884 100644 --- a/Modules/Core/Streaming/test/otbStreamingManager.cxx +++ b/Modules/Core/Streaming/test/otbStreamingManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8dcbcc3311..fd752074ea 100644 --- a/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx +++ b/Modules/Core/Streaming/test/otbStreamingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2258d006b5..795005189e 100644 --- a/Modules/Core/Transform/CMakeLists.txt +++ b/Modules/Core/Transform/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f53a722218..72bebd7cc5 100644 --- a/Modules/Core/Transform/include/otbCompositeTransform.h +++ b/Modules/Core/Transform/include/otbCompositeTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 59ad30dcd8..2b3e3dd09c 100644 --- a/Modules/Core/Transform/include/otbCompositeTransform.hxx +++ b/Modules/Core/Transform/include/otbCompositeTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbForwardSensorModel.h b/Modules/Core/Transform/include/otbForwardSensorModel.h index a201dd5d24..0165810e34 100644 --- a/Modules/Core/Transform/include/otbForwardSensorModel.h +++ b/Modules/Core/Transform/include/otbForwardSensorModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbForwardSensorModel.hxx b/Modules/Core/Transform/include/otbForwardSensorModel.hxx index ed90bcd34a..b2417e68b5 100644 --- a/Modules/Core/Transform/include/otbForwardSensorModel.hxx +++ b/Modules/Core/Transform/include/otbForwardSensorModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 91b14c80f4..d3c617b65e 100644 --- a/Modules/Core/Transform/include/otbGenericMapProjection.h +++ b/Modules/Core/Transform/include/otbGenericMapProjection.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a7a3ca59c7..1e03015ba3 100644 --- a/Modules/Core/Transform/include/otbGenericMapProjection.hxx +++ b/Modules/Core/Transform/include/otbGenericMapProjection.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 652867446a..9ffa943b83 100644 --- a/Modules/Core/Transform/include/otbGenericRSTransform.h +++ b/Modules/Core/Transform/include/otbGenericRSTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 72b215ed6d..b1794715ff 100644 --- a/Modules/Core/Transform/include/otbGenericRSTransform.hxx +++ b/Modules/Core/Transform/include/otbGenericRSTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fce4e0bbfe..93b72cedeb 100644 --- a/Modules/Core/Transform/include/otbGeocentricTransform.h +++ b/Modules/Core/Transform/include/otbGeocentricTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 24eeb63a2c..c47532a5b4 100644 --- a/Modules/Core/Transform/include/otbGeocentricTransform.hxx +++ b/Modules/Core/Transform/include/otbGeocentricTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 97cfc23b9d..e1d73b7311 100644 --- a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h +++ b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 54b803bc66..896dab248d 100644 --- a/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx +++ b/Modules/Core/Transform/include/otbImageToGenericRSOutputParameters.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fa10164f23..0172ee2b25 100644 --- a/Modules/Core/Transform/include/otbInverseLogPolarTransform.h +++ b/Modules/Core/Transform/include/otbInverseLogPolarTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5e2046767a..c4e37f9176 100644 --- a/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx +++ b/Modules/Core/Transform/include/otbInverseLogPolarTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbInverseSensorModel.h b/Modules/Core/Transform/include/otbInverseSensorModel.h index 4098efcc37..fa2591f914 100644 --- a/Modules/Core/Transform/include/otbInverseSensorModel.h +++ b/Modules/Core/Transform/include/otbInverseSensorModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbInverseSensorModel.hxx b/Modules/Core/Transform/include/otbInverseSensorModel.hxx index 54131f19f3..dedfc59e6c 100644 --- a/Modules/Core/Transform/include/otbInverseSensorModel.hxx +++ b/Modules/Core/Transform/include/otbInverseSensorModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8599b1db68..9b2b8915a3 100644 --- a/Modules/Core/Transform/include/otbLogPolarTransform.h +++ b/Modules/Core/Transform/include/otbLogPolarTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 826f418dd8..95725e1635 100644 --- a/Modules/Core/Transform/include/otbLogPolarTransform.hxx +++ b/Modules/Core/Transform/include/otbLogPolarTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSensorModelBase.h b/Modules/Core/Transform/include/otbSensorModelBase.h index 803ec00d34..3c223f8520 100644 --- a/Modules/Core/Transform/include/otbSensorModelBase.h +++ b/Modules/Core/Transform/include/otbSensorModelBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/include/otbSensorModelBase.hxx b/Modules/Core/Transform/include/otbSensorModelBase.hxx index bda86b93ce..3056fe57c0 100644 --- a/Modules/Core/Transform/include/otbSensorModelBase.hxx +++ b/Modules/Core/Transform/include/otbSensorModelBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 63cf8beae4..0089f60ddc 100644 --- a/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h +++ b/Modules/Core/Transform/include/otbStreamingWarpImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e900c83332..0432b1b7ee 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2147b8bc9d..e4cd1745f7 100644 --- a/Modules/Core/Transform/include/otbTransform.h +++ b/Modules/Core/Transform/include/otbTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1fff7f423c..2d7467be90 100644 --- a/Modules/Core/Transform/otb-module.cmake +++ b/Modules/Core/Transform/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5dadf55498..b71785d29c 100644 --- a/Modules/Core/Transform/test/CMakeLists.txt +++ b/Modules/Core/Transform/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a370dca93f..3ce1e07783 100644 --- a/Modules/Core/Transform/test/SensorModelBorder.cxx +++ b/Modules/Core/Transform/test/SensorModelBorder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e5e26e7888..eada776e96 100644 --- a/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx +++ b/Modules/Core/Transform/test/otbCreateInverseForwardSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbCreateProjectionWithOSSIM.cxx b/Modules/Core/Transform/test/otbCreateProjectionWithOSSIM.cxx index ed072f0694..640e6b93cc 100644 --- a/Modules/Core/Transform/test/otbCreateProjectionWithOSSIM.cxx +++ b/Modules/Core/Transform/test/otbCreateProjectionWithOSSIM.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Core/Transform/test/otbCreateProjectionWithOTB.cxx b/Modules/Core/Transform/test/otbCreateProjectionWithOTB.cxx index e2d428bc96..a8ef948f51 100644 --- a/Modules/Core/Transform/test/otbCreateProjectionWithOTB.cxx +++ b/Modules/Core/Transform/test/otbCreateProjectionWithOTB.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6ed63ae432..aebca41c2e 100644 --- a/Modules/Core/Transform/test/otbGenericMapProjection.cxx +++ b/Modules/Core/Transform/test/otbGenericMapProjection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 998eefc023..2354e2a2f4 100644 --- a/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx +++ b/Modules/Core/Transform/test/otbGenericRSTransformWithSRID.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b29cfecab5..ab0b66e922 100644 --- a/Modules/Core/Transform/test/otbGeocentricTransform.cxx +++ b/Modules/Core/Transform/test/otbGeocentricTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 210692c556..293e9553fe 100644 --- a/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx +++ b/Modules/Core/Transform/test/otbInverseLogPolarTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 941b039ad2..f193beb5c4 100644 --- a/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx +++ b/Modules/Core/Transform/test/otbInverseLogPolarTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4cf4af6199..cebddd9fd6 100644 --- a/Modules/Core/Transform/test/otbLogPolarTransform.cxx +++ b/Modules/Core/Transform/test/otbLogPolarTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 036aa47b04..33b493d80e 100644 --- a/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx +++ b/Modules/Core/Transform/test/otbLogPolarTransformResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 99d1b7f071..1f18c8f17b 100644 --- a/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx +++ b/Modules/Core/Transform/test/otbStreamingResampleImageFilterWithAffineTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a33af9883c..7bd60aa939 100644 --- a/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx +++ b/Modules/Core/Transform/test/otbStreamingWarpImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7ec077d492..db443ebf8d 100644 --- a/Modules/Core/Transform/test/otbTransformTestDriver.cxx +++ b/Modules/Core/Transform/test/otbTransformTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 80445f115c..77ce9ed38f 100644 --- a/Modules/Core/VectorDataBase/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 ba9db480b2..d3700ffbaf 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNode.h +++ b/Modules/Core/VectorDataBase/include/otbDataNode.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e3f0f5264e..f7468c0ff8 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNode.hxx +++ b/Modules/Core/VectorDataBase/include/otbDataNode.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f5762ca637..796b7f1a70 100644 --- a/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h +++ b/Modules/Core/VectorDataBase/include/otbDataNodeFunctionBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 137b75e7e9..00a28265a3 100644 --- a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h +++ b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 448756f583..931fe521f7 100644 --- a/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx +++ b/Modules/Core/VectorDataBase/include/otbPolyLineParametricPathWithValue.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 022effcc6b..0ee5698c13 100644 --- a/Modules/Core/VectorDataBase/include/otbPolygon.h +++ b/Modules/Core/VectorDataBase/include/otbPolygon.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4f1cb2787b..d4f3cc9824 100644 --- a/Modules/Core/VectorDataBase/include/otbPolygon.hxx +++ b/Modules/Core/VectorDataBase/include/otbPolygon.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0aed1c411b..f4cc48da26 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorData.h +++ b/Modules/Core/VectorDataBase/include/otbVectorData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d4dbb78cb1..c0c17ba2f8 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorData.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorData.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7d7e51f6b4..eb30efbfad 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataIOBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 43bbed1b9a..3e5b57f683 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataKeywordlist.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 354498e60b..1ea936af62 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 61ba047dc7..97139cfe03 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorDataProperties.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 13d35b80df..b9363042ac 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataSource.h +++ b/Modules/Core/VectorDataBase/include/otbVectorDataSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cf5fa54d46..c7df51fa5f 100644 --- a/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx +++ b/Modules/Core/VectorDataBase/include/otbVectorDataSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7d393f4d31..549bb5be44 100644 --- a/Modules/Core/VectorDataBase/otb-module.cmake +++ b/Modules/Core/VectorDataBase/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 aaa22c2be0..bf74057e4a 100644 --- a/Modules/Core/VectorDataBase/src/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5bb629bf4e..0a6a351b7e 100644 --- a/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx +++ b/Modules/Core/VectorDataBase/src/otbVectorDataIOBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 af3854d6f4..80f19865c7 100644 --- a/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx +++ b/Modules/Core/VectorDataBase/src/otbVectorDataKeywordlist.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 476efa80fa..ecb16d6b50 100644 --- a/Modules/Core/VectorDataBase/test/CMakeLists.txt +++ b/Modules/Core/VectorDataBase/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e97eca9dad..b1994f1fdd 100644 --- a/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx +++ b/Modules/Core/VectorDataBase/test/otbDataNodeTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 14fd0752e5..4b447e45e5 100644 --- a/Modules/Core/VectorDataBase/test/otbPolygon.cxx +++ b/Modules/Core/VectorDataBase/test/otbPolygon.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4c8feec19b..47035a9d01 100644 --- a/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx +++ b/Modules/Core/VectorDataBase/test/otbRemoteSensingRegion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 08abec6868..6f79f056cc 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorData.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 12bf59acc5..7d6b24136c 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce5093c4c4..2c657be617 100644 --- a/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx +++ b/Modules/Core/VectorDataBase/test/otbVectorDataKeywordlistTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1446b036f9..f98813e908 100644 --- a/Modules/Detection/CloudDetection/CMakeLists.txt +++ b/Modules/Detection/CloudDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 862cab2e79..1e0779e591 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 acb49c2ee8..074d64e5c5 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 77496d3be1..fd60c1956f 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h +++ b/Modules/Detection/CloudDetection/include/otbCloudDetectionFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0ce5421112..6409a97b44 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a2d5c2b1ae..d4574f2059 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d7dae59b5a..86d4496e25 100644 --- a/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h +++ b/Modules/Detection/CloudDetection/include/otbCloudEstimatorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3ccf5ede46..5a7e41489e 100644 --- a/Modules/Detection/CloudDetection/otb-module.cmake +++ b/Modules/Detection/CloudDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 c385e9649b..27501ffcc2 100644 --- a/Modules/Detection/CloudDetection/test/CMakeLists.txt +++ b/Modules/Detection/CloudDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 269ed107f1..d0ba9bb664 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudDetectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2ff199c8d8..c987ee814f 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 69449c547c..f0f9c08951 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudEstimatorDefaultFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 455aac455c..3f58174a31 100644 --- a/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx +++ b/Modules/Detection/CloudDetection/test/otbCloudEstimatorFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c0abdf5743..6e57c242a0 100644 --- a/Modules/Feature/Corner/CMakeLists.txt +++ b/Modules/Feature/Corner/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 eae6d2028e..b336ac2c82 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageFilter.h +++ b/Modules/Feature/Corner/include/otbHarrisImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9602c61f25..12cd40a455 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx +++ b/Modules/Feature/Corner/include/otbHarrisImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7d52d4706b..e4fb4305c1 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h +++ b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9f09d171fc..284c89a4b3 100644 --- a/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx +++ b/Modules/Feature/Corner/include/otbHarrisImageToPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 578b2bddd6..4d14058175 100644 --- a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h +++ b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dc25579dc1..efff83f862 100644 --- a/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx +++ b/Modules/Feature/Corner/include/otbVectorDataToRightAngleVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 147865d434..4d0e3d8f88 100644 --- a/Modules/Feature/Corner/otb-module.cmake +++ b/Modules/Feature/Corner/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a3ca01d0e8..fc83b1f966 100644 --- a/Modules/Feature/Corner/test/CMakeLists.txt +++ b/Modules/Feature/Corner/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 216d2b09de..37fb679ec3 100644 --- a/Modules/Feature/Corner/test/otbCornerTestDriver.cxx +++ b/Modules/Feature/Corner/test/otbCornerTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d49efe14ba..d372b35361 100644 --- a/Modules/Feature/Corner/test/otbHarrisImage.cxx +++ b/Modules/Feature/Corner/test/otbHarrisImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 715ff5fbdf..2f528a45c8 100644 --- a/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx +++ b/Modules/Feature/Corner/test/otbHarrisToPointSet.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cd27efeb26..7e5160ee52 100644 --- a/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx +++ b/Modules/Feature/Corner/test/otbVectorDataToRightAngleVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 da082a79f4..4339b41ab0 100644 --- a/Modules/Feature/Density/CMakeLists.txt +++ b/Modules/Feature/Density/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 211952f035..710e4dbfc9 100644 --- a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h +++ b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 036a20033c..9ec32c90d9 100644 --- a/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx +++ b/Modules/Feature/Density/include/otbKeyPointDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 26f73abde0..28d3a8c0ec 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b27e18445d..e89c5c95a1 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityEpanechnikovFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ab5dd40abe..bfe039b6af 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 219dc5a331..f5b3101514 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c3be01109b..dbf3af7479 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h +++ b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 12c25f9058..11d53c8c03 100644 --- a/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx +++ b/Modules/Feature/Density/include/otbPointSetDensityGaussianFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 799011285d..bdbd655c41 100644 --- a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h +++ b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 69b7881cf4..3b682589ef 100644 --- a/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx +++ b/Modules/Feature/Density/include/otbPointSetToDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93f57859af..55f1bbbb2d 100644 --- a/Modules/Feature/Density/otb-module.cmake +++ b/Modules/Feature/Density/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 1821613e07..0848888f76 100644 --- a/Modules/Feature/Density/test/CMakeLists.txt +++ b/Modules/Feature/Density/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b597085fa7..14cb4edf17 100644 --- a/Modules/Feature/Density/test/otbDensityTestDriver.cxx +++ b/Modules/Feature/Density/test/otbDensityTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7486b15ccb..98b65b6bbe 100644 --- a/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx +++ b/Modules/Feature/Density/test/otbKeyPointDensityImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c6b2bad737..12f69013b3 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityEpanechnikovFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c0cd36458f..f80b8a0416 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4667e62ea5..51c2a72bea 100644 --- a/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetDensityGaussianFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 db09d69d90..f77511bfb9 100644 --- a/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx +++ b/Modules/Feature/Density/test/otbPointSetToDensityImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6343a7025c..4ba30670a7 100644 --- a/Modules/Feature/Descriptors/CMakeLists.txt +++ b/Modules/Feature/Descriptors/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 17ee5045b8..1bc70ec5ee 100644 --- a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8da873ba3a..bb3d397f20 100644 --- a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6e88a8e6d0..6f03f4f558 100644 --- a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h +++ b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cbc9b0d02c..873ec2cb97 100644 --- a/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx +++ b/Modules/Feature/Descriptors/include/otbFourierMellinDescriptorsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e353f38a06..93f7b1e403 100644 --- a/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbHessianToScalarImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fae2c0aae7..27242a2dbe 100644 --- a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h +++ b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c199dcd194..52c52d80d0 100644 --- a/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx +++ b/Modules/Feature/Descriptors/include/otbHistogramOfOrientedGradientCovariantImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e2b0c55541..5d4d992bd0 100644 --- a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 71d8131e96..814b7c0834 100644 --- a/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToHessianDeterminantImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9f8fa6abe9..101541089b 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2be4bec57d..5522365006 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToSIFTKeyPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 54cb8078ea..026a02619d 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h +++ b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 66e2e45ab6..36773887b3 100644 --- a/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbImageToSURFKeyPointSetFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c523ec501d..d61f170397 100644 --- a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h +++ b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c587277342..ba42bb4586 100644 --- a/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbKeyPointSetsMatchingFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 04f771a754..8c9cc26a7b 100644 --- a/Modules/Feature/Descriptors/include/otbLandmark.h +++ b/Modules/Feature/Descriptors/include/otbLandmark.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 970da1f0ea..797a9fd497 100644 --- a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h +++ b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f88f9f91f6..bc1eebf572 100644 --- a/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx +++ b/Modules/Feature/Descriptors/include/otbSiftFastImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d8d14c1ce9..7fd1d598e6 100644 --- a/Modules/Feature/Descriptors/otb-module.cmake +++ b/Modules/Feature/Descriptors/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3db89e4a42..6182ae19cd 100644 --- a/Modules/Feature/Descriptors/test/CMakeLists.txt +++ b/Modules/Feature/Descriptors/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3a6d21657d..8a8b3f2810 100644 --- a/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx +++ b/Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fc02f62237..306443c2e8 100644 --- a/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx +++ b/Modules/Feature/Descriptors/test/otbFourierMellinDescriptors.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ca14b82db7..b940a3c17a 100644 --- a/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx +++ b/Modules/Feature/Descriptors/test/otbFourierMellinImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a80d5a3ee8..38a3581461 100644 --- a/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx +++ b/Modules/Feature/Descriptors/test/otbHistogramOfOrientedGradientCovariantImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d2fcd27fc0..64e39d9419 100644 --- a/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx +++ b/Modules/Feature/Descriptors/test/otbImageToHessianDeterminantImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fca23e0fc2..276190f457 100644 --- a/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx +++ b/Modules/Feature/Descriptors/test/otbKeyPointsAlgorithmsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 92c4040ae6..bce78d4983 100644 --- a/Modules/Feature/Edge/CMakeLists.txt +++ b/Modules/Feature/Edge/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 28e8d64820..ce1760c7ed 100644 --- a/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h +++ b/Modules/Feature/Edge/include/otbAssociativeSymmetricalSumImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 215bf766a3..e1482c8a30 100644 --- a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6e26a24e66..4f6e8bc987 100644 --- a/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbAsymmetricFusionOfLineDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 56bb841021..b8bb11c8c4 100644 --- a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h +++ b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cc51085001..4d442bda31 100644 --- a/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbEdgeDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3c0d7ff10b..7b75069589 100644 --- a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0bef5ae737..5ec244b128 100644 --- a/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbEdgeDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 17a7b8c0b5..3910c0375b 100644 --- a/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbHorizontalSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6ce22dcc90..7aa75e31a0 100644 --- a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9cdd0c0cd7..b5526ed102 100644 --- a/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbLineCorrelationDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 88df161d61..c10e182fac 100644 --- a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h +++ b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c2154443b4..500e598fe9 100644 --- a/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx +++ b/Modules/Feature/Edge/include/otbLineDetectorImageFilterBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0e5e7e7d18..9ee3cd4f52 100644 --- a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 47c2f25d12..5d8416ebc2 100644 --- a/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbLineRatioDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 1d4b178bcf..02b43c7c4d 100644 --- a/Modules/Feature/Edge/include/otbLineSegmentDetector.h +++ b/Modules/Feature/Edge/include/otbLineSegmentDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 71e7bc1a47..3be8d4fb69 100644 --- a/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx +++ b/Modules/Feature/Edge/include/otbLineSegmentDetector.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dd0b16f74e..541d536317 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e3e87e78f4..d96d05a710 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d653fd0023..327644bc40 100644 --- a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h +++ b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fbffa2340e..b34fcfaa04 100644 --- a/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbPixelSuppressionByDirectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3f0d7f649c..c008414bf8 100644 --- a/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 914faf20d7..f14cb07896 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fec5d08fef..96ea530a4f 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0d9d7556e7..f81dfa1e42 100644 --- a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 507f7d2f79..9a53b45b0d 100644 --- a/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx +++ b/Modules/Feature/Edge/include/otbTouziEdgeDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9b6108093..e70a97503d 100644 --- a/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h +++ b/Modules/Feature/Edge/include/otbVerticalSobelVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 31ea006ba4..e28867d8e7 100644 --- a/Modules/Feature/Edge/otb-module.cmake +++ b/Modules/Feature/Edge/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 81e4ac4f45..7a03755a98 100644 --- a/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx +++ b/Modules/Feature/Edge/test/0000094-PolygonsVectorization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d8516445d0..1bba13d538 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-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a3c10fe256..89fc0e9db5 100644 --- a/Modules/Feature/Edge/test/CMakeLists.txt +++ b/Modules/Feature/Edge/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e54207d981..df22e96031 100644 --- a/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx +++ b/Modules/Feature/Edge/test/otbAssociativeSymmetricalSum.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b647b4003e..c288ae0dc4 100644 --- a/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx +++ b/Modules/Feature/Edge/test/otbAsymmetricFusionOfLineDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 01ac53a4b9..bbb997a2b6 100644 --- a/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbEdgeDensityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93fd489e8e..3205ec7c3f 100644 --- a/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbEdgeDetectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 058cd6024f..3f2d6e9d61 100644 --- a/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx +++ b/Modules/Feature/Edge/test/otbEdgeTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 fdf2652318..2b7a8fb2df 100644 --- a/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbHorizontalSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf3479c665..3d79f9509a 100644 --- a/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineCorrelationDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9dfd4e9410..a54f58e304 100644 --- a/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx +++ b/Modules/Feature/Edge/test/otbLineCorrelationDetectorLinear.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b55f9c22f1..5a27336d77 100644 --- a/Modules/Feature/Edge/test/otbLineRatioDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineRatioDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bb35405127..d5ea87be1d 100644 --- a/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx +++ b/Modules/Feature/Edge/test/otbLineRatioDetectorLinear.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2685b29f3d..b8aa73c5e8 100644 --- a/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx +++ b/Modules/Feature/Edge/test/otbLineSegmentDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a2eb8a5deb..8004d1f789 100644 --- a/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx +++ b/Modules/Feature/Edge/test/otbPersistentVectorizationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3a4de536e8..c540cb9ef3 100644 --- a/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx +++ b/Modules/Feature/Edge/test/otbPixelSuppressionByDirection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3725f4efc1..993335879a 100644 --- a/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 20bc4bb679..924d14aa49 100644 --- a/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx +++ b/Modules/Feature/Edge/test/otbStreamingLineSegmentDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b4840f7b4b..13440ed507 100644 --- a/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx +++ b/Modules/Feature/Edge/test/otbTouziEdgeDetector.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d02fb2ee26..f5f4dacf61 100644 --- a/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx +++ b/Modules/Feature/Edge/test/otbTouziEdgeDetectorDirection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 66df703325..2853664893 100644 --- a/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx +++ b/Modules/Feature/Edge/test/otbVerticalSobelVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c72ce57d13..a779fd257a 100644 --- a/Modules/Feature/Moments/CMakeLists.txt +++ b/Modules/Feature/Moments/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b79e2bbe75..b1782f98be 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dac7399d4b..e02b3f081d 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbComplexMomentPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e670cdbeee..ae874a2fe9 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 cf0ae0eaa8..00c1cb5c22 100644 --- a/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbComplexMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5e1d2739aa..a888cb73e7 100644 --- a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d7d7c38a20..4591bebb37 100644 --- a/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbFlusserMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8c98f92183..07aa223d91 100644 --- a/Modules/Feature/Moments/include/otbFlusserPathFunction.h +++ b/Modules/Feature/Moments/include/otbFlusserPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 04fa1865e3..50907c8354 100644 --- a/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbFlusserPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d1c2a87d7f..1040e88087 100644 --- a/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbGeometricMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 67d65a7966..9bc2dc0594 100644 --- a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 905d60b068..e5c013fdef 100644 --- a/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbHuMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f18d89dd48..e3927fb5d5 100644 --- a/Modules/Feature/Moments/include/otbHuPathFunction.h +++ b/Modules/Feature/Moments/include/otbHuPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 226732f66e..e568f2df2b 100644 --- a/Modules/Feature/Moments/include/otbHuPathFunction.hxx +++ b/Modules/Feature/Moments/include/otbHuPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 49fd9bd6dd..657d7c5610 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 45bba072ce..ed12285f55 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 15ee71c99a..4bd6dd21c5 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 47f637752b..606add9ba7 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4f8e2a6d52..60947bf453 100644 --- a/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbRadiometricMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 00aca1ff84..f3c2c70003 100644 --- a/Modules/Feature/Moments/include/otbRealMomentPathFunction.h +++ b/Modules/Feature/Moments/include/otbRealMomentPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 8bb62e0025..909c818bb2 100644 --- a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h +++ b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 581aa23d9d..84ae7eb8be 100644 --- a/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx +++ b/Modules/Feature/Moments/include/otbRealMomentsImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 46e96b770f..284bbd6297 100644 --- a/Modules/Feature/Moments/otb-module.cmake +++ b/Modules/Feature/Moments/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 10261a855f..1b818daccc 100644 --- a/Modules/Feature/Moments/test/CMakeLists.txt +++ b/Modules/Feature/Moments/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 0d0e1f250a..a118ae4f4f 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentPath.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 56cd103074..0f1dddd005 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentPathFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ba572bcb24..334ab08b21 100644 --- a/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbComplexMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d9a3ed97f1..d1c8a775f2 100644 --- a/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbFlusserMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9256e7124b..914a6f6676 100644 --- a/Modules/Feature/Moments/test/otbFlusserPath.cxx +++ b/Modules/Feature/Moments/test/otbFlusserPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 eed7392e96..5ae977ade1 100644 --- a/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbHuMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 33ce37c0a7..ff873f646d 100644 --- a/Modules/Feature/Moments/test/otbHuPath.cxx +++ b/Modules/Feature/Moments/test/otbHuPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ff3eb07ee1..5afa99369b 100644 --- a/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx +++ b/Modules/Feature/Moments/test/otbMomentsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 abba916f64..d4f6dd7d79 100644 --- a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx +++ b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ce327f26ef..88c3afda38 100644 --- a/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbRadiometricMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 71695981d0..b54bb65a7c 100644 --- a/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx +++ b/Modules/Feature/Moments/test/otbRealMomentsImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b7381b048a..2a763df203 100644 --- a/Modules/Feature/Textures/CMakeLists.txt +++ b/Modules/Feature/Textures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b2b72dfbed..dc6a6437ca 100644 --- a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h +++ b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e1b9e9bbf3..a0605dbb6b 100644 --- a/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx +++ b/Modules/Feature/Textures/include/otbGreyLevelCooccurrenceIndexedList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b3fec1e010..e70b91608f 100644 --- a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h +++ b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bbdbc9f866..6e0b9be91c 100644 --- a/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx +++ b/Modules/Feature/Textures/include/otbHaralickTexturesImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4d0fda3ab6..92d039b0b5 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h +++ b/Modules/Feature/Textures/include/otbSFSTexturesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6262f232ef..b3a3644e61 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h +++ b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e0af31689e..09543e9e31 100644 --- a/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx +++ b/Modules/Feature/Textures/include/otbSFSTexturesImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 79f0d73993..a6a9b6ccc8 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4d91085b3a..984ea096d7 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToAdvancedTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a0e5e310e8..93fc98117a 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3d8c8a669b..8d2a5e41f9 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToHigherOrderTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0863e616ae..b18eb68ec3 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 93a2c826b3..1e4e8aef50 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToPanTexTextureFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e760394455..6b106426ac 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h +++ b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 52b80377bb..9a177279f4 100644 --- a/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx +++ b/Modules/Feature/Textures/include/otbScalarImageToTexturesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e42e4d3738..e3f7b84f47 100644 --- a/Modules/Feature/Textures/include/otbTextureImageFunction.h +++ b/Modules/Feature/Textures/include/otbTextureImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 dc8022c549..2e1784313f 100644 --- a/Modules/Feature/Textures/include/otbTextureImageFunction.hxx +++ b/Modules/Feature/Textures/include/otbTextureImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 7dcb6507d4..da3d92d557 100644 --- a/Modules/Feature/Textures/otb-module.cmake +++ b/Modules/Feature/Textures/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 287a07a7ec..dc2e135766 100644 --- a/Modules/Feature/Textures/test/CMakeLists.txt +++ b/Modules/Feature/Textures/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 b656203765..3813bb67d6 100644 --- a/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx +++ b/Modules/Feature/Textures/test/otbGreyLevelCooccurrenceIndexedList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d41e45ac58..6f72bf2e66 100644 --- a/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx +++ b/Modules/Feature/Textures/test/otbHaralickTexturesImageFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 29746d34d2..c3e3446eba 100644 --- a/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx +++ b/Modules/Feature/Textures/test/otbSFSTexturesImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5d685bf295..d4220eba19 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToAdvancedTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b59e4a7e64..b9e639dd47 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToHigherOrderTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 808e689fed..cc74fb8826 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToPanTexTextureFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6dd99455d8..d43251cc4f 100644 --- a/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx +++ b/Modules/Feature/Textures/test/otbScalarImageToTexturesFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d457726dee..8e33f23504 100644 --- a/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx +++ b/Modules/Feature/Textures/test/otbTexturesTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0bccdd91fa..3a76cc4c53 100644 --- a/Modules/Filtering/ChangeDetection/CMakeLists.txt +++ b/Modules/Filtering/ChangeDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 f992a9f593..f1d48b60c1 100644 --- a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 5ac222f69c..674b755da3 100644 --- a/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbBinaryFunctorNeighborhoodJoinHistogramImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 798dfc93e1..9954329dfe 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCBAMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbCBAMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ab94bfc040..ee7bcdf9b2 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbCBAMIChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2d96616ab9..6146ec8577 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbCorrelationChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bf4fe727cf..1ce2dd7fec 100644 --- a/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h +++ b/Modules/Filtering/ChangeDetection/include/otbCrossCorrelation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 663ad48f2f..686d4c3c53 100644 --- a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 527ea625ab..ffe2f345b7 100644 --- a/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbJoinHistogramMIImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4a12af47f4..eb2f377a28 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 4f45f28bf7..dbdf42708f 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerDistanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 bfa384555c..17d2e507f0 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d2594d086f..15d78bbaa2 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerProfileImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 b9dbe917d8..0ad4d00a60 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 99e92c9549..1efde96a41 100644 --- a/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbKullbackLeiblerSupervizedDistanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 f161d0e3ee..01ecd905dd 100644 --- a/Modules/Filtering/ChangeDetection/include/otbLHMI.h +++ b/Modules/Filtering/ChangeDetection/include/otbLHMI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e66a5ff251..cd20122c04 100644 --- a/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h +++ b/Modules/Filtering/ChangeDetection/include/otbLHMIChangeDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e470d84c52..ab7aae8a85 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanDifference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 985e3e9f47..93941d0c24 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanDifferenceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2e2f64624e..995e830048 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanRatio.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 baa5412079..8ad430fdbc 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMeanRatioImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 d4ed8e1400..401b36b93f 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h +++ b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 3fbcc140ed..405cb656eb 100644 --- a/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx +++ b/Modules/Filtering/ChangeDetection/include/otbMultivariateAlterationDetectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 18480dbaa6..00c497315c 100644 --- a/Modules/Filtering/ChangeDetection/otb-module.cmake +++ b/Modules/Filtering/ChangeDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 5acae45eac..5c4ae41dc9 100644 --- a/Modules/Filtering/ChangeDetection/test/CMakeLists.txt +++ b/Modules/Filtering/ChangeDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 9c992aa307..9c13c0b0bc 100644 --- a/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbCBAMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 e28613f761..5995acfafb 100644 --- a/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 89a2efb4f2..c0067995fb 100644 --- a/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbCorrelChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 2a51aed9bf..ca358fe82c 100644 --- a/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbJHMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 433aea3ca2..074a8c1602 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerDistanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a6a638b05a..e36231626a 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerProfileImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 6e5b13e578..d0621846a2 100644 --- a/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbKullbackLeiblerSupervizedDistanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 0867db032c..2d68dfd0c7 100644 --- a/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbLHMIChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 9615e90127..4fc3f2ff0d 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMeanDiffChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 90a313c1ef..5f31838e4a 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMeanRatioChangeDetectionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 777ee3ebf3..1609e54b16 100644 --- a/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx +++ b/Modules/Filtering/ChangeDetection/test/otbMultivariateAlterationDetectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 c8b3eab58b..8d8e22805d 100644 --- a/Modules/Filtering/ColorMap/CMakeLists.txt +++ b/Modules/Filtering/ColorMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 3097aa7d04..89f49a5eb8 100644 --- a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h +++ b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 ef8ba55322..ed4a25a638 100644 --- a/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx +++ b/Modules/Filtering/ColorMap/include/otbReliefColormapFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 21b873e2ad..d62dfb89fb 100644 --- a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h +++ b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 88f76f765c..24a32ff422 100644 --- a/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx +++ b/Modules/Filtering/ColorMap/include/otbScalarToRainbowRGBPixelFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 012b02d330..30dbe01d80 100644 --- a/Modules/Filtering/ColorMap/otb-module.cmake +++ b/Modules/Filtering/ColorMap/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 e839ee242e..a1ce133503 100644 --- a/Modules/Filtering/ColorMap/test/CMakeLists.txt +++ b/Modules/Filtering/ColorMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 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 a8e4e13922..168c8235b1 100644 --- a/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx +++ b/Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 47afff05fd..68b69b2943 100644 --- a/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx +++ b/Modules/Filtering/ColorMap/test/otbScalarToRainbowRGBPixelFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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 a3b4d082da..df0c237979 100644 --- a/Modules/Filtering/Contrast/CMakeLists.txt +++ b/Modules/Filtering/Contrast/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Contrast/include/otbApplyGainFilter.h b/Modules/Filtering/Contrast/include/otbApplyGainFilter.h index 432307ec05..d50896bd2a 100644 --- a/Modules/Filtering/Contrast/include/otbApplyGainFilter.h +++ b/Modules/Filtering/Contrast/include/otbApplyGainFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbApplyGainFilter.hxx b/Modules/Filtering/Contrast/include/otbApplyGainFilter.hxx index dd68238e4f..6614860f3b 100644 --- a/Modules/Filtering/Contrast/include/otbApplyGainFilter.hxx +++ b/Modules/Filtering/Contrast/include/otbApplyGainFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.h b/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.h index 00d47547b7..828881b42f 100644 --- a/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.h +++ b/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.hxx b/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.hxx index cf8f02cc2e..5a2fe39618 100644 --- a/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.hxx +++ b/Modules/Filtering/Contrast/include/otbCLHistogramEqualizationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.h b/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.h index 917fd9e9ef..a80903d1bf 100644 --- a/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.h +++ b/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.hxx b/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.hxx index dea61a5c58..b9a64b2bcc 100644 --- a/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.hxx +++ b/Modules/Filtering/Contrast/include/otbComputeGainLutFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbComputeHistoFilter.h b/Modules/Filtering/Contrast/include/otbComputeHistoFilter.h index fec9a3de6b..bf87187813 100644 --- a/Modules/Filtering/Contrast/include/otbComputeHistoFilter.h +++ b/Modules/Filtering/Contrast/include/otbComputeHistoFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/include/otbComputeHistoFilter.hxx b/Modules/Filtering/Contrast/include/otbComputeHistoFilter.hxx index 6802fddc03..4b3b71abdf 100644 --- a/Modules/Filtering/Contrast/include/otbComputeHistoFilter.hxx +++ b/Modules/Filtering/Contrast/include/otbComputeHistoFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/otb-module.cmake b/Modules/Filtering/Contrast/otb-module.cmake index 0e306eb309..a9c56353c8 100644 --- a/Modules/Filtering/Contrast/otb-module.cmake +++ b/Modules/Filtering/Contrast/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Contrast/test/CMakeLists.txt b/Modules/Filtering/Contrast/test/CMakeLists.txt index 409f08b989..101978937d 100644 --- a/Modules/Filtering/Contrast/test/CMakeLists.txt +++ b/Modules/Filtering/Contrast/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Contrast/test/otbApplyGainFilter.cxx b/Modules/Filtering/Contrast/test/otbApplyGainFilter.cxx index 79da195a9b..c72e929e01 100644 --- a/Modules/Filtering/Contrast/test/otbApplyGainFilter.cxx +++ b/Modules/Filtering/Contrast/test/otbApplyGainFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/test/otbCLHistogramEqualizationFilter.cxx b/Modules/Filtering/Contrast/test/otbCLHistogramEqualizationFilter.cxx index 8e3bd9d111..cb6dd49d01 100644 --- a/Modules/Filtering/Contrast/test/otbCLHistogramEqualizationFilter.cxx +++ b/Modules/Filtering/Contrast/test/otbCLHistogramEqualizationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/test/otbComputeGainLutFilter.cxx b/Modules/Filtering/Contrast/test/otbComputeGainLutFilter.cxx index b85093a004..b916060d8b 100644 --- a/Modules/Filtering/Contrast/test/otbComputeGainLutFilter.cxx +++ b/Modules/Filtering/Contrast/test/otbComputeGainLutFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/test/otbComputeHistoFilter.cxx b/Modules/Filtering/Contrast/test/otbComputeHistoFilter.cxx index 01c702229f..b5a08e82a1 100644 --- a/Modules/Filtering/Contrast/test/otbComputeHistoFilter.cxx +++ b/Modules/Filtering/Contrast/test/otbComputeHistoFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/test/otbContrastTestDriver.cxx b/Modules/Filtering/Contrast/test/otbContrastTestDriver.cxx index c548bb10d8..2e0005f65c 100644 --- a/Modules/Filtering/Contrast/test/otbContrastTestDriver.cxx +++ b/Modules/Filtering/Contrast/test/otbContrastTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Contrast/test/otbHelperCLAHE.cxx b/Modules/Filtering/Contrast/test/otbHelperCLAHE.cxx index fde3159a7e..f18c67ba8e 100644 --- a/Modules/Filtering/Contrast/test/otbHelperCLAHE.cxx +++ b/Modules/Filtering/Contrast/test/otbHelperCLAHE.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/CMakeLists.txt b/Modules/Filtering/Convolution/CMakeLists.txt index 3d79af629f..4926b29822 100644 --- a/Modules/Filtering/Convolution/CMakeLists.txt +++ b/Modules/Filtering/Convolution/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.h b/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.h index 50915ccd27..4660f6c4a1 100644 --- a/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.h +++ b/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.hxx b/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.hxx index 5e05f90342..922534b252 100644 --- a/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.hxx +++ b/Modules/Filtering/Convolution/include/otbConvolutionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.h b/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.h index 656b6d7e4a..2c51bb1137 100644 --- a/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.h +++ b/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.hxx b/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.hxx index bbac5affe3..6b9f0e60ea 100644 --- a/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.hxx +++ b/Modules/Filtering/Convolution/include/otbGaborFilterGenerator.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.h b/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.h index 1c296b6bd6..c29187a04f 100644 --- a/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.h +++ b/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.hxx b/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.hxx index fc7e6fcdc7..b0879c21e6 100644 --- a/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.hxx +++ b/Modules/Filtering/Convolution/include/otbOverlapSaveConvolutionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/otb-module.cmake b/Modules/Filtering/Convolution/otb-module.cmake index 79c2e33c9d..709833a61f 100644 --- a/Modules/Filtering/Convolution/otb-module.cmake +++ b/Modules/Filtering/Convolution/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Convolution/test/CMakeLists.txt b/Modules/Filtering/Convolution/test/CMakeLists.txt index cfff62d1fc..a8e6c8694d 100644 --- a/Modules/Filtering/Convolution/test/CMakeLists.txt +++ b/Modules/Filtering/Convolution/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Convolution/test/otbCompareOverlapSaveAndClassicalConvolutionWithGaborFilter.cxx b/Modules/Filtering/Convolution/test/otbCompareOverlapSaveAndClassicalConvolutionWithGaborFilter.cxx index bb468b19d0..b7f2cfc1c2 100644 --- a/Modules/Filtering/Convolution/test/otbCompareOverlapSaveAndClassicalConvolutionWithGaborFilter.cxx +++ b/Modules/Filtering/Convolution/test/otbCompareOverlapSaveAndClassicalConvolutionWithGaborFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/test/otbConvolutionImageFilter.cxx b/Modules/Filtering/Convolution/test/otbConvolutionImageFilter.cxx index 786d1716fb..329f4f02da 100644 --- a/Modules/Filtering/Convolution/test/otbConvolutionImageFilter.cxx +++ b/Modules/Filtering/Convolution/test/otbConvolutionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx b/Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx index 6355d4d05b..67278bf348 100644 --- a/Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx +++ b/Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/test/otbGaborFilterGenerator.cxx b/Modules/Filtering/Convolution/test/otbGaborFilterGenerator.cxx index 39c791ca75..54a7872ce7 100644 --- a/Modules/Filtering/Convolution/test/otbGaborFilterGenerator.cxx +++ b/Modules/Filtering/Convolution/test/otbGaborFilterGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Convolution/test/otbOverlapSaveConvolutionImageFilter.cxx b/Modules/Filtering/Convolution/test/otbOverlapSaveConvolutionImageFilter.cxx index 8b5c905aa9..25146fde50 100644 --- a/Modules/Filtering/Convolution/test/otbOverlapSaveConvolutionImageFilter.cxx +++ b/Modules/Filtering/Convolution/test/otbOverlapSaveConvolutionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/CMakeLists.txt b/Modules/Filtering/DEM/CMakeLists.txt index 79ddf2471a..52bf78af7c 100644 --- a/Modules/Filtering/DEM/CMakeLists.txt +++ b/Modules/Filtering/DEM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.h b/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.h index 7841390fdb..c3d445f595 100644 --- a/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.h +++ b/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.hxx b/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.hxx index c3c93cc35b..61719b1c5b 100644 --- a/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.hxx +++ b/Modules/Filtering/DEM/include/otbDEMCaracteristicsExtractor.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/include/otbDEMToImageGenerator.h b/Modules/Filtering/DEM/include/otbDEMToImageGenerator.h index 754e54df3a..695e25f14e 100644 --- a/Modules/Filtering/DEM/include/otbDEMToImageGenerator.h +++ b/Modules/Filtering/DEM/include/otbDEMToImageGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/include/otbDEMToImageGenerator.hxx b/Modules/Filtering/DEM/include/otbDEMToImageGenerator.hxx index c00a837872..bd9c303488 100644 --- a/Modules/Filtering/DEM/include/otbDEMToImageGenerator.hxx +++ b/Modules/Filtering/DEM/include/otbDEMToImageGenerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/otb-module.cmake b/Modules/Filtering/DEM/otb-module.cmake index 99c3dc0584..5a506c6527 100644 --- a/Modules/Filtering/DEM/otb-module.cmake +++ b/Modules/Filtering/DEM/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DEM/test/CMakeLists.txt b/Modules/Filtering/DEM/test/CMakeLists.txt index f485f5314a..a507e782fc 100644 --- a/Modules/Filtering/DEM/test/CMakeLists.txt +++ b/Modules/Filtering/DEM/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DEM/test/otbDEMCaracteristicsExtractor.cxx b/Modules/Filtering/DEM/test/otbDEMCaracteristicsExtractor.cxx index e69d0473cd..a674281e92 100644 --- a/Modules/Filtering/DEM/test/otbDEMCaracteristicsExtractor.cxx +++ b/Modules/Filtering/DEM/test/otbDEMCaracteristicsExtractor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/test/otbDEMTestDriver.cxx b/Modules/Filtering/DEM/test/otbDEMTestDriver.cxx index 0e00b20296..e97307f1d2 100644 --- a/Modules/Filtering/DEM/test/otbDEMTestDriver.cxx +++ b/Modules/Filtering/DEM/test/otbDEMTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/test/otbDEMToImageGeneratorFromImageTest.cxx b/Modules/Filtering/DEM/test/otbDEMToImageGeneratorFromImageTest.cxx index dab5f80649..aef94cd645 100644 --- a/Modules/Filtering/DEM/test/otbDEMToImageGeneratorFromImageTest.cxx +++ b/Modules/Filtering/DEM/test/otbDEMToImageGeneratorFromImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DEM/test/otbDEMToImageGeneratorTest.cxx b/Modules/Filtering/DEM/test/otbDEMToImageGeneratorTest.cxx index 43132f022d..dd5027ba04 100644 --- a/Modules/Filtering/DEM/test/otbDEMToImageGeneratorTest.cxx +++ b/Modules/Filtering/DEM/test/otbDEMToImageGeneratorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/CMakeLists.txt b/Modules/Filtering/DimensionalityReduction/CMakeLists.txt index 939141c448..8b27063504 100644 --- a/Modules/Filtering/DimensionalityReduction/CMakeLists.txt +++ b/Modules/Filtering/DimensionalityReduction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.h index 0658a2d8ac..a9a2cd322a 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.hxx index 0e9274b5b2..95443e0e0c 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionBinaryImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.h index 8dcb974627..b3b7bc22f1 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.hxx index c650587a8b..d4119e3865 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.h index 0104b836fb..ecfb154dc6 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.hxx index d3897a2f0f..8c92785a40 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbAngularProjectionSetImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.h index 38d9706e69..81ba0f96a0 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.hxx index d5424650a2..c672543b7a 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbEstimateInnerProductPCAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.h index e6dfdd33ba..adf0d6d122 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.hxx index 18193a8617..ecbda929e7 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbFastICAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.h index feb2c67fec..37d09dec57 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.hxx index 461e1b7058..3690d8d5df 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbFastICAInternalOptimizerVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.h index f20b059f9a..7513942530 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.hxx index 9f22c39c97..86f192d058 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbInnerProductPCAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbLocalActivityVectorImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbLocalActivityVectorImageFilter.h index 52de4456e1..5215f27854 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbLocalActivityVectorImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbLocalActivityVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.h index a2b2a94135..5081cc8d22 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.hxx index 4a19eac816..651a33f4ef 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbMNFImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.h index 7bbbce7745..b9011748fc 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.hxx index b67a08ab24..53ff7efa75 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbMaximumAutocorrelationFactorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.h index a96b7f5028..7c7105d4ff 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.hxx index 5958fa1dc4..67713ed538 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbNAPCAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.h index a39e6c6e87..5345eed680 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.hxx index b357d3ff65..69d0217147 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbNormalizeInnerProductPCAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.h index 26f386862c..6577141aa7 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.hxx index a95b9f07e1..80af9234b9 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbPCAImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.h b/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.h index 1241eaab8e..8612624152 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.h +++ b/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.hxx b/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.hxx index 44d2047a58..0bd23f73ac 100644 --- a/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.hxx +++ b/Modules/Filtering/DimensionalityReduction/include/otbSparseWvltToAngleMapperListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/otb-module.cmake b/Modules/Filtering/DimensionalityReduction/otb-module.cmake index 678c1b43ee..09fe21193c 100644 --- a/Modules/Filtering/DimensionalityReduction/otb-module.cmake +++ b/Modules/Filtering/DimensionalityReduction/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt b/Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt index 3dc9d283e9..3d5f1bcc1b 100644 --- a/Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt +++ b/Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionBinaryImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionBinaryImageFilter.cxx index 082ab9bb9f..a5db6a2242 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionBinaryImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionBinaryImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/DimensionalityReduction/test/otbAngularProjectionImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionImageFilter.cxx index 31e638e6da..2b1431ee17 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionSetImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionSetImageFilter.cxx index dd9f79f9bd..73bf32defa 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionSetImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbAngularProjectionSetImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbDimensionalityReductionTestDriver.cxx b/Modules/Filtering/DimensionalityReduction/test/otbDimensionalityReductionTestDriver.cxx index 9b855b3196..14ad0d0d05 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbDimensionalityReductionTestDriver.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbDimensionalityReductionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbEstimateInnerProductPCAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbEstimateInnerProductPCAImageFilter.cxx index 9905d2d62d..10f3f81523 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbEstimateInnerProductPCAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbEstimateInnerProductPCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbFastICAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbFastICAImageFilter.cxx index 21ce94dc29..3dcce424a3 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbFastICAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbFastICAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbInnerProductPCAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbInnerProductPCAImageFilter.cxx index 20c1517bc5..7b145cbf4e 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbInnerProductPCAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbInnerProductPCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbLocalActivityVectorImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbLocalActivityVectorImageFilter.cxx index d65a20367c..cf0d0b4f84 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbLocalActivityVectorImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbLocalActivityVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/DimensionalityReduction/test/otbMNFImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbMNFImageFilter.cxx index 9362255969..b5d106012a 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbMNFImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbMNFImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbMaximumAutocorrelationFactorImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbMaximumAutocorrelationFactorImageFilter.cxx index 6ec62f1035..cdf9433ad0 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbMaximumAutocorrelationFactorImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbMaximumAutocorrelationFactorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbNAPCAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbNAPCAImageFilter.cxx index a20a8c320b..7dce0fc8d2 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbNAPCAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbNAPCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbNormalizeInnerProductPCAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbNormalizeInnerProductPCAImageFilter.cxx index 9c9b4855b1..b99257ec76 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbNormalizeInnerProductPCAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbNormalizeInnerProductPCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbPCAImageFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbPCAImageFilter.cxx index 4adf85db9a..e8ee849c85 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbPCAImageFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbPCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/DimensionalityReduction/test/otbSparseWvltToAngleMapperListFilter.cxx b/Modules/Filtering/DimensionalityReduction/test/otbSparseWvltToAngleMapperListFilter.cxx index 5c88be05d4..03ab4f8b4e 100644 --- a/Modules/Filtering/DimensionalityReduction/test/otbSparseWvltToAngleMapperListFilter.cxx +++ b/Modules/Filtering/DimensionalityReduction/test/otbSparseWvltToAngleMapperListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/CMakeLists.txt b/Modules/Filtering/ImageManipulation/CMakeLists.txt index 3cacb76914..9608d836d5 100644 --- a/Modules/Filtering/ImageManipulation/CMakeLists.txt +++ b/Modules/Filtering/ImageManipulation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageManipulation/include/otbAffineFunctor.h b/Modules/Filtering/ImageManipulation/include/otbAffineFunctor.h index 4e74079e69..17294d7940 100644 --- a/Modules/Filtering/ImageManipulation/include/otbAffineFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbAffineFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbAlphaBlendingFunctor.h b/Modules/Filtering/ImageManipulation/include/otbAlphaBlendingFunctor.h index 0595dc80d7..4869ee16e1 100644 --- a/Modules/Filtering/ImageManipulation/include/otbAlphaBlendingFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbAlphaBlendingFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbAmplitudeFunctor.h b/Modules/Filtering/ImageManipulation/include/otbAmplitudeFunctor.h index 711506497b..b96aa69e76 100644 --- a/Modules/Filtering/ImageManipulation/include/otbAmplitudeFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbAmplitudeFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorImageFilter.h index 9d0ffc0ed8..e4d8a46814 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.h index 726953e870..b533091ee2 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.hxx index 031633180a..2c908a1a71 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.h index 1eefedc23a..ded53dee83 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.hxx index e671a7f858..139c81bb1b 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryFunctorNeighborhoodVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.h b/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.h index a313b57f4e..2ea84f97df 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.hxx b/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.hxx index 7b7f918d8e..67a85a7491 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryImageDensityFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.h index 222aaa1726..3de24024ee 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.hxx index d0c244b022..b2ea440138 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbBinaryImageToDensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h index dd41727317..cf87c9b597 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbBinarySpectralAngleFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.h index 1e356b7ce0..3a10bc7d0c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbBoxAndWhiskerImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.hxx index 1c03d3c755..cbef8543f6 100644 --- a/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbBoxAndWhiskerImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbChangeInformationImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.h index a73a78da69..6572e035af 100644 --- a/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.hxx index 393bbd3ffe..4843fd12f4 100644 --- a/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbChangeInformationImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.h index 8f15f73d94..342c8634a8 100644 --- a/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.hxx index 40a244fbf4..15b1ea4efb 100644 --- a/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbChangeLabelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbChangeNoDataValueFilter.h b/Modules/Filtering/ImageManipulation/include/otbChangeNoDataValueFilter.h index 6ecb197eb9..058f2c0be2 100644 --- a/Modules/Filtering/ImageManipulation/include/otbChangeNoDataValueFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbChangeNoDataValueFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.h index 5ad7ff4874..ef7ef6d914 100644 --- a/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.hxx index 4a087c410b..9df0e7b4df 100644 --- a/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbClampImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.h index f7c6eb1e63..0575fe8ea8 100644 --- a/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.hxx index 1ab9b1256d..5ac4f7631a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbClampVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.h index d9bd140a49..a8837e4d30 100644 --- a/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.hxx index ffd1e50c60..fe4310a4b4 100644 --- a/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbConcatenateScalarValueImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.h index 3e6ff3fc86..54196d98e9 100644 --- a/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.hxx index 5592df9260..ab8e674718 100644 --- a/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbConcatenateVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbConvertTypeFunctor.h b/Modules/Filtering/ImageManipulation/include/otbConvertTypeFunctor.h index 8cfd4d8276..4d1b707fd3 100644 --- a/Modules/Filtering/ImageManipulation/include/otbConvertTypeFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbConvertTypeFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValue.h b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValue.h index e3ad987036..4eb56cd622 100644 --- a/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValue.h +++ b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.h b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.h index 6adffafa01..e84f825ea1 100644 --- a/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.h +++ b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.hxx b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.hxx index f42a10328a..f5a8450b56 100644 --- a/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbEuclideanDistanceMetricWithMissingValuePow2.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.h b/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.h index bf78d8173a..b74245ef35 100644 --- a/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.h +++ b/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.hxx b/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.hxx index 9264f60cf0..1e528b7f17 100644 --- a/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbFlexibleDistanceWithMissingValue.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.h index b2c6df563f..5c17c58ba5 100644 --- a/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.hxx index f87d2bd750..10382f3428 100644 --- a/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbFunctionWithNeighborhoodToImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.h index 392ae61758..a45a37c15d 100644 --- a/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.hxx index f3081f8ee5..34ecb1be90 100644 --- a/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbGridResampleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbHillShadingFilter.h b/Modules/Filtering/ImageManipulation/include/otbHillShadingFilter.h index 10806ce651..20b3951e6b 100644 --- a/Modules/Filtering/ImageManipulation/include/otbHillShadingFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbHillShadingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbHillShadingFunctor.h b/Modules/Filtering/ImageManipulation/include/otbHillShadingFunctor.h index 0bc4c38e30..22299ec96a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbHillShadingFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbHillShadingFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbImageToNoDataMaskFilter.h b/Modules/Filtering/ImageManipulation/include/otbImageToNoDataMaskFilter.h index 4522a8d20d..2f5b08b722 100644 --- a/Modules/Filtering/ImageManipulation/include/otbImageToNoDataMaskFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbImageToNoDataMaskFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbImageToVectorImageCastFilter.h b/Modules/Filtering/ImageManipulation/include/otbImageToVectorImageCastFilter.h index 6e0a4475fc..ca4a1887c3 100644 --- a/Modules/Filtering/ImageManipulation/include/otbImageToVectorImageCastFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbImageToVectorImageCastFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbInPlacePassFilter.h b/Modules/Filtering/ImageManipulation/include/otbInPlacePassFilter.h index 7329ace284..ad2d09095a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbInPlacePassFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbInPlacePassFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbLocalGradientVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbLocalGradientVectorImageFilter.h index 185021aea1..18148d2fa1 100644 --- a/Modules/Filtering/ImageManipulation/include/otbLocalGradientVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbLocalGradientVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbLog10ThresholdedImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbLog10ThresholdedImageFilter.h index 751b63212e..8f003dc835 100644 --- a/Modules/Filtering/ImageManipulation/include/otbLog10ThresholdedImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbLog10ThresholdedImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.h b/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.h index d3685aca47..4fc46905be 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.h +++ b/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.hxx b/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.hxx index f92193f6ae..d538de9dba 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbMaskedIteratorDecorator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.h index 42cae27d32..9971f9afdb 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.hxx index 0d65aba343..3c0ec7d854 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbMatrixImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMeanFunctor.h b/Modules/Filtering/ImageManipulation/include/otbMeanFunctor.h index 0b384f9d77..ba73a4e79c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMeanFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbMeanFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbMultiplyByScalarImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbMultiplyByScalarImageFilter.h index 10d8731d5a..ba5ee6cf7f 100644 --- a/Modules/Filtering/ImageManipulation/include/otbMultiplyByScalarImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbMultiplyByScalarImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.h b/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.h index c4567b930a..e41e92399d 100644 --- a/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.h +++ b/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.hxx b/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.hxx index 8c49110e3a..108c02b37a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbNRIBandImagesToOneNComplexBandsImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.h b/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.h index 6f144412eb..d490cb013b 100644 --- a/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.h +++ b/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.hxx b/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.hxx index 3dba43fa60..14bb46626a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbOneRIBandImageToOneComplexBandImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.h index 417f945ebc..dde2741c31 100644 --- a/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.hxx index e600e0b290..4cfe11e021 100644 --- a/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbPerBandVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbPhaseFunctor.h b/Modules/Filtering/ImageManipulation/include/otbPhaseFunctor.h index 4e1711aa06..e388eb843c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbPhaseFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbPhaseFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.h index 200e3adf8e..20cc31d846 100644 --- a/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.hxx index ee9396d49e..a295ba445e 100644 --- a/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbPrintableImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbRealAndImaginaryImageToComplexImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbRealAndImaginaryImageToComplexImageFilter.h index 442e956ad4..450a052786 100644 --- a/Modules/Filtering/ImageManipulation/include/otbRealAndImaginaryImageToComplexImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbRealAndImaginaryImageToComplexImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbRealImageToComplexImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbRealImageToComplexImageFilter.h index d9c462b239..fd3352ff8e 100644 --- a/Modules/Filtering/ImageManipulation/include/otbRealImageToComplexImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbRealImageToComplexImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbShiftScaleImageAdaptor.h b/Modules/Filtering/ImageManipulation/include/otbShiftScaleImageAdaptor.h index ce38fbbdeb..3e228b0f56 100644 --- a/Modules/Filtering/ImageManipulation/include/otbShiftScaleImageAdaptor.h +++ b/Modules/Filtering/ImageManipulation/include/otbShiftScaleImageAdaptor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.h index efd0981d42..71121b9a06 100644 --- a/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.hxx index e788125855..5ec2f65f6c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbShiftScaleVectorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h index 31fac3069b..5c3d09538c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.hxx index faae191a2c..ada4a4ec0c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleDistanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h index 0d0de1cd42..1ca9a87501 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralAngleFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h index 65f94b23a0..e5b2350c33 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSqrtSpectralAngleFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.h index ddeb0fd2eb..7d1f1205cf 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.hxx index 2e43ae39f2..c22537e892 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingInnerProductVectorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.h index f7624692d3..7daca26a1a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.hxx index effd4543a7..1d893d8ec5 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingMatrixTransposeMatrixImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.h index 686e34d952..ce26faa91f 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.hxx index 5c16bc7126..8287fe92f7 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingResampleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.h index a77087e53b..18787aa4ce 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.hxx index 97a2373425..83ab6206e7 100644 --- a/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbStreamingShrinkImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbTernaryFunctorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbTernaryFunctorImageFilter.h index bad54a9bc7..80992d7275 100644 --- a/Modules/Filtering/ImageManipulation/include/otbTernaryFunctorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbTernaryFunctorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.h index 34553b7ed3..2d8ea1581c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.hxx index c30709edb1..a29c5c859a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbThresholdVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.h index 232f6e0b5f..75e97b57f8 100644 --- a/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.hxx index a689f35ab9..b7d9776728 100644 --- a/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbTileImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.h b/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.h index 67342f4a35..53b82669c2 100644 --- a/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.h +++ b/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.hxx b/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.hxx index 859add1748..18d622fa05 100644 --- a/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbTwoNRIBandsImageToNComplexBandsImage.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.h index 01a87c4a17..35ded16ba9 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.hxx index c389d4f911..5eb1df0a91 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.h index 1f9b90a99e..fb23ca6f2e 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.hxx index ff759fa9c4..3bba832255 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.h index 2019f59b1a..522d6ae868 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.hxx index e9ddd90b55..4696be3728 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryFunctorWithIndexImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.h index 606e91334f..9fa901ae30 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.hxx index 6e728765d7..5c3358540c 100644 --- a/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbUnaryImageFunctorWithVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.h index 8299239dee..5b55c4105f 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.hxx index f366ed2597..4a34f59794 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbVectorImageTo3DScalarImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorImageToAmplitudeImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbVectorImageToAmplitudeImageFilter.h index c308f51967..f06e439328 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorImageToAmplitudeImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbVectorImageToAmplitudeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h index 2095f6f7c8..1fb6d9500a 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.hxx b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.hxx index 26d09546ad..60278d3111 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.hxx +++ b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/otb-module.cmake b/Modules/Filtering/ImageManipulation/otb-module.cmake index 8d908064ec..06d3a62ac6 100644 --- a/Modules/Filtering/ImageManipulation/otb-module.cmake +++ b/Modules/Filtering/ImageManipulation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageManipulation/src/CMakeLists.txt b/Modules/Filtering/ImageManipulation/src/CMakeLists.txt index ff21b7e82c..492a528087 100644 --- a/Modules/Filtering/ImageManipulation/src/CMakeLists.txt +++ b/Modules/Filtering/ImageManipulation/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageManipulation/src/otbStreamingShrinkImageFilter.cxx b/Modules/Filtering/ImageManipulation/src/otbStreamingShrinkImageFilter.cxx index 7a145ced8a..7894e85911 100644 --- a/Modules/Filtering/ImageManipulation/src/otbStreamingShrinkImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/src/otbStreamingShrinkImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/CMakeLists.txt b/Modules/Filtering/ImageManipulation/test/CMakeLists.txt index 53e76737f0..b9095c5c5f 100644 --- a/Modules/Filtering/ImageManipulation/test/CMakeLists.txt +++ b/Modules/Filtering/ImageManipulation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageManipulation/test/otbAmplitudeFunctorTest.cxx b/Modules/Filtering/ImageManipulation/test/otbAmplitudeFunctorTest.cxx index 8357eb2b28..fc44803b75 100644 --- a/Modules/Filtering/ImageManipulation/test/otbAmplitudeFunctorTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbAmplitudeFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbBinaryImageDensityFunction.cxx b/Modules/Filtering/ImageManipulation/test/otbBinaryImageDensityFunction.cxx index 32dcec647d..38168d2088 100644 --- a/Modules/Filtering/ImageManipulation/test/otbBinaryImageDensityFunction.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbBinaryImageDensityFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbBinaryImageToDensityImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbBinaryImageToDensityImageFilter.cxx index 45ca65caeb..a849215576 100644 --- a/Modules/Filtering/ImageManipulation/test/otbBinaryImageToDensityImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbBinaryImageToDensityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbBoxAndWhiskerImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbBoxAndWhiskerImageFilter.cxx index 5d53d211d7..20422452fd 100644 --- a/Modules/Filtering/ImageManipulation/test/otbBoxAndWhiskerImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbBoxAndWhiskerImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbChangeInformationImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbChangeInformationImageFilter.cxx index 4aef126b2a..02ede6e356 100644 --- a/Modules/Filtering/ImageManipulation/test/otbChangeInformationImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbChangeInformationImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbChangeLabelImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbChangeLabelImageFilter.cxx index df1ad3ce66..0aa40adeb2 100644 --- a/Modules/Filtering/ImageManipulation/test/otbChangeLabelImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbChangeLabelImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbChangeNoDataValueFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbChangeNoDataValueFilter.cxx index d73b0a8115..ed118c54b5 100644 --- a/Modules/Filtering/ImageManipulation/test/otbChangeNoDataValueFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbChangeNoDataValueFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbClampImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbClampImageFilter.cxx index 5798c27f2b..8661665192 100644 --- a/Modules/Filtering/ImageManipulation/test/otbClampImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbClampImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbClampVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbClampVectorImageFilter.cxx index b29c8f183d..8e388ec325 100644 --- a/Modules/Filtering/ImageManipulation/test/otbClampVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbClampVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbConcatenateScalarValueImageFilterTest.cxx b/Modules/Filtering/ImageManipulation/test/otbConcatenateScalarValueImageFilterTest.cxx index 321259e737..6f33d6b45b 100644 --- a/Modules/Filtering/ImageManipulation/test/otbConcatenateScalarValueImageFilterTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbConcatenateScalarValueImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbConcatenateVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbConcatenateVectorImageFilter.cxx index 1cafc9beb5..cad35d85ae 100644 --- a/Modules/Filtering/ImageManipulation/test/otbConcatenateVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbConcatenateVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbEuclideanDistanceMetricWithMissingValue.cxx b/Modules/Filtering/ImageManipulation/test/otbEuclideanDistanceMetricWithMissingValue.cxx index d440b11dbf..fd975827ed 100644 --- a/Modules/Filtering/ImageManipulation/test/otbEuclideanDistanceMetricWithMissingValue.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbEuclideanDistanceMetricWithMissingValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/test/otbExtractROIResample.cxx b/Modules/Filtering/ImageManipulation/test/otbExtractROIResample.cxx index f7c1d079eb..152b69b0a5 100644 --- a/Modules/Filtering/ImageManipulation/test/otbExtractROIResample.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbExtractROIResample.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbFunctionWithNeighborhoodToImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbFunctionWithNeighborhoodToImageFilter.cxx index d83ef24289..068db2b7b9 100644 --- a/Modules/Filtering/ImageManipulation/test/otbFunctionWithNeighborhoodToImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbFunctionWithNeighborhoodToImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbGridResampleImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbGridResampleImageFilter.cxx index 5779edd323..e7df07f113 100644 --- a/Modules/Filtering/ImageManipulation/test/otbGridResampleImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbGridResampleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbImageManipulationTestDriver.cxx b/Modules/Filtering/ImageManipulation/test/otbImageManipulationTestDriver.cxx index 0b24cab0e4..37610a003a 100644 --- a/Modules/Filtering/ImageManipulation/test/otbImageManipulationTestDriver.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbImageManipulationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbImageToNoDataMaskFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbImageToNoDataMaskFilter.cxx index f619479d9b..8a82f922a6 100644 --- a/Modules/Filtering/ImageManipulation/test/otbImageToNoDataMaskFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbImageToNoDataMaskFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbImageToVectorImageCastFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbImageToVectorImageCastFilter.cxx index 3b6877bb89..27cd994115 100644 --- a/Modules/Filtering/ImageManipulation/test/otbImageToVectorImageCastFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbImageToVectorImageCastFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbLocalGradientVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbLocalGradientVectorImageFilter.cxx index c0548b629c..69102c7c20 100644 --- a/Modules/Filtering/ImageManipulation/test/otbLocalGradientVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbLocalGradientVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/ImageManipulation/test/otbLog10ThresholdedImageFilterTest.cxx b/Modules/Filtering/ImageManipulation/test/otbLog10ThresholdedImageFilterTest.cxx index 12cd2f070d..ae54aae34e 100644 --- a/Modules/Filtering/ImageManipulation/test/otbLog10ThresholdedImageFilterTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbLog10ThresholdedImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbMaskedIteratorDecorator.cxx b/Modules/Filtering/ImageManipulation/test/otbMaskedIteratorDecorator.cxx index abd6688a8e..ea7d20a292 100644 --- a/Modules/Filtering/ImageManipulation/test/otbMaskedIteratorDecorator.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbMaskedIteratorDecorator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbMatrixImageFilterTest.cxx b/Modules/Filtering/ImageManipulation/test/otbMatrixImageFilterTest.cxx index 04f4865d6d..1cb7132e36 100644 --- a/Modules/Filtering/ImageManipulation/test/otbMatrixImageFilterTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbMatrixImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbMatrixTransposeMatrixImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbMatrixTransposeMatrixImageFilter.cxx index 54b350da07..fa2958d641 100644 --- a/Modules/Filtering/ImageManipulation/test/otbMatrixTransposeMatrixImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbMatrixTransposeMatrixImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbMeanFunctorImageTest.cxx b/Modules/Filtering/ImageManipulation/test/otbMeanFunctorImageTest.cxx index 05761b6c9f..8eb61be7df 100644 --- a/Modules/Filtering/ImageManipulation/test/otbMeanFunctorImageTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbMeanFunctorImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbMultiplyByScalarImageTest.cxx b/Modules/Filtering/ImageManipulation/test/otbMultiplyByScalarImageTest.cxx index fd407501e4..bfeb36a9a4 100644 --- a/Modules/Filtering/ImageManipulation/test/otbMultiplyByScalarImageTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbMultiplyByScalarImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbNRIBandImagesToOneNComplexBandsImage.cxx b/Modules/Filtering/ImageManipulation/test/otbNRIBandImagesToOneNComplexBandsImage.cxx index 4e51dfd225..4c6f1410ac 100644 --- a/Modules/Filtering/ImageManipulation/test/otbNRIBandImagesToOneNComplexBandsImage.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbNRIBandImagesToOneNComplexBandsImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbOneRIBandImageToOneComplexBandImage.cxx b/Modules/Filtering/ImageManipulation/test/otbOneRIBandImageToOneComplexBandImage.cxx index f240f8dafb..52cf565a27 100644 --- a/Modules/Filtering/ImageManipulation/test/otbOneRIBandImageToOneComplexBandImage.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbOneRIBandImageToOneComplexBandImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithMeanFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithMeanFilter.cxx index 536646e0db..aade2105db 100644 --- a/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithMeanFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithMeanFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithSobelFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithSobelFilter.cxx index 25ca504729..94d5538e73 100644 --- a/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithSobelFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbPerBandVectorImageFilterWithSobelFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbPhaseFunctorTest.cxx b/Modules/Filtering/ImageManipulation/test/otbPhaseFunctorTest.cxx index d623663986..13cc70f7ad 100644 --- a/Modules/Filtering/ImageManipulation/test/otbPhaseFunctorTest.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbPhaseFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilter.cxx index 61c15de1fd..bed63734ee 100644 --- a/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilterWithMask.cxx b/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilterWithMask.cxx index de0824209f..9d7fa383cc 100644 --- a/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilterWithMask.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbPrintableImageFilterWithMask.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbRegionProjectionResampler.cxx b/Modules/Filtering/ImageManipulation/test/otbRegionProjectionResampler.cxx index 7cd1fa184f..8a82d15eb4 100644 --- a/Modules/Filtering/ImageManipulation/test/otbRegionProjectionResampler.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbRegionProjectionResampler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbShiftScaleImageAdaptor.cxx b/Modules/Filtering/ImageManipulation/test/otbShiftScaleImageAdaptor.cxx index 99616b1fb9..e951c00f20 100644 --- a/Modules/Filtering/ImageManipulation/test/otbShiftScaleImageAdaptor.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbShiftScaleImageAdaptor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbSpectralAngleDistanceImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbSpectralAngleDistanceImageFilter.cxx index cc9ee9e656..bdf233afde 100644 --- a/Modules/Filtering/ImageManipulation/test/otbSpectralAngleDistanceImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbSpectralAngleDistanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbSqrtSpectralAngleImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbSqrtSpectralAngleImageFilter.cxx index 83a03ecadd..be95d2e326 100644 --- a/Modules/Filtering/ImageManipulation/test/otbSqrtSpectralAngleImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbSqrtSpectralAngleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbStreamingInnerProductVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbStreamingInnerProductVectorImageFilter.cxx index 4656b00144..e973a6b8dd 100644 --- a/Modules/Filtering/ImageManipulation/test/otbStreamingInnerProductVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbStreamingInnerProductVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilter.cxx index a9776b08c7..cde6e1588e 100644 --- a/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilterCompareWithITK.cxx b/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilterCompareWithITK.cxx index 9796cc0a92..c09eca1fb1 100644 --- a/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilterCompareWithITK.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbStreamingResampleImageFilterCompareWithITK.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbStreamingShrinkImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbStreamingShrinkImageFilter.cxx index 09005f4546..fd5fdbacd3 100644 --- a/Modules/Filtering/ImageManipulation/test/otbStreamingShrinkImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbStreamingShrinkImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbThresholdVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbThresholdVectorImageFilter.cxx index f15153b429..21b37c7d4b 100644 --- a/Modules/Filtering/ImageManipulation/test/otbThresholdVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbThresholdVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbTileImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbTileImageFilter.cxx index 97fcefcc75..4082da96e8 100644 --- a/Modules/Filtering/ImageManipulation/test/otbTileImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbTileImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbTwoNRIBandsImageToNComplexBandsImage.cxx b/Modules/Filtering/ImageManipulation/test/otbTwoNRIBandsImageToNComplexBandsImage.cxx index 853218bcec..8494fc70ba 100644 --- a/Modules/Filtering/ImageManipulation/test/otbTwoNRIBandsImageToNComplexBandsImage.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbTwoNRIBandsImageToNComplexBandsImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodImageFilter.cxx index 4420726f49..4ecfff113c 100644 --- a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.cxx index e2cd9e07a3..71b64b0f5e 100644 --- a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorNeighborhoodWithOffsetImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorWithIndexImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorWithIndexImageFilter.cxx index 5eee8f9287..c412e1b626 100644 --- a/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorWithIndexImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbUnaryFunctorWithIndexImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbUnaryImageFunctorWithVectorImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbUnaryImageFunctorWithVectorImageFilter.cxx index a8cb71f030..5175106a3b 100644 --- a/Modules/Filtering/ImageManipulation/test/otbUnaryImageFunctorWithVectorImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbUnaryImageFunctorWithVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbVectorImageTo3DScalarImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbVectorImageTo3DScalarImageFilter.cxx index 195fc25fb9..e7c7c36e4d 100644 --- a/Modules/Filtering/ImageManipulation/test/otbVectorImageTo3DScalarImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbVectorImageTo3DScalarImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbVectorImageToAmplitudeImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbVectorImageToAmplitudeImageFilter.cxx index f6f0e4a7d5..b4daad01a7 100644 --- a/Modules/Filtering/ImageManipulation/test/otbVectorImageToAmplitudeImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbVectorImageToAmplitudeImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageManipulation/test/otbVectorRescaleIntensityImageFilter.cxx b/Modules/Filtering/ImageManipulation/test/otbVectorRescaleIntensityImageFilter.cxx index e2fa4bdd4e..239e6c214e 100644 --- a/Modules/Filtering/ImageManipulation/test/otbVectorRescaleIntensityImageFilter.cxx +++ b/Modules/Filtering/ImageManipulation/test/otbVectorRescaleIntensityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/CMakeLists.txt b/Modules/Filtering/ImageNoise/CMakeLists.txt index f52f8fd2b4..713a8db989 100644 --- a/Modules/Filtering/ImageNoise/CMakeLists.txt +++ b/Modules/Filtering/ImageNoise/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.h b/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.h index cd9c961088..de2aa3dc9e 100644 --- a/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.h +++ b/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.hxx b/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.hxx index 5ad7df02f4..ae971da882 100644 --- a/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.hxx +++ b/Modules/Filtering/ImageNoise/include/otbFrostImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.h b/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.h index 33bf241307..0294e2793e 100644 --- a/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.h +++ b/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.hxx b/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.hxx index 296091308d..9e3f4b8106 100644 --- a/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.hxx +++ b/Modules/Filtering/ImageNoise/include/otbGammaMAPImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.h b/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.h index 6b4d01606e..e0be1afd50 100644 --- a/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.h +++ b/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.hxx b/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.hxx index 6c0aff7b01..3276dc4f4f 100644 --- a/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.hxx +++ b/Modules/Filtering/ImageNoise/include/otbKuanImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.h b/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.h index 79e40f703e..16035078f1 100644 --- a/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.h +++ b/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.hxx b/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.hxx index 7be65acce7..baf6192b21 100644 --- a/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.hxx +++ b/Modules/Filtering/ImageNoise/include/otbLeeImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/include/otbNoiseEstimatorVectorImageFilter.h b/Modules/Filtering/ImageNoise/include/otbNoiseEstimatorVectorImageFilter.h index cc3ff8e83a..3f12a28380 100644 --- a/Modules/Filtering/ImageNoise/include/otbNoiseEstimatorVectorImageFilter.h +++ b/Modules/Filtering/ImageNoise/include/otbNoiseEstimatorVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/otb-module.cmake b/Modules/Filtering/ImageNoise/otb-module.cmake index 6488eda589..625c87c5b0 100644 --- a/Modules/Filtering/ImageNoise/otb-module.cmake +++ b/Modules/Filtering/ImageNoise/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageNoise/test/CMakeLists.txt b/Modules/Filtering/ImageNoise/test/CMakeLists.txt index 313ab8e23f..8f898644ed 100644 --- a/Modules/Filtering/ImageNoise/test/CMakeLists.txt +++ b/Modules/Filtering/ImageNoise/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/ImageNoise/test/otbFrostFilter.cxx b/Modules/Filtering/ImageNoise/test/otbFrostFilter.cxx index 239f23b887..e777cd8e77 100644 --- a/Modules/Filtering/ImageNoise/test/otbFrostFilter.cxx +++ b/Modules/Filtering/ImageNoise/test/otbFrostFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/test/otbGammaMAPFilter.cxx b/Modules/Filtering/ImageNoise/test/otbGammaMAPFilter.cxx index b6175323a4..ecac194e21 100644 --- a/Modules/Filtering/ImageNoise/test/otbGammaMAPFilter.cxx +++ b/Modules/Filtering/ImageNoise/test/otbGammaMAPFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx b/Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx index 3fd744dea2..ee063a6872 100644 --- a/Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx +++ b/Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/test/otbKuanFilter.cxx b/Modules/Filtering/ImageNoise/test/otbKuanFilter.cxx index d216063c2d..bafda845d0 100644 --- a/Modules/Filtering/ImageNoise/test/otbKuanFilter.cxx +++ b/Modules/Filtering/ImageNoise/test/otbKuanFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/ImageNoise/test/otbLeeFilter.cxx b/Modules/Filtering/ImageNoise/test/otbLeeFilter.cxx index 95dbb2b6a9..a194954d30 100644 --- a/Modules/Filtering/ImageNoise/test/otbLeeFilter.cxx +++ b/Modules/Filtering/ImageNoise/test/otbLeeFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/CMakeLists.txt b/Modules/Filtering/MathParser/CMakeLists.txt index 79dd807854..2711183204 100644 --- a/Modules/Filtering/MathParser/CMakeLists.txt +++ b/Modules/Filtering/MathParser/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParser/include/otbBandMathImageFilter.h b/Modules/Filtering/MathParser/include/otbBandMathImageFilter.h index 017186f979..eb85c8f813 100644 --- a/Modules/Filtering/MathParser/include/otbBandMathImageFilter.h +++ b/Modules/Filtering/MathParser/include/otbBandMathImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbBandMathImageFilter.hxx b/Modules/Filtering/MathParser/include/otbBandMathImageFilter.hxx index 536fb064b5..8486c8102f 100644 --- a/Modules/Filtering/MathParser/include/otbBandMathImageFilter.hxx +++ b/Modules/Filtering/MathParser/include/otbBandMathImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.h b/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.h index a79c317a43..0f887a3c49 100644 --- a/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.h +++ b/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.hxx b/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.hxx index 777a6da69e..04d6a7444d 100644 --- a/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.hxx +++ b/Modules/Filtering/MathParser/include/otbMaskMuParserFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.h b/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.h index f227489851..9291fc13e0 100644 --- a/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.h +++ b/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.hxx b/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.hxx index 82a91b1cdb..82f37e3fa1 100644 --- a/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.hxx +++ b/Modules/Filtering/MathParser/include/otbMaskMuParserFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbOBIAMuParserFunctor.h b/Modules/Filtering/MathParser/include/otbOBIAMuParserFunctor.h index 9e09d96a2f..0fcdd4ab91 100644 --- a/Modules/Filtering/MathParser/include/otbOBIAMuParserFunctor.h +++ b/Modules/Filtering/MathParser/include/otbOBIAMuParserFunctor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/include/otbParser.h b/Modules/Filtering/MathParser/include/otbParser.h index 6fbecf428d..2a4ea83dd6 100644 --- a/Modules/Filtering/MathParser/include/otbParser.h +++ b/Modules/Filtering/MathParser/include/otbParser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/otb-module.cmake b/Modules/Filtering/MathParser/otb-module.cmake index bc4f899c0e..1614437449 100644 --- a/Modules/Filtering/MathParser/otb-module.cmake +++ b/Modules/Filtering/MathParser/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParser/src/CMakeLists.txt b/Modules/Filtering/MathParser/src/CMakeLists.txt index 34833fcae4..4b2a743f22 100644 --- a/Modules/Filtering/MathParser/src/CMakeLists.txt +++ b/Modules/Filtering/MathParser/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParser/src/otbParser.cxx b/Modules/Filtering/MathParser/src/otbParser.cxx index 991685dd74..c613693c98 100644 --- a/Modules/Filtering/MathParser/src/otbParser.cxx +++ b/Modules/Filtering/MathParser/src/otbParser.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/test/CMakeLists.txt b/Modules/Filtering/MathParser/test/CMakeLists.txt index f2dbcdfd27..c7107c0619 100644 --- a/Modules/Filtering/MathParser/test/CMakeLists.txt +++ b/Modules/Filtering/MathParser/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParser/test/otbBandMathImageFilter.cxx b/Modules/Filtering/MathParser/test/otbBandMathImageFilter.cxx index cf498ffe76..d952c0c062 100644 --- a/Modules/Filtering/MathParser/test/otbBandMathImageFilter.cxx +++ b/Modules/Filtering/MathParser/test/otbBandMathImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/test/otbImageListToSingleImageFilterTest.cxx b/Modules/Filtering/MathParser/test/otbImageListToSingleImageFilterTest.cxx index 4fee8c573d..31cda5531c 100644 --- a/Modules/Filtering/MathParser/test/otbImageListToSingleImageFilterTest.cxx +++ b/Modules/Filtering/MathParser/test/otbImageListToSingleImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/test/otbMaskMuParserFilterTest.cxx b/Modules/Filtering/MathParser/test/otbMaskMuParserFilterTest.cxx index a9cc7ee8e0..86c49b91f2 100644 --- a/Modules/Filtering/MathParser/test/otbMaskMuParserFilterTest.cxx +++ b/Modules/Filtering/MathParser/test/otbMaskMuParserFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx b/Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx index 4f12db6c96..8325472608 100644 --- a/Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx +++ b/Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParser/test/otbParserTest.cxx b/Modules/Filtering/MathParser/test/otbParserTest.cxx index efe868fdc8..f09aa5f429 100644 --- a/Modules/Filtering/MathParser/test/otbParserTest.cxx +++ b/Modules/Filtering/MathParser/test/otbParserTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/CMakeLists.txt b/Modules/Filtering/MathParserX/CMakeLists.txt index 42f9067ee2..d353aa42aa 100644 --- a/Modules/Filtering/MathParserX/CMakeLists.txt +++ b/Modules/Filtering/MathParserX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.h b/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.h index 7cfe2ce8d0..ab63faf0be 100644 --- a/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.h +++ b/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.hxx b/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.hxx index d6f88f8579..5ead6d8dae 100644 --- a/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.hxx +++ b/Modules/Filtering/MathParserX/include/otbBandMathXImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/include/otbParserX.h b/Modules/Filtering/MathParserX/include/otbParserX.h index e7c724c567..ccc8533070 100644 --- a/Modules/Filtering/MathParserX/include/otbParserX.h +++ b/Modules/Filtering/MathParserX/include/otbParserX.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/include/otbParserXPlugins.h b/Modules/Filtering/MathParserX/include/otbParserXPlugins.h index 66a732ff8d..7f19fdf894 100644 --- a/Modules/Filtering/MathParserX/include/otbParserXPlugins.h +++ b/Modules/Filtering/MathParserX/include/otbParserXPlugins.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/otb-module.cmake b/Modules/Filtering/MathParserX/otb-module.cmake index 4a601e111e..ba7f91f885 100644 --- a/Modules/Filtering/MathParserX/otb-module.cmake +++ b/Modules/Filtering/MathParserX/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParserX/src/CMakeLists.txt b/Modules/Filtering/MathParserX/src/CMakeLists.txt index eb41767184..e89abca0a0 100644 --- a/Modules/Filtering/MathParserX/src/CMakeLists.txt +++ b/Modules/Filtering/MathParserX/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParserX/src/otbParserX.cxx b/Modules/Filtering/MathParserX/src/otbParserX.cxx index c3f401af5c..a0752dc954 100644 --- a/Modules/Filtering/MathParserX/src/otbParserX.cxx +++ b/Modules/Filtering/MathParserX/src/otbParserX.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/src/otbParserXPlugins.cxx b/Modules/Filtering/MathParserX/src/otbParserXPlugins.cxx index 974bbb18d0..1601e80249 100644 --- a/Modules/Filtering/MathParserX/src/otbParserXPlugins.cxx +++ b/Modules/Filtering/MathParserX/src/otbParserXPlugins.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/test/CMakeLists.txt b/Modules/Filtering/MathParserX/test/CMakeLists.txt index b04f764adc..77bdf2c666 100644 --- a/Modules/Filtering/MathParserX/test/CMakeLists.txt +++ b/Modules/Filtering/MathParserX/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/MathParserX/test/otbBandMathXImageFilter.cxx b/Modules/Filtering/MathParserX/test/otbBandMathXImageFilter.cxx index 23bd530aa2..3c2551c70f 100644 --- a/Modules/Filtering/MathParserX/test/otbBandMathXImageFilter.cxx +++ b/Modules/Filtering/MathParserX/test/otbBandMathXImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/test/otbMathParserXTestDriver.cxx b/Modules/Filtering/MathParserX/test/otbMathParserXTestDriver.cxx index 0158d22efd..e2eefa1650 100644 --- a/Modules/Filtering/MathParserX/test/otbMathParserXTestDriver.cxx +++ b/Modules/Filtering/MathParserX/test/otbMathParserXTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/MathParserX/test/otbParserXTest.cxx b/Modules/Filtering/MathParserX/test/otbParserXTest.cxx index 0409f38010..e4f897d303 100644 --- a/Modules/Filtering/MathParserX/test/otbParserXTest.cxx +++ b/Modules/Filtering/MathParserX/test/otbParserXTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Mosaic/CMakeLists.txt b/Modules/Filtering/Mosaic/CMakeLists.txt index 8aa515ed83..3990d2c82b 100644 --- a/Modules/Filtering/Mosaic/CMakeLists.txt +++ b/Modules/Filtering/Mosaic/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # Copyright (C) 2019 IRSTEA # # This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbMosaicFunctors.h b/Modules/Filtering/Mosaic/include/otbMosaicFunctors.h index 8303ba0be1..8fbfa69a3b 100644 --- a/Modules/Filtering/Mosaic/include/otbMosaicFunctors.h +++ b/Modules/Filtering/Mosaic/include/otbMosaicFunctors.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbPersistentMosaicFilter.h b/Modules/Filtering/Mosaic/include/otbPersistentMosaicFilter.h index 7f16c7b62b..6974142ccb 100644 --- a/Modules/Filtering/Mosaic/include/otbPersistentMosaicFilter.h +++ b/Modules/Filtering/Mosaic/include/otbPersistentMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.h b/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.h index 4f370338b4..ea580301b6 100644 --- a/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.h +++ b/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.hxx b/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.hxx index 2ac8ecd2cd..74aaad755b 100644 --- a/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.hxx +++ b/Modules/Filtering/Mosaic/include/otbQuadraticallyConstrainedSimpleSolver.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.h b/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.h index 7dcf43dd92..e7a4e79212 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.hxx b/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.hxx index f0c1276929..cfe8ef9d50 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingFeatherMosaicFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.h b/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.h index b8e85d66c2..f5487943b2 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.hxx b/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.hxx index c044e26bcd..5ca8cd6535 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingLargeFeatherMosaicFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.h b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.h index 2c9f3e5a6d..23efcb4b1d 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.hxx b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.hxx index 78860894e1..2f53952bab 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterBase.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.h b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.h index 3a3474d6f6..ac598b0528 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.hxx b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.hxx index 6ea01c094d..a8d1772e86 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingMosaicFilterWithBlendingBase.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.h b/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.h index 85bae42365..fdba3c9a57 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.hxx b/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.hxx index 7c1069d660..73464235af 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingMultibandFeatherMosaicFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.h b/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.h index 450146859d..1c41b1caf6 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.h +++ b/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.hxx b/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.hxx index fda8a66b44..5df3ce0915 100644 --- a/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.hxx +++ b/Modules/Filtering/Mosaic/include/otbStreamingSimpleMosaicFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbSummingFilter.h b/Modules/Filtering/Mosaic/include/otbSummingFilter.h index fb4ae424f3..e26cd3f74a 100644 --- a/Modules/Filtering/Mosaic/include/otbSummingFilter.h +++ b/Modules/Filtering/Mosaic/include/otbSummingFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/include/otbSummingFilter.hxx b/Modules/Filtering/Mosaic/include/otbSummingFilter.hxx index 429add3f33..8096ab5ae3 100644 --- a/Modules/Filtering/Mosaic/include/otbSummingFilter.hxx +++ b/Modules/Filtering/Mosaic/include/otbSummingFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Mosaic/otb-module.cmake b/Modules/Filtering/Mosaic/otb-module.cmake index 0118b96b79..e4a4b4a6a7 100644 --- a/Modules/Filtering/Mosaic/otb-module.cmake +++ b/Modules/Filtering/Mosaic/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # Copyright (C) 2019 IRSTEA # # This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Path/CMakeLists.txt b/Modules/Filtering/Path/CMakeLists.txt index 0f181e3957..61bba620ed 100644 --- a/Modules/Filtering/Path/CMakeLists.txt +++ b/Modules/Filtering/Path/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Path/include/otbClosePathFunctor.h b/Modules/Filtering/Path/include/otbClosePathFunctor.h index 227937734c..f98a831b22 100644 --- a/Modules/Filtering/Path/include/otbClosePathFunctor.h +++ b/Modules/Filtering/Path/include/otbClosePathFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbCompacityPathFunction.h b/Modules/Filtering/Path/include/otbCompacityPathFunction.h index f5a995cf23..d35c50e918 100644 --- a/Modules/Filtering/Path/include/otbCompacityPathFunction.h +++ b/Modules/Filtering/Path/include/otbCompacityPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbCompacityPathFunction.hxx b/Modules/Filtering/Path/include/otbCompacityPathFunction.hxx index 682cf4412a..6ff0a9ee70 100644 --- a/Modules/Filtering/Path/include/otbCompacityPathFunction.hxx +++ b/Modules/Filtering/Path/include/otbCompacityPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbDrawPathFilter.h b/Modules/Filtering/Path/include/otbDrawPathFilter.h index d8d6a84ac4..a56cd617d0 100644 --- a/Modules/Filtering/Path/include/otbDrawPathFilter.h +++ b/Modules/Filtering/Path/include/otbDrawPathFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbDrawPathFilter.hxx b/Modules/Filtering/Path/include/otbDrawPathFilter.hxx index 495b454ab7..291499bef4 100644 --- a/Modules/Filtering/Path/include/otbDrawPathFilter.hxx +++ b/Modules/Filtering/Path/include/otbDrawPathFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbDrawPathListFilter.h b/Modules/Filtering/Path/include/otbDrawPathListFilter.h index 3138f109b3..ae88068241 100644 --- a/Modules/Filtering/Path/include/otbDrawPathListFilter.h +++ b/Modules/Filtering/Path/include/otbDrawPathListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbDrawPathListFilter.hxx b/Modules/Filtering/Path/include/otbDrawPathListFilter.hxx index cd148e3df5..fcb3cf3c1c 100644 --- a/Modules/Filtering/Path/include/otbDrawPathListFilter.hxx +++ b/Modules/Filtering/Path/include/otbDrawPathListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.h b/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.h index 45962391d8..0440bbc779 100644 --- a/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.h +++ b/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.hxx b/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.hxx index 41336248e6..1efffbd857 100644 --- a/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.hxx +++ b/Modules/Filtering/Path/include/otbImageFittingPolygonListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToEdgePathFilter.h b/Modules/Filtering/Path/include/otbImageToEdgePathFilter.h index d98ee130f0..a055d93a0a 100644 --- a/Modules/Filtering/Path/include/otbImageToEdgePathFilter.h +++ b/Modules/Filtering/Path/include/otbImageToEdgePathFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToEdgePathFilter.hxx b/Modules/Filtering/Path/include/otbImageToEdgePathFilter.hxx index 240e88502e..c4d685714e 100644 --- a/Modules/Filtering/Path/include/otbImageToEdgePathFilter.hxx +++ b/Modules/Filtering/Path/include/otbImageToEdgePathFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToPathFilter.h b/Modules/Filtering/Path/include/otbImageToPathFilter.h index 2ab084cd28..d7277dd070 100644 --- a/Modules/Filtering/Path/include/otbImageToPathFilter.h +++ b/Modules/Filtering/Path/include/otbImageToPathFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToPathFilter.hxx b/Modules/Filtering/Path/include/otbImageToPathFilter.hxx index 0cad899080..2a81eba8b8 100644 --- a/Modules/Filtering/Path/include/otbImageToPathFilter.hxx +++ b/Modules/Filtering/Path/include/otbImageToPathFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToPathListFilter.h b/Modules/Filtering/Path/include/otbImageToPathListFilter.h index a5ab1ce6c2..fa0de8550d 100644 --- a/Modules/Filtering/Path/include/otbImageToPathListFilter.h +++ b/Modules/Filtering/Path/include/otbImageToPathListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbImageToPathListFilter.hxx b/Modules/Filtering/Path/include/otbImageToPathListFilter.hxx index 1c2a3d1476..be8076f2bf 100644 --- a/Modules/Filtering/Path/include/otbImageToPathListFilter.hxx +++ b/Modules/Filtering/Path/include/otbImageToPathListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbOrientationPathFunction.h b/Modules/Filtering/Path/include/otbOrientationPathFunction.h index 9f72ad55c6..a742806cf7 100644 --- a/Modules/Filtering/Path/include/otbOrientationPathFunction.h +++ b/Modules/Filtering/Path/include/otbOrientationPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbOrientationPathFunction.hxx b/Modules/Filtering/Path/include/otbOrientationPathFunction.hxx index cfeaf8d573..a34bfc5fda 100644 --- a/Modules/Filtering/Path/include/otbOrientationPathFunction.hxx +++ b/Modules/Filtering/Path/include/otbOrientationPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathFunction.h b/Modules/Filtering/Path/include/otbPathFunction.h index d1f0f4e26a..8a0969f915 100644 --- a/Modules/Filtering/Path/include/otbPathFunction.h +++ b/Modules/Filtering/Path/include/otbPathFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathFunction.hxx b/Modules/Filtering/Path/include/otbPathFunction.hxx index 71796c0d1f..68c89cdad2 100644 --- a/Modules/Filtering/Path/include/otbPathFunction.hxx +++ b/Modules/Filtering/Path/include/otbPathFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathLengthFunctor.h b/Modules/Filtering/Path/include/otbPathLengthFunctor.h index ecaaf6411f..662b389426 100644 --- a/Modules/Filtering/Path/include/otbPathLengthFunctor.h +++ b/Modules/Filtering/Path/include/otbPathLengthFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathListSource.h b/Modules/Filtering/Path/include/otbPathListSource.h index 13f52b0b92..3fce1f0079 100644 --- a/Modules/Filtering/Path/include/otbPathListSource.h +++ b/Modules/Filtering/Path/include/otbPathListSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.h b/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.h index e16ae167d5..0a0501508a 100644 --- a/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.h +++ b/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.hxx b/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.hxx index 189bba5911..cbd0ed5a83 100644 --- a/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.hxx +++ b/Modules/Filtering/Path/include/otbPathListToHistogramGenerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathListToPathListFilter.h b/Modules/Filtering/Path/include/otbPathListToPathListFilter.h index 92a40c1e1a..ab86425033 100644 --- a/Modules/Filtering/Path/include/otbPathListToPathListFilter.h +++ b/Modules/Filtering/Path/include/otbPathListToPathListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPathMeanDistanceFunctor.h b/Modules/Filtering/Path/include/otbPathMeanDistanceFunctor.h index cafec08e73..094b7d71b3 100644 --- a/Modules/Filtering/Path/include/otbPathMeanDistanceFunctor.h +++ b/Modules/Filtering/Path/include/otbPathMeanDistanceFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.h b/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.h index 8475223219..491abd05ff 100644 --- a/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.h +++ b/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.hxx b/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.hxx index 4949e1d3f1..0c3afbd611 100644 --- a/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.hxx +++ b/Modules/Filtering/Path/include/otbPolyLineImageConstIterator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbPolyLineImageIterator.h b/Modules/Filtering/Path/include/otbPolyLineImageIterator.h index 4374eb5c80..bb668a7615 100644 --- a/Modules/Filtering/Path/include/otbPolyLineImageIterator.h +++ b/Modules/Filtering/Path/include/otbPolyLineImageIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.h b/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.h index ce9c60c555..4cb689aabc 100644 --- a/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.h +++ b/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.hxx b/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.hxx index ce40d6d895..b0e9ce27d2 100644 --- a/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.hxx +++ b/Modules/Filtering/Path/include/otbRegionImageToRectangularPathListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/otb-module.cmake b/Modules/Filtering/Path/otb-module.cmake index ee33252db8..cc1a587104 100644 --- a/Modules/Filtering/Path/otb-module.cmake +++ b/Modules/Filtering/Path/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Path/test/CMakeLists.txt b/Modules/Filtering/Path/test/CMakeLists.txt index 79fe10a22d..6d93616ce1 100644 --- a/Modules/Filtering/Path/test/CMakeLists.txt +++ b/Modules/Filtering/Path/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Path/test/otbClosePathFunctor.cxx b/Modules/Filtering/Path/test/otbClosePathFunctor.cxx index 4d41d0e5c4..8cc41c0c1b 100644 --- a/Modules/Filtering/Path/test/otbClosePathFunctor.cxx +++ b/Modules/Filtering/Path/test/otbClosePathFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbCompacityPathCircle.cxx b/Modules/Filtering/Path/test/otbCompacityPathCircle.cxx index 906dcafd2f..c02c42bb29 100644 --- a/Modules/Filtering/Path/test/otbCompacityPathCircle.cxx +++ b/Modules/Filtering/Path/test/otbCompacityPathCircle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbCompacityPathRectangle.cxx b/Modules/Filtering/Path/test/otbCompacityPathRectangle.cxx index bc046fd1cc..bffabbed18 100644 --- a/Modules/Filtering/Path/test/otbCompacityPathRectangle.cxx +++ b/Modules/Filtering/Path/test/otbCompacityPathRectangle.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbCompacityPathSquare.cxx b/Modules/Filtering/Path/test/otbCompacityPathSquare.cxx index 8b1a13a774..20a26c525b 100644 --- a/Modules/Filtering/Path/test/otbCompacityPathSquare.cxx +++ b/Modules/Filtering/Path/test/otbCompacityPathSquare.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbDrawPath.cxx b/Modules/Filtering/Path/test/otbDrawPath.cxx index 2aaa448cb6..f90dfd0d1e 100644 --- a/Modules/Filtering/Path/test/otbDrawPath.cxx +++ b/Modules/Filtering/Path/test/otbDrawPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbDrawPathFilter.cxx b/Modules/Filtering/Path/test/otbDrawPathFilter.cxx index 8e2835e293..97c8526e05 100644 --- a/Modules/Filtering/Path/test/otbDrawPathFilter.cxx +++ b/Modules/Filtering/Path/test/otbDrawPathFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbDrawPathListFilter.cxx b/Modules/Filtering/Path/test/otbDrawPathListFilter.cxx index 5468dd899d..2dd142e1aa 100644 --- a/Modules/Filtering/Path/test/otbDrawPathListFilter.cxx +++ b/Modules/Filtering/Path/test/otbDrawPathListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbDrawPathListFilterWithValue.cxx b/Modules/Filtering/Path/test/otbDrawPathListFilterWithValue.cxx index 08caa5a58a..dd81c148e0 100644 --- a/Modules/Filtering/Path/test/otbDrawPathListFilterWithValue.cxx +++ b/Modules/Filtering/Path/test/otbDrawPathListFilterWithValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbImageFittingPolygonListFilter.cxx b/Modules/Filtering/Path/test/otbImageFittingPolygonListFilter.cxx index fd5fb534c5..ea948b0f97 100644 --- a/Modules/Filtering/Path/test/otbImageFittingPolygonListFilter.cxx +++ b/Modules/Filtering/Path/test/otbImageFittingPolygonListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbImageToEdgePathFilter.cxx b/Modules/Filtering/Path/test/otbImageToEdgePathFilter.cxx index b3f3048680..5eb6f86c52 100644 --- a/Modules/Filtering/Path/test/otbImageToEdgePathFilter.cxx +++ b/Modules/Filtering/Path/test/otbImageToEdgePathFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbOrientationPath.cxx b/Modules/Filtering/Path/test/otbOrientationPath.cxx index df51994f61..f429f4dbc9 100644 --- a/Modules/Filtering/Path/test/otbOrientationPath.cxx +++ b/Modules/Filtering/Path/test/otbOrientationPath.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbPathLengthFunctor.cxx b/Modules/Filtering/Path/test/otbPathLengthFunctor.cxx index 92bc008802..748a657690 100644 --- a/Modules/Filtering/Path/test/otbPathLengthFunctor.cxx +++ b/Modules/Filtering/Path/test/otbPathLengthFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbPathListToHistogramGenerator.cxx b/Modules/Filtering/Path/test/otbPathListToHistogramGenerator.cxx index b5a444005c..41e9cb57f3 100644 --- a/Modules/Filtering/Path/test/otbPathListToHistogramGenerator.cxx +++ b/Modules/Filtering/Path/test/otbPathListToHistogramGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbPathTestDriver.cxx b/Modules/Filtering/Path/test/otbPathTestDriver.cxx index 36352f2ca8..d8625a65b8 100644 --- a/Modules/Filtering/Path/test/otbPathTestDriver.cxx +++ b/Modules/Filtering/Path/test/otbPathTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbPolyLineImageConstIterator.cxx b/Modules/Filtering/Path/test/otbPolyLineImageConstIterator.cxx index b8abbbe6bc..9a528a90b7 100644 --- a/Modules/Filtering/Path/test/otbPolyLineImageConstIterator.cxx +++ b/Modules/Filtering/Path/test/otbPolyLineImageConstIterator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbPolyLineImageIterator.cxx b/Modules/Filtering/Path/test/otbPolyLineImageIterator.cxx index c502ab9676..d3193a6c6b 100644 --- a/Modules/Filtering/Path/test/otbPolyLineImageIterator.cxx +++ b/Modules/Filtering/Path/test/otbPolyLineImageIterator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Path/test/otbRegionImageToRectangularPathListFilter.cxx b/Modules/Filtering/Path/test/otbRegionImageToRectangularPathListFilter.cxx index e584012e3a..789634814a 100644 --- a/Modules/Filtering/Path/test/otbRegionImageToRectangularPathListFilter.cxx +++ b/Modules/Filtering/Path/test/otbRegionImageToRectangularPathListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/CMakeLists.txt b/Modules/Filtering/Polarimetry/CMakeLists.txt index 536efc3306..1f398760fa 100644 --- a/Modules/Filtering/Polarimetry/CMakeLists.txt +++ b/Modules/Filtering/Polarimetry/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Polarimetry/include/otbMuellerToPolarisationDegreeAndPowerImageFilter.h b/Modules/Filtering/Polarimetry/include/otbMuellerToPolarisationDegreeAndPowerImageFilter.h index 751d6675eb..7fb7ba8a24 100644 --- a/Modules/Filtering/Polarimetry/include/otbMuellerToPolarisationDegreeAndPowerImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbMuellerToPolarisationDegreeAndPowerImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbMuellerToReciprocalCovarianceImageFilter.h b/Modules/Filtering/Polarimetry/include/otbMuellerToReciprocalCovarianceImageFilter.h index 9a5df58927..e478f8e606 100644 --- a/Modules/Filtering/Polarimetry/include/otbMuellerToReciprocalCovarianceImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbMuellerToReciprocalCovarianceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.h b/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.h index c6d4ba8776..6b4f2b2008 100644 --- a/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.hxx b/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.hxx index 41b964d3ef..a03479ab68 100644 --- a/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.hxx +++ b/Modules/Filtering/Polarimetry/include/otbMultiChannelsPolarimetricSynthesisFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbPolarimetricData.h b/Modules/Filtering/Polarimetry/include/otbPolarimetricData.h index 2e861ed58e..7951f38b4f 100644 --- a/Modules/Filtering/Polarimetry/include/otbPolarimetricData.h +++ b/Modules/Filtering/Polarimetry/include/otbPolarimetricData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbPolarimetricSynthesisFunctor.h b/Modules/Filtering/Polarimetry/include/otbPolarimetricSynthesisFunctor.h index a6e828d222..6e01570c22 100644 --- a/Modules/Filtering/Polarimetry/include/otbPolarimetricSynthesisFunctor.h +++ b/Modules/Filtering/Polarimetry/include/otbPolarimetricSynthesisFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbPolarimetryTags.h b/Modules/Filtering/Polarimetry/include/otbPolarimetryTags.h index a0ebcc1302..2fb5eee4ca 100644 --- a/Modules/Filtering/Polarimetry/include/otbPolarimetryTags.h +++ b/Modules/Filtering/Polarimetry/include/otbPolarimetryTags.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalBarnesDecompImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalBarnesDecompImageFilter.h index b32fdc3676..cffcbf38c3 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalBarnesDecompImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalBarnesDecompImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalCoherencyToReciprocalMuellerImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalCoherencyToReciprocalMuellerImageFilter.h index 361cb29b4b..c19bd9cbf9 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalCoherencyToReciprocalMuellerImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalCoherencyToReciprocalMuellerImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToCoherencyDegreeImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToCoherencyDegreeImageFilter.h index 6f0a6c45c4..8e6b235c8b 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToCoherencyDegreeImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToCoherencyDegreeImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.h index 19b6055c6d..a34f8022e6 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalHAlphaImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalHAlphaImageFilter.h index 6ddf36eeb8..fa8a650149 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalHAlphaImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalHAlphaImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalHuynenDecompImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalHuynenDecompImageFilter.h index 78016f1657..650fe13182 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalHuynenDecompImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalHuynenDecompImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.h index bf22a08300..4c3be1acc5 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbReciprocalPauliDecompImageFilter.h b/Modules/Filtering/Polarimetry/include/otbReciprocalPauliDecompImageFilter.h index 0d7faf9a25..1185aef982 100644 --- a/Modules/Filtering/Polarimetry/include/otbReciprocalPauliDecompImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbReciprocalPauliDecompImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToCircularCovarianceMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToCircularCovarianceMatrixImageFilter.h index e45a302d3c..a2946b7844 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToCircularCovarianceMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToCircularCovarianceMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToCoherencyMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToCoherencyMatrixImageFilter.h index 897839a142..2f7f6a751a 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToCoherencyMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToCoherencyMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixImageFilter.h index 6f67249008..e3aa75b284 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToCovarianceMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToMuellerMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToMuellerMatrixImageFilter.h index e968844309..f15a84d855 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToMuellerMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToMuellerMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCircularCovarianceMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCircularCovarianceMatrixImageFilter.h index df7272d68c..aa3b3a8494 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCircularCovarianceMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCircularCovarianceMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCoherencyMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCoherencyMatrixImageFilter.h index 5bebd5af5f..dde7795eb7 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCoherencyMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCoherencyMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCovarianceMatrixImageFilter.h b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCovarianceMatrixImageFilter.h index 22447daf09..ba269b2a15 100644 --- a/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCovarianceMatrixImageFilter.h +++ b/Modules/Filtering/Polarimetry/include/otbSinclairToReciprocalCovarianceMatrixImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/otb-module.cmake b/Modules/Filtering/Polarimetry/otb-module.cmake index 036edbb60f..3d1a2fdd2c 100644 --- a/Modules/Filtering/Polarimetry/otb-module.cmake +++ b/Modules/Filtering/Polarimetry/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Polarimetry/src/CMakeLists.txt b/Modules/Filtering/Polarimetry/src/CMakeLists.txt index 2c13be3601..2743823c19 100644 --- a/Modules/Filtering/Polarimetry/src/CMakeLists.txt +++ b/Modules/Filtering/Polarimetry/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Polarimetry/src/otbPolarimetricData.cxx b/Modules/Filtering/Polarimetry/src/otbPolarimetricData.cxx index 8e80cfa38e..d8a333e2fc 100644 --- a/Modules/Filtering/Polarimetry/src/otbPolarimetricData.cxx +++ b/Modules/Filtering/Polarimetry/src/otbPolarimetricData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/CMakeLists.txt b/Modules/Filtering/Polarimetry/test/CMakeLists.txt index 2abcf4ccf2..cdc2455455 100644 --- a/Modules/Filtering/Polarimetry/test/CMakeLists.txt +++ b/Modules/Filtering/Polarimetry/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Polarimetry/test/otbMuellerToPolarisationDegreeAndPowerImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbMuellerToPolarisationDegreeAndPowerImageFilter.cxx index d17fb563e5..96e854ff58 100644 --- a/Modules/Filtering/Polarimetry/test/otbMuellerToPolarisationDegreeAndPowerImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbMuellerToPolarisationDegreeAndPowerImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceFunctor.cxx index 149cc921e8..d5ed29a684 100644 --- a/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceImageFilter.cxx index 1ec4dfedde..59b0e77563 100644 --- a/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbMuellerToReciprocalCovarianceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbMultiChannelsPolarimetricSynthesisFilter.cxx b/Modules/Filtering/Polarimetry/test/otbMultiChannelsPolarimetricSynthesisFilter.cxx index 3bf609a13e..0705e73e0a 100644 --- a/Modules/Filtering/Polarimetry/test/otbMultiChannelsPolarimetricSynthesisFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbMultiChannelsPolarimetricSynthesisFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbPolarimetricData.cxx b/Modules/Filtering/Polarimetry/test/otbPolarimetricData.cxx index 722f2a5956..6162030145 100644 --- a/Modules/Filtering/Polarimetry/test/otbPolarimetricData.cxx +++ b/Modules/Filtering/Polarimetry/test/otbPolarimetricData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbPolarimetricSynthesisFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbPolarimetricSynthesisFunctor.cxx index 33a35ff638..ac22f3a086 100644 --- a/Modules/Filtering/Polarimetry/test/otbPolarimetricSynthesisFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbPolarimetricSynthesisFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx b/Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx index b2ffc16cd5..4e4f239876 100644 --- a/Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx +++ b/Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalBarnesDecomp.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalBarnesDecomp.cxx index 87f59aab84..efbad92638 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalBarnesDecomp.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalBarnesDecomp.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalCoherencyToReciprocalMuellerImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalCoherencyToReciprocalMuellerImageFilter.cxx index 6d3c95c631..8dba656bac 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalCoherencyToReciprocalMuellerImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalCoherencyToReciprocalMuellerImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToCoherencyDegreeImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToCoherencyDegreeImageFilter.cxx index 10ba9e79d5..200dace46a 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToCoherencyDegreeImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToCoherencyDegreeImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.cxx index 366c9999b3..de4817f63a 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalCovarianceToReciprocalCoherencyImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalHAlphaImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalHAlphaImageFilter.cxx index da34c4d369..77480d67c2 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalHAlphaImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalHAlphaImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalHuynenDecomp.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalHuynenDecomp.cxx index 46fbdf4ce6..dee45e9ed3 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalHuynenDecomp.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalHuynenDecomp.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.cxx index 5067bc17b9..a6a6a95a3e 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalLinearCovarianceToReciprocalCircularCovarianceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbReciprocalPauliDecomp.cxx b/Modules/Filtering/Polarimetry/test/otbReciprocalPauliDecomp.cxx index 6d782a1490..446e2cab43 100644 --- a/Modules/Filtering/Polarimetry/test/otbReciprocalPauliDecomp.cxx +++ b/Modules/Filtering/Polarimetry/test/otbReciprocalPauliDecomp.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairImageFilter.cxx index 3ad5d3c593..dd0b4ff99a 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairReciprocalImageFilter.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairReciprocalImageFilter.cxx index 1c6f617a89..a9de050c0c 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairReciprocalImageFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairReciprocalImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToCircularCovarianceMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToCircularCovarianceMatrixFunctor.cxx index a45ab15723..f3860e773e 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToCircularCovarianceMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToCircularCovarianceMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToCoherencyMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToCoherencyMatrixFunctor.cxx index a74471d87f..f31dc25168 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToCoherencyMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToCoherencyMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToCovarianceMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToCovarianceMatrixFunctor.cxx index 375e7dee1a..ee3d811146 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToCovarianceMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToCovarianceMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToMuellerMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToMuellerMatrixFunctor.cxx index c5af6e8c05..c6d3f3f9d5 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToMuellerMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToMuellerMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCircularCovarianceMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCircularCovarianceMatrixFunctor.cxx index a4f1780e7a..880d0d1a2a 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCircularCovarianceMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCircularCovarianceMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCoherencyMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCoherencyMatrixFunctor.cxx index 7d3e53eed4..e6f9494dae 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCoherencyMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCoherencyMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCovarianceMatrixFunctor.cxx b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCovarianceMatrixFunctor.cxx index ab3e755412..9e805b965d 100644 --- a/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCovarianceMatrixFunctor.cxx +++ b/Modules/Filtering/Polarimetry/test/otbSinclairToReciprocalCovarianceMatrixFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Polarimetry/test/otbVectorMultiChannelsPolarimetricSynthesisFilter.cxx b/Modules/Filtering/Polarimetry/test/otbVectorMultiChannelsPolarimetricSynthesisFilter.cxx index fbda25ba74..10cb6eaac5 100644 --- a/Modules/Filtering/Polarimetry/test/otbVectorMultiChannelsPolarimetricSynthesisFilter.cxx +++ b/Modules/Filtering/Polarimetry/test/otbVectorMultiChannelsPolarimetricSynthesisFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/CMakeLists.txt b/Modules/Filtering/Projection/CMakeLists.txt index 711aa01e00..8ce3f7080b 100644 --- a/Modules/Filtering/Projection/CMakeLists.txt +++ b/Modules/Filtering/Projection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.h b/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.h index 0551007b9d..9b5f3fccce 100644 --- a/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.h +++ b/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.hxx b/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.hxx index 8952a8f905..c13ebc85e5 100644 --- a/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.hxx +++ b/Modules/Filtering/Projection/include/otbGCPsToRPCSensorModelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.h b/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.h index aee6b089b1..0fd11cdabe 100644 --- a/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.h +++ b/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.hxx b/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.hxx index eeeabc90ab..6f971ebc42 100644 --- a/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.hxx +++ b/Modules/Filtering/Projection/include/otbGenericRSResampleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGeographicalDistance.h b/Modules/Filtering/Projection/include/otbGeographicalDistance.h index 6b0e813028..b6d8fc5830 100644 --- a/Modules/Filtering/Projection/include/otbGeographicalDistance.h +++ b/Modules/Filtering/Projection/include/otbGeographicalDistance.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGeographicalDistance.hxx b/Modules/Filtering/Projection/include/otbGeographicalDistance.hxx index 788627b716..36d45fd731 100644 --- a/Modules/Filtering/Projection/include/otbGeographicalDistance.hxx +++ b/Modules/Filtering/Projection/include/otbGeographicalDistance.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.h b/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.h index e065ee9d55..6ee68daec0 100644 --- a/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.h +++ b/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.hxx b/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.hxx index 7a9a46ab7c..b62b6978f9 100644 --- a/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.hxx +++ b/Modules/Filtering/Projection/include/otbGeometriesProjectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.h b/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.h index 92c578979a..3010a09cf7 100644 --- a/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.h +++ b/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.hxx b/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.hxx index 72b352e6bc..c327b5758e 100644 --- a/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.hxx +++ b/Modules/Filtering/Projection/include/otbGroundSpacingImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.h b/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.h index bfb1888784..e886b5c248 100644 --- a/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.h +++ b/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.hxx b/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.hxx index 37d0c52335..29322b3254 100644 --- a/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.hxx +++ b/Modules/Filtering/Projection/include/otbImageToEnvelopeVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.h b/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.h index 60b648ef3b..e0ee18aae6 100644 --- a/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.h +++ b/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.hxx b/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.hxx index 8cc9223b7d..a4e7f30bfa 100644 --- a/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.hxx +++ b/Modules/Filtering/Projection/include/otbImportGeoInformationImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.h b/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.h index 0966bfcf72..5eca5d435c 100644 --- a/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.h +++ b/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.hxx b/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.hxx index b8c26db91e..63de8742c3 100644 --- a/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.hxx +++ b/Modules/Filtering/Projection/include/otbLeastSquareAffineTransformEstimator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.h b/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.h index 12646cc234..02c35a60b5 100644 --- a/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.h +++ b/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.hxx b/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.hxx index c1ba72360b..1e2cbc68a0 100644 --- a/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.hxx +++ b/Modules/Filtering/Projection/include/otbPhysicalToRPCSensorModelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbPleiadesPToXSAffineTransformCalculator.h b/Modules/Filtering/Projection/include/otbPleiadesPToXSAffineTransformCalculator.h index af36f928d2..f438600dee 100644 --- a/Modules/Filtering/Projection/include/otbPleiadesPToXSAffineTransformCalculator.h +++ b/Modules/Filtering/Projection/include/otbPleiadesPToXSAffineTransformCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.h b/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.h index 0c3debaeef..1f7983b7a3 100644 --- a/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.h +++ b/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.hxx b/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.hxx index ac0ac50004..856aba74d8 100644 --- a/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.hxx +++ b/Modules/Filtering/Projection/include/otbProjectiveProjectionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbROIdataConversion.h b/Modules/Filtering/Projection/include/otbROIdataConversion.h index 3c8ef2f239..f333d053c6 100644 --- a/Modules/Filtering/Projection/include/otbROIdataConversion.h +++ b/Modules/Filtering/Projection/include/otbROIdataConversion.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbROIdataConversion.hxx b/Modules/Filtering/Projection/include/otbROIdataConversion.hxx index f4f4765381..c90a24e4e4 100644 --- a/Modules/Filtering/Projection/include/otbROIdataConversion.hxx +++ b/Modules/Filtering/Projection/include/otbROIdataConversion.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbRationalTransform.h b/Modules/Filtering/Projection/include/otbRationalTransform.h index 7010f84d9c..6a4827bf0f 100644 --- a/Modules/Filtering/Projection/include/otbRationalTransform.h +++ b/Modules/Filtering/Projection/include/otbRationalTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbTileMapTransform.h b/Modules/Filtering/Projection/include/otbTileMapTransform.h index fac3f0bab3..fd0ca3718e 100644 --- a/Modules/Filtering/Projection/include/otbTileMapTransform.h +++ b/Modules/Filtering/Projection/include/otbTileMapTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbTileMapTransform.hxx b/Modules/Filtering/Projection/include/otbTileMapTransform.hxx index 3643cf3fa6..cb00fdf934 100644 --- a/Modules/Filtering/Projection/include/otbTileMapTransform.hxx +++ b/Modules/Filtering/Projection/include/otbTileMapTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.h b/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.h index 63d911b02d..237f4a0252 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.h +++ b/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.hxx b/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.hxx index 76eb9c9683..7dc369726b 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.hxx +++ b/Modules/Filtering/Projection/include/otbVectorDataIntoImageProjectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.h b/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.h index 750bbe6274..e1ef3df954 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.h +++ b/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.hxx b/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.hxx index 0949f8d236..286e061e64 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.hxx +++ b/Modules/Filtering/Projection/include/otbVectorDataProjectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.h b/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.h index 0d3c83d83c..c283eaec53 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.h +++ b/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.hxx b/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.hxx index 7c6450bd5e..da39db598f 100644 --- a/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.hxx +++ b/Modules/Filtering/Projection/include/otbVectorDataTransformFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/otb-module.cmake b/Modules/Filtering/Projection/otb-module.cmake index 682c8c7e46..9022d22ef3 100644 --- a/Modules/Filtering/Projection/otb-module.cmake +++ b/Modules/Filtering/Projection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Projection/src/CMakeLists.txt b/Modules/Filtering/Projection/src/CMakeLists.txt index 3129f92ca1..2cbbcba088 100644 --- a/Modules/Filtering/Projection/src/CMakeLists.txt +++ b/Modules/Filtering/Projection/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Projection/src/otbGeometriesProjectionFilter.cxx b/Modules/Filtering/Projection/src/otbGeometriesProjectionFilter.cxx index 93e745182a..53d9503ee5 100644 --- a/Modules/Filtering/Projection/src/otbGeometriesProjectionFilter.cxx +++ b/Modules/Filtering/Projection/src/otbGeometriesProjectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/src/otbPleiadesPToXSAffineTransformCalculator.cxx b/Modules/Filtering/Projection/src/otbPleiadesPToXSAffineTransformCalculator.cxx index b7db46477d..67a7ca0557 100644 --- a/Modules/Filtering/Projection/src/otbPleiadesPToXSAffineTransformCalculator.cxx +++ b/Modules/Filtering/Projection/src/otbPleiadesPToXSAffineTransformCalculator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/CMakeLists.txt b/Modules/Filtering/Projection/test/CMakeLists.txt index 4acafdfb44..e06b1613f1 100644 --- a/Modules/Filtering/Projection/test/CMakeLists.txt +++ b/Modules/Filtering/Projection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Projection/test/otbCompositeTransform.cxx b/Modules/Filtering/Projection/test/otbCompositeTransform.cxx index 8048fc0e78..0f69fe3c32 100644 --- a/Modules/Filtering/Projection/test/otbCompositeTransform.cxx +++ b/Modules/Filtering/Projection/test/otbCompositeTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterAndOrtho.cxx b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterAndOrtho.cxx index edf4c71099..80c0d53064 100644 --- a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterAndOrtho.cxx +++ b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterAndOrtho.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterCheckRpcModel.cxx b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterCheckRpcModel.cxx index 25dfa294c5..f9eec4089a 100644 --- a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterCheckRpcModel.cxx +++ b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterCheckRpcModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterWithoutDEM.cxx b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterWithoutDEM.cxx index 4d74bdd5fc..4320d792e7 100644 --- a/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterWithoutDEM.cxx +++ b/Modules/Filtering/Projection/test/otbGCPsToRPCSensorModelImageFilterWithoutDEM.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGenericRSResampleImageFilter.cxx b/Modules/Filtering/Projection/test/otbGenericRSResampleImageFilter.cxx index 7c9b26f624..13fbd123fc 100644 --- a/Modules/Filtering/Projection/test/otbGenericRSResampleImageFilter.cxx +++ b/Modules/Filtering/Projection/test/otbGenericRSResampleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGenericRSTransformFromImage.cxx b/Modules/Filtering/Projection/test/otbGenericRSTransformFromImage.cxx index af6502e51c..4a8af39b5b 100644 --- a/Modules/Filtering/Projection/test/otbGenericRSTransformFromImage.cxx +++ b/Modules/Filtering/Projection/test/otbGenericRSTransformFromImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGenericRSTransformGenericTest.cxx b/Modules/Filtering/Projection/test/otbGenericRSTransformGenericTest.cxx index fd34590d6b..9f01ebb03a 100644 --- a/Modules/Filtering/Projection/test/otbGenericRSTransformGenericTest.cxx +++ b/Modules/Filtering/Projection/test/otbGenericRSTransformGenericTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeographicalDistance.cxx b/Modules/Filtering/Projection/test/otbGeographicalDistance.cxx index 48e658be62..9ea16bad79 100644 --- a/Modules/Filtering/Projection/test/otbGeographicalDistance.cxx +++ b/Modules/Filtering/Projection/test/otbGeographicalDistance.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilter.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilter.cxx index fc1180c6bf..07952b2c7c 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilter.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromGeoToMap.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromGeoToMap.cxx index 1cfd1b9d56..163001a344 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromGeoToMap.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromGeoToMap.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToEPSG.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToEPSG.cxx index cdd0bdb1af..4fa0ca9229 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToEPSG.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToEPSG.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToGeo.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToGeo.cxx index 6fdb9b404d..941cae2c42 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToGeo.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToGeo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToImage.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToImage.cxx index 2362e4ceb7..4e10bd71e4 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToImage.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToSensor.cxx b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToSensor.cxx index f7e03a153e..e7319be24a 100644 --- a/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToSensor.cxx +++ b/Modules/Filtering/Projection/test/otbGeometriesProjectionFilterFromMapToSensor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbImageToEnvelopeVectorDataFilter.cxx b/Modules/Filtering/Projection/test/otbImageToEnvelopeVectorDataFilter.cxx index a444b09d46..082b44bb38 100644 --- a/Modules/Filtering/Projection/test/otbImageToEnvelopeVectorDataFilter.cxx +++ b/Modules/Filtering/Projection/test/otbImageToEnvelopeVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbImageToGenericRSOutputParameters.cxx b/Modules/Filtering/Projection/test/otbImageToGenericRSOutputParameters.cxx index eaecee4300..7ad2438a90 100644 --- a/Modules/Filtering/Projection/test/otbImageToGenericRSOutputParameters.cxx +++ b/Modules/Filtering/Projection/test/otbImageToGenericRSOutputParameters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbImportGeoInformationImageFilter.cxx b/Modules/Filtering/Projection/test/otbImportGeoInformationImageFilter.cxx index c04903d3a2..f470e1d047 100644 --- a/Modules/Filtering/Projection/test/otbImportGeoInformationImageFilter.cxx +++ b/Modules/Filtering/Projection/test/otbImportGeoInformationImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbLeastSquareAffineTransformEstimator.cxx b/Modules/Filtering/Projection/test/otbLeastSquareAffineTransformEstimator.cxx index 606f501037..f78436d3b9 100644 --- a/Modules/Filtering/Projection/test/otbLeastSquareAffineTransformEstimator.cxx +++ b/Modules/Filtering/Projection/test/otbLeastSquareAffineTransformEstimator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbPhysicalToRPCSensorModelImageFilter.cxx b/Modules/Filtering/Projection/test/otbPhysicalToRPCSensorModelImageFilter.cxx index b5941263e0..395b780e41 100644 --- a/Modules/Filtering/Projection/test/otbPhysicalToRPCSensorModelImageFilter.cxx +++ b/Modules/Filtering/Projection/test/otbPhysicalToRPCSensorModelImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx b/Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx index acbe2a1640..121e3f3355 100644 --- a/Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx +++ b/Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbROIdataConversion.cxx b/Modules/Filtering/Projection/test/otbROIdataConversion.cxx index 79a021af43..6d798fc962 100644 --- a/Modules/Filtering/Projection/test/otbROIdataConversion.cxx +++ b/Modules/Filtering/Projection/test/otbROIdataConversion.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbRationalTransform.cxx b/Modules/Filtering/Projection/test/otbRationalTransform.cxx index 49ff47f951..bd95fe574b 100644 --- a/Modules/Filtering/Projection/test/otbRationalTransform.cxx +++ b/Modules/Filtering/Projection/test/otbRationalTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbRationalTransformToDisplacementFieldSource.cxx b/Modules/Filtering/Projection/test/otbRationalTransformToDisplacementFieldSource.cxx index fe09ba2de1..579dd52f22 100644 --- a/Modules/Filtering/Projection/test/otbRationalTransformToDisplacementFieldSource.cxx +++ b/Modules/Filtering/Projection/test/otbRationalTransformToDisplacementFieldSource.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbSensorModel.cxx b/Modules/Filtering/Projection/test/otbSensorModel.cxx index c8fd2bb971..208d573574 100644 --- a/Modules/Filtering/Projection/test/otbSensorModel.cxx +++ b/Modules/Filtering/Projection/test/otbSensorModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbTileImageFilterRSTransformTest.cxx b/Modules/Filtering/Projection/test/otbTileImageFilterRSTransformTest.cxx index c293189259..24ece3588e 100644 --- a/Modules/Filtering/Projection/test/otbTileImageFilterRSTransformTest.cxx +++ b/Modules/Filtering/Projection/test/otbTileImageFilterRSTransformTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbTileMapTransform.cxx b/Modules/Filtering/Projection/test/otbTileMapTransform.cxx index 5ef8113404..c179a79540 100644 --- a/Modules/Filtering/Projection/test/otbTileMapTransform.cxx +++ b/Modules/Filtering/Projection/test/otbTileMapTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataExtractROIandProjection.cxx b/Modules/Filtering/Projection/test/otbVectorDataExtractROIandProjection.cxx index 6064404819..7e62555f22 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataExtractROIandProjection.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataExtractROIandProjection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataIntoImageProjectionFilterTest.cxx b/Modules/Filtering/Projection/test/otbVectorDataIntoImageProjectionFilterTest.cxx index b2ce2387fc..dd1aec17c8 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataIntoImageProjectionFilterTest.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataIntoImageProjectionFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilter.cxx b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilter.cxx index d77e8508ca..0b9f837b2d 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilter.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromGeoToMap.cxx b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromGeoToMap.cxx index 2e309f94cc..2094422f8a 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromGeoToMap.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromGeoToMap.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToGeo.cxx b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToGeo.cxx index e1eea526c2..b85f05ca54 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToGeo.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToGeo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToImage.cxx b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToImage.cxx index ac794442db..e0e0bec9a1 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToImage.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToSensor.cxx b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToSensor.cxx index caa24d2154..5a77d94b12 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToSensor.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataProjectionFilterFromMapToSensor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Projection/test/otbVectorDataTransformFilter.cxx b/Modules/Filtering/Projection/test/otbVectorDataTransformFilter.cxx index 83b8c7d7e1..f2790fe9a6 100644 --- a/Modules/Filtering/Projection/test/otbVectorDataTransformFilter.cxx +++ b/Modules/Filtering/Projection/test/otbVectorDataTransformFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/CMakeLists.txt b/Modules/Filtering/Smoothing/CMakeLists.txt index 343408cdb7..5df248f7f8 100644 --- a/Modules/Filtering/Smoothing/CMakeLists.txt +++ b/Modules/Filtering/Smoothing/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.h b/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.h index 6185102cae..09d5d1c2f8 100644 --- a/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.h +++ b/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2018 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.hxx b/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.hxx index 02ef72c9f9..b18f223502 100644 --- a/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.hxx +++ b/Modules/Filtering/Smoothing/include/otbFastNLMeansImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2018 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.h b/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.h index 22c6165004..e099dffea9 100644 --- a/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.h +++ b/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.hxx b/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.hxx index 06aed54278..f0cef32e01 100644 --- a/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.hxx +++ b/Modules/Filtering/Smoothing/include/otbMeanShiftSmoothingImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/otb-module.cmake b/Modules/Filtering/Smoothing/otb-module.cmake index 131c9cc8cb..31863c5b56 100644 --- a/Modules/Filtering/Smoothing/otb-module.cmake +++ b/Modules/Filtering/Smoothing/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Smoothing/test/CMakeLists.txt b/Modules/Filtering/Smoothing/test/CMakeLists.txt index aa055b862a..639194e462 100644 --- a/Modules/Filtering/Smoothing/test/CMakeLists.txt +++ b/Modules/Filtering/Smoothing/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Smoothing/test/otbFastNLMeansImageFilter.cxx b/Modules/Filtering/Smoothing/test/otbFastNLMeansImageFilter.cxx index 659b76528f..dee3272bbe 100644 --- a/Modules/Filtering/Smoothing/test/otbFastNLMeansImageFilter.cxx +++ b/Modules/Filtering/Smoothing/test/otbFastNLMeansImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilter.cxx b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilter.cxx index 41c9f9e739..9319b67105 100644 --- a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilter.cxx +++ b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterSpatialStability.cxx b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterSpatialStability.cxx index 903b695206..1ea78e2b7d 100644 --- a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterSpatialStability.cxx +++ b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterSpatialStability.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterThreading.cxx b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterThreading.cxx index a87023b410..7b57379bcf 100644 --- a/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterThreading.cxx +++ b/Modules/Filtering/Smoothing/test/otbMeanShiftSmoothingImageFilterThreading.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx b/Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx index 229983ccc0..352747fd13 100644 --- a/Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx +++ b/Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/CMakeLists.txt b/Modules/Filtering/Statistics/CMakeLists.txt index a644f43ec2..f305c9b70a 100644 --- a/Modules/Filtering/Statistics/CMakeLists.txt +++ b/Modules/Filtering/Statistics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.h b/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.h index 55d98711ca..81a635ea0e 100644 --- a/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.h +++ b/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.hxx b/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.hxx index 9c50debb11..5ad6c8633e 100644 --- a/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbConcatenateSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.h b/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.h index ff8a041d74..6649a134a1 100644 --- a/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.h +++ b/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.hxx b/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.hxx index 9622d6bf39..79690e5e1d 100644 --- a/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.hxx +++ b/Modules/Filtering/Statistics/include/otbContinuousMinimumMaximumImageCalculator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.h b/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.h index ea085cf6a2..4f847cd177 100644 --- a/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.h +++ b/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.hxx b/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.hxx index fb341d5ad8..e226d1dcd6 100644 --- a/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbGaussianAdditiveNoiseSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.h b/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.h index c73b5f10e0..3cb2923992 100644 --- a/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.h +++ b/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.hxx b/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.hxx index 1df0b278e0..2363271825 100644 --- a/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.hxx +++ b/Modules/Filtering/Statistics/include/otbHistogramStatisticsFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleGenerator.h b/Modules/Filtering/Statistics/include/otbListSampleGenerator.h index e763302275..74b7f8edc7 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleGenerator.h +++ b/Modules/Filtering/Statistics/include/otbListSampleGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleGenerator.hxx b/Modules/Filtering/Statistics/include/otbListSampleGenerator.hxx index 9efd18d7ab..80f8f878b8 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleGenerator.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleGenerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleSource.h b/Modules/Filtering/Statistics/include/otbListSampleSource.h index f063d04456..4e9d39e669 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleSource.h +++ b/Modules/Filtering/Statistics/include/otbListSampleSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleSource.hxx b/Modules/Filtering/Statistics/include/otbListSampleSource.hxx index a3bf5112b1..41d8cf06f7 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleSource.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.h b/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.h index 29adaf2c90..290d0af5d6 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.h +++ b/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.hxx b/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.hxx index 2fd42047f3..753c6de001 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleToBalancedListSampleFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.h b/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.h index ce49108998..7b388dbcdd 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.h +++ b/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.hxx b/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.hxx index 174bbedb30..968e6dd273 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleToHistogramListGenerator.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.h b/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.h index e6a9b460fa..b10b5df73a 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.h +++ b/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.hxx b/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.hxx index ed26ab9f1b..fdfbccf5cd 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleToListSampleFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.h b/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.h index 5695492961..7707e3dfde 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.h +++ b/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.hxx b/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.hxx index 3b92738202..860345b79d 100644 --- a/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.hxx +++ b/Modules/Filtering/Statistics/include/otbListSampleToVariableDimensionHistogramGenerator.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.h b/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.h index 0face0020f..f11e9269ba 100644 --- a/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.h +++ b/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.hxx b/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.hxx index e657e9410e..c587665e6a 100644 --- a/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.hxx +++ b/Modules/Filtering/Statistics/include/otbLocalHistogramImageFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.h b/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.h index d21a547f58..52714227e3 100644 --- a/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.hxx b/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.hxx index e4c68e6ee1..8f34c14981 100644 --- a/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbNormalizeVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbPatternSampler.h b/Modules/Filtering/Statistics/include/otbPatternSampler.h index ab43f7b750..18fea955cb 100644 --- a/Modules/Filtering/Statistics/include/otbPatternSampler.h +++ b/Modules/Filtering/Statistics/include/otbPatternSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbPeriodicSampler.h b/Modules/Filtering/Statistics/include/otbPeriodicSampler.h index 5a0e14126b..ef9d9ce15b 100644 --- a/Modules/Filtering/Statistics/include/otbPeriodicSampler.h +++ b/Modules/Filtering/Statistics/include/otbPeriodicSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbRandomSampler.h b/Modules/Filtering/Statistics/include/otbRandomSampler.h index ca83be57db..ce2b242d6b 100644 --- a/Modules/Filtering/Statistics/include/otbRandomSampler.h +++ b/Modules/Filtering/Statistics/include/otbRandomSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbSamplerBase.h b/Modules/Filtering/Statistics/include/otbSamplerBase.h index c214dff0ce..ee131e2fb8 100644 --- a/Modules/Filtering/Statistics/include/otbSamplerBase.h +++ b/Modules/Filtering/Statistics/include/otbSamplerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.h b/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.h index bb8c55fa04..0018f70eb6 100644 --- a/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.h +++ b/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.hxx b/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.hxx index 4c6fdfb906..0168c21814 100644 --- a/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbShiftScaleSampleListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.h index dbd72961d1..c0deacf805 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.hxx index 69b4ea9b1c..5f0dab3be4 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingCompareImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.h index 1eebe09ac7..f954541b8f 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.hxx index 348f0975d3..ed2d79565b 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingHistogramVectorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.h index 07368290d6..3e2e35dfb9 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.hxx index 69fbb5e812..7be50ffadf 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingMinMaxImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.h index cc6a48ff6e..cb22fdd8e7 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.hxx index 00d24ed727..cb7270483e 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingMinMaxVectorImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.h index 4a2bfb07b8..e5ab616fe1 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.hxx index 7b97eb3252..0159803841 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.h index 165692a11c..6d5b0a4aba 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.hxx index 9952ac8c94..3d7ccb896e 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMapFromLabelImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.h b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.h index 835eb9e485..93423790a0 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.hxx index 2b80a51f11..9e27a3ed77 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsMosaicFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2016-2019 IRSTEA * * This file is part of Orfeo Toolbox diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.h b/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.h index 16787db166..0d368557eb 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.hxx b/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.hxx index 6ae2ee7f3b..d7e6703309 100644 --- a/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbStreamingStatisticsVectorImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVarianceImageFilter.h b/Modules/Filtering/Statistics/include/otbVarianceImageFilter.h index e5e4243bac..3581766760 100644 --- a/Modules/Filtering/Statistics/include/otbVarianceImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbVarianceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVarianceImageFilter.hxx b/Modules/Filtering/Statistics/include/otbVarianceImageFilter.hxx index fca4500f8b..605c3f85b9 100644 --- a/Modules/Filtering/Statistics/include/otbVarianceImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbVarianceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.h b/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.h index 3a6e5007ec..029fe65c3c 100644 --- a/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.hxx b/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.hxx index 90ba10b81a..48c536450d 100644 --- a/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbVectorImageToIntensityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.h b/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.h index 50b8104ec2..378b5813c0 100644 --- a/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.h +++ b/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.hxx b/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.hxx index de993f6b8c..5cc30c3ffb 100644 --- a/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.hxx +++ b/Modules/Filtering/Statistics/include/otbVectorImageToMatrixImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/otb-module.cmake b/Modules/Filtering/Statistics/otb-module.cmake index e5411ae23d..79b08a4dd4 100644 --- a/Modules/Filtering/Statistics/otb-module.cmake +++ b/Modules/Filtering/Statistics/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Statistics/src/CMakeLists.txt b/Modules/Filtering/Statistics/src/CMakeLists.txt index 99ec8f5bcb..8af4cee961 100644 --- a/Modules/Filtering/Statistics/src/CMakeLists.txt +++ b/Modules/Filtering/Statistics/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Statistics/src/otbPatternSampler.cxx b/Modules/Filtering/Statistics/src/otbPatternSampler.cxx index 5d15252adc..d59e700792 100644 --- a/Modules/Filtering/Statistics/src/otbPatternSampler.cxx +++ b/Modules/Filtering/Statistics/src/otbPatternSampler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/src/otbPeriodicSampler.cxx b/Modules/Filtering/Statistics/src/otbPeriodicSampler.cxx index 94688e58c6..e4e957d5e5 100644 --- a/Modules/Filtering/Statistics/src/otbPeriodicSampler.cxx +++ b/Modules/Filtering/Statistics/src/otbPeriodicSampler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/src/otbRandomSampler.cxx b/Modules/Filtering/Statistics/src/otbRandomSampler.cxx index ed32dc6343..283a2dea94 100644 --- a/Modules/Filtering/Statistics/src/otbRandomSampler.cxx +++ b/Modules/Filtering/Statistics/src/otbRandomSampler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/src/otbSamplerBase.cxx b/Modules/Filtering/Statistics/src/otbSamplerBase.cxx index 923f918c38..8408d2b977 100644 --- a/Modules/Filtering/Statistics/src/otbSamplerBase.cxx +++ b/Modules/Filtering/Statistics/src/otbSamplerBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/CMakeLists.txt b/Modules/Filtering/Statistics/test/CMakeLists.txt index 604b48941c..622d5f74e9 100644 --- a/Modules/Filtering/Statistics/test/CMakeLists.txt +++ b/Modules/Filtering/Statistics/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Statistics/test/StreamingStat.cxx b/Modules/Filtering/Statistics/test/StreamingStat.cxx index 459234f777..d3f6bbaf35 100644 --- a/Modules/Filtering/Statistics/test/StreamingStat.cxx +++ b/Modules/Filtering/Statistics/test/StreamingStat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbConcatenateSampleListFilter.cxx b/Modules/Filtering/Statistics/test/otbConcatenateSampleListFilter.cxx index 9a01f136c3..1c9989d5d3 100644 --- a/Modules/Filtering/Statistics/test/otbConcatenateSampleListFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbConcatenateSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbContinuousMinimumMaximumImageCalculatorTest.cxx b/Modules/Filtering/Statistics/test/otbContinuousMinimumMaximumImageCalculatorTest.cxx index 081040ea4f..2eafee4f9e 100644 --- a/Modules/Filtering/Statistics/test/otbContinuousMinimumMaximumImageCalculatorTest.cxx +++ b/Modules/Filtering/Statistics/test/otbContinuousMinimumMaximumImageCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbGaussianAdditiveNoiseSampleListFilter.cxx b/Modules/Filtering/Statistics/test/otbGaussianAdditiveNoiseSampleListFilter.cxx index db86f1156c..8352c5b2ab 100644 --- a/Modules/Filtering/Statistics/test/otbGaussianAdditiveNoiseSampleListFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbGaussianAdditiveNoiseSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbHistogramStatisticsFunction.cxx b/Modules/Filtering/Statistics/test/otbHistogramStatisticsFunction.cxx index ff43ebc520..9f561b11fc 100644 --- a/Modules/Filtering/Statistics/test/otbHistogramStatisticsFunction.cxx +++ b/Modules/Filtering/Statistics/test/otbHistogramStatisticsFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbImaginaryImageToComplexImageFilterTest.cxx b/Modules/Filtering/Statistics/test/otbImaginaryImageToComplexImageFilterTest.cxx index 1d28b3d430..ea6888e81c 100644 --- a/Modules/Filtering/Statistics/test/otbImaginaryImageToComplexImageFilterTest.cxx +++ b/Modules/Filtering/Statistics/test/otbImaginaryImageToComplexImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbListSampleGeneratorTest.cxx b/Modules/Filtering/Statistics/test/otbListSampleGeneratorTest.cxx index 4116b37452..b38b6df7d1 100644 --- a/Modules/Filtering/Statistics/test/otbListSampleGeneratorTest.cxx +++ b/Modules/Filtering/Statistics/test/otbListSampleGeneratorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbListSampleToBalancedListSampleFilter.cxx b/Modules/Filtering/Statistics/test/otbListSampleToBalancedListSampleFilter.cxx index f753effce4..b13b59b81d 100644 --- a/Modules/Filtering/Statistics/test/otbListSampleToBalancedListSampleFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbListSampleToBalancedListSampleFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbListSampleToHistogramListGenerator.cxx b/Modules/Filtering/Statistics/test/otbListSampleToHistogramListGenerator.cxx index 0f9ebd1cc3..0d1b9dce4d 100644 --- a/Modules/Filtering/Statistics/test/otbListSampleToHistogramListGenerator.cxx +++ b/Modules/Filtering/Statistics/test/otbListSampleToHistogramListGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbListSampleToVariableDimensionHistogramGenerator.cxx b/Modules/Filtering/Statistics/test/otbListSampleToVariableDimensionHistogramGenerator.cxx index bd2f58dd93..deb6d6a6c3 100644 --- a/Modules/Filtering/Statistics/test/otbListSampleToVariableDimensionHistogramGenerator.cxx +++ b/Modules/Filtering/Statistics/test/otbListSampleToVariableDimensionHistogramGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbLocalHistogramImageFunctionTest.cxx b/Modules/Filtering/Statistics/test/otbLocalHistogramImageFunctionTest.cxx index 2e952c74ba..21a219e326 100644 --- a/Modules/Filtering/Statistics/test/otbLocalHistogramImageFunctionTest.cxx +++ b/Modules/Filtering/Statistics/test/otbLocalHistogramImageFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbNormalizeVectorImageFilter.cxx b/Modules/Filtering/Statistics/test/otbNormalizeVectorImageFilter.cxx index c7893aab8d..d575855f3d 100644 --- a/Modules/Filtering/Statistics/test/otbNormalizeVectorImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbNormalizeVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbProjectiveProjection.cxx b/Modules/Filtering/Statistics/test/otbProjectiveProjection.cxx index f461f54857..93c6701189 100644 --- a/Modules/Filtering/Statistics/test/otbProjectiveProjection.cxx +++ b/Modules/Filtering/Statistics/test/otbProjectiveProjection.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbRealAndImaginaryImageToComplexImageFilterTest.cxx b/Modules/Filtering/Statistics/test/otbRealAndImaginaryImageToComplexImageFilterTest.cxx index 8f74801f3e..c14c7c5e81 100644 --- a/Modules/Filtering/Statistics/test/otbRealAndImaginaryImageToComplexImageFilterTest.cxx +++ b/Modules/Filtering/Statistics/test/otbRealAndImaginaryImageToComplexImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbRealImageToComplexImageFilterTest.cxx b/Modules/Filtering/Statistics/test/otbRealImageToComplexImageFilterTest.cxx index 1e8abdec1c..f6f3ea3f37 100644 --- a/Modules/Filtering/Statistics/test/otbRealImageToComplexImageFilterTest.cxx +++ b/Modules/Filtering/Statistics/test/otbRealImageToComplexImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbSamplerTest.cxx b/Modules/Filtering/Statistics/test/otbSamplerTest.cxx index dbe9ccdf26..4f81ca4801 100644 --- a/Modules/Filtering/Statistics/test/otbSamplerTest.cxx +++ b/Modules/Filtering/Statistics/test/otbSamplerTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbShiftScaleSampleListFilter.cxx b/Modules/Filtering/Statistics/test/otbShiftScaleSampleListFilter.cxx index 064e59462a..595c5ac4fa 100644 --- a/Modules/Filtering/Statistics/test/otbShiftScaleSampleListFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbShiftScaleSampleListFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbShiftScaleVectorImageFilterTest.cxx b/Modules/Filtering/Statistics/test/otbShiftScaleVectorImageFilterTest.cxx index 578e4d10e1..2d86ad3b02 100644 --- a/Modules/Filtering/Statistics/test/otbShiftScaleVectorImageFilterTest.cxx +++ b/Modules/Filtering/Statistics/test/otbShiftScaleVectorImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx b/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx index 443808f3b3..b08ffbadca 100644 --- a/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx +++ b/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingCompareImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingCompareImageFilter.cxx index df033dde42..4b724679c2 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingCompareImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingCompareImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx index cf00616bb6..47ee2b8515 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingMinMaxImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingMinMaxImageFilter.cxx index 5f2f5d2740..fad9b4e780 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingMinMaxImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingMinMaxImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingMinMaxVectorImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingMinMaxVectorImageFilter.cxx index 0154fd5564..6dcf6bc60b 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingMinMaxVectorImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingMinMaxVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingStatisticsImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingStatisticsImageFilter.cxx index 578e2cfe99..e344a6bcb2 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingStatisticsImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingStatisticsImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingStatisticsMapFromLabelImageFilterTest.cxx b/Modules/Filtering/Statistics/test/otbStreamingStatisticsMapFromLabelImageFilterTest.cxx index 0840fb1218..af66d6f653 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingStatisticsMapFromLabelImageFilterTest.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingStatisticsMapFromLabelImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbStreamingStatisticsVectorImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingStatisticsVectorImageFilter.cxx index 4afdc5a3e0..354eece036 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingStatisticsVectorImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingStatisticsVectorImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbVarianceImageFilter.cxx b/Modules/Filtering/Statistics/test/otbVarianceImageFilter.cxx index 431669b6ca..956ec5564f 100644 --- a/Modules/Filtering/Statistics/test/otbVarianceImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbVarianceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbVectorImageToIntensityImageFilter.cxx b/Modules/Filtering/Statistics/test/otbVectorImageToIntensityImageFilter.cxx index c5de6a9357..b7b7727991 100644 --- a/Modules/Filtering/Statistics/test/otbVectorImageToIntensityImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbVectorImageToIntensityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Statistics/test/otbVectorImageToMatrixImageFilter.cxx b/Modules/Filtering/Statistics/test/otbVectorImageToMatrixImageFilter.cxx index 5a60eb924c..37a3ed64e2 100644 --- a/Modules/Filtering/Statistics/test/otbVectorImageToMatrixImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbVectorImageToMatrixImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/CMakeLists.txt b/Modules/Filtering/TimeSeries/CMakeLists.txt index aa33594860..30789e43f1 100644 --- a/Modules/Filtering/TimeSeries/CMakeLists.txt +++ b/Modules/Filtering/TimeSeries/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/TimeSeries/include/otbEnvelopeSavitzkyGolayInterpolationFunctor.h b/Modules/Filtering/TimeSeries/include/otbEnvelopeSavitzkyGolayInterpolationFunctor.h index 570f55a758..30aa3d14a0 100644 --- a/Modules/Filtering/TimeSeries/include/otbEnvelopeSavitzkyGolayInterpolationFunctor.h +++ b/Modules/Filtering/TimeSeries/include/otbEnvelopeSavitzkyGolayInterpolationFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/include/otbSavitzkyGolayInterpolationFunctor.h b/Modules/Filtering/TimeSeries/include/otbSavitzkyGolayInterpolationFunctor.h index 106241caed..10c1cf828d 100644 --- a/Modules/Filtering/TimeSeries/include/otbSavitzkyGolayInterpolationFunctor.h +++ b/Modules/Filtering/TimeSeries/include/otbSavitzkyGolayInterpolationFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/include/otbTimeSeries.h b/Modules/Filtering/TimeSeries/include/otbTimeSeries.h index dade8d8f92..eab1bdeb43 100644 --- a/Modules/Filtering/TimeSeries/include/otbTimeSeries.h +++ b/Modules/Filtering/TimeSeries/include/otbTimeSeries.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/include/otbTimeSeriesLeastSquareFittingFunctor.h b/Modules/Filtering/TimeSeries/include/otbTimeSeriesLeastSquareFittingFunctor.h index d2bb7e3f82..7e6d748cfb 100644 --- a/Modules/Filtering/TimeSeries/include/otbTimeSeriesLeastSquareFittingFunctor.h +++ b/Modules/Filtering/TimeSeries/include/otbTimeSeriesLeastSquareFittingFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/otb-module.cmake b/Modules/Filtering/TimeSeries/otb-module.cmake index 224b8112f8..a1392feec6 100644 --- a/Modules/Filtering/TimeSeries/otb-module.cmake +++ b/Modules/Filtering/TimeSeries/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/TimeSeries/test/CMakeLists.txt b/Modules/Filtering/TimeSeries/test/CMakeLists.txt index e2f8891249..df7a102935 100644 --- a/Modules/Filtering/TimeSeries/test/CMakeLists.txt +++ b/Modules/Filtering/TimeSeries/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/TimeSeries/test/otbEnvelopeSavitzkyGolayInterpolationFunctorTest.cxx b/Modules/Filtering/TimeSeries/test/otbEnvelopeSavitzkyGolayInterpolationFunctorTest.cxx index 88a904f351..6cf07893a2 100644 --- a/Modules/Filtering/TimeSeries/test/otbEnvelopeSavitzkyGolayInterpolationFunctorTest.cxx +++ b/Modules/Filtering/TimeSeries/test/otbEnvelopeSavitzkyGolayInterpolationFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/test/otbPolynomialTimeSeriesTest.cxx b/Modules/Filtering/TimeSeries/test/otbPolynomialTimeSeriesTest.cxx index 43c6a94270..dd9f49f4cb 100644 --- a/Modules/Filtering/TimeSeries/test/otbPolynomialTimeSeriesTest.cxx +++ b/Modules/Filtering/TimeSeries/test/otbPolynomialTimeSeriesTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/test/otbSavitzkyGolayInterpolationFunctorTest.cxx b/Modules/Filtering/TimeSeries/test/otbSavitzkyGolayInterpolationFunctorTest.cxx index 9fd3bfbec3..4a5f4aa3a9 100644 --- a/Modules/Filtering/TimeSeries/test/otbSavitzkyGolayInterpolationFunctorTest.cxx +++ b/Modules/Filtering/TimeSeries/test/otbSavitzkyGolayInterpolationFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorTest.cxx b/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorTest.cxx index 8299919420..98f4c2bf43 100644 --- a/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorTest.cxx +++ b/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorWeightsTest.cxx b/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorWeightsTest.cxx index 19a73363f8..ec1867d9a8 100644 --- a/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorWeightsTest.cxx +++ b/Modules/Filtering/TimeSeries/test/otbTimeSeriesLeastSquareFittingFunctorWeightsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/TimeSeries/test/otbTimeSeriesTestDriver.cxx b/Modules/Filtering/TimeSeries/test/otbTimeSeriesTestDriver.cxx index 0e4bb5f7af..44ba2fa016 100644 --- a/Modules/Filtering/TimeSeries/test/otbTimeSeriesTestDriver.cxx +++ b/Modules/Filtering/TimeSeries/test/otbTimeSeriesTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/CMakeLists.txt b/Modules/Filtering/VectorDataManipulation/CMakeLists.txt index fef989eabc..01a294acff 100644 --- a/Modules/Filtering/VectorDataManipulation/CMakeLists.txt +++ b/Modules/Filtering/VectorDataManipulation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.h b/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.h index ff44635100..03f6e3db04 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.hxx b/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.hxx index cc7388bc58..61f4a6da2b 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbConcatenateVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbCorrectPolygonFunctor.h b/Modules/Filtering/VectorDataManipulation/include/otbCorrectPolygonFunctor.h index 83088b638e..60776d20c9 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbCorrectPolygonFunctor.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbCorrectPolygonFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbPolygonCompacityFunctor.h b/Modules/Filtering/VectorDataManipulation/include/otbPolygonCompacityFunctor.h index 572bc543fe..435b988077 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbPolygonCompacityFunctor.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbPolygonCompacityFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbSimplifyPathFunctor.h b/Modules/Filtering/VectorDataManipulation/include/otbSimplifyPathFunctor.h index 32c7462a94..b0d428f1b6 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbSimplifyPathFunctor.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbSimplifyPathFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.h b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.h index 437a43d767..5d7c3abbf6 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.hxx b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.hxx index f37e39e100..deacf3cb83 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataAdapter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.h b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.h index dfba8f9e2f..a67c481fda 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.hxx b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.hxx index b79df512d6..76f8da8307 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataExtractROI.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.h b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.h index 48b6df0885..bc2d2ea002 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.hxx b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.hxx index 50adad5641..8efb9679f4 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToRandomLineGenerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.h b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.h index 33a285b7d1..2ca6ad2ff7 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.hxx b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.hxx index 8a1d6f9733..ca9ddb0d43 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToSpecificDescriptionFilterBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.h b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.h index c3b0a7c2cf..4d711b674c 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.h +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.hxx b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.hxx index 4022df5c74..5547aeea81 100644 --- a/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.hxx +++ b/Modules/Filtering/VectorDataManipulation/include/otbVectorDataToVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/otb-module.cmake b/Modules/Filtering/VectorDataManipulation/otb-module.cmake index 80a8b2e7e0..3079441279 100644 --- a/Modules/Filtering/VectorDataManipulation/otb-module.cmake +++ b/Modules/Filtering/VectorDataManipulation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt b/Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt index 3bd5f40e95..db8f371c37 100644 --- a/Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt +++ b/Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/VectorDataManipulation/test/otbConcatenateVectorDataFilter.cxx b/Modules/Filtering/VectorDataManipulation/test/otbConcatenateVectorDataFilter.cxx index b676aeea58..c4165d596f 100644 --- a/Modules/Filtering/VectorDataManipulation/test/otbConcatenateVectorDataFilter.cxx +++ b/Modules/Filtering/VectorDataManipulation/test/otbConcatenateVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/test/otbPolygonCompacityFunctor.cxx b/Modules/Filtering/VectorDataManipulation/test/otbPolygonCompacityFunctor.cxx index 2e9ca40591..54dfd0102e 100644 --- a/Modules/Filtering/VectorDataManipulation/test/otbPolygonCompacityFunctor.cxx +++ b/Modules/Filtering/VectorDataManipulation/test/otbPolygonCompacityFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataExtractROI.cxx b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataExtractROI.cxx index cc78640aa1..3293420021 100644 --- a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataExtractROI.cxx +++ b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataExtractROI.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataManipulationTestDriver.cxx b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataManipulationTestDriver.cxx index d09a9aaed3..e5a1a98f9f 100644 --- a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataManipulationTestDriver.cxx +++ b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataManipulationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataToRandomLineGenerator.cxx b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataToRandomLineGenerator.cxx index 212030b4c9..223e5696f5 100644 --- a/Modules/Filtering/VectorDataManipulation/test/otbVectorDataToRandomLineGenerator.cxx +++ b/Modules/Filtering/VectorDataManipulation/test/otbVectorDataToRandomLineGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/CMakeLists.txt b/Modules/Filtering/Wavelet/CMakeLists.txt index 928bd1c50d..bc2f7cc2c0 100644 --- a/Modules/Filtering/Wavelet/CMakeLists.txt +++ b/Modules/Filtering/Wavelet/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.h b/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.h index 661f669eba..87519d3793 100644 --- a/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.h +++ b/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbSubsampleImageFilter.hxx b/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.hxx index 78b38c19a6..edc03a77db 100644 --- a/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.hxx +++ b/Modules/Filtering/Wavelet/include/otbSubsampleImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletFilterBank.h b/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.h index 77e7005e64..dd18dfd2b6 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletFilterBank.hxx b/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.hxx index f762fd2402..0606342a0c 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletFilterBank.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletGenerator.h b/Modules/Filtering/Wavelet/include/otbWaveletGenerator.h index 3a524c5fba..5328eb60b2 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletGenerator.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletHighPassOperator.h b/Modules/Filtering/Wavelet/include/otbWaveletHighPassOperator.h index 51a3ca01cf..8f9a59ca6d 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletHighPassOperator.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletHighPassOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletImageFilter.h b/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.h index 91f1136ec4..1e05513719 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.hxx b/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.hxx index 4abba0306a..6cd445fb2c 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.h b/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.h index 87fcbbeacf..45f0760330 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.hxx b/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.hxx index cf7a783839..694b902ffa 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletInverseImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletLowPassOperator.h b/Modules/Filtering/Wavelet/include/otbWaveletLowPassOperator.h index 0bd81c1d09..da15b6f9ce 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletLowPassOperator.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletLowPassOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletOperator.h b/Modules/Filtering/Wavelet/include/otbWaveletOperator.h index afc1625033..ae011d3a78 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletOperator.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletOperatorBase.h b/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.h index f8ca277aa9..42445128bb 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletOperatorBase.hxx b/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.hxx index a322c56803..ea0061f88d 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletOperatorBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletPacketDecompositionCosts.h b/Modules/Filtering/Wavelet/include/otbWaveletPacketDecompositionCosts.h index 9c09c9d6b2..2c0166f038 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletPacketDecompositionCosts.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletPacketDecompositionCosts.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletPacketTransform.h b/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.h index 862d06a1ef..e84d26cc6d 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletPacketTransform.hxx b/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.hxx index 900caf4a5e..854e65cce5 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletPacketTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletTransform.h b/Modules/Filtering/Wavelet/include/otbWaveletTransform.h index 1a24f046d6..07544d34d9 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletTransform.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletTransform.hxx b/Modules/Filtering/Wavelet/include/otbWaveletTransform.hxx index 6d8132466b..95a09274ff 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletTransform.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletTransform.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.h b/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.h index 6181b4b683..c333a3b474 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.hxx b/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.hxx index 4abf8c86c4..5093cdcb42 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletsBandsListToWaveletsSynopsisImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.h b/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.h index 60fc219aaf..a287cde14e 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.h +++ b/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.hxx b/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.hxx index d3e1171f66..831db287b7 100644 --- a/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.hxx +++ b/Modules/Filtering/Wavelet/include/otbWaveletsSynopsisImageToWaveletsBandsListFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/otb-module.cmake b/Modules/Filtering/Wavelet/otb-module.cmake index 405672597a..840d969469 100644 --- a/Modules/Filtering/Wavelet/otb-module.cmake +++ b/Modules/Filtering/Wavelet/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Wavelet/src/CMakeLists.txt b/Modules/Filtering/Wavelet/src/CMakeLists.txt index d92dc9b6aa..9fc461ee9e 100644 --- a/Modules/Filtering/Wavelet/src/CMakeLists.txt +++ b/Modules/Filtering/Wavelet/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Wavelet/src/otbWaveletGenerator.cxx b/Modules/Filtering/Wavelet/src/otbWaveletGenerator.cxx index 0317256be6..b44156a4c5 100644 --- a/Modules/Filtering/Wavelet/src/otbWaveletGenerator.cxx +++ b/Modules/Filtering/Wavelet/src/otbWaveletGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/test/CMakeLists.txt b/Modules/Filtering/Wavelet/test/CMakeLists.txt index 877588ba46..e83ba22a09 100644 --- a/Modules/Filtering/Wavelet/test/CMakeLists.txt +++ b/Modules/Filtering/Wavelet/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Filtering/Wavelet/test/otbSubsampleImageFilter.cxx b/Modules/Filtering/Wavelet/test/otbSubsampleImageFilter.cxx index 842f97835b..483686347a 100644 --- a/Modules/Filtering/Wavelet/test/otbSubsampleImageFilter.cxx +++ b/Modules/Filtering/Wavelet/test/otbSubsampleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/test/otbWaveletFilterBank.cxx b/Modules/Filtering/Wavelet/test/otbWaveletFilterBank.cxx index 2e2844b639..c71acca4e5 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletFilterBank.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletFilterBank.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/test/otbWaveletImageToImageFilter.cxx b/Modules/Filtering/Wavelet/test/otbWaveletImageToImageFilter.cxx index 0071ffaa39..a3ea0a24cd 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletImageToImageFilter.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletImageToImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/test/otbWaveletOperator.cxx b/Modules/Filtering/Wavelet/test/otbWaveletOperator.cxx index 1b772ced71..046d78a93f 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletOperator.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletOperator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/test/otbWaveletPacketTransform.cxx b/Modules/Filtering/Wavelet/test/otbWaveletPacketTransform.cxx index 0ff5085069..ac834ae5a4 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletPacketTransform.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletPacketTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Wavelet/test/otbWaveletTestDriver.cxx b/Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx index b90ecd1203..5cff89e672 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Filtering/Wavelet/test/otbWaveletTransform.cxx b/Modules/Filtering/Wavelet/test/otbWaveletTransform.cxx index 0fb818e4cc..01ca9a46b3 100644 --- a/Modules/Filtering/Wavelet/test/otbWaveletTransform.cxx +++ b/Modules/Filtering/Wavelet/test/otbWaveletTransform.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Fusion/Fuzzy/CMakeLists.txt b/Modules/Fusion/Fuzzy/CMakeLists.txt index 9cc00975fa..25d0b9e4ad 100644 --- a/Modules/Fusion/Fuzzy/CMakeLists.txt +++ b/Modules/Fusion/Fuzzy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/Fuzzy/include/otbFuzzyDescriptorsModelManager.h b/Modules/Fusion/Fuzzy/include/otbFuzzyDescriptorsModelManager.h index 78f8c09d3c..e30a9131d8 100644 --- a/Modules/Fusion/Fuzzy/include/otbFuzzyDescriptorsModelManager.h +++ b/Modules/Fusion/Fuzzy/include/otbFuzzyDescriptorsModelManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.h b/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.h index 3cf8e6fe97..37e6b9ed0f 100644 --- a/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.h +++ b/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.hxx b/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.hxx index 0d81a57a11..0d25557e13 100644 --- a/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.hxx +++ b/Modules/Fusion/Fuzzy/include/otbFuzzyVariable.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/otb-module.cmake b/Modules/Fusion/Fuzzy/otb-module.cmake index b0db872c24..5a5125c929 100644 --- a/Modules/Fusion/Fuzzy/otb-module.cmake +++ b/Modules/Fusion/Fuzzy/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/Fuzzy/src/CMakeLists.txt b/Modules/Fusion/Fuzzy/src/CMakeLists.txt index a6b84aa132..7b785dcfac 100644 --- a/Modules/Fusion/Fuzzy/src/CMakeLists.txt +++ b/Modules/Fusion/Fuzzy/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/Fuzzy/src/otbFuzzyDescriptorsModelManager.cxx b/Modules/Fusion/Fuzzy/src/otbFuzzyDescriptorsModelManager.cxx index 6c69665e1f..69efb9db90 100644 --- a/Modules/Fusion/Fuzzy/src/otbFuzzyDescriptorsModelManager.cxx +++ b/Modules/Fusion/Fuzzy/src/otbFuzzyDescriptorsModelManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/CMakeLists.txt b/Modules/Fusion/Fuzzy/test/CMakeLists.txt index 790632c2ad..c3661f9788 100644 --- a/Modules/Fusion/Fuzzy/test/CMakeLists.txt +++ b/Modules/Fusion/Fuzzy/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyDescriptorsModelManager.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyDescriptorsModelManager.cxx index a66b17de0b..2ebb340aa0 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyDescriptorsModelManager.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyDescriptorsModelManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx index 92fd62a70d..dd52ad3801 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyVariable2Values.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyVariable2Values.cxx index 4f37995792..e55476063f 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyVariable2Values.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyVariable2Values.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableDSApplied.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableDSApplied.cxx index a25122c3f2..4dd7699b4b 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableDSApplied.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableDSApplied.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableGetMaxVar.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableGetMaxVar.cxx index c74072d81e..c45b608ae2 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableGetMaxVar.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableGetMaxVar.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableSetValue.cxx b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableSetValue.cxx index 96d0da2200..a463c41338 100644 --- a/Modules/Fusion/Fuzzy/test/otbFuzzyVariableSetValue.cxx +++ b/Modules/Fusion/Fuzzy/test/otbFuzzyVariableSetValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/MajorityVoting/CMakeLists.txt b/Modules/Fusion/MajorityVoting/CMakeLists.txt index 7d5eabe74e..7c3a2340be 100644 --- a/Modules/Fusion/MajorityVoting/CMakeLists.txt +++ b/Modules/Fusion/MajorityVoting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.h b/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.h index ca4dcd6885..7034f1b28e 100644 --- a/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.h +++ b/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.hxx b/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.hxx index 91d9d20f4d..a5f80c14ce 100644 --- a/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.hxx +++ b/Modules/Fusion/MajorityVoting/include/otbNeighborhoodMajorityVotingImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/MajorityVoting/otb-module.cmake b/Modules/Fusion/MajorityVoting/otb-module.cmake index 6793b75de4..7fa5e71dfe 100644 --- a/Modules/Fusion/MajorityVoting/otb-module.cmake +++ b/Modules/Fusion/MajorityVoting/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/MajorityVoting/test/CMakeLists.txt b/Modules/Fusion/MajorityVoting/test/CMakeLists.txt index af2e514b49..f568cc579c 100644 --- a/Modules/Fusion/MajorityVoting/test/CMakeLists.txt +++ b/Modules/Fusion/MajorityVoting/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx b/Modules/Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx index 5fd0fd7c1e..42c2bff520 100644 --- a/Modules/Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx +++ b/Modules/Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/MajorityVoting/test/otbNeighborhoodMajorityVotingImageFilterTest.cxx b/Modules/Fusion/MajorityVoting/test/otbNeighborhoodMajorityVotingImageFilterTest.cxx index 2f26e67701..c5471613a2 100644 --- a/Modules/Fusion/MajorityVoting/test/otbNeighborhoodMajorityVotingImageFilterTest.cxx +++ b/Modules/Fusion/MajorityVoting/test/otbNeighborhoodMajorityVotingImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/CMakeLists.txt b/Modules/Fusion/PanSharpening/CMakeLists.txt index 6291372269..0f10ab299f 100644 --- a/Modules/Fusion/PanSharpening/CMakeLists.txt +++ b/Modules/Fusion/PanSharpening/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/PanSharpening/include/otbBayesianFusionFilter.hxx b/Modules/Fusion/PanSharpening/include/otbBayesianFusionFilter.hxx index 17347ef1a3..7f966aef3a 100644 --- a/Modules/Fusion/PanSharpening/include/otbBayesianFusionFilter.hxx +++ b/Modules/Fusion/PanSharpening/include/otbBayesianFusionFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.h b/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.h index 4280bdc14d..ec08cae83c 100644 --- a/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.h +++ b/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.hxx b/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.hxx index 4712a5ce83..144a3d7940 100644 --- a/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.hxx +++ b/Modules/Fusion/PanSharpening/include/otbLmvmPanSharpeningFusionImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.h b/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.h index ec9adae622..56eedfdcbf 100644 --- a/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.h +++ b/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.hxx b/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.hxx index 1653a9a3c2..326bdd9932 100644 --- a/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.hxx +++ b/Modules/Fusion/PanSharpening/include/otbSimpleRcsPanSharpeningFusionImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/otb-module.cmake b/Modules/Fusion/PanSharpening/otb-module.cmake index 1a0887ee7b..903fbf5ecb 100644 --- a/Modules/Fusion/PanSharpening/otb-module.cmake +++ b/Modules/Fusion/PanSharpening/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/PanSharpening/test/CMakeLists.txt b/Modules/Fusion/PanSharpening/test/CMakeLists.txt index f522bdacaa..80f4dfa480 100644 --- a/Modules/Fusion/PanSharpening/test/CMakeLists.txt +++ b/Modules/Fusion/PanSharpening/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Fusion/PanSharpening/test/otbBayesianFusionFilter.cxx b/Modules/Fusion/PanSharpening/test/otbBayesianFusionFilter.cxx index 7481f813b1..be46ea0f4a 100644 --- a/Modules/Fusion/PanSharpening/test/otbBayesianFusionFilter.cxx +++ b/Modules/Fusion/PanSharpening/test/otbBayesianFusionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/test/otbLmvmPanSharpeningFusionImageFilter.cxx b/Modules/Fusion/PanSharpening/test/otbLmvmPanSharpeningFusionImageFilter.cxx index 0db7e7b4aa..d66894129d 100644 --- a/Modules/Fusion/PanSharpening/test/otbLmvmPanSharpeningFusionImageFilter.cxx +++ b/Modules/Fusion/PanSharpening/test/otbLmvmPanSharpeningFusionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx b/Modules/Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx index 82b360fcf2..3c8dd03844 100644 --- a/Modules/Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx +++ b/Modules/Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Fusion/PanSharpening/test/otbSimpleRcsPanSharpeningFusionImageFilter.cxx b/Modules/Fusion/PanSharpening/test/otbSimpleRcsPanSharpeningFusionImageFilter.cxx index d235947c2d..190903594a 100644 --- a/Modules/Fusion/PanSharpening/test/otbSimpleRcsPanSharpeningFusionImageFilter.cxx +++ b/Modules/Fusion/PanSharpening/test/otbSimpleRcsPanSharpeningFusionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt b/Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt index a08d831392..5030cc53cb 100644 --- a/Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt +++ b/Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/AnomalyDetection/include/otbLocalRxDetectorFilter.h b/Modules/Hyperspectral/AnomalyDetection/include/otbLocalRxDetectorFilter.h index 07ef928405..11c15d38f2 100644 --- a/Modules/Hyperspectral/AnomalyDetection/include/otbLocalRxDetectorFilter.h +++ b/Modules/Hyperspectral/AnomalyDetection/include/otbLocalRxDetectorFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/AnomalyDetection/otb-module.cmake b/Modules/Hyperspectral/AnomalyDetection/otb-module.cmake index a04146e4a2..8a651fbe61 100644 --- a/Modules/Hyperspectral/AnomalyDetection/otb-module.cmake +++ b/Modules/Hyperspectral/AnomalyDetection/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt b/Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt index e1aee5061a..ba6d184c28 100644 --- a/Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt +++ b/Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx b/Modules/Hyperspectral/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx index d9039101e3..fb63d789d4 100644 --- a/Modules/Hyperspectral/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx +++ b/Modules/Hyperspectral/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/AnomalyDetection/test/otbLocalRxDetectorTest.cxx b/Modules/Hyperspectral/AnomalyDetection/test/otbLocalRxDetectorTest.cxx index e34e73c189..42ff713b2f 100644 --- a/Modules/Hyperspectral/AnomalyDetection/test/otbLocalRxDetectorTest.cxx +++ b/Modules/Hyperspectral/AnomalyDetection/test/otbLocalRxDetectorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt b/Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt index aedbee8a44..9300e495b3 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt +++ b/Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.h b/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.h index 0fbfd31a93..b668938a89 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.h +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.hxx b/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.hxx index 1c87ab276d..8465f23f61 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.hxx +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbEigenvalueLikelihoodMaximisation.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.h b/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.h index 49fba04e08..9236008335 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.h +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.hxx b/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.hxx index c9e76854c2..f330dd2aac 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.hxx +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbVcaImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.h b/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.h index d26a39937c..a23d91c2e8 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.h +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.hxx b/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.hxx index e286c8f1d1..fbdad8a551 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.hxx +++ b/Modules/Hyperspectral/EndmembersExtraction/include/otbVirtualDimensionality.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake b/Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake index f61e9db8c7..87c2ef0b1f 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake +++ b/Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt b/Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt index 72d35f41da..df3cb20fb9 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt +++ b/Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/EndmembersExtraction/test/otbEigenvalueLikelihoodMaximization.cxx b/Modules/Hyperspectral/EndmembersExtraction/test/otbEigenvalueLikelihoodMaximization.cxx index 862be052d6..4e29bd0426 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/test/otbEigenvalueLikelihoodMaximization.cxx +++ b/Modules/Hyperspectral/EndmembersExtraction/test/otbEigenvalueLikelihoodMaximization.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/test/otbEndmembersExtractionTestDriver.cxx b/Modules/Hyperspectral/EndmembersExtraction/test/otbEndmembersExtractionTestDriver.cxx index f2da7117f2..62a95d0fae 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/test/otbEndmembersExtractionTestDriver.cxx +++ b/Modules/Hyperspectral/EndmembersExtraction/test/otbEndmembersExtractionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/test/otbVCAImageFilter.cxx b/Modules/Hyperspectral/EndmembersExtraction/test/otbVCAImageFilter.cxx index 6022f140c9..014a7583ea 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/test/otbVCAImageFilter.cxx +++ b/Modules/Hyperspectral/EndmembersExtraction/test/otbVCAImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/EndmembersExtraction/test/otbVirtualDimensionality.cxx b/Modules/Hyperspectral/EndmembersExtraction/test/otbVirtualDimensionality.cxx index 88ca454aff..124a35c8f4 100644 --- a/Modules/Hyperspectral/EndmembersExtraction/test/otbVirtualDimensionality.cxx +++ b/Modules/Hyperspectral/EndmembersExtraction/test/otbVirtualDimensionality.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/CMakeLists.txt b/Modules/Hyperspectral/Unmixing/CMakeLists.txt index 847b61313e..f667c59b54 100644 --- a/Modules/Hyperspectral/Unmixing/CMakeLists.txt +++ b/Modules/Hyperspectral/Unmixing/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.h b/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.h index d3e2536b4c..aeb5e96220 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.h +++ b/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.hxx b/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.hxx index 2dc2eccb19..676dedf778 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.hxx +++ b/Modules/Hyperspectral/Unmixing/include/otbISRAUnmixingImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.h b/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.h index 8759d016b1..49f6cc21ae 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.h +++ b/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.hxx b/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.hxx index c6626c06ae..e2f175bf3d 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.hxx +++ b/Modules/Hyperspectral/Unmixing/include/otbMDMDNMFImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.h b/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.h index 82aefd806d..35e9024af2 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.h +++ b/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.hxx b/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.hxx index 49d8ad13d5..a962b55011 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.hxx +++ b/Modules/Hyperspectral/Unmixing/include/otbSparseUnmixingImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.h b/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.h index 4c2b847b41..73cddf7a71 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.h +++ b/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.hxx b/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.hxx index 37f64e6fcd..d4fbaeb9d9 100644 --- a/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.hxx +++ b/Modules/Hyperspectral/Unmixing/include/otbUnConstrainedLeastSquareImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/otb-module.cmake b/Modules/Hyperspectral/Unmixing/otb-module.cmake index 39505f5fe5..9e26aa82ee 100644 --- a/Modules/Hyperspectral/Unmixing/otb-module.cmake +++ b/Modules/Hyperspectral/Unmixing/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/Unmixing/test/CMakeLists.txt b/Modules/Hyperspectral/Unmixing/test/CMakeLists.txt index 5982a7a388..8b1541e8b6 100644 --- a/Modules/Hyperspectral/Unmixing/test/CMakeLists.txt +++ b/Modules/Hyperspectral/Unmixing/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Hyperspectral/Unmixing/test/otbISRAUnmixingImageFilter.cxx b/Modules/Hyperspectral/Unmixing/test/otbISRAUnmixingImageFilter.cxx index ec96d1b835..dbb283f17d 100644 --- a/Modules/Hyperspectral/Unmixing/test/otbISRAUnmixingImageFilter.cxx +++ b/Modules/Hyperspectral/Unmixing/test/otbISRAUnmixingImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/test/otbMDMDNMFImageFilter.cxx b/Modules/Hyperspectral/Unmixing/test/otbMDMDNMFImageFilter.cxx index 9aca4bbc5d..dcb1104d49 100644 --- a/Modules/Hyperspectral/Unmixing/test/otbMDMDNMFImageFilter.cxx +++ b/Modules/Hyperspectral/Unmixing/test/otbMDMDNMFImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/test/otbSparseUnmixingImageFilter.cxx b/Modules/Hyperspectral/Unmixing/test/otbSparseUnmixingImageFilter.cxx index cffad1a964..6edf5df31c 100644 --- a/Modules/Hyperspectral/Unmixing/test/otbSparseUnmixingImageFilter.cxx +++ b/Modules/Hyperspectral/Unmixing/test/otbSparseUnmixingImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/test/otbUnConstrainedLeastSquareImageFilter.cxx b/Modules/Hyperspectral/Unmixing/test/otbUnConstrainedLeastSquareImageFilter.cxx index b3017a9f0d..6ba83c8134 100644 --- a/Modules/Hyperspectral/Unmixing/test/otbUnConstrainedLeastSquareImageFilter.cxx +++ b/Modules/Hyperspectral/Unmixing/test/otbUnConstrainedLeastSquareImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx b/Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx index 155b26f20f..aba0153cad 100644 --- a/Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx +++ b/Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/CMakeLists.txt b/Modules/IO/Carto/CMakeLists.txt index 3deabbe0f0..b3f3b43277 100644 --- a/Modules/IO/Carto/CMakeLists.txt +++ b/Modules/IO/Carto/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/Carto/include/otbCoordinateToName.h b/Modules/IO/Carto/include/otbCoordinateToName.h index dcc8b34ad2..81489844c4 100644 --- a/Modules/IO/Carto/include/otbCoordinateToName.h +++ b/Modules/IO/Carto/include/otbCoordinateToName.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.h b/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.h index e08b1ae9d4..075df2fb94 100644 --- a/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.h +++ b/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.hxx b/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.hxx index 9f72cdf38d..6cec470747 100644 --- a/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.hxx +++ b/Modules/IO/Carto/include/otbImageToOSMVectorDataGenerator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbMapFileProductWriter.h b/Modules/IO/Carto/include/otbMapFileProductWriter.h index 6666df5f39..5d8f9fa0c5 100644 --- a/Modules/IO/Carto/include/otbMapFileProductWriter.h +++ b/Modules/IO/Carto/include/otbMapFileProductWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbMapFileProductWriter.hxx b/Modules/IO/Carto/include/otbMapFileProductWriter.hxx index ae7df9e663..66d1882985 100644 --- a/Modules/IO/Carto/include/otbMapFileProductWriter.hxx +++ b/Modules/IO/Carto/include/otbMapFileProductWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbOSMDataToVectorDataGenerator.h b/Modules/IO/Carto/include/otbOSMDataToVectorDataGenerator.h index a6000d4b9f..34389f509f 100644 --- a/Modules/IO/Carto/include/otbOSMDataToVectorDataGenerator.h +++ b/Modules/IO/Carto/include/otbOSMDataToVectorDataGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbPlaceNameToLonLat.h b/Modules/IO/Carto/include/otbPlaceNameToLonLat.h index bb27a09699..0223d23a98 100644 --- a/Modules/IO/Carto/include/otbPlaceNameToLonLat.h +++ b/Modules/IO/Carto/include/otbPlaceNameToLonLat.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/include/otbWorldFile.h b/Modules/IO/Carto/include/otbWorldFile.h index a4be0cc621..0707b5c279 100644 --- a/Modules/IO/Carto/include/otbWorldFile.h +++ b/Modules/IO/Carto/include/otbWorldFile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/otb-module.cmake b/Modules/IO/Carto/otb-module.cmake index bf20c841ea..0aa1aef2d4 100644 --- a/Modules/IO/Carto/otb-module.cmake +++ b/Modules/IO/Carto/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/Carto/src/CMakeLists.txt b/Modules/IO/Carto/src/CMakeLists.txt index 6001575c9a..8a5dd78862 100644 --- a/Modules/IO/Carto/src/CMakeLists.txt +++ b/Modules/IO/Carto/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/Carto/src/otbCoordinateToName.cxx b/Modules/IO/Carto/src/otbCoordinateToName.cxx index a4c37aaa49..073bb63ab6 100644 --- a/Modules/IO/Carto/src/otbCoordinateToName.cxx +++ b/Modules/IO/Carto/src/otbCoordinateToName.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/src/otbOSMDataToVectorDataGenerator.cxx b/Modules/IO/Carto/src/otbOSMDataToVectorDataGenerator.cxx index 62ddc80ed2..6cadf77882 100644 --- a/Modules/IO/Carto/src/otbOSMDataToVectorDataGenerator.cxx +++ b/Modules/IO/Carto/src/otbOSMDataToVectorDataGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/src/otbPlaceNameToLonLat.cxx b/Modules/IO/Carto/src/otbPlaceNameToLonLat.cxx index 764f8d16ec..d4c0fbab74 100644 --- a/Modules/IO/Carto/src/otbPlaceNameToLonLat.cxx +++ b/Modules/IO/Carto/src/otbPlaceNameToLonLat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/src/otbWorldFile.cxx b/Modules/IO/Carto/src/otbWorldFile.cxx index f061973c49..2c143e8a20 100644 --- a/Modules/IO/Carto/src/otbWorldFile.cxx +++ b/Modules/IO/Carto/src/otbWorldFile.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/test/CMakeLists.txt b/Modules/IO/Carto/test/CMakeLists.txt index 3971701156..96931f08fb 100644 --- a/Modules/IO/Carto/test/CMakeLists.txt +++ b/Modules/IO/Carto/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/Carto/test/otbCartoTestDriver.cxx b/Modules/IO/Carto/test/otbCartoTestDriver.cxx index 1fe4ef1557..bd12459372 100644 --- a/Modules/IO/Carto/test/otbCartoTestDriver.cxx +++ b/Modules/IO/Carto/test/otbCartoTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/test/otbCoordinateToNameTest.cxx b/Modules/IO/Carto/test/otbCoordinateToNameTest.cxx index 632ba91074..7902b98ff5 100644 --- a/Modules/IO/Carto/test/otbCoordinateToNameTest.cxx +++ b/Modules/IO/Carto/test/otbCoordinateToNameTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/test/otbImageToOSMVectorDataGenerator.cxx b/Modules/IO/Carto/test/otbImageToOSMVectorDataGenerator.cxx index e0afda799b..270ba06c70 100644 --- a/Modules/IO/Carto/test/otbImageToOSMVectorDataGenerator.cxx +++ b/Modules/IO/Carto/test/otbImageToOSMVectorDataGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/test/otbMapFileProductWriter.cxx b/Modules/IO/Carto/test/otbMapFileProductWriter.cxx index 389c682ab2..9b3fd6c4c0 100644 --- a/Modules/IO/Carto/test/otbMapFileProductWriter.cxx +++ b/Modules/IO/Carto/test/otbMapFileProductWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/Carto/test/otbOSMDataToVectorDataTests.cxx b/Modules/IO/Carto/test/otbOSMDataToVectorDataTests.cxx index 2ddfda713d..079950d791 100644 --- a/Modules/IO/Carto/test/otbOSMDataToVectorDataTests.cxx +++ b/Modules/IO/Carto/test/otbOSMDataToVectorDataTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/CMakeLists.txt b/Modules/IO/ExtendedFilename/CMakeLists.txt index 9b0cc9573d..809174fe0c 100644 --- a/Modules/IO/ExtendedFilename/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToReaderOptions.h b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToReaderOptions.h index 28f61af6c3..71ed93a84f 100644 --- a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToReaderOptions.h +++ b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToReaderOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h index e9f03a8684..3ab2d58df1 100644 --- a/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h +++ b/Modules/IO/ExtendedFilename/include/otbExtendedFilenameToWriterOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/ExtendedFilename/otb-module.cmake b/Modules/IO/ExtendedFilename/otb-module.cmake index fccc8bd7fc..a76ce565a0 100644 --- a/Modules/IO/ExtendedFilename/otb-module.cmake +++ b/Modules/IO/ExtendedFilename/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ExtendedFilename/src/CMakeLists.txt b/Modules/IO/ExtendedFilename/src/CMakeLists.txt index 15612bcd22..a7179ea163 100644 --- a/Modules/IO/ExtendedFilename/src/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToReaderOptions.cxx b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToReaderOptions.cxx index 6bebb8d39b..2ae7001de7 100644 --- a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToReaderOptions.cxx +++ b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToReaderOptions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx index 055923bb52..a7f35d2830 100644 --- a/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx +++ b/Modules/IO/ExtendedFilename/src/otbExtendedFilenameToWriterOptions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/ExtendedFilename/test/CMakeLists.txt b/Modules/IO/ExtendedFilename/test/CMakeLists.txt index 6be14b984b..607a3339a0 100644 --- a/Modules/IO/ExtendedFilename/test/CMakeLists.txt +++ b/Modules/IO/ExtendedFilename/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # Copyright (C) 2020 CS Systemes d'Information (CS SI) # # This file is part of Orfeo Toolbox diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTest.cxx index 2e903c8cf0..bafc7c58e4 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx index bfac385c55..8e8bdc3123 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToReaderOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToReaderOptionsTest.cxx index f730ac90f8..f5e9942e36 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToReaderOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToReaderOptionsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx index 6ad79a8f89..2156123bb0 100644 --- a/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx +++ b/Modules/IO/ExtendedFilename/test/otbExtendedFilenameToWriterOptionsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/IOBSQ/CMakeLists.txt b/Modules/IO/IOBSQ/CMakeLists.txt index 5508f466a6..565a63cbd9 100644 --- a/Modules/IO/IOBSQ/CMakeLists.txt +++ b/Modules/IO/IOBSQ/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOBSQ/include/otbBSQImageIO.h b/Modules/IO/IOBSQ/include/otbBSQImageIO.h index dee12086f6..49d16889d1 100644 --- a/Modules/IO/IOBSQ/include/otbBSQImageIO.h +++ b/Modules/IO/IOBSQ/include/otbBSQImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/include/otbBSQImageIOFactory.h b/Modules/IO/IOBSQ/include/otbBSQImageIOFactory.h index f58f400cf3..ed25472662 100644 --- a/Modules/IO/IOBSQ/include/otbBSQImageIOFactory.h +++ b/Modules/IO/IOBSQ/include/otbBSQImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/otb-module.cmake b/Modules/IO/IOBSQ/otb-module.cmake index 6dc9fb8416..e9f98460f6 100644 --- a/Modules/IO/IOBSQ/otb-module.cmake +++ b/Modules/IO/IOBSQ/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOBSQ/src/CMakeLists.txt b/Modules/IO/IOBSQ/src/CMakeLists.txt index 2169022b57..b4feb43e20 100644 --- a/Modules/IO/IOBSQ/src/CMakeLists.txt +++ b/Modules/IO/IOBSQ/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOBSQ/src/otbBSQImageIO.cxx b/Modules/IO/IOBSQ/src/otbBSQImageIO.cxx index aa0b7e4f24..c4b6652a90 100644 --- a/Modules/IO/IOBSQ/src/otbBSQImageIO.cxx +++ b/Modules/IO/IOBSQ/src/otbBSQImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/src/otbBSQImageIOFactory.cxx b/Modules/IO/IOBSQ/src/otbBSQImageIOFactory.cxx index b621876f0b..8d18f18312 100644 --- a/Modules/IO/IOBSQ/src/otbBSQImageIOFactory.cxx +++ b/Modules/IO/IOBSQ/src/otbBSQImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/test/CMakeLists.txt b/Modules/IO/IOBSQ/test/CMakeLists.txt index 9b128826e6..7c53387b25 100644 --- a/Modules/IO/IOBSQ/test/CMakeLists.txt +++ b/Modules/IO/IOBSQ/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanRead.cxx b/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanRead.cxx index 25dfdbcff7..c70ede5cc4 100644 --- a/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanRead.cxx +++ b/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanWrite.cxx b/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanWrite.cxx index 04ceb1259c..ca73dd2e5b 100644 --- a/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanWrite.cxx +++ b/Modules/IO/IOBSQ/test/otbBSQImageIOTestCanWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx b/Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx index 5db01c6aef..c129ac724a 100644 --- a/Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx +++ b/Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/CMakeLists.txt b/Modules/IO/IOGDAL/CMakeLists.txt index 198def14b5..69a2071eef 100644 --- a/Modules/IO/IOGDAL/CMakeLists.txt +++ b/Modules/IO/IOGDAL/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOGDAL/include/otbGDALDatasetWrapper.h b/Modules/IO/IOGDAL/include/otbGDALDatasetWrapper.h index 3dd27f867f..fcbdfec299 100644 --- a/Modules/IO/IOGDAL/include/otbGDALDatasetWrapper.h +++ b/Modules/IO/IOGDAL/include/otbGDALDatasetWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbGDALDriverManagerWrapper.h b/Modules/IO/IOGDAL/include/otbGDALDriverManagerWrapper.h index 9a6cb70936..df41138021 100644 --- a/Modules/IO/IOGDAL/include/otbGDALDriverManagerWrapper.h +++ b/Modules/IO/IOGDAL/include/otbGDALDriverManagerWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbGDALImageIO.h b/Modules/IO/IOGDAL/include/otbGDALImageIO.h index 7de21d9db9..a201530fe4 100644 --- a/Modules/IO/IOGDAL/include/otbGDALImageIO.h +++ b/Modules/IO/IOGDAL/include/otbGDALImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/IOGDAL/include/otbGDALImageIOFactory.h b/Modules/IO/IOGDAL/include/otbGDALImageIOFactory.h index ab4123191c..5c348f13bf 100644 --- a/Modules/IO/IOGDAL/include/otbGDALImageIOFactory.h +++ b/Modules/IO/IOGDAL/include/otbGDALImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h b/Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h index 0bc8b0fad6..23fed2dbf4 100644 --- a/Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h +++ b/Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbOGRIOHelper.h b/Modules/IO/IOGDAL/include/otbOGRIOHelper.h index 01bc9ec695..b1dcb79000 100644 --- a/Modules/IO/IOGDAL/include/otbOGRIOHelper.h +++ b/Modules/IO/IOGDAL/include/otbOGRIOHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbOGRVectorDataIO.h b/Modules/IO/IOGDAL/include/otbOGRVectorDataIO.h index 581e91d5c3..2d85bc76a4 100644 --- a/Modules/IO/IOGDAL/include/otbOGRVectorDataIO.h +++ b/Modules/IO/IOGDAL/include/otbOGRVectorDataIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/include/otbOGRVectorDataIOFactory.h b/Modules/IO/IOGDAL/include/otbOGRVectorDataIOFactory.h index fbc2d87da6..e72266e2f9 100644 --- a/Modules/IO/IOGDAL/include/otbOGRVectorDataIOFactory.h +++ b/Modules/IO/IOGDAL/include/otbOGRVectorDataIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/otb-module.cmake b/Modules/IO/IOGDAL/otb-module.cmake index 7ba0806200..5b185de6ab 100644 --- a/Modules/IO/IOGDAL/otb-module.cmake +++ b/Modules/IO/IOGDAL/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOGDAL/src/CMakeLists.txt b/Modules/IO/IOGDAL/src/CMakeLists.txt index 650d6a0562..f8c9342fdf 100644 --- a/Modules/IO/IOGDAL/src/CMakeLists.txt +++ b/Modules/IO/IOGDAL/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOGDAL/src/otbGDALDatasetWrapper.cxx b/Modules/IO/IOGDAL/src/otbGDALDatasetWrapper.cxx index 821e77a1ef..cb8a3da71f 100644 --- a/Modules/IO/IOGDAL/src/otbGDALDatasetWrapper.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALDatasetWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbGDALDriverManagerWrapper.cxx b/Modules/IO/IOGDAL/src/otbGDALDriverManagerWrapper.cxx index 89a6c56bb5..61b6553250 100644 --- a/Modules/IO/IOGDAL/src/otbGDALDriverManagerWrapper.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALDriverManagerWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx index 81e4492bad..96dd043639 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIOFactory.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIOFactory.cxx index 0f12beb3fc..256a9ae804 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIOFactory.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx b/Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx index 74980cbfc2..67dc4d7882 100644 --- a/Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbOGRIOHelper.cxx b/Modules/IO/IOGDAL/src/otbOGRIOHelper.cxx index 4faa72547d..5369ccb29f 100644 --- a/Modules/IO/IOGDAL/src/otbOGRIOHelper.cxx +++ b/Modules/IO/IOGDAL/src/otbOGRIOHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbOGRVectorDataIO.cxx b/Modules/IO/IOGDAL/src/otbOGRVectorDataIO.cxx index 7ebb230372..5b5e5a36c8 100644 --- a/Modules/IO/IOGDAL/src/otbOGRVectorDataIO.cxx +++ b/Modules/IO/IOGDAL/src/otbOGRVectorDataIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/src/otbOGRVectorDataIOFactory.cxx b/Modules/IO/IOGDAL/src/otbOGRVectorDataIOFactory.cxx index fb55476f9b..c006484f82 100644 --- a/Modules/IO/IOGDAL/src/otbOGRVectorDataIOFactory.cxx +++ b/Modules/IO/IOGDAL/src/otbOGRVectorDataIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/CMakeLists.txt b/Modules/IO/IOGDAL/test/CMakeLists.txt index 9ed2d4eb35..ca4b3b01a3 100644 --- a/Modules/IO/IOGDAL/test/CMakeLists.txt +++ b/Modules/IO/IOGDAL/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOGDAL/test/otbGDALImageIOTest.cxx b/Modules/IO/IOGDAL/test/otbGDALImageIOTest.cxx index 3b96662439..c5218c8c14 100644 --- a/Modules/IO/IOGDAL/test/otbGDALImageIOTest.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanRead.cxx b/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanRead.cxx index 85f6d07995..c71c75e31b 100644 --- a/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanRead.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanWrite.cxx b/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanWrite.cxx index bbd32b3aa2..73c9e01734 100644 --- a/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanWrite.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALImageIOTestCanWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbGDALImageIOTestWriteMetadata.cxx b/Modules/IO/IOGDAL/test/otbGDALImageIOTestWriteMetadata.cxx index 084a4cabfc..fd559db5fe 100644 --- a/Modules/IO/IOGDAL/test/otbGDALImageIOTestWriteMetadata.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALImageIOTestWriteMetadata.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbGDALOverviewsBuilder.cxx b/Modules/IO/IOGDAL/test/otbGDALOverviewsBuilder.cxx index cf8f5b2b40..25e8b6b48a 100644 --- a/Modules/IO/IOGDAL/test/otbGDALOverviewsBuilder.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALOverviewsBuilder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbGDALReadPxlComplex.cxx b/Modules/IO/IOGDAL/test/otbGDALReadPxlComplex.cxx index eea86c529e..9624640b36 100644 --- a/Modules/IO/IOGDAL/test/otbGDALReadPxlComplex.cxx +++ b/Modules/IO/IOGDAL/test/otbGDALReadPxlComplex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx b/Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx index 47cf9d9fde..04dd3d2846 100644 --- a/Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx +++ b/Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbMultiDatasetReadingInfo.cxx b/Modules/IO/IOGDAL/test/otbMultiDatasetReadingInfo.cxx index 165db3c959..6be2a2b8db 100644 --- a/Modules/IO/IOGDAL/test/otbMultiDatasetReadingInfo.cxx +++ b/Modules/IO/IOGDAL/test/otbMultiDatasetReadingInfo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanRead.cxx b/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanRead.cxx index 9518e2748b..15ac50d76b 100644 --- a/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanRead.cxx +++ b/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanWrite.cxx b/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanWrite.cxx index 73a6a48c9b..a9ae349982 100644 --- a/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanWrite.cxx +++ b/Modules/IO/IOGDAL/test/otbOGRVectorDataIOCanWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/CMakeLists.txt b/Modules/IO/IOKML/CMakeLists.txt index cb757773b3..f29ea3ab14 100644 --- a/Modules/IO/IOKML/CMakeLists.txt +++ b/Modules/IO/IOKML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOKML/include/otbKMLVectorDataIO.h b/Modules/IO/IOKML/include/otbKMLVectorDataIO.h index 3ac17417be..a022a8f4f8 100644 --- a/Modules/IO/IOKML/include/otbKMLVectorDataIO.h +++ b/Modules/IO/IOKML/include/otbKMLVectorDataIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/include/otbKMLVectorDataIOFactory.h b/Modules/IO/IOKML/include/otbKMLVectorDataIOFactory.h index 5042b48d59..11f367be10 100644 --- a/Modules/IO/IOKML/include/otbKMLVectorDataIOFactory.h +++ b/Modules/IO/IOKML/include/otbKMLVectorDataIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/otb-module.cmake b/Modules/IO/IOKML/otb-module.cmake index b1a48c1d67..eb59fae1a3 100644 --- a/Modules/IO/IOKML/otb-module.cmake +++ b/Modules/IO/IOKML/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOKML/src/CMakeLists.txt b/Modules/IO/IOKML/src/CMakeLists.txt index a9fa8a70c0..8f3533f99d 100644 --- a/Modules/IO/IOKML/src/CMakeLists.txt +++ b/Modules/IO/IOKML/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOKML/src/otbKMLVectorDataIO.cxx b/Modules/IO/IOKML/src/otbKMLVectorDataIO.cxx index 5e3dca5edf..facd336908 100644 --- a/Modules/IO/IOKML/src/otbKMLVectorDataIO.cxx +++ b/Modules/IO/IOKML/src/otbKMLVectorDataIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/src/otbKMLVectorDataIOFactory.cxx b/Modules/IO/IOKML/src/otbKMLVectorDataIOFactory.cxx index 5c26891d52..a372cf59cd 100644 --- a/Modules/IO/IOKML/src/otbKMLVectorDataIOFactory.cxx +++ b/Modules/IO/IOKML/src/otbKMLVectorDataIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/test/CMakeLists.txt b/Modules/IO/IOKML/test/CMakeLists.txt index 8ba8e1978b..9bc1003d3f 100644 --- a/Modules/IO/IOKML/test/CMakeLists.txt +++ b/Modules/IO/IOKML/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx b/Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx index f56b0a7fb6..eca19529f0 100644 --- a/Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx +++ b/Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanRead.cxx b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanRead.cxx index 227189a369..550346e56f 100644 --- a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanRead.cxx +++ b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanWrite.cxx b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanWrite.cxx index 0f897e3da5..519fd3ecf6 100644 --- a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanWrite.cxx +++ b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestCanWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestFileReader.cxx b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestFileReader.cxx index a7eb4290a0..bf6c29ae43 100644 --- a/Modules/IO/IOKML/test/otbKMLVectorDataIOTestFileReader.cxx +++ b/Modules/IO/IOKML/test/otbKMLVectorDataIOTestFileReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/CMakeLists.txt b/Modules/IO/IOLUM/CMakeLists.txt index 597e6e25b7..769255434d 100644 --- a/Modules/IO/IOLUM/CMakeLists.txt +++ b/Modules/IO/IOLUM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOLUM/include/otbLUMImageIO.h b/Modules/IO/IOLUM/include/otbLUMImageIO.h index f9c10b87e3..9860f12fa7 100644 --- a/Modules/IO/IOLUM/include/otbLUMImageIO.h +++ b/Modules/IO/IOLUM/include/otbLUMImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/include/otbLUMImageIOFactory.h b/Modules/IO/IOLUM/include/otbLUMImageIOFactory.h index 221e74d616..bd280c2e2c 100644 --- a/Modules/IO/IOLUM/include/otbLUMImageIOFactory.h +++ b/Modules/IO/IOLUM/include/otbLUMImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/otb-module.cmake b/Modules/IO/IOLUM/otb-module.cmake index 586aa8b7c9..cbf1f8c160 100644 --- a/Modules/IO/IOLUM/otb-module.cmake +++ b/Modules/IO/IOLUM/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOLUM/src/CMakeLists.txt b/Modules/IO/IOLUM/src/CMakeLists.txt index dd74bf0f1d..3f40f1880c 100644 --- a/Modules/IO/IOLUM/src/CMakeLists.txt +++ b/Modules/IO/IOLUM/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOLUM/src/otbLUMImageIO.cxx b/Modules/IO/IOLUM/src/otbLUMImageIO.cxx index cfcaa32455..680ce783ae 100644 --- a/Modules/IO/IOLUM/src/otbLUMImageIO.cxx +++ b/Modules/IO/IOLUM/src/otbLUMImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/src/otbLUMImageIOFactory.cxx b/Modules/IO/IOLUM/src/otbLUMImageIOFactory.cxx index 0d072fb8f6..50fd29622a 100644 --- a/Modules/IO/IOLUM/src/otbLUMImageIOFactory.cxx +++ b/Modules/IO/IOLUM/src/otbLUMImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/test/CMakeLists.txt b/Modules/IO/IOLUM/test/CMakeLists.txt index ac226d5266..01e53c8fb5 100644 --- a/Modules/IO/IOLUM/test/CMakeLists.txt +++ b/Modules/IO/IOLUM/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx b/Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx index 1248d2b234..aa1bdaf0fe 100644 --- a/Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx +++ b/Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/test/otbLUMImageIOTestCanRead.cxx b/Modules/IO/IOLUM/test/otbLUMImageIOTestCanRead.cxx index b0af7c2b8a..da04284561 100644 --- a/Modules/IO/IOLUM/test/otbLUMImageIOTestCanRead.cxx +++ b/Modules/IO/IOLUM/test/otbLUMImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOLUM/test/otbLUMImageIOTestCanWrite.cxx b/Modules/IO/IOLUM/test/otbLUMImageIOTestCanWrite.cxx index 2216018315..76cdd7fed4 100644 --- a/Modules/IO/IOLUM/test/otbLUMImageIOTestCanWrite.cxx +++ b/Modules/IO/IOLUM/test/otbLUMImageIOTestCanWrite.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/CMakeLists.txt b/Modules/IO/IOMSTAR/CMakeLists.txt index 50e00e2dcd..03da7d284e 100644 --- a/Modules/IO/IOMSTAR/CMakeLists.txt +++ b/Modules/IO/IOMSTAR/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOMSTAR/include/otbMSTARImageIO.h b/Modules/IO/IOMSTAR/include/otbMSTARImageIO.h index d63661b0f7..ece6f743d6 100644 --- a/Modules/IO/IOMSTAR/include/otbMSTARImageIO.h +++ b/Modules/IO/IOMSTAR/include/otbMSTARImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/include/otbMSTARImageIOFactory.h b/Modules/IO/IOMSTAR/include/otbMSTARImageIOFactory.h index 0f35fc9ca1..3bc477aeac 100644 --- a/Modules/IO/IOMSTAR/include/otbMSTARImageIOFactory.h +++ b/Modules/IO/IOMSTAR/include/otbMSTARImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/otb-module.cmake b/Modules/IO/IOMSTAR/otb-module.cmake index d6a17f8466..21590615cb 100644 --- a/Modules/IO/IOMSTAR/otb-module.cmake +++ b/Modules/IO/IOMSTAR/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOMSTAR/src/CMakeLists.txt b/Modules/IO/IOMSTAR/src/CMakeLists.txt index 64991d46d6..059dbe91e6 100644 --- a/Modules/IO/IOMSTAR/src/CMakeLists.txt +++ b/Modules/IO/IOMSTAR/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOMSTAR/src/otbMSTARImageIO.cxx b/Modules/IO/IOMSTAR/src/otbMSTARImageIO.cxx index c30c6aa20b..3d771e813d 100644 --- a/Modules/IO/IOMSTAR/src/otbMSTARImageIO.cxx +++ b/Modules/IO/IOMSTAR/src/otbMSTARImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/src/otbMSTARImageIOFactory.cxx b/Modules/IO/IOMSTAR/src/otbMSTARImageIOFactory.cxx index 3f09a84a0b..5dc299bec5 100644 --- a/Modules/IO/IOMSTAR/src/otbMSTARImageIOFactory.cxx +++ b/Modules/IO/IOMSTAR/src/otbMSTARImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/test/CMakeLists.txt b/Modules/IO/IOMSTAR/test/CMakeLists.txt index 5297be2c6f..bb4b7345d6 100644 --- a/Modules/IO/IOMSTAR/test/CMakeLists.txt +++ b/Modules/IO/IOMSTAR/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx b/Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx index 3b17b7d4ac..946fed95eb 100644 --- a/Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx +++ b/Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOMSTAR/test/otbMSTARImageIOTestCanRead.cxx b/Modules/IO/IOMSTAR/test/otbMSTARImageIOTestCanRead.cxx index 8f756c4a9a..fc163ee8b7 100644 --- a/Modules/IO/IOMSTAR/test/otbMSTARImageIOTestCanRead.cxx +++ b/Modules/IO/IOMSTAR/test/otbMSTARImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/CMakeLists.txt b/Modules/IO/IOONERA/CMakeLists.txt index 50473c3778..ba6b6e1493 100644 --- a/Modules/IO/IOONERA/CMakeLists.txt +++ b/Modules/IO/IOONERA/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOONERA/include/otbONERAImageIO.h b/Modules/IO/IOONERA/include/otbONERAImageIO.h index 30f4e7f126..7d4361645b 100644 --- a/Modules/IO/IOONERA/include/otbONERAImageIO.h +++ b/Modules/IO/IOONERA/include/otbONERAImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/include/otbONERAImageIOFactory.h b/Modules/IO/IOONERA/include/otbONERAImageIOFactory.h index f11720840d..ce348e09dc 100644 --- a/Modules/IO/IOONERA/include/otbONERAImageIOFactory.h +++ b/Modules/IO/IOONERA/include/otbONERAImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/otb-module.cmake b/Modules/IO/IOONERA/otb-module.cmake index cc431e1ad5..3ca29d3e59 100644 --- a/Modules/IO/IOONERA/otb-module.cmake +++ b/Modules/IO/IOONERA/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOONERA/src/CMakeLists.txt b/Modules/IO/IOONERA/src/CMakeLists.txt index 193d3688c5..3e1c3d386e 100644 --- a/Modules/IO/IOONERA/src/CMakeLists.txt +++ b/Modules/IO/IOONERA/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOONERA/src/otbONERAImageIO.cxx b/Modules/IO/IOONERA/src/otbONERAImageIO.cxx index eb05b41f84..31adfe898c 100644 --- a/Modules/IO/IOONERA/src/otbONERAImageIO.cxx +++ b/Modules/IO/IOONERA/src/otbONERAImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/src/otbONERAImageIOFactory.cxx b/Modules/IO/IOONERA/src/otbONERAImageIOFactory.cxx index 98b512d9ed..42afebc1cf 100644 --- a/Modules/IO/IOONERA/src/otbONERAImageIOFactory.cxx +++ b/Modules/IO/IOONERA/src/otbONERAImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/test/CMakeLists.txt b/Modules/IO/IOONERA/test/CMakeLists.txt index ebb884e36a..70203e5183 100644 --- a/Modules/IO/IOONERA/test/CMakeLists.txt +++ b/Modules/IO/IOONERA/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx b/Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx index 6f43d9278c..1df7410576 100644 --- a/Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx +++ b/Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOONERA/test/otbONERAImageIOTestCanRead.cxx b/Modules/IO/IOONERA/test/otbONERAImageIOTestCanRead.cxx index 268fe7f793..9148d301d9 100644 --- a/Modules/IO/IOONERA/test/otbONERAImageIOTestCanRead.cxx +++ b/Modules/IO/IOONERA/test/otbONERAImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/CMakeLists.txt b/Modules/IO/IORAD/CMakeLists.txt index 15788d9865..bb9c55046d 100644 --- a/Modules/IO/IORAD/CMakeLists.txt +++ b/Modules/IO/IORAD/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IORAD/include/otbRADImageIO.h b/Modules/IO/IORAD/include/otbRADImageIO.h index 7c58822f6c..d8cbdc59bd 100644 --- a/Modules/IO/IORAD/include/otbRADImageIO.h +++ b/Modules/IO/IORAD/include/otbRADImageIO.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/include/otbRADImageIOFactory.h b/Modules/IO/IORAD/include/otbRADImageIOFactory.h index 069f34fee9..93ce8d737f 100644 --- a/Modules/IO/IORAD/include/otbRADImageIOFactory.h +++ b/Modules/IO/IORAD/include/otbRADImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/otb-module.cmake b/Modules/IO/IORAD/otb-module.cmake index f5720e90a4..08962fbe8d 100644 --- a/Modules/IO/IORAD/otb-module.cmake +++ b/Modules/IO/IORAD/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IORAD/src/CMakeLists.txt b/Modules/IO/IORAD/src/CMakeLists.txt index d9c7f4e8a1..2c14ceeef8 100644 --- a/Modules/IO/IORAD/src/CMakeLists.txt +++ b/Modules/IO/IORAD/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IORAD/src/otbRADImageIO.cxx b/Modules/IO/IORAD/src/otbRADImageIO.cxx index b1d65c486f..404d3195fb 100644 --- a/Modules/IO/IORAD/src/otbRADImageIO.cxx +++ b/Modules/IO/IORAD/src/otbRADImageIO.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/src/otbRADImageIOFactory.cxx b/Modules/IO/IORAD/src/otbRADImageIOFactory.cxx index 9832eb1213..e598f5e3d0 100644 --- a/Modules/IO/IORAD/src/otbRADImageIOFactory.cxx +++ b/Modules/IO/IORAD/src/otbRADImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/test/CMakeLists.txt b/Modules/IO/IORAD/test/CMakeLists.txt index 8922ed69b7..aacf7fb0b7 100644 --- a/Modules/IO/IORAD/test/CMakeLists.txt +++ b/Modules/IO/IORAD/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IORAD/test/otbIORADTestDriver.cxx b/Modules/IO/IORAD/test/otbIORADTestDriver.cxx index 3c6d7f0ba2..d2fad0c8d9 100644 --- a/Modules/IO/IORAD/test/otbIORADTestDriver.cxx +++ b/Modules/IO/IORAD/test/otbIORADTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IORAD/test/otbRADImageIOTestCanRead.cxx b/Modules/IO/IORAD/test/otbRADImageIOTestCanRead.cxx index f42631e49a..e85592c1c6 100644 --- a/Modules/IO/IORAD/test/otbRADImageIOTestCanRead.cxx +++ b/Modules/IO/IORAD/test/otbRADImageIOTestCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/CMakeLists.txt b/Modules/IO/IOXML/CMakeLists.txt index 2b2c593d80..c39fd13a22 100644 --- a/Modules/IO/IOXML/CMakeLists.txt +++ b/Modules/IO/IOXML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.h b/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.h index 08f037faff..61211a2a98 100644 --- a/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.h +++ b/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.hxx b/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.hxx index 84940e3de2..d1a5bfc4b5 100644 --- a/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.hxx +++ b/Modules/IO/IOXML/include/otbStatisticsXMLFileReader.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.h b/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.h index 36ee25c2c5..aef54f13c6 100644 --- a/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.h +++ b/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.hxx b/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.hxx index db9f15dccc..c7edd13a01 100644 --- a/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.hxx +++ b/Modules/IO/IOXML/include/otbStatisticsXMLFileWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/otb-module.cmake b/Modules/IO/IOXML/otb-module.cmake index da86e55fe1..451eb89903 100644 --- a/Modules/IO/IOXML/otb-module.cmake +++ b/Modules/IO/IOXML/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOXML/test/CMakeLists.txt b/Modules/IO/IOXML/test/CMakeLists.txt index d76af673fd..5c3b8834bb 100644 --- a/Modules/IO/IOXML/test/CMakeLists.txt +++ b/Modules/IO/IOXML/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/IOXML/test/otbIOXMLTestDriver.cxx b/Modules/IO/IOXML/test/otbIOXMLTestDriver.cxx index 1ea154f45d..4eab09ea3a 100644 --- a/Modules/IO/IOXML/test/otbIOXMLTestDriver.cxx +++ b/Modules/IO/IOXML/test/otbIOXMLTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/IOXML/test/otbStatisticsXMLFileWriteAndRead.cxx b/Modules/IO/IOXML/test/otbStatisticsXMLFileWriteAndRead.cxx index f5911a4e9b..090a6971c9 100644 --- a/Modules/IO/IOXML/test/otbStatisticsXMLFileWriteAndRead.cxx +++ b/Modules/IO/IOXML/test/otbStatisticsXMLFileWriteAndRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/CMakeLists.txt b/Modules/IO/ImageIO/CMakeLists.txt index cdcfa84076..64d855c6a6 100644 --- a/Modules/IO/ImageIO/CMakeLists.txt +++ b/Modules/IO/ImageIO/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ImageIO/include/otbImageFileReader.h b/Modules/IO/ImageIO/include/otbImageFileReader.h index d345ee97a6..79445e367f 100644 --- a/Modules/IO/ImageIO/include/otbImageFileReader.h +++ b/Modules/IO/ImageIO/include/otbImageFileReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageFileReader.hxx b/Modules/IO/ImageIO/include/otbImageFileReader.hxx index e4bc1de01b..9ed5448790 100644 --- a/Modules/IO/ImageIO/include/otbImageFileReader.hxx +++ b/Modules/IO/ImageIO/include/otbImageFileReader.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageFileReaderException.h b/Modules/IO/ImageIO/include/otbImageFileReaderException.h index a3b3354ac0..11d6771b75 100644 --- a/Modules/IO/ImageIO/include/otbImageFileReaderException.h +++ b/Modules/IO/ImageIO/include/otbImageFileReaderException.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.h b/Modules/IO/ImageIO/include/otbImageFileWriter.h index ef987d753e..d5dcf6aa6e 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.h +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx index 543639ccdb..cfea2a97c8 100644 --- a/Modules/IO/ImageIO/include/otbImageFileWriter.hxx +++ b/Modules/IO/ImageIO/include/otbImageFileWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2018-2020 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/IO/ImageIO/include/otbImageIOFactory.h b/Modules/IO/ImageIO/include/otbImageIOFactory.h index 6b20f76b2b..4df132f9bb 100644 --- a/Modules/IO/ImageIO/include/otbImageIOFactory.h +++ b/Modules/IO/ImageIO/include/otbImageIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbImageSeriesFileReader.h b/Modules/IO/ImageIO/include/otbImageSeriesFileReader.h index a47a2486ca..d2034b4687 100644 --- a/Modules/IO/ImageIO/include/otbImageSeriesFileReader.h +++ b/Modules/IO/ImageIO/include/otbImageSeriesFileReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/IO/ImageIO/include/otbImageSeriesFileReader.hxx b/Modules/IO/ImageIO/include/otbImageSeriesFileReader.hxx index 1cb055c3d9..f95388a846 100644 --- a/Modules/IO/ImageIO/include/otbImageSeriesFileReader.hxx +++ b/Modules/IO/ImageIO/include/otbImageSeriesFileReader.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/IO/ImageIO/include/otbImageSeriesFileReaderBase.h b/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.h index 4691a04aae..bd33a9eca0 100644 --- a/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.h +++ b/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/IO/ImageIO/include/otbImageSeriesFileReaderBase.hxx b/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.hxx index a748c8ea64..1eea5d7d56 100644 --- a/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.hxx +++ b/Modules/IO/ImageIO/include/otbImageSeriesFileReaderBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/IO/ImageIO/include/otbScalarBufferToImageFileWriter.h b/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.h index cc69e24055..c37581add7 100644 --- a/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.h +++ b/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.hxx b/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.hxx index ec0fcb3a7e..01c066972f 100644 --- a/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.hxx +++ b/Modules/IO/ImageIO/include/otbScalarBufferToImageFileWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/otb-module.cmake b/Modules/IO/ImageIO/otb-module.cmake index 7b2e8e36b8..04ad1bb812 100644 --- a/Modules/IO/ImageIO/otb-module.cmake +++ b/Modules/IO/ImageIO/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ImageIO/src/CMakeLists.txt b/Modules/IO/ImageIO/src/CMakeLists.txt index b5d1f44247..8927828eb3 100644 --- a/Modules/IO/ImageIO/src/CMakeLists.txt +++ b/Modules/IO/ImageIO/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/ImageIO/src/otbImageFileReader.cxx b/Modules/IO/ImageIO/src/otbImageFileReader.cxx index 465d8607bd..c2db416600 100644 --- a/Modules/IO/ImageIO/src/otbImageFileReader.cxx +++ b/Modules/IO/ImageIO/src/otbImageFileReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/src/otbImageFileReaderException.cxx b/Modules/IO/ImageIO/src/otbImageFileReaderException.cxx index 626dcfde85..a2fd11a1eb 100644 --- a/Modules/IO/ImageIO/src/otbImageFileReaderException.cxx +++ b/Modules/IO/ImageIO/src/otbImageFileReaderException.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/src/otbImageFileWriter.cxx b/Modules/IO/ImageIO/src/otbImageFileWriter.cxx index 763f4c1567..6790ca55ca 100644 --- a/Modules/IO/ImageIO/src/otbImageFileWriter.cxx +++ b/Modules/IO/ImageIO/src/otbImageFileWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/src/otbImageIOFactory.cxx b/Modules/IO/ImageIO/src/otbImageIOFactory.cxx index 9e6a1c85b6..18c9c9f5a7 100644 --- a/Modules/IO/ImageIO/src/otbImageIOFactory.cxx +++ b/Modules/IO/ImageIO/src/otbImageIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/0000437-WriteImageCentOS.cxx b/Modules/IO/ImageIO/test/0000437-WriteImageCentOS.cxx index dd09d38a13..43e15d56de 100644 --- a/Modules/IO/ImageIO/test/0000437-WriteImageCentOS.cxx +++ b/Modules/IO/ImageIO/test/0000437-WriteImageCentOS.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/0000479-WriteInt8Image.cxx b/Modules/IO/ImageIO/test/0000479-WriteInt8Image.cxx index 049a60f8a7..4b0ca7a729 100644 --- a/Modules/IO/ImageIO/test/0000479-WriteInt8Image.cxx +++ b/Modules/IO/ImageIO/test/0000479-WriteInt8Image.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/0000495-StreamingImageFileWriterProgressReporting.cxx b/Modules/IO/ImageIO/test/0000495-StreamingImageFileWriterProgressReporting.cxx index acc41bc6b6..b139c6b3a2 100644 --- a/Modules/IO/ImageIO/test/0000495-StreamingImageFileWriterProgressReporting.cxx +++ b/Modules/IO/ImageIO/test/0000495-StreamingImageFileWriterProgressReporting.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/CMakeLists.txt b/Modules/IO/ImageIO/test/CMakeLists.txt index 203716f813..3a8be81881 100644 --- a/Modules/IO/ImageIO/test/CMakeLists.txt +++ b/Modules/IO/ImageIO/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # Copyright (C) 2020 CS Systemes d'Information (CS SI) # # This file is part of Orfeo Toolbox diff --git a/Modules/IO/ImageIO/test/WriteUnsignedLong.cxx b/Modules/IO/ImageIO/test/WriteUnsignedLong.cxx index 53929d91a0..bc30107ba4 100644 --- a/Modules/IO/ImageIO/test/WriteUnsignedLong.cxx +++ b/Modules/IO/ImageIO/test/WriteUnsignedLong.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/negativespacing.cxx b/Modules/IO/ImageIO/test/negativespacing.cxx index a06266f1f5..3af816d5e6 100644 --- a/Modules/IO/ImageIO/test/negativespacing.cxx +++ b/Modules/IO/ImageIO/test/negativespacing.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbCompareWritingComplexImage.cxx b/Modules/IO/ImageIO/test/otbCompareWritingComplexImage.cxx index e19412b27a..19e3bc5156 100644 --- a/Modules/IO/ImageIO/test/otbCompareWritingComplexImage.cxx +++ b/Modules/IO/ImageIO/test/otbCompareWritingComplexImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbComplexImageManipulationTest.cxx b/Modules/IO/ImageIO/test/otbComplexImageManipulationTest.cxx index 7e2a4f8c14..b1b58d7ed0 100644 --- a/Modules/IO/ImageIO/test/otbComplexImageManipulationTest.cxx +++ b/Modules/IO/ImageIO/test/otbComplexImageManipulationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbComplexImageTests.cxx b/Modules/IO/ImageIO/test/otbComplexImageTests.cxx index 864357fd10..6f0b770c98 100644 --- a/Modules/IO/ImageIO/test/otbComplexImageTests.cxx +++ b/Modules/IO/ImageIO/test/otbComplexImageTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbDoubleImageIOTest.cxx b/Modules/IO/ImageIO/test/otbDoubleImageIOTest.cxx index 3a25322836..a37a6f868f 100644 --- a/Modules/IO/ImageIO/test/otbDoubleImageIOTest.cxx +++ b/Modules/IO/ImageIO/test/otbDoubleImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbFloatImageIOTest.cxx b/Modules/IO/ImageIO/test/otbFloatImageIOTest.cxx index c0736b510e..02b4823d40 100644 --- a/Modules/IO/ImageIO/test/otbFloatImageIOTest.cxx +++ b/Modules/IO/ImageIO/test/otbFloatImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbGDALDriverDoubleWritingTest.cxx b/Modules/IO/ImageIO/test/otbGDALDriverDoubleWritingTest.cxx index 201b2c00e8..8484abaa80 100644 --- a/Modules/IO/ImageIO/test/otbGDALDriverDoubleWritingTest.cxx +++ b/Modules/IO/ImageIO/test/otbGDALDriverDoubleWritingTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderMSTAR.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderMSTAR.cxx index c82d69e859..3b0a6f3f69 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderMSTAR.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderMSTAR.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderONERA.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderONERA.cxx index 6252814896..552641692e 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderONERA.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderONERA.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderONERAComplex.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderONERAComplex.cxx index cde6e39353..b3c2f31527 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderONERAComplex.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderONERAComplex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderOptBandTest.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderOptBandTest.cxx index 930d708db1..228330d055 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderOptBandTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderOptBandTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADChar.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADChar.cxx index 12a7e59fe8..0100508fe9 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADChar.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADChar.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexDouble.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexDouble.cxx index 63164e3dd6..4ac525c826 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexDouble.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexDouble.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloat.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloat.cxx index 22175d8de9..b0ca29a609 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloat.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloatExtract.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloatExtract.cxx index a31ff292dd..190a7a1c3d 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloatExtract.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexFloatExtract.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexInt.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexInt.cxx index 5781c6b3e6..3ad9885f49 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexInt.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADComplexInt.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADFloat.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADFloat.cxx index abd0bcffc8..8fe779902b 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADFloat.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRADInt.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRADInt.cxx index 062d77c4b9..a65d1cb051 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRADInt.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRADInt.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderRGBTest.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderRGBTest.cxx index a919081ca8..bf66def308 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderRGBTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderRGBTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderTest.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderTest.cxx index 1719b72ddb..2da219dace 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderTestFloat.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderTestFloat.cxx index 4746023070..cdeb6dd150 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderTestFloat.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderTestFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileReaderWithComplexPixel.cxx b/Modules/IO/ImageIO/test/otbImageFileReaderWithComplexPixel.cxx index e28c000379..a665efc5bb 100644 --- a/Modules/IO/ImageIO/test/otbImageFileReaderWithComplexPixel.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileReaderWithComplexPixel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterONERAComplex.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterONERAComplex.cxx index 2a638badaa..3e0fb152e0 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterONERAComplex.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterONERAComplex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterOptBandTest.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterOptBandTest.cxx index b7e6682c0f..9e09980dc4 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterOptBandTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterOptBandTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterRGBTest.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterRGBTest.cxx index 613bc28beb..455bb6d1d0 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterRGBTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterRGBTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterStreamingONERAComplex.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterStreamingONERAComplex.cxx index 08e82994a6..2dad3de068 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterStreamingONERAComplex.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterStreamingONERAComplex.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterTest.cxx index 20d22be5c0..cf753dcac3 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterTestWithoutInput.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterTestWithoutInput.cxx index 2ec3fea632..b1ca8cebec 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterTestWithoutInput.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterTestWithoutInput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageFileWriterWithExtendedOptionBox.cxx b/Modules/IO/ImageIO/test/otbImageFileWriterWithExtendedOptionBox.cxx index 70a34a1538..c527e2e16b 100644 --- a/Modules/IO/ImageIO/test/otbImageFileWriterWithExtendedOptionBox.cxx +++ b/Modules/IO/ImageIO/test/otbImageFileWriterWithExtendedOptionBox.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx b/Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx index 5f8e55137a..281ce76b66 100644 --- a/Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx +++ b/Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageMetadataFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbImageMetadataFileWriterTest.cxx index 9dcc18c0bb..86fb765943 100644 --- a/Modules/IO/ImageIO/test/otbImageMetadataFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageMetadataFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageMetadataStreamingFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbImageMetadataStreamingFileWriterTest.cxx index 8140537ce7..aefe278e4c 100644 --- a/Modules/IO/ImageIO/test/otbImageMetadataStreamingFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbImageMetadataStreamingFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbImageSeriesFileReader.cxx b/Modules/IO/ImageIO/test/otbImageSeriesFileReader.cxx index f5008bbf0c..af3dc2a290 100644 --- a/Modules/IO/ImageIO/test/otbImageSeriesFileReader.cxx +++ b/Modules/IO/ImageIO/test/otbImageSeriesFileReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/IO/ImageIO/test/otbImageStreamingFileWriterTestWithoutInput.cxx b/Modules/IO/ImageIO/test/otbImageStreamingFileWriterTestWithoutInput.cxx index 66a532d85e..69b31db117 100644 --- a/Modules/IO/ImageIO/test/otbImageStreamingFileWriterTestWithoutInput.cxx +++ b/Modules/IO/ImageIO/test/otbImageStreamingFileWriterTestWithoutInput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbIntImageIOTest.cxx b/Modules/IO/ImageIO/test/otbIntImageIOTest.cxx index c998a89e5d..2abd200f4c 100644 --- a/Modules/IO/ImageIO/test/otbIntImageIOTest.cxx +++ b/Modules/IO/ImageIO/test/otbIntImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbMultiResolutionReadingInfo.cxx b/Modules/IO/ImageIO/test/otbMultiResolutionReadingInfo.cxx index 88d61a90d2..4d096a071a 100644 --- a/Modules/IO/ImageIO/test/otbMultiResolutionReadingInfo.cxx +++ b/Modules/IO/ImageIO/test/otbMultiResolutionReadingInfo.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbPNGIndexedNbBandsTest.cxx b/Modules/IO/ImageIO/test/otbPNGIndexedNbBandsTest.cxx index 7b1f8dfb0f..b0a6c92190 100644 --- a/Modules/IO/ImageIO/test/otbPNGIndexedNbBandsTest.cxx +++ b/Modules/IO/ImageIO/test/otbPNGIndexedNbBandsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbPipeline.cxx b/Modules/IO/ImageIO/test/otbPipeline.cxx index d612b855ab..0a1a0cbae5 100644 --- a/Modules/IO/ImageIO/test/otbPipeline.cxx +++ b/Modules/IO/ImageIO/test/otbPipeline.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingTest.cxx b/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingTest.cxx index 0c46e8028c..bd899c83ef 100644 --- a/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingTest.cxx +++ b/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingWithUFFilterTest.cxx b/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingWithUFFilterTest.cxx index 621b05f1eb..f25f577667 100644 --- a/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingWithUFFilterTest.cxx +++ b/Modules/IO/ImageIO/test/otbPipelineMetadataHandlingWithUFFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbReadingComplexDataIntoComplexImageTest.cxx b/Modules/IO/ImageIO/test/otbReadingComplexDataIntoComplexImageTest.cxx index 54011b3130..3b3fd62ed9 100644 --- a/Modules/IO/ImageIO/test/otbReadingComplexDataIntoComplexImageTest.cxx +++ b/Modules/IO/ImageIO/test/otbReadingComplexDataIntoComplexImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbScalarBufferToImageFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbScalarBufferToImageFileWriterTest.cxx index a1611b4466..27800bd28a 100644 --- a/Modules/IO/ImageIO/test/otbScalarBufferToImageFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbScalarBufferToImageFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbShortImageIOTest.cxx b/Modules/IO/ImageIO/test/otbShortImageIOTest.cxx index 661c06d0a9..32f3d8a82c 100644 --- a/Modules/IO/ImageIO/test/otbShortImageIOTest.cxx +++ b/Modules/IO/ImageIO/test/otbShortImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbShortRGBImageIOTest.cxx b/Modules/IO/ImageIO/test/otbShortRGBImageIOTest.cxx index bd7feb0b84..b48781c051 100644 --- a/Modules/IO/ImageIO/test/otbShortRGBImageIOTest.cxx +++ b/Modules/IO/ImageIO/test/otbShortRGBImageIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTest.cxx index 3f62182c2f..a62077a153 100644 --- a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTestCalculateNumberOfDivisions.cxx b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTestCalculateNumberOfDivisions.cxx index 3e563a808a..65839badbf 100644 --- a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTestCalculateNumberOfDivisions.cxx +++ b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterTestCalculateNumberOfDivisions.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterWithFilterTest.cxx b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterWithFilterTest.cxx index 5c4d0eb1cc..2a6b628cb0 100644 --- a/Modules/IO/ImageIO/test/otbStreamingImageFileWriterWithFilterTest.cxx +++ b/Modules/IO/ImageIO/test/otbStreamingImageFileWriterWithFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbStreamingImageFilterTest.cxx b/Modules/IO/ImageIO/test/otbStreamingImageFilterTest.cxx index 146353e512..ea0a8b296c 100644 --- a/Modules/IO/ImageIO/test/otbStreamingImageFilterTest.cxx +++ b/Modules/IO/ImageIO/test/otbStreamingImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbStreamingShortImageFileWriterTest.cxx b/Modules/IO/ImageIO/test/otbStreamingShortImageFileWriterTest.cxx index df20d5bcdf..15b0350ab4 100644 --- a/Modules/IO/ImageIO/test/otbStreamingShortImageFileWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbStreamingShortImageFileWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbVectorImageFileReaderWriterTest.cxx b/Modules/IO/ImageIO/test/otbVectorImageFileReaderWriterTest.cxx index 0395826d85..0857747ed0 100644 --- a/Modules/IO/ImageIO/test/otbVectorImageFileReaderWriterTest.cxx +++ b/Modules/IO/ImageIO/test/otbVectorImageFileReaderWriterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbVectorImageFileWriterTestWithoutInput.cxx b/Modules/IO/ImageIO/test/otbVectorImageFileWriterTestWithoutInput.cxx index ade0962efd..95957f90e4 100644 --- a/Modules/IO/ImageIO/test/otbVectorImageFileWriterTestWithoutInput.cxx +++ b/Modules/IO/ImageIO/test/otbVectorImageFileWriterTestWithoutInput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbVectorImageStreamingFileWriterTestWithoutInput.cxx b/Modules/IO/ImageIO/test/otbVectorImageStreamingFileWriterTestWithoutInput.cxx index b0870decb7..26599d3b03 100644 --- a/Modules/IO/ImageIO/test/otbVectorImageStreamingFileWriterTestWithoutInput.cxx +++ b/Modules/IO/ImageIO/test/otbVectorImageStreamingFileWriterTestWithoutInput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbWriteGeomFile.cxx b/Modules/IO/ImageIO/test/otbWriteGeomFile.cxx index 024cc2aa6c..d51c0be3e8 100644 --- a/Modules/IO/ImageIO/test/otbWriteGeomFile.cxx +++ b/Modules/IO/ImageIO/test/otbWriteGeomFile.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/ImageIO/test/otbWritingComplexDataWithComplexImageTest.cxx b/Modules/IO/ImageIO/test/otbWritingComplexDataWithComplexImageTest.cxx index aaca6f5885..a1197cd6d5 100644 --- a/Modules/IO/ImageIO/test/otbWritingComplexDataWithComplexImageTest.cxx +++ b/Modules/IO/ImageIO/test/otbWritingComplexDataWithComplexImageTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/KMZWriter/CMakeLists.txt b/Modules/IO/KMZWriter/CMakeLists.txt index 98bae27e1f..16b8b6884c 100644 --- a/Modules/IO/KMZWriter/CMakeLists.txt +++ b/Modules/IO/KMZWriter/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/KMZWriter/include/otbKmzProductWriter.h b/Modules/IO/KMZWriter/include/otbKmzProductWriter.h index aacc7f1914..83e8484780 100644 --- a/Modules/IO/KMZWriter/include/otbKmzProductWriter.h +++ b/Modules/IO/KMZWriter/include/otbKmzProductWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/KMZWriter/include/otbKmzProductWriter.hxx b/Modules/IO/KMZWriter/include/otbKmzProductWriter.hxx index 5a7c7b5539..f2de585ae6 100644 --- a/Modules/IO/KMZWriter/include/otbKmzProductWriter.hxx +++ b/Modules/IO/KMZWriter/include/otbKmzProductWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/KMZWriter/otb-module.cmake b/Modules/IO/KMZWriter/otb-module.cmake index 88b6cbbf8e..a18c02eb6b 100644 --- a/Modules/IO/KMZWriter/otb-module.cmake +++ b/Modules/IO/KMZWriter/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/KMZWriter/test/CMakeLists.txt b/Modules/IO/KMZWriter/test/CMakeLists.txt index 6f6462f74a..536a642a5f 100644 --- a/Modules/IO/KMZWriter/test/CMakeLists.txt +++ b/Modules/IO/KMZWriter/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx b/Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx index 0182c6ab3f..c23aa1228e 100644 --- a/Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx +++ b/Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/KMZWriter/test/otbKmzProductWriter.cxx b/Modules/IO/KMZWriter/test/otbKmzProductWriter.cxx index cded69961f..9a42d77b47 100644 --- a/Modules/IO/KMZWriter/test/otbKmzProductWriter.cxx +++ b/Modules/IO/KMZWriter/test/otbKmzProductWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/CMakeLists.txt b/Modules/IO/TestKernel/CMakeLists.txt index 462e62871f..1598c460f8 100644 --- a/Modules/IO/TestKernel/CMakeLists.txt +++ b/Modules/IO/TestKernel/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/TestKernel/include/otbDifferenceImageFilter.h b/Modules/IO/TestKernel/include/otbDifferenceImageFilter.h index 032421e2ba..fe707b3743 100644 --- a/Modules/IO/TestKernel/include/otbDifferenceImageFilter.h +++ b/Modules/IO/TestKernel/include/otbDifferenceImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/include/otbDifferenceImageFilter.hxx b/Modules/IO/TestKernel/include/otbDifferenceImageFilter.hxx index 9356ca9e3a..6134063fc1 100644 --- a/Modules/IO/TestKernel/include/otbDifferenceImageFilter.hxx +++ b/Modules/IO/TestKernel/include/otbDifferenceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/include/otbReadDataFile.h b/Modules/IO/TestKernel/include/otbReadDataFile.h index 1f3ca96cf7..0cc7e9f96e 100644 --- a/Modules/IO/TestKernel/include/otbReadDataFile.h +++ b/Modules/IO/TestKernel/include/otbReadDataFile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/include/otbTestHelper.h b/Modules/IO/TestKernel/include/otbTestHelper.h index 94ef49a150..e415ac6d26 100644 --- a/Modules/IO/TestKernel/include/otbTestHelper.h +++ b/Modules/IO/TestKernel/include/otbTestHelper.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/include/otbTestMain.h b/Modules/IO/TestKernel/include/otbTestMain.h index cf578063b4..e0a08d1d5c 100644 --- a/Modules/IO/TestKernel/include/otbTestMain.h +++ b/Modules/IO/TestKernel/include/otbTestMain.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/otb-module.cmake b/Modules/IO/TestKernel/otb-module.cmake index 6ebbb9b510..cd97d20b71 100644 --- a/Modules/IO/TestKernel/otb-module.cmake +++ b/Modules/IO/TestKernel/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/TestKernel/src/CMakeLists.txt b/Modules/IO/TestKernel/src/CMakeLists.txt index d2e30edad5..6030369198 100644 --- a/Modules/IO/TestKernel/src/CMakeLists.txt +++ b/Modules/IO/TestKernel/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/TestKernel/src/otbTestDriver.cxx b/Modules/IO/TestKernel/src/otbTestDriver.cxx index df0069daf8..61ee10f5c9 100644 --- a/Modules/IO/TestKernel/src/otbTestDriver.cxx +++ b/Modules/IO/TestKernel/src/otbTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/src/otbTestHelper.cxx b/Modules/IO/TestKernel/src/otbTestHelper.cxx index 36314fc608..426db29ec5 100644 --- a/Modules/IO/TestKernel/src/otbTestHelper.cxx +++ b/Modules/IO/TestKernel/src/otbTestHelper.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/CMakeLists.txt b/Modules/IO/TestKernel/test/CMakeLists.txt index e212ad02f2..2800ab8599 100644 --- a/Modules/IO/TestKernel/test/CMakeLists.txt +++ b/Modules/IO/TestKernel/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTestScientificNotation.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTestScientificNotation.cxx index 2a32b66843..f40a7a5d09 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTestScientificNotation.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTestScientificNotation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests.cxx index c122d1cd2f..86af09210c 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests2.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests2.cxx index 01ba49d4d1..077d569491 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests2.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests3.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests3.cxx index f177e5f147..b6632ad466 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests3.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests3.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests4.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests4.cxx index 4eae903e81..fd2723d927 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests4.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests4.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests5.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests5.cxx index 3faeeb4352..a996a1c161 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests5.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests5.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTests6.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTests6.cxx index 81b2150e69..b195bd1ac0 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTests6.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTests6.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCompareAsciiTestsEpsilon3_WhiteSpace.cxx b/Modules/IO/TestKernel/test/otbCompareAsciiTestsEpsilon3_WhiteSpace.cxx index ed4080cd6a..3b11bf736d 100644 --- a/Modules/IO/TestKernel/test/otbCompareAsciiTestsEpsilon3_WhiteSpace.cxx +++ b/Modules/IO/TestKernel/test/otbCompareAsciiTestsEpsilon3_WhiteSpace.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbCopyTest.cxx b/Modules/IO/TestKernel/test/otbCopyTest.cxx index c6f80e9cac..6201e77803 100644 --- a/Modules/IO/TestKernel/test/otbCopyTest.cxx +++ b/Modules/IO/TestKernel/test/otbCopyTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/TestKernel/test/otbTestKernelTestDriver.cxx b/Modules/IO/TestKernel/test/otbTestKernelTestDriver.cxx index 8aa5d7466d..62863ae248 100644 --- a/Modules/IO/TestKernel/test/otbTestKernelTestDriver.cxx +++ b/Modules/IO/TestKernel/test/otbTestKernelTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/CMakeLists.txt b/Modules/IO/VectorDataIO/CMakeLists.txt index c00b5f4a5e..8579cefa91 100644 --- a/Modules/IO/VectorDataIO/CMakeLists.txt +++ b/Modules/IO/VectorDataIO/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.h b/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.h index b8a1a5919e..13f3d0b434 100644 --- a/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.h +++ b/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.hxx b/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.hxx index 9666bae33a..69de1a5db8 100644 --- a/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.hxx +++ b/Modules/IO/VectorDataIO/include/otbVectorDataFileReader.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.h b/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.h index ce931c3dcf..9fc010a8a7 100644 --- a/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.h +++ b/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.hxx b/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.hxx index 56863b8df7..41327000b9 100644 --- a/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.hxx +++ b/Modules/IO/VectorDataIO/include/otbVectorDataFileWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/include/otbVectorDataIOFactory.h b/Modules/IO/VectorDataIO/include/otbVectorDataIOFactory.h index 2bc672985c..32c3594831 100644 --- a/Modules/IO/VectorDataIO/include/otbVectorDataIOFactory.h +++ b/Modules/IO/VectorDataIO/include/otbVectorDataIOFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/otb-module.cmake b/Modules/IO/VectorDataIO/otb-module.cmake index a8830615fd..2a7499d7ad 100644 --- a/Modules/IO/VectorDataIO/otb-module.cmake +++ b/Modules/IO/VectorDataIO/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/VectorDataIO/src/CMakeLists.txt b/Modules/IO/VectorDataIO/src/CMakeLists.txt index 6059f9a16e..3c0d64ea5b 100644 --- a/Modules/IO/VectorDataIO/src/CMakeLists.txt +++ b/Modules/IO/VectorDataIO/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/VectorDataIO/src/otbVectorDataIOFactory.cxx b/Modules/IO/VectorDataIO/src/otbVectorDataIOFactory.cxx index eda0da35f9..89901f0825 100644 --- a/Modules/IO/VectorDataIO/src/otbVectorDataIOFactory.cxx +++ b/Modules/IO/VectorDataIO/src/otbVectorDataIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/CMakeLists.txt b/Modules/IO/VectorDataIO/test/CMakeLists.txt index 63ad30d1c6..09f28a75ad 100644 --- a/Modules/IO/VectorDataIO/test/CMakeLists.txt +++ b/Modules/IO/VectorDataIO/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileGeoReaderWriter.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileGeoReaderWriter.cxx index 8759a94c68..46be7d8516 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileGeoReaderWriter.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileGeoReaderWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileReader.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileReader.cxx index 7e63112f6e..f29e497d02 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileReader.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileReaderWriter.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileReaderWriter.cxx index cf36441af3..f2cde0e936 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileReaderWriter.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileReaderWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriter.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriter.cxx index c830f8ae8c..2b8bb45fc9 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriter.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterMultiPolygons.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterMultiPolygons.cxx index 62dcbdf68f..58d5a55c4a 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterMultiPolygons.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterMultiPolygons.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterPolygons.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterPolygons.cxx index 0b700529ff..f2b3051f15 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterPolygons.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataFileWriterPolygons.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataIOFactory.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataIOFactory.cxx index 452ec235fe..48e60e93fd 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataIOFactory.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataIOFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx b/Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx index a3cb1c05ec..4c500a1bc7 100644 --- a/Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx +++ b/Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/CMakeLists.txt b/Modules/Learning/DempsterShafer/CMakeLists.txt index 8a133b2e55..82c941bdb2 100644 --- a/Modules/Learning/DempsterShafer/CMakeLists.txt +++ b/Modules/Learning/DempsterShafer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.h b/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.h index 41fb35c64f..234f12c52a 100644 --- a/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.h +++ b/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.hxx b/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.hxx index 37f407c603..f9c9a05455 100644 --- a/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.hxx +++ b/Modules/Learning/DempsterShafer/include/otbConfusionMatrixToMassOfBelief.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.h b/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.h index ee95219d01..001fd83ec4 100644 --- a/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.h +++ b/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.hxx b/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.hxx index 18bd70837f..5a1f0f46d4 100644 --- a/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.hxx +++ b/Modules/Learning/DempsterShafer/include/otbDSFusionOfClassifiersImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.h b/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.h index 8fcf2985e4..65b7629ea2 100644 --- a/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.h +++ b/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.hxx b/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.hxx index 75107b5d59..c8840226c4 100644 --- a/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.hxx +++ b/Modules/Learning/DempsterShafer/include/otbJointMassOfBeliefFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbMassOfBelief.h b/Modules/Learning/DempsterShafer/include/otbMassOfBelief.h index 65d721ad8d..4f18d106eb 100644 --- a/Modules/Learning/DempsterShafer/include/otbMassOfBelief.h +++ b/Modules/Learning/DempsterShafer/include/otbMassOfBelief.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/include/otbMassOfBelief.hxx b/Modules/Learning/DempsterShafer/include/otbMassOfBelief.hxx index df21d4f156..63059874a3 100644 --- a/Modules/Learning/DempsterShafer/include/otbMassOfBelief.hxx +++ b/Modules/Learning/DempsterShafer/include/otbMassOfBelief.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/otb-module.cmake b/Modules/Learning/DempsterShafer/otb-module.cmake index 2740757571..f50a281b0c 100644 --- a/Modules/Learning/DempsterShafer/otb-module.cmake +++ b/Modules/Learning/DempsterShafer/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DempsterShafer/test/CMakeLists.txt b/Modules/Learning/DempsterShafer/test/CMakeLists.txt index 9ebe35857f..851f8d73b4 100644 --- a/Modules/Learning/DempsterShafer/test/CMakeLists.txt +++ b/Modules/Learning/DempsterShafer/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DempsterShafer/test/otbConfusionMatrixToMassOfBeliefTest.cxx b/Modules/Learning/DempsterShafer/test/otbConfusionMatrixToMassOfBeliefTest.cxx index e962d7113d..b8aded9804 100644 --- a/Modules/Learning/DempsterShafer/test/otbConfusionMatrixToMassOfBeliefTest.cxx +++ b/Modules/Learning/DempsterShafer/test/otbConfusionMatrixToMassOfBeliefTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbDSFusionOfClassifiersImageFilterTest.cxx b/Modules/Learning/DempsterShafer/test/otbDSFusionOfClassifiersImageFilterTest.cxx index 03cbe5ab12..589a4eb5e7 100644 --- a/Modules/Learning/DempsterShafer/test/otbDSFusionOfClassifiersImageFilterTest.cxx +++ b/Modules/Learning/DempsterShafer/test/otbDSFusionOfClassifiersImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbDempsterShaferFusionTests.cxx b/Modules/Learning/DempsterShafer/test/otbDempsterShaferFusionTests.cxx index a537431c13..79d882a7b3 100644 --- a/Modules/Learning/DempsterShafer/test/otbDempsterShaferFusionTests.cxx +++ b/Modules/Learning/DempsterShafer/test/otbDempsterShaferFusionTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx b/Modules/Learning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx index d8b30b3339..b36fbed850 100644 --- a/Modules/Learning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx +++ b/Modules/Learning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbJointMassOfBeliefFilter.cxx b/Modules/Learning/DempsterShafer/test/otbJointMassOfBeliefFilter.cxx index ff06212613..fa5db41fd3 100644 --- a/Modules/Learning/DempsterShafer/test/otbJointMassOfBeliefFilter.cxx +++ b/Modules/Learning/DempsterShafer/test/otbJointMassOfBeliefFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbMassOfBelief.cxx b/Modules/Learning/DempsterShafer/test/otbMassOfBelief.cxx index 2f43464217..dd74484313 100644 --- a/Modules/Learning/DempsterShafer/test/otbMassOfBelief.cxx +++ b/Modules/Learning/DempsterShafer/test/otbMassOfBelief.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DempsterShafer/test/otbMassOfBeliefDSApplied.cxx b/Modules/Learning/DempsterShafer/test/otbMassOfBeliefDSApplied.cxx index 503ac0741c..bd7d9dbdda 100644 --- a/Modules/Learning/DempsterShafer/test/otbMassOfBeliefDSApplied.cxx +++ b/Modules/Learning/DempsterShafer/test/otbMassOfBeliefDSApplied.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/CMakeLists.txt b/Modules/Learning/DimensionalityReductionLearning/CMakeLists.txt index bcf5c661c6..a52c10826f 100644 --- a/Modules/Learning/DimensionalityReductionLearning/CMakeLists.txt +++ b/Modules/Learning/DimensionalityReductionLearning/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h index 4311577662..c29ecb9082 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.hxx index 4b41e7304d..6838516e87 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h index 146d59cdbe..e5f6b1f48a 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.hxx index 7d1134928f..2a5ace3271 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h index 774f1a9f12..42e96c7bda 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.hxx index 87bd4c63f7..73f622850c 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h index bd85900d40..3519288591 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.hxx index 0b687d713b..97dfd16969 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h index 1719ddf760..adc5948a5a 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.hxx index ea7dc7a7ae..df07dda21f 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h index 563b4a1dfd..fa32414549 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.hxx index 768ff33a60..dcaf107659 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h index ae3c750700..27d430829a 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.hxx index 387cf708ba..b3aa3baca8 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.h index b5a363df8f..b2174d3a5e 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.hxx b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.hxx index b0c2815031..cf054de6cf 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.hxx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/otb-module.cmake b/Modules/Learning/DimensionalityReductionLearning/otb-module.cmake index 935690c1b5..f0bbb460a3 100644 --- a/Modules/Learning/DimensionalityReductionLearning/otb-module.cmake +++ b/Modules/Learning/DimensionalityReductionLearning/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DimensionalityReductionLearning/test/CMakeLists.txt b/Modules/Learning/DimensionalityReductionLearning/test/CMakeLists.txt index 21458c5fac..90833fe937 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/CMakeLists.txt +++ b/Modules/Learning/DimensionalityReductionLearning/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/DimensionalityReductionLearning/test/otbAutoencoderModelTest.cxx b/Modules/Learning/DimensionalityReductionLearning/test/otbAutoencoderModelTest.cxx index d3e71c9741..4dba0e2fae 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/otbAutoencoderModelTest.cxx +++ b/Modules/Learning/DimensionalityReductionLearning/test/otbAutoencoderModelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/test/otbDimensionalityReductionLearningTestDriver.cxx b/Modules/Learning/DimensionalityReductionLearning/test/otbDimensionalityReductionLearningTestDriver.cxx index d8eba6d980..00db5e8a11 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/otbDimensionalityReductionLearningTestDriver.cxx +++ b/Modules/Learning/DimensionalityReductionLearning/test/otbDimensionalityReductionLearningTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/test/otbPCAModelTest.cxx b/Modules/Learning/DimensionalityReductionLearning/test/otbPCAModelTest.cxx index 004b55ecfe..3759d7ad9e 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/otbPCAModelTest.cxx +++ b/Modules/Learning/DimensionalityReductionLearning/test/otbPCAModelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/test/otbSOMModelTest.cxx b/Modules/Learning/DimensionalityReductionLearning/test/otbSOMModelTest.cxx index 9b4d8ccbf1..002e71e642 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/otbSOMModelTest.cxx +++ b/Modules/Learning/DimensionalityReductionLearning/test/otbSOMModelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/DimensionalityReductionLearning/test/tests-shark.cmake b/Modules/Learning/DimensionalityReductionLearning/test/tests-shark.cmake index f48799ccbf..567d429ed8 100644 --- a/Modules/Learning/DimensionalityReductionLearning/test/tests-shark.cmake +++ b/Modules/Learning/DimensionalityReductionLearning/test/tests-shark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/LearningBase/CMakeLists.txt b/Modules/Learning/LearningBase/CMakeLists.txt index 292639a182..adcee85297 100644 --- a/Modules/Learning/LearningBase/CMakeLists.txt +++ b/Modules/Learning/LearningBase/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/LearningBase/include/otbDecisionTree.h b/Modules/Learning/LearningBase/include/otbDecisionTree.h index fdc3ffa7c5..d8a6ccfcaf 100644 --- a/Modules/Learning/LearningBase/include/otbDecisionTree.h +++ b/Modules/Learning/LearningBase/include/otbDecisionTree.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbDecisionTree.hxx b/Modules/Learning/LearningBase/include/otbDecisionTree.hxx index 9d40713e43..67aadd3ab9 100644 --- a/Modules/Learning/LearningBase/include/otbDecisionTree.hxx +++ b/Modules/Learning/LearningBase/include/otbDecisionTree.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbGaussianModelComponent.h b/Modules/Learning/LearningBase/include/otbGaussianModelComponent.h index 9aff6fc99c..27a8710670 100644 --- a/Modules/Learning/LearningBase/include/otbGaussianModelComponent.h +++ b/Modules/Learning/LearningBase/include/otbGaussianModelComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/LearningBase/include/otbGaussianModelComponent.hxx b/Modules/Learning/LearningBase/include/otbGaussianModelComponent.hxx index a65fb15340..d6d5014c17 100644 --- a/Modules/Learning/LearningBase/include/otbGaussianModelComponent.hxx +++ b/Modules/Learning/LearningBase/include/otbGaussianModelComponent.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/LearningBase/include/otbImageClassificationFilter.h b/Modules/Learning/LearningBase/include/otbImageClassificationFilter.h index 5418bd1ace..deef8e31e0 100644 --- a/Modules/Learning/LearningBase/include/otbImageClassificationFilter.h +++ b/Modules/Learning/LearningBase/include/otbImageClassificationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbImageClassificationFilter.hxx b/Modules/Learning/LearningBase/include/otbImageClassificationFilter.hxx index 93356ccead..c84ddae04f 100644 --- a/Modules/Learning/LearningBase/include/otbImageClassificationFilter.hxx +++ b/Modules/Learning/LearningBase/include/otbImageClassificationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.h b/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.h index a974d45d9c..5996ae95b0 100644 --- a/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.h +++ b/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.hxx b/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.hxx index 8497650e38..8b1c5ffed9 100644 --- a/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.hxx +++ b/Modules/Learning/LearningBase/include/otbKMeansImageClassificationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbMachineLearningModel.h b/Modules/Learning/LearningBase/include/otbMachineLearningModel.h index e859f31241..29f8d2fcc3 100644 --- a/Modules/Learning/LearningBase/include/otbMachineLearningModel.h +++ b/Modules/Learning/LearningBase/include/otbMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbMachineLearningModel.hxx b/Modules/Learning/LearningBase/include/otbMachineLearningModel.hxx index 6bf58ee00a..75164b9c1f 100644 --- a/Modules/Learning/LearningBase/include/otbMachineLearningModel.hxx +++ b/Modules/Learning/LearningBase/include/otbMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbMachineLearningModelFactoryBase.h b/Modules/Learning/LearningBase/include/otbMachineLearningModelFactoryBase.h index 9d8fda102a..ebda48df8c 100644 --- a/Modules/Learning/LearningBase/include/otbMachineLearningModelFactoryBase.h +++ b/Modules/Learning/LearningBase/include/otbMachineLearningModelFactoryBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbMachineLearningModelTraits.h b/Modules/Learning/LearningBase/include/otbMachineLearningModelTraits.h index a548cb6a69..185904106d 100644 --- a/Modules/Learning/LearningBase/include/otbMachineLearningModelTraits.h +++ b/Modules/Learning/LearningBase/include/otbMachineLearningModelTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/include/otbSEMClassifier.h b/Modules/Learning/LearningBase/include/otbSEMClassifier.h index adc588d1c8..148b6a4a3f 100644 --- a/Modules/Learning/LearningBase/include/otbSEMClassifier.h +++ b/Modules/Learning/LearningBase/include/otbSEMClassifier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/LearningBase/include/otbSEMClassifier.hxx b/Modules/Learning/LearningBase/include/otbSEMClassifier.hxx index f7b803b2f2..0ac4a16ba0 100644 --- a/Modules/Learning/LearningBase/include/otbSEMClassifier.hxx +++ b/Modules/Learning/LearningBase/include/otbSEMClassifier.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/LearningBase/otb-module.cmake b/Modules/Learning/LearningBase/otb-module.cmake index ff2622f9e5..74962e8de1 100644 --- a/Modules/Learning/LearningBase/otb-module.cmake +++ b/Modules/Learning/LearningBase/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/LearningBase/src/CMakeLists.txt b/Modules/Learning/LearningBase/src/CMakeLists.txt index 00a31dbf07..7fad4bae14 100644 --- a/Modules/Learning/LearningBase/src/CMakeLists.txt +++ b/Modules/Learning/LearningBase/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/LearningBase/src/otbMachineLearningModelFactoryBase.cxx b/Modules/Learning/LearningBase/src/otbMachineLearningModelFactoryBase.cxx index 3b95d59a0e..2b00ac7cde 100644 --- a/Modules/Learning/LearningBase/src/otbMachineLearningModelFactoryBase.cxx +++ b/Modules/Learning/LearningBase/src/otbMachineLearningModelFactoryBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/test/CMakeLists.txt b/Modules/Learning/LearningBase/test/CMakeLists.txt index bc8a91f9b7..783b32b62d 100644 --- a/Modules/Learning/LearningBase/test/CMakeLists.txt +++ b/Modules/Learning/LearningBase/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/LearningBase/test/otbDecisionTreeBuild.cxx b/Modules/Learning/LearningBase/test/otbDecisionTreeBuild.cxx index e0137e4412..feb7d375ff 100644 --- a/Modules/Learning/LearningBase/test/otbDecisionTreeBuild.cxx +++ b/Modules/Learning/LearningBase/test/otbDecisionTreeBuild.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/test/otbDecisionTreeWithRealValues.cxx b/Modules/Learning/LearningBase/test/otbDecisionTreeWithRealValues.cxx index 16aede7cc7..e9ae2a5c52 100644 --- a/Modules/Learning/LearningBase/test/otbDecisionTreeWithRealValues.cxx +++ b/Modules/Learning/LearningBase/test/otbDecisionTreeWithRealValues.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/test/otbKMeansImageClassificationFilter.cxx b/Modules/Learning/LearningBase/test/otbKMeansImageClassificationFilter.cxx index f1271479de..264ae2d767 100644 --- a/Modules/Learning/LearningBase/test/otbKMeansImageClassificationFilter.cxx +++ b/Modules/Learning/LearningBase/test/otbKMeansImageClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/test/otbLearningBaseTestDriver.cxx b/Modules/Learning/LearningBase/test/otbLearningBaseTestDriver.cxx index eb252dfde3..4091890f4f 100644 --- a/Modules/Learning/LearningBase/test/otbLearningBaseTestDriver.cxx +++ b/Modules/Learning/LearningBase/test/otbLearningBaseTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/LearningBase/test/otbSharkUtilsTests.cxx b/Modules/Learning/LearningBase/test/otbSharkUtilsTests.cxx index 17496f9b5a..6cfac1d04a 100644 --- a/Modules/Learning/LearningBase/test/otbSharkUtilsTests.cxx +++ b/Modules/Learning/LearningBase/test/otbSharkUtilsTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/CMakeLists.txt b/Modules/Learning/Markov/CMakeLists.txt index f2bb0b7687..4a22d2fa00 100644 --- a/Modules/Learning/Markov/CMakeLists.txt +++ b/Modules/Learning/Markov/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Markov/include/otbMRFEnergy.h b/Modules/Learning/Markov/include/otbMRFEnergy.h index 0b8dc66bc0..a4186c8045 100644 --- a/Modules/Learning/Markov/include/otbMRFEnergy.h +++ b/Modules/Learning/Markov/include/otbMRFEnergy.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFEnergyEdgeFidelity.h b/Modules/Learning/Markov/include/otbMRFEnergyEdgeFidelity.h index fcb5065487..5230a772e4 100644 --- a/Modules/Learning/Markov/include/otbMRFEnergyEdgeFidelity.h +++ b/Modules/Learning/Markov/include/otbMRFEnergyEdgeFidelity.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFEnergyGaussian.h b/Modules/Learning/Markov/include/otbMRFEnergyGaussian.h index 41613b5a2f..d929dc342c 100644 --- a/Modules/Learning/Markov/include/otbMRFEnergyGaussian.h +++ b/Modules/Learning/Markov/include/otbMRFEnergyGaussian.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFEnergyGaussianClassification.h b/Modules/Learning/Markov/include/otbMRFEnergyGaussianClassification.h index 4e51088b7b..b6ebe3e209 100644 --- a/Modules/Learning/Markov/include/otbMRFEnergyGaussianClassification.h +++ b/Modules/Learning/Markov/include/otbMRFEnergyGaussianClassification.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFEnergyPotts.h b/Modules/Learning/Markov/include/otbMRFEnergyPotts.h index e7da36fe65..528eaba1e5 100644 --- a/Modules/Learning/Markov/include/otbMRFEnergyPotts.h +++ b/Modules/Learning/Markov/include/otbMRFEnergyPotts.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFOptimizer.h b/Modules/Learning/Markov/include/otbMRFOptimizer.h index 555e767b70..61b5136c3c 100644 --- a/Modules/Learning/Markov/include/otbMRFOptimizer.h +++ b/Modules/Learning/Markov/include/otbMRFOptimizer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFOptimizerICM.h b/Modules/Learning/Markov/include/otbMRFOptimizerICM.h index 0722cb8d68..d7036eef16 100644 --- a/Modules/Learning/Markov/include/otbMRFOptimizerICM.h +++ b/Modules/Learning/Markov/include/otbMRFOptimizerICM.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFOptimizerMetropolis.h b/Modules/Learning/Markov/include/otbMRFOptimizerMetropolis.h index 8e750c4e3b..eecf082c3b 100644 --- a/Modules/Learning/Markov/include/otbMRFOptimizerMetropolis.h +++ b/Modules/Learning/Markov/include/otbMRFOptimizerMetropolis.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFSampler.h b/Modules/Learning/Markov/include/otbMRFSampler.h index 3baf5eb81f..dd7486c838 100644 --- a/Modules/Learning/Markov/include/otbMRFSampler.h +++ b/Modules/Learning/Markov/include/otbMRFSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFSamplerMAP.h b/Modules/Learning/Markov/include/otbMRFSamplerMAP.h index dce3879c12..e4953dc70b 100644 --- a/Modules/Learning/Markov/include/otbMRFSamplerMAP.h +++ b/Modules/Learning/Markov/include/otbMRFSamplerMAP.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFSamplerRandom.h b/Modules/Learning/Markov/include/otbMRFSamplerRandom.h index bf0aab2be8..09a8ca2a57 100644 --- a/Modules/Learning/Markov/include/otbMRFSamplerRandom.h +++ b/Modules/Learning/Markov/include/otbMRFSamplerRandom.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMRFSamplerRandomMAP.h b/Modules/Learning/Markov/include/otbMRFSamplerRandomMAP.h index b898d206c2..30e6bcc33b 100644 --- a/Modules/Learning/Markov/include/otbMRFSamplerRandomMAP.h +++ b/Modules/Learning/Markov/include/otbMRFSamplerRandomMAP.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.h b/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.h index f707d864d2..722a75a585 100644 --- a/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.h +++ b/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.hxx b/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.hxx index 24d1de9d36..c754020afb 100644 --- a/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.hxx +++ b/Modules/Learning/Markov/include/otbMarkovRandomFieldFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/otb-module.cmake b/Modules/Learning/Markov/otb-module.cmake index b14f975c4b..1d812f685a 100644 --- a/Modules/Learning/Markov/otb-module.cmake +++ b/Modules/Learning/Markov/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Markov/test/CMakeLists.txt b/Modules/Learning/Markov/test/CMakeLists.txt index 6820318304..25a82d5525 100644 --- a/Modules/Learning/Markov/test/CMakeLists.txt +++ b/Modules/Learning/Markov/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Markov/test/otbMRFEnergyEdgeFidelity.cxx b/Modules/Learning/Markov/test/otbMRFEnergyEdgeFidelity.cxx index b2b53839a1..11d18d4cd3 100644 --- a/Modules/Learning/Markov/test/otbMRFEnergyEdgeFidelity.cxx +++ b/Modules/Learning/Markov/test/otbMRFEnergyEdgeFidelity.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFEnergyGaussian.cxx b/Modules/Learning/Markov/test/otbMRFEnergyGaussian.cxx index 23437fba04..d27c911bd5 100644 --- a/Modules/Learning/Markov/test/otbMRFEnergyGaussian.cxx +++ b/Modules/Learning/Markov/test/otbMRFEnergyGaussian.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFEnergyGaussianClassification.cxx b/Modules/Learning/Markov/test/otbMRFEnergyGaussianClassification.cxx index a220d41023..2b14efaa3c 100644 --- a/Modules/Learning/Markov/test/otbMRFEnergyGaussianClassification.cxx +++ b/Modules/Learning/Markov/test/otbMRFEnergyGaussianClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFEnergyPotts.cxx b/Modules/Learning/Markov/test/otbMRFEnergyPotts.cxx index 3bfd668f2e..0e968513aa 100644 --- a/Modules/Learning/Markov/test/otbMRFEnergyPotts.cxx +++ b/Modules/Learning/Markov/test/otbMRFEnergyPotts.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFOptimizerICM.cxx b/Modules/Learning/Markov/test/otbMRFOptimizerICM.cxx index 6354239fdd..852a6044dc 100644 --- a/Modules/Learning/Markov/test/otbMRFOptimizerICM.cxx +++ b/Modules/Learning/Markov/test/otbMRFOptimizerICM.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFOptimizerMetropolis.cxx b/Modules/Learning/Markov/test/otbMRFOptimizerMetropolis.cxx index 9c754720ed..cd067a09fa 100644 --- a/Modules/Learning/Markov/test/otbMRFOptimizerMetropolis.cxx +++ b/Modules/Learning/Markov/test/otbMRFOptimizerMetropolis.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFSamplerMAP.cxx b/Modules/Learning/Markov/test/otbMRFSamplerMAP.cxx index 77cbb880f6..c3eccfba43 100644 --- a/Modules/Learning/Markov/test/otbMRFSamplerMAP.cxx +++ b/Modules/Learning/Markov/test/otbMRFSamplerMAP.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFSamplerRandom.cxx b/Modules/Learning/Markov/test/otbMRFSamplerRandom.cxx index 79415fb80f..d3b9296da3 100644 --- a/Modules/Learning/Markov/test/otbMRFSamplerRandom.cxx +++ b/Modules/Learning/Markov/test/otbMRFSamplerRandom.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMRFSamplerRandomMAP.cxx b/Modules/Learning/Markov/test/otbMRFSamplerRandomMAP.cxx index 0c6dc40f62..216bc0bdf0 100644 --- a/Modules/Learning/Markov/test/otbMRFSamplerRandomMAP.cxx +++ b/Modules/Learning/Markov/test/otbMRFSamplerRandomMAP.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMarkovRandomFieldFilter.cxx b/Modules/Learning/Markov/test/otbMarkovRandomFieldFilter.cxx index 54d83ec722..3494bdb500 100644 --- a/Modules/Learning/Markov/test/otbMarkovRandomFieldFilter.cxx +++ b/Modules/Learning/Markov/test/otbMarkovRandomFieldFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Markov/test/otbMarkovTestDriver.cxx b/Modules/Learning/Markov/test/otbMarkovTestDriver.cxx index 2b4bcaa932..8f27716cae 100644 --- a/Modules/Learning/Markov/test/otbMarkovTestDriver.cxx +++ b/Modules/Learning/Markov/test/otbMarkovTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/CMakeLists.txt b/Modules/Learning/SOM/CMakeLists.txt index 17ef2b1a3e..34c998de2e 100644 --- a/Modules/Learning/SOM/CMakeLists.txt +++ b/Modules/Learning/SOM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/SOM/include/otbCzihoSOMLearningBehaviorFunctor.h b/Modules/Learning/SOM/include/otbCzihoSOMLearningBehaviorFunctor.h index 4cdaac2f34..f261acec55 100644 --- a/Modules/Learning/SOM/include/otbCzihoSOMLearningBehaviorFunctor.h +++ b/Modules/Learning/SOM/include/otbCzihoSOMLearningBehaviorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbCzihoSOMNeighborhoodBehaviorFunctor.h b/Modules/Learning/SOM/include/otbCzihoSOMNeighborhoodBehaviorFunctor.h index 97f38e773f..bec81fc845 100644 --- a/Modules/Learning/SOM/include/otbCzihoSOMNeighborhoodBehaviorFunctor.h +++ b/Modules/Learning/SOM/include/otbCzihoSOMNeighborhoodBehaviorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbPeriodicSOM.h b/Modules/Learning/SOM/include/otbPeriodicSOM.h index b3b0f1246b..090b76455b 100644 --- a/Modules/Learning/SOM/include/otbPeriodicSOM.h +++ b/Modules/Learning/SOM/include/otbPeriodicSOM.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbPeriodicSOM.hxx b/Modules/Learning/SOM/include/otbPeriodicSOM.hxx index a5dc1f21cf..28e74cbce8 100644 --- a/Modules/Learning/SOM/include/otbPeriodicSOM.hxx +++ b/Modules/Learning/SOM/include/otbPeriodicSOM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOM.h b/Modules/Learning/SOM/include/otbSOM.h index 51cc20efde..3f5250f912 100644 --- a/Modules/Learning/SOM/include/otbSOM.h +++ b/Modules/Learning/SOM/include/otbSOM.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOM.hxx b/Modules/Learning/SOM/include/otbSOM.hxx index 4d40760850..f7f1ccf944 100644 --- a/Modules/Learning/SOM/include/otbSOM.hxx +++ b/Modules/Learning/SOM/include/otbSOM.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMActivationBuilder.h b/Modules/Learning/SOM/include/otbSOMActivationBuilder.h index 2488bdab05..66e5c22c98 100644 --- a/Modules/Learning/SOM/include/otbSOMActivationBuilder.h +++ b/Modules/Learning/SOM/include/otbSOMActivationBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMActivationBuilder.hxx b/Modules/Learning/SOM/include/otbSOMActivationBuilder.hxx index 92adffbd8b..955aace41b 100644 --- a/Modules/Learning/SOM/include/otbSOMActivationBuilder.hxx +++ b/Modules/Learning/SOM/include/otbSOMActivationBuilder.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMClassifier.h b/Modules/Learning/SOM/include/otbSOMClassifier.h index d145c503eb..8ecc69591a 100644 --- a/Modules/Learning/SOM/include/otbSOMClassifier.h +++ b/Modules/Learning/SOM/include/otbSOMClassifier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMClassifier.hxx b/Modules/Learning/SOM/include/otbSOMClassifier.hxx index 875ee89022..41601bd32e 100644 --- a/Modules/Learning/SOM/include/otbSOMClassifier.hxx +++ b/Modules/Learning/SOM/include/otbSOMClassifier.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.h b/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.h index b9ddccad01..32119db6d6 100644 --- a/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.h +++ b/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.hxx b/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.hxx index 7a31ae9295..c9b234e794 100644 --- a/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.hxx +++ b/Modules/Learning/SOM/include/otbSOMImageClassificationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/include/otbSOMLearningBehaviorFunctor.h b/Modules/Learning/SOM/include/otbSOMLearningBehaviorFunctor.h index 90f7ca42bb..66c5283a6e 100644 --- a/Modules/Learning/SOM/include/otbSOMLearningBehaviorFunctor.h +++ b/Modules/Learning/SOM/include/otbSOMLearningBehaviorFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMMap.h b/Modules/Learning/SOM/include/otbSOMMap.h index 8b25cda73d..eff68a429b 100644 --- a/Modules/Learning/SOM/include/otbSOMMap.h +++ b/Modules/Learning/SOM/include/otbSOMMap.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMMap.hxx b/Modules/Learning/SOM/include/otbSOMMap.hxx index de439677e3..9816d101c5 100644 --- a/Modules/Learning/SOM/include/otbSOMMap.hxx +++ b/Modules/Learning/SOM/include/otbSOMMap.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMWithMissingValue.h b/Modules/Learning/SOM/include/otbSOMWithMissingValue.h index c417f6042b..8a062bb428 100644 --- a/Modules/Learning/SOM/include/otbSOMWithMissingValue.h +++ b/Modules/Learning/SOM/include/otbSOMWithMissingValue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMWithMissingValue.hxx b/Modules/Learning/SOM/include/otbSOMWithMissingValue.hxx index 7a3c84ba2d..9d01f40270 100644 --- a/Modules/Learning/SOM/include/otbSOMWithMissingValue.hxx +++ b/Modules/Learning/SOM/include/otbSOMWithMissingValue.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMbasedImageFilter.h b/Modules/Learning/SOM/include/otbSOMbasedImageFilter.h index 1afab63954..05255f3da9 100644 --- a/Modules/Learning/SOM/include/otbSOMbasedImageFilter.h +++ b/Modules/Learning/SOM/include/otbSOMbasedImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/include/otbSOMbasedImageFilter.hxx b/Modules/Learning/SOM/include/otbSOMbasedImageFilter.hxx index d443706292..b092e29fe5 100644 --- a/Modules/Learning/SOM/include/otbSOMbasedImageFilter.hxx +++ b/Modules/Learning/SOM/include/otbSOMbasedImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 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/Learning/SOM/otb-module.cmake b/Modules/Learning/SOM/otb-module.cmake index 95c8a77fe9..43bb9bb16c 100644 --- a/Modules/Learning/SOM/otb-module.cmake +++ b/Modules/Learning/SOM/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/SOM/test/CMakeLists.txt b/Modules/Learning/SOM/test/CMakeLists.txt index 3e50c75260..bd1ead3663 100644 --- a/Modules/Learning/SOM/test/CMakeLists.txt +++ b/Modules/Learning/SOM/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/SOM/test/MapActivation.cxx b/Modules/Learning/SOM/test/MapActivation.cxx index 0415e32443..cabc4c8cd4 100644 --- a/Modules/Learning/SOM/test/MapActivation.cxx +++ b/Modules/Learning/SOM/test/MapActivation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbPeriodicSOM.cxx b/Modules/Learning/SOM/test/otbPeriodicSOM.cxx index 3bc53bf90c..580ee99f2a 100644 --- a/Modules/Learning/SOM/test/otbPeriodicSOM.cxx +++ b/Modules/Learning/SOM/test/otbPeriodicSOM.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOM.cxx b/Modules/Learning/SOM/test/otbSOM.cxx index 7022ac7897..d223b1f18e 100644 --- a/Modules/Learning/SOM/test/otbSOM.cxx +++ b/Modules/Learning/SOM/test/otbSOM.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMActivationBuilder.cxx b/Modules/Learning/SOM/test/otbSOMActivationBuilder.cxx index c93c7314da..5a857eccb1 100644 --- a/Modules/Learning/SOM/test/otbSOMActivationBuilder.cxx +++ b/Modules/Learning/SOM/test/otbSOMActivationBuilder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMClassifier.cxx b/Modules/Learning/SOM/test/otbSOMClassifier.cxx index 305a50b9d5..5cb4a2af05 100644 --- a/Modules/Learning/SOM/test/otbSOMClassifier.cxx +++ b/Modules/Learning/SOM/test/otbSOMClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMImageClassificationFilter.cxx b/Modules/Learning/SOM/test/otbSOMImageClassificationFilter.cxx index de91f2ffe0..9804ae23c5 100644 --- a/Modules/Learning/SOM/test/otbSOMImageClassificationFilter.cxx +++ b/Modules/Learning/SOM/test/otbSOMImageClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMMap.cxx b/Modules/Learning/SOM/test/otbSOMMap.cxx index 467f1973c7..26bdb37ebe 100644 --- a/Modules/Learning/SOM/test/otbSOMMap.cxx +++ b/Modules/Learning/SOM/test/otbSOMMap.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMTestDriver.cxx b/Modules/Learning/SOM/test/otbSOMTestDriver.cxx index 3b7600e86c..a492fbe510 100644 --- a/Modules/Learning/SOM/test/otbSOMTestDriver.cxx +++ b/Modules/Learning/SOM/test/otbSOMTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMWithMissingValue.cxx b/Modules/Learning/SOM/test/otbSOMWithMissingValue.cxx index 95f073524d..e67eda2dc8 100644 --- a/Modules/Learning/SOM/test/otbSOMWithMissingValue.cxx +++ b/Modules/Learning/SOM/test/otbSOMWithMissingValue.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/SOM/test/otbSOMbasedImageFilter.cxx b/Modules/Learning/SOM/test/otbSOMbasedImageFilter.cxx index 8dfb62e7fc..483fa5e564 100644 --- a/Modules/Learning/SOM/test/otbSOMbasedImageFilter.cxx +++ b/Modules/Learning/SOM/test/otbSOMbasedImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/CMakeLists.txt b/Modules/Learning/Sampling/CMakeLists.txt index 5da072fa29..1c7c9478bf 100644 --- a/Modules/Learning/Sampling/CMakeLists.txt +++ b/Modules/Learning/Sampling/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.h b/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.h index 85c170adb5..818543bad6 100644 --- a/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.h +++ b/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.hxx b/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.hxx index bceee8a8ac..b80fcab64d 100644 --- a/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.hxx +++ b/Modules/Learning/Sampling/include/otbImageSampleExtractorFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.h b/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.h index 2d2a08a190..70fbe1dc09 100644 --- a/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.h +++ b/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.hxx b/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.hxx index c5c93c3f4b..eec9d6122b 100644 --- a/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.hxx +++ b/Modules/Learning/Sampling/include/otbOGRDataToClassStatisticsFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.h b/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.h index 449fafd961..c3408be33c 100644 --- a/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.h +++ b/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.hxx b/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.hxx index a70c31fa83..9c069686a1 100644 --- a/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.hxx +++ b/Modules/Learning/Sampling/include/otbOGRDataToSamplePositionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.h b/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.h index 1c3ecb2328..403f26bf95 100644 --- a/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.h +++ b/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.hxx b/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.hxx index 331465c1d1..36437161a0 100644 --- a/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.hxx +++ b/Modules/Learning/Sampling/include/otbPersistentSamplingFilterBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbSampleAugmentation.h b/Modules/Learning/Sampling/include/otbSampleAugmentation.h index 5dc7624af5..b4d0127c7d 100644 --- a/Modules/Learning/Sampling/include/otbSampleAugmentation.h +++ b/Modules/Learning/Sampling/include/otbSampleAugmentation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbSampleAugmentationFilter.h b/Modules/Learning/Sampling/include/otbSampleAugmentationFilter.h index b798a0d95e..da353a23a7 100644 --- a/Modules/Learning/Sampling/include/otbSampleAugmentationFilter.h +++ b/Modules/Learning/Sampling/include/otbSampleAugmentationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbSamplingRateCalculator.h b/Modules/Learning/Sampling/include/otbSamplingRateCalculator.h index d2a48f738f..b149c49415 100644 --- a/Modules/Learning/Sampling/include/otbSamplingRateCalculator.h +++ b/Modules/Learning/Sampling/include/otbSamplingRateCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/include/otbSamplingRateCalculatorList.h b/Modules/Learning/Sampling/include/otbSamplingRateCalculatorList.h index 4e4db1be50..83c2d0110f 100644 --- a/Modules/Learning/Sampling/include/otbSamplingRateCalculatorList.h +++ b/Modules/Learning/Sampling/include/otbSamplingRateCalculatorList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/otb-module.cmake b/Modules/Learning/Sampling/otb-module.cmake index dc36fe942b..dea165cb04 100644 --- a/Modules/Learning/Sampling/otb-module.cmake +++ b/Modules/Learning/Sampling/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Sampling/src/CMakeLists.txt b/Modules/Learning/Sampling/src/CMakeLists.txt index 6797365702..0d14536ad6 100644 --- a/Modules/Learning/Sampling/src/CMakeLists.txt +++ b/Modules/Learning/Sampling/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Sampling/src/otbSampleAugmentationFilter.cxx b/Modules/Learning/Sampling/src/otbSampleAugmentationFilter.cxx index 2886ea2705..cc63043dbc 100644 --- a/Modules/Learning/Sampling/src/otbSampleAugmentationFilter.cxx +++ b/Modules/Learning/Sampling/src/otbSampleAugmentationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/src/otbSamplingRateCalculator.cxx b/Modules/Learning/Sampling/src/otbSamplingRateCalculator.cxx index 592dd21e67..d342980e0c 100644 --- a/Modules/Learning/Sampling/src/otbSamplingRateCalculator.cxx +++ b/Modules/Learning/Sampling/src/otbSamplingRateCalculator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/src/otbSamplingRateCalculatorList.cxx b/Modules/Learning/Sampling/src/otbSamplingRateCalculatorList.cxx index 0e78650c27..9a6e90681a 100644 --- a/Modules/Learning/Sampling/src/otbSamplingRateCalculatorList.cxx +++ b/Modules/Learning/Sampling/src/otbSamplingRateCalculatorList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/CMakeLists.txt b/Modules/Learning/Sampling/test/CMakeLists.txt index 5a90892b4d..d137e51001 100644 --- a/Modules/Learning/Sampling/test/CMakeLists.txt +++ b/Modules/Learning/Sampling/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Sampling/test/otbImageSampleExtractorFilterTest.cxx b/Modules/Learning/Sampling/test/otbImageSampleExtractorFilterTest.cxx index a8610d7bd7..8b2612698a 100644 --- a/Modules/Learning/Sampling/test/otbImageSampleExtractorFilterTest.cxx +++ b/Modules/Learning/Sampling/test/otbImageSampleExtractorFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/otbOGRDataToClassStatisticsFilterTest.cxx b/Modules/Learning/Sampling/test/otbOGRDataToClassStatisticsFilterTest.cxx index dcd2da5de9..4d4c0af240 100644 --- a/Modules/Learning/Sampling/test/otbOGRDataToClassStatisticsFilterTest.cxx +++ b/Modules/Learning/Sampling/test/otbOGRDataToClassStatisticsFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/otbOGRDataToSamplePositionFilterTest.cxx b/Modules/Learning/Sampling/test/otbOGRDataToSamplePositionFilterTest.cxx index ec3cabc22f..bc26648a02 100644 --- a/Modules/Learning/Sampling/test/otbOGRDataToSamplePositionFilterTest.cxx +++ b/Modules/Learning/Sampling/test/otbOGRDataToSamplePositionFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/otbSamplingRateCalculatorListTest.cxx b/Modules/Learning/Sampling/test/otbSamplingRateCalculatorListTest.cxx index 0e609c21cc..1dd5752556 100644 --- a/Modules/Learning/Sampling/test/otbSamplingRateCalculatorListTest.cxx +++ b/Modules/Learning/Sampling/test/otbSamplingRateCalculatorListTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/otbSamplingRateCalculatorTest.cxx b/Modules/Learning/Sampling/test/otbSamplingRateCalculatorTest.cxx index a9d33979c4..f75f067db8 100644 --- a/Modules/Learning/Sampling/test/otbSamplingRateCalculatorTest.cxx +++ b/Modules/Learning/Sampling/test/otbSamplingRateCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Sampling/test/otbSamplingTestDriver.cxx b/Modules/Learning/Sampling/test/otbSamplingTestDriver.cxx index 28a73efd98..8cfe6e15ce 100644 --- a/Modules/Learning/Sampling/test/otbSamplingTestDriver.cxx +++ b/Modules/Learning/Sampling/test/otbSamplingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/CMakeLists.txt b/Modules/Learning/Supervised/CMakeLists.txt index 0a0b0b67fd..8cebb167ed 100644 --- a/Modules/Learning/Supervised/CMakeLists.txt +++ b/Modules/Learning/Supervised/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.h b/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.h index 966b47a60f..6191201990 100644 --- a/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.hxx index 908c04b743..3375478edc 100644 --- a/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbBoostMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.h index 61a25ea57d..84c9b94d43 100644 --- a/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.hxx index 5d83808fb7..4d4f111b11 100644 --- a/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbBoostMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.h b/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.h index 521bb9b4c5..7946824542 100644 --- a/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.h +++ b/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.hxx b/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.hxx index 05f984e297..b44be5fa5f 100644 --- a/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.hxx +++ b/Modules/Learning/Supervised/include/otbConfusionMatrixCalculator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.h b/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.h index 7827899901..d370155001 100644 --- a/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.h +++ b/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.hxx b/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.hxx index 6a1bf702b2..693feef1ad 100644 --- a/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.hxx +++ b/Modules/Learning/Supervised/include/otbConfusionMatrixMeasurements.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbCvRTreesWrapper.h b/Modules/Learning/Supervised/include/otbCvRTreesWrapper.h index d08f390948..dd49746e54 100644 --- a/Modules/Learning/Supervised/include/otbCvRTreesWrapper.h +++ b/Modules/Learning/Supervised/include/otbCvRTreesWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.h b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.h index 15255a65e2..99aa845563 100644 --- a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.hxx index b3b5e0c6ed..a156cdf85e 100644 --- a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.h index d12c6e7421..185c6360c0 100644 --- a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.hxx index b31dc62f2a..1ac5b547e2 100644 --- a/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbDecisionTreeMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbExhaustiveExponentialOptimizer.h b/Modules/Learning/Supervised/include/otbExhaustiveExponentialOptimizer.h index 63c8debc78..958a1521ae 100644 --- a/Modules/Learning/Supervised/include/otbExhaustiveExponentialOptimizer.h +++ b/Modules/Learning/Supervised/include/otbExhaustiveExponentialOptimizer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.h b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.h index bc2ac1085b..0c6575e23a 100644 --- a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.hxx index d8d829c8b6..8707a55c5e 100644 --- a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.h index 4f5636f6fd..c57764cd41 100644 --- a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.hxx index d37dc239e1..aff18a862b 100644 --- a/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbKNearestNeighborsMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLabelMapClassifier.h b/Modules/Learning/Supervised/include/otbLabelMapClassifier.h index c3e1869821..da1351ec63 100644 --- a/Modules/Learning/Supervised/include/otbLabelMapClassifier.h +++ b/Modules/Learning/Supervised/include/otbLabelMapClassifier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLabelMapClassifier.hxx b/Modules/Learning/Supervised/include/otbLabelMapClassifier.hxx index 98c70fd55c..2c25b5253d 100644 --- a/Modules/Learning/Supervised/include/otbLabelMapClassifier.hxx +++ b/Modules/Learning/Supervised/include/otbLabelMapClassifier.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.h b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.h index 7b24b94a81..c9c9cf79c2 100644 --- a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.hxx index 9adee71f3b..6d4c181c2d 100644 --- a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.h index 1fe6e69246..f38bd40ef9 100644 --- a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.hxx index 1993c0ee20..461ba7a81f 100644 --- a/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbLibSVMMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.h index 909344e1ac..0635934658 100644 --- a/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.hxx index 4487ae5826..4d31d67c8a 100644 --- a/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.h b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.h index 32317f9ca7..c3c8a8290b 100644 --- a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.hxx index dd1169141a..91b0de77b1 100644 --- a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.h index 469ee1865f..8c1d3753f9 100644 --- a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.hxx index d20cd8039c..8f3c5a080e 100644 --- a/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbNeuralNetworkMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.h b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.h index ed42dd2de6..7e7d68a9c1 100644 --- a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.hxx index 16832e3028..b4e2440afe 100644 --- a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.h index ebb22a4e71..ec300e15b8 100644 --- a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.hxx index c33aa7691b..198d139611 100644 --- a/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbNormalBayesMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbOpenCVUtils.h b/Modules/Learning/Supervised/include/otbOpenCVUtils.h index d846b7750a..a612d473ff 100644 --- a/Modules/Learning/Supervised/include/otbOpenCVUtils.h +++ b/Modules/Learning/Supervised/include/otbOpenCVUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.h b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.h index 965e63397a..ecd7d5d71e 100644 --- a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.hxx index c5a2f7c48d..6fdd491936 100644 --- a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.h index 3d7be3b289..5e7e1b4674 100644 --- a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.hxx index 8d3d307e3d..508705cc56 100644 --- a/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbRandomForestsMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbRequiresOpenCVCheck.h b/Modules/Learning/Supervised/include/otbRequiresOpenCVCheck.h index 094ed4995b..862f6d1376 100644 --- a/Modules/Learning/Supervised/include/otbRequiresOpenCVCheck.h +++ b/Modules/Learning/Supervised/include/otbRequiresOpenCVCheck.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.h b/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.h index 3c330c8e43..ae309edfc7 100644 --- a/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.h +++ b/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.hxx b/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.hxx index 617d29b382..2c56a7e917 100644 --- a/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.hxx +++ b/Modules/Learning/Supervised/include/otbSVMCrossValidationCostFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.h b/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.h index 8642380290..62a6303e11 100644 --- a/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.hxx index 20eb00e7f5..63c7e9c568 100644 --- a/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbSVMMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.h index 54666c2978..939a4222c6 100644 --- a/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.hxx index b42db4bb88..0608a8dcd2 100644 --- a/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbSVMMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMarginSampler.h b/Modules/Learning/Supervised/include/otbSVMMarginSampler.h index e0c163304f..2304ea5b4b 100644 --- a/Modules/Learning/Supervised/include/otbSVMMarginSampler.h +++ b/Modules/Learning/Supervised/include/otbSVMMarginSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSVMMarginSampler.hxx b/Modules/Learning/Supervised/include/otbSVMMarginSampler.hxx index ad2db71d05..fd7bf6ba46 100644 --- a/Modules/Learning/Supervised/include/otbSVMMarginSampler.hxx +++ b/Modules/Learning/Supervised/include/otbSVMMarginSampler.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.h b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.h index ec446f5292..40219621e6 100644 --- a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.h +++ b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.hxx b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.hxx index 692638c72e..ca37ed05ba 100644 --- a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.hxx +++ b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.h b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.h index cb45d41dd0..f737768708 100644 --- a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.h +++ b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.hxx b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.hxx index d8b258f8b8..7a7a2e1228 100644 --- a/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.hxx +++ b/Modules/Learning/Supervised/include/otbSharkRandomForestsMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/otb-module.cmake b/Modules/Learning/Supervised/otb-module.cmake index 2ceeb56c56..0c312936c3 100644 --- a/Modules/Learning/Supervised/otb-module.cmake +++ b/Modules/Learning/Supervised/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/src/CMakeLists.txt b/Modules/Learning/Supervised/src/CMakeLists.txt index 58bfd0350c..499d65c278 100644 --- a/Modules/Learning/Supervised/src/CMakeLists.txt +++ b/Modules/Learning/Supervised/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/src/otbCvRTreesWrapper.cxx b/Modules/Learning/Supervised/src/otbCvRTreesWrapper.cxx index e67ad1fa32..ccb8a9b789 100644 --- a/Modules/Learning/Supervised/src/otbCvRTreesWrapper.cxx +++ b/Modules/Learning/Supervised/src/otbCvRTreesWrapper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/src/otbExhaustiveExponentialOptimizer.cxx b/Modules/Learning/Supervised/src/otbExhaustiveExponentialOptimizer.cxx index 74cebd4062..30e89e01c0 100644 --- a/Modules/Learning/Supervised/src/otbExhaustiveExponentialOptimizer.cxx +++ b/Modules/Learning/Supervised/src/otbExhaustiveExponentialOptimizer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/0000209-SVMValidationLinearlySeparableProbEstimation.cxx b/Modules/Learning/Supervised/test/0000209-SVMValidationLinearlySeparableProbEstimation.cxx index 75082f0a24..1dbb7475c9 100644 --- a/Modules/Learning/Supervised/test/0000209-SVMValidationLinearlySeparableProbEstimation.cxx +++ b/Modules/Learning/Supervised/test/0000209-SVMValidationLinearlySeparableProbEstimation.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/CMakeLists.txt b/Modules/Learning/Supervised/test/CMakeLists.txt index b712c532fe..a7299fa80b 100644 --- a/Modules/Learning/Supervised/test/CMakeLists.txt +++ b/Modules/Learning/Supervised/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/test/otbConfusionMatrixCalculatorTest.cxx b/Modules/Learning/Supervised/test/otbConfusionMatrixCalculatorTest.cxx index 2211ffbc68..8e36d67f2c 100644 --- a/Modules/Learning/Supervised/test/otbConfusionMatrixCalculatorTest.cxx +++ b/Modules/Learning/Supervised/test/otbConfusionMatrixCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbConfusionMatrixMeasurementsTest.cxx b/Modules/Learning/Supervised/test/otbConfusionMatrixMeasurementsTest.cxx index 3971a32f9c..4595a10986 100644 --- a/Modules/Learning/Supervised/test/otbConfusionMatrixMeasurementsTest.cxx +++ b/Modules/Learning/Supervised/test/otbConfusionMatrixMeasurementsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbExhaustiveExponentialOptimizerTest.cxx b/Modules/Learning/Supervised/test/otbExhaustiveExponentialOptimizerTest.cxx index 97a8b2261f..ae0c8d8a6d 100644 --- a/Modules/Learning/Supervised/test/otbExhaustiveExponentialOptimizerTest.cxx +++ b/Modules/Learning/Supervised/test/otbExhaustiveExponentialOptimizerTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbImageClassificationFilter.cxx b/Modules/Learning/Supervised/test/otbImageClassificationFilter.cxx index cfacaa52e7..2a651ea062 100644 --- a/Modules/Learning/Supervised/test/otbImageClassificationFilter.cxx +++ b/Modules/Learning/Supervised/test/otbImageClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbLabelMapClassifier.cxx b/Modules/Learning/Supervised/test/otbLabelMapClassifier.cxx index 7e3d25ce03..bdb07ac237 100644 --- a/Modules/Learning/Supervised/test/otbLabelMapClassifier.cxx +++ b/Modules/Learning/Supervised/test/otbLabelMapClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbMachineLearningModelCanRead.cxx b/Modules/Learning/Supervised/test/otbMachineLearningModelCanRead.cxx index 2153a65e31..5695c26153 100644 --- a/Modules/Learning/Supervised/test/otbMachineLearningModelCanRead.cxx +++ b/Modules/Learning/Supervised/test/otbMachineLearningModelCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbMachineLearningRegressionTests.cxx b/Modules/Learning/Supervised/test/otbMachineLearningRegressionTests.cxx index cf7355a8a8..f8b8e05c34 100644 --- a/Modules/Learning/Supervised/test/otbMachineLearningRegressionTests.cxx +++ b/Modules/Learning/Supervised/test/otbMachineLearningRegressionTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbSVMMarginSampler.cxx b/Modules/Learning/Supervised/test/otbSVMMarginSampler.cxx index 5e02dfcdaa..3991d577de 100644 --- a/Modules/Learning/Supervised/test/otbSVMMarginSampler.cxx +++ b/Modules/Learning/Supervised/test/otbSVMMarginSampler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbSharkImageClassificationFilter.cxx b/Modules/Learning/Supervised/test/otbSharkImageClassificationFilter.cxx index 00e1817576..f79102276c 100644 --- a/Modules/Learning/Supervised/test/otbSharkImageClassificationFilter.cxx +++ b/Modules/Learning/Supervised/test/otbSharkImageClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbSupervisedTestDriver.cxx b/Modules/Learning/Supervised/test/otbSupervisedTestDriver.cxx index 2199f54cad..100617f943 100644 --- a/Modules/Learning/Supervised/test/otbSupervisedTestDriver.cxx +++ b/Modules/Learning/Supervised/test/otbSupervisedTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/otbTrainMachineLearningModel.cxx b/Modules/Learning/Supervised/test/otbTrainMachineLearningModel.cxx index 6d0ef8bd3e..cbea4bf205 100644 --- a/Modules/Learning/Supervised/test/otbTrainMachineLearningModel.cxx +++ b/Modules/Learning/Supervised/test/otbTrainMachineLearningModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Supervised/test/tests-libsvm.cmake b/Modules/Learning/Supervised/test/tests-libsvm.cmake index b4a75dfbe9..98008a336d 100644 --- a/Modules/Learning/Supervised/test/tests-libsvm.cmake +++ b/Modules/Learning/Supervised/test/tests-libsvm.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/test/tests-opencv.cmake b/Modules/Learning/Supervised/test/tests-opencv.cmake index 2da90fca4c..10f6e6d67b 100644 --- a/Modules/Learning/Supervised/test/tests-opencv.cmake +++ b/Modules/Learning/Supervised/test/tests-opencv.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Supervised/test/tests-shark.cmake b/Modules/Learning/Supervised/test/tests-shark.cmake index b6dd664f81..45edde1046 100644 --- a/Modules/Learning/Supervised/test/tests-shark.cmake +++ b/Modules/Learning/Supervised/test/tests-shark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Unsupervised/CMakeLists.txt b/Modules/Learning/Unsupervised/CMakeLists.txt index ff3dcf3cbe..72175e0d13 100644 --- a/Modules/Learning/Unsupervised/CMakeLists.txt +++ b/Modules/Learning/Unsupervised/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Unsupervised/include/otbContingencyTable.h b/Modules/Learning/Unsupervised/include/otbContingencyTable.h index f89981f928..dd0d664926 100644 --- a/Modules/Learning/Unsupervised/include/otbContingencyTable.h +++ b/Modules/Learning/Unsupervised/include/otbContingencyTable.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.h b/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.h index 99dd78c569..ec9303bce9 100644 --- a/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.h +++ b/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.hxx b/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.hxx index f6aa5f71dc..e1f95abbea 100644 --- a/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.hxx +++ b/Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.h b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.h index 48b2fe6adb..6fe134c6a8 100644 --- a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.h +++ b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.hxx b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.hxx index 7697d9ec9c..b2c84d4221 100644 --- a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.hxx +++ b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.h b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.h index 508040a9de..3301702917 100644 --- a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.h +++ b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.hxx b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.hxx index 77fddacaec..e77ca10057 100644 --- a/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.hxx +++ b/Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/otb-module.cmake b/Modules/Learning/Unsupervised/otb-module.cmake index 18009fac8c..7e72264127 100644 --- a/Modules/Learning/Unsupervised/otb-module.cmake +++ b/Modules/Learning/Unsupervised/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Unsupervised/test/CMakeLists.txt b/Modules/Learning/Unsupervised/test/CMakeLists.txt index ad18659291..50fba2fe79 100644 --- a/Modules/Learning/Unsupervised/test/CMakeLists.txt +++ b/Modules/Learning/Unsupervised/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Learning/Unsupervised/test/otbContingencyTableCalculatorTest.cxx b/Modules/Learning/Unsupervised/test/otbContingencyTableCalculatorTest.cxx index 7d054aea3c..c815667f37 100644 --- a/Modules/Learning/Unsupervised/test/otbContingencyTableCalculatorTest.cxx +++ b/Modules/Learning/Unsupervised/test/otbContingencyTableCalculatorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/test/otbMachineLearningUnsupervisedModelCanRead.cxx b/Modules/Learning/Unsupervised/test/otbMachineLearningUnsupervisedModelCanRead.cxx index b82016b5f1..0b914f75dc 100644 --- a/Modules/Learning/Unsupervised/test/otbMachineLearningUnsupervisedModelCanRead.cxx +++ b/Modules/Learning/Unsupervised/test/otbMachineLearningUnsupervisedModelCanRead.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/test/otbSharkUnsupervisedImageClassificationFilter.cxx b/Modules/Learning/Unsupervised/test/otbSharkUnsupervisedImageClassificationFilter.cxx index 0da2e2a189..f8dafebb13 100644 --- a/Modules/Learning/Unsupervised/test/otbSharkUnsupervisedImageClassificationFilter.cxx +++ b/Modules/Learning/Unsupervised/test/otbSharkUnsupervisedImageClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/test/otbTrainMachineLearningUnsupervisedModel.cxx b/Modules/Learning/Unsupervised/test/otbTrainMachineLearningUnsupervisedModel.cxx index 332d316086..f99e4cd9d6 100644 --- a/Modules/Learning/Unsupervised/test/otbTrainMachineLearningUnsupervisedModel.cxx +++ b/Modules/Learning/Unsupervised/test/otbTrainMachineLearningUnsupervisedModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/test/otbUnsupervisedTestDriver.cxx b/Modules/Learning/Unsupervised/test/otbUnsupervisedTestDriver.cxx index 91c384336a..be14eeb4d5 100644 --- a/Modules/Learning/Unsupervised/test/otbUnsupervisedTestDriver.cxx +++ b/Modules/Learning/Unsupervised/test/otbUnsupervisedTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Learning/Unsupervised/test/tests-shark.cmake b/Modules/Learning/Unsupervised/test/tests-shark.cmake index f43b11a990..b151f3f0ee 100644 --- a/Modules/Learning/Unsupervised/test/tests-shark.cmake +++ b/Modules/Learning/Unsupervised/test/tests-shark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIConfig/CMakeLists.txt b/Modules/MPI/MPIConfig/CMakeLists.txt index f3775b0b62..cc7efbcbe5 100644 --- a/Modules/MPI/MPIConfig/CMakeLists.txt +++ b/Modules/MPI/MPIConfig/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIConfig/include/otbMPIConfig.h b/Modules/MPI/MPIConfig/include/otbMPIConfig.h index 7bd236d08c..1a7d303f66 100644 --- a/Modules/MPI/MPIConfig/include/otbMPIConfig.h +++ b/Modules/MPI/MPIConfig/include/otbMPIConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIConfig/otb-module.cmake b/Modules/MPI/MPIConfig/otb-module.cmake index 804eb20782..c61436d957 100644 --- a/Modules/MPI/MPIConfig/otb-module.cmake +++ b/Modules/MPI/MPIConfig/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIConfig/src/CMakeLists.txt b/Modules/MPI/MPIConfig/src/CMakeLists.txt index 209304dffd..b6d55be38b 100644 --- a/Modules/MPI/MPIConfig/src/CMakeLists.txt +++ b/Modules/MPI/MPIConfig/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIConfig/src/otbMPIConfig.cxx b/Modules/MPI/MPIConfig/src/otbMPIConfig.cxx index ecd05a273e..f05faaa894 100644 --- a/Modules/MPI/MPIConfig/src/otbMPIConfig.cxx +++ b/Modules/MPI/MPIConfig/src/otbMPIConfig.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIConfig/test/CMakeLists.txt b/Modules/MPI/MPIConfig/test/CMakeLists.txt index 4051cd1a10..ca49e3fc7a 100644 --- a/Modules/MPI/MPIConfig/test/CMakeLists.txt +++ b/Modules/MPI/MPIConfig/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIConfig/test/otbMPIConfigTest.cxx b/Modules/MPI/MPIConfig/test/otbMPIConfigTest.cxx index f08067cbe6..74e1357797 100644 --- a/Modules/MPI/MPIConfig/test/otbMPIConfigTest.cxx +++ b/Modules/MPI/MPIConfig/test/otbMPIConfigTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIConfig/test/otbMPIConfigTestDriver.cxx b/Modules/MPI/MPIConfig/test/otbMPIConfigTestDriver.cxx index 1c282f8ea3..1bb24de887 100644 --- a/Modules/MPI/MPIConfig/test/otbMPIConfigTestDriver.cxx +++ b/Modules/MPI/MPIConfig/test/otbMPIConfigTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPITiffWriter/CMakeLists.txt b/Modules/MPI/MPITiffWriter/CMakeLists.txt index cebddf9525..12cf6a67c7 100644 --- a/Modules/MPI/MPITiffWriter/CMakeLists.txt +++ b/Modules/MPI/MPITiffWriter/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPITiffWriter/otb-module.cmake b/Modules/MPI/MPITiffWriter/otb-module.cmake index 2ca9aa5298..8a62f23701 100644 --- a/Modules/MPI/MPITiffWriter/otb-module.cmake +++ b/Modules/MPI/MPITiffWriter/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPITiffWriter/test/CMakeLists.txt b/Modules/MPI/MPITiffWriter/test/CMakeLists.txt index d9a078b9e0..db034a6fa4 100644 --- a/Modules/MPI/MPITiffWriter/test/CMakeLists.txt +++ b/Modules/MPI/MPITiffWriter/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPITiffWriter/test/otbMPISPTWReadWriteTest.cxx b/Modules/MPI/MPITiffWriter/test/otbMPISPTWReadWriteTest.cxx index 6450f219b5..03b57d10cb 100644 --- a/Modules/MPI/MPITiffWriter/test/otbMPISPTWReadWriteTest.cxx +++ b/Modules/MPI/MPITiffWriter/test/otbMPISPTWReadWriteTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPITiffWriter/test/otbMPITiffWriterTestDriver.cxx b/Modules/MPI/MPITiffWriter/test/otbMPITiffWriterTestDriver.cxx index 45ea212500..e1ce7461dd 100644 --- a/Modules/MPI/MPITiffWriter/test/otbMPITiffWriterTestDriver.cxx +++ b/Modules/MPI/MPITiffWriter/test/otbMPITiffWriterTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIVrtWriter/CMakeLists.txt b/Modules/MPI/MPIVrtWriter/CMakeLists.txt index c3946c8972..cad3da6152 100644 --- a/Modules/MPI/MPIVrtWriter/CMakeLists.txt +++ b/Modules/MPI/MPIVrtWriter/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.h b/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.h index 5505ff1f31..e152bbd4c4 100644 --- a/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.h +++ b/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.hxx b/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.hxx index 47f6c25326..c6a1a56917 100644 --- a/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.hxx +++ b/Modules/MPI/MPIVrtWriter/include/otbMPIVrtWriter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIVrtWriter/otb-module.cmake b/Modules/MPI/MPIVrtWriter/otb-module.cmake index 477a88615d..3517406173 100644 --- a/Modules/MPI/MPIVrtWriter/otb-module.cmake +++ b/Modules/MPI/MPIVrtWriter/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIVrtWriter/test/CMakeLists.txt b/Modules/MPI/MPIVrtWriter/test/CMakeLists.txt index 6e725b0d81..495f802d43 100644 --- a/Modules/MPI/MPIVrtWriter/test/CMakeLists.txt +++ b/Modules/MPI/MPIVrtWriter/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/MPI/MPIVrtWriter/test/otbMPIReadWriteTest.cxx b/Modules/MPI/MPIVrtWriter/test/otbMPIReadWriteTest.cxx index 1f3e9f07b9..dffe494f7e 100644 --- a/Modules/MPI/MPIVrtWriter/test/otbMPIReadWriteTest.cxx +++ b/Modules/MPI/MPIVrtWriter/test/otbMPIReadWriteTest.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/MPI/MPIVrtWriter/test/otbMPIVrtWriterTestDriver.cxx b/Modules/MPI/MPIVrtWriter/test/otbMPIVrtWriterTestDriver.cxx index 08750d30c4..ee6f6f1f2b 100644 --- a/Modules/MPI/MPIVrtWriter/test/otbMPIVrtWriterTestDriver.cxx +++ b/Modules/MPI/MPIVrtWriter/test/otbMPIVrtWriterTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/CMakeLists.txt b/Modules/Radiometry/Indices/CMakeLists.txt index 17c4026827..778c6ccb2a 100644 --- a/Modules/Radiometry/Indices/CMakeLists.txt +++ b/Modules/Radiometry/Indices/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Indices/include/otbBandName.h b/Modules/Radiometry/Indices/include/otbBandName.h index 1180861399..bad96dbc18 100644 --- a/Modules/Radiometry/Indices/include/otbBandName.h +++ b/Modules/Radiometry/Indices/include/otbBandName.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbBuiltUpIndicesFunctor.h b/Modules/Radiometry/Indices/include/otbBuiltUpIndicesFunctor.h index 80b23d591c..5d8603d264 100644 --- a/Modules/Radiometry/Indices/include/otbBuiltUpIndicesFunctor.h +++ b/Modules/Radiometry/Indices/include/otbBuiltUpIndicesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbGAndRIndexImageFilter.hxx b/Modules/Radiometry/Indices/include/otbGAndRIndexImageFilter.hxx index f8d852e586..4ab3a305d7 100644 --- a/Modules/Radiometry/Indices/include/otbGAndRIndexImageFilter.hxx +++ b/Modules/Radiometry/Indices/include/otbGAndRIndexImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbIndicesStackFunctor.h b/Modules/Radiometry/Indices/include/otbIndicesStackFunctor.h index f7b8503f4a..0b7534055f 100644 --- a/Modules/Radiometry/Indices/include/otbIndicesStackFunctor.h +++ b/Modules/Radiometry/Indices/include/otbIndicesStackFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbLandsatTMIndices.h b/Modules/Radiometry/Indices/include/otbLandsatTMIndices.h index dcc6933483..fcd06a77b4 100644 --- a/Modules/Radiometry/Indices/include/otbLandsatTMIndices.h +++ b/Modules/Radiometry/Indices/include/otbLandsatTMIndices.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbRadiometricIndex.h b/Modules/Radiometry/Indices/include/otbRadiometricIndex.h index 54179e85ed..e579e710c2 100644 --- a/Modules/Radiometry/Indices/include/otbRadiometricIndex.h +++ b/Modules/Radiometry/Indices/include/otbRadiometricIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbSoilIndicesFunctor.h b/Modules/Radiometry/Indices/include/otbSoilIndicesFunctor.h index a4523dac3c..1089ad7965 100644 --- a/Modules/Radiometry/Indices/include/otbSoilIndicesFunctor.h +++ b/Modules/Radiometry/Indices/include/otbSoilIndicesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbVegetationIndicesFunctor.h b/Modules/Radiometry/Indices/include/otbVegetationIndicesFunctor.h index f55f7b2f77..3898241693 100644 --- a/Modules/Radiometry/Indices/include/otbVegetationIndicesFunctor.h +++ b/Modules/Radiometry/Indices/include/otbVegetationIndicesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbWaterIndicesFunctor.h b/Modules/Radiometry/Indices/include/otbWaterIndicesFunctor.h index e95cf7cb88..df5f3b387b 100644 --- a/Modules/Radiometry/Indices/include/otbWaterIndicesFunctor.h +++ b/Modules/Radiometry/Indices/include/otbWaterIndicesFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h index 0d44c5a062..ed9e8e56f4 100644 --- a/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h +++ b/Modules/Radiometry/Indices/include/otbWaterSqrtSpectralAngleImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/otb-module.cmake b/Modules/Radiometry/Indices/otb-module.cmake index a3070f16b5..b470d8a4ef 100644 --- a/Modules/Radiometry/Indices/otb-module.cmake +++ b/Modules/Radiometry/Indices/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Indices/test/CMakeLists.txt b/Modules/Radiometry/Indices/test/CMakeLists.txt index 1424624291..fe5a237279 100644 --- a/Modules/Radiometry/Indices/test/CMakeLists.txt +++ b/Modules/Radiometry/Indices/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx b/Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx index 111d5c05d0..88cdbf24d1 100644 --- a/Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx +++ b/Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMBrightTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMBrightTest.cxx index 9f552bfb32..a0705ef07c 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMBrightTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMBrightTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexBIOTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexBIOTest.cxx index 6d8af7997d..372e2a49b9 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexBIOTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexBIOTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexBrightTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexBrightTest.cxx index 7bc4025865..7c33f75bdb 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexBrightTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexBrightTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR1Test.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR1Test.cxx index e1307b0179..1c460be6bc 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR1Test.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR1Test.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR2Test.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR2Test.cxx index 883608a50d..2be7f9edf9 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR2Test.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIR2Test.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIRTIRTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIRTIRTest.cxx index 26015cabf5..e41f71bee8 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIRTIRTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexMIRTIRTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBBBITest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBBBITest.cxx index 617d5221c1..b4e9f74baa 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBBBITest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBBBITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBSITest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBSITest.cxx index 6b2ec8d1da..51ba6fdd49 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBSITest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDBSITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSITest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSITest.cxx index 0bda006eef..a404aea33e 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSITest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSIVisTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSIVisTest.cxx index 98720cbafb..7679ca7e34 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSIVisTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDSIVisTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDVITest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDVITest.cxx index 6705ba266e..df808ba0dd 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDVITest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNDVITest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNIRTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNIRTest.cxx index a6b842dcca..f4b24c4b5f 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexNIRTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexNIRTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexTIRTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexTIRTest.cxx index 7f1468b172..72a8b19296 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexTIRTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexTIRTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMIndexVisTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMIndexVisTest.cxx index 367b98ad3a..a7960f9012 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMIndexVisTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMIndexVisTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMKernelSpectralRules.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMKernelSpectralRules.cxx index bc26349521..da449241c7 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMKernelSpectralRules.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMKernelSpectralRules.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMLinguisticLabelsTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMLinguisticLabelsTest.cxx index 9c292c234e..f811a06f30 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMLinguisticLabelsTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMLinguisticLabelsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMThickCloudTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMThickCloudTest.cxx index f7621f3db4..77e9390d49 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMThickCloudTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMThickCloudTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMThinCloudTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMThinCloudTest.cxx index 9da777c7e7..777fdcd975 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMThinCloudTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMThinCloudTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbLandsatTMVegetationTest.cxx b/Modules/Radiometry/Indices/test/otbLandsatTMVegetationTest.cxx index d7f78dc764..c3c07e3413 100644 --- a/Modules/Radiometry/Indices/test/otbLandsatTMVegetationTest.cxx +++ b/Modules/Radiometry/Indices/test/otbLandsatTMVegetationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbRadiometricIndicesTest.cxx b/Modules/Radiometry/Indices/test/otbRadiometricIndicesTest.cxx index 46bb7a8abf..d18b85bae3 100644 --- a/Modules/Radiometry/Indices/test/otbRadiometricIndicesTest.cxx +++ b/Modules/Radiometry/Indices/test/otbRadiometricIndicesTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx b/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx index 07e8df9bb4..589a168fd9 100644 --- a/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx +++ b/Modules/Radiometry/Indices/test/otbWaterSqrtSpectralAngleImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/LandSatClassifier/CMakeLists.txt b/Modules/Radiometry/LandSatClassifier/CMakeLists.txt index 8cd18baf36..bc899affb4 100644 --- a/Modules/Radiometry/LandSatClassifier/CMakeLists.txt +++ b/Modules/Radiometry/LandSatClassifier/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/LandSatClassifier/include/otbLandsatTMSpectralRuleBasedClassifier.h b/Modules/Radiometry/LandSatClassifier/include/otbLandsatTMSpectralRuleBasedClassifier.h index 4326ec6352..32a2fb2366 100644 --- a/Modules/Radiometry/LandSatClassifier/include/otbLandsatTMSpectralRuleBasedClassifier.h +++ b/Modules/Radiometry/LandSatClassifier/include/otbLandsatTMSpectralRuleBasedClassifier.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/LandSatClassifier/otb-module.cmake b/Modules/Radiometry/LandSatClassifier/otb-module.cmake index 1ae0e2b94d..4c2f4ad117 100644 --- a/Modules/Radiometry/LandSatClassifier/otb-module.cmake +++ b/Modules/Radiometry/LandSatClassifier/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/LandSatClassifier/test/CMakeLists.txt b/Modules/Radiometry/LandSatClassifier/test/CMakeLists.txt index 4adf99a0ae..8cc3dfac9a 100644 --- a/Modules/Radiometry/LandSatClassifier/test/CMakeLists.txt +++ b/Modules/Radiometry/LandSatClassifier/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/LandSatClassifier/test/otbLandSatClassifierTestDriver.cxx b/Modules/Radiometry/LandSatClassifier/test/otbLandSatClassifierTestDriver.cxx index b6c3c71ddb..b6c5952e05 100644 --- a/Modules/Radiometry/LandSatClassifier/test/otbLandSatClassifierTestDriver.cxx +++ b/Modules/Radiometry/LandSatClassifier/test/otbLandSatClassifierTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/LandSatClassifier/test/otbLandsatTMSpectralRuleBasedClassifierTest.cxx b/Modules/Radiometry/LandSatClassifier/test/otbLandsatTMSpectralRuleBasedClassifierTest.cxx index 19b78c785d..f4f1cfe429 100644 --- a/Modules/Radiometry/LandSatClassifier/test/otbLandsatTMSpectralRuleBasedClassifierTest.cxx +++ b/Modules/Radiometry/LandSatClassifier/test/otbLandsatTMSpectralRuleBasedClassifierTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/CMakeLists.txt b/Modules/Radiometry/OpticalCalibration/CMakeLists.txt index 902f8b6ba8..a9e62896ad 100644 --- a/Modules/Radiometry/OpticalCalibration/CMakeLists.txt +++ b/Modules/Radiometry/OpticalCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/OpticalCalibration/include/otbAeronetData.h b/Modules/Radiometry/OpticalCalibration/include/otbAeronetData.h index 46dc9bcd3e..886137f49c 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbAeronetData.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbAeronetData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbAeronetFileReader.h b/Modules/Radiometry/OpticalCalibration/include/otbAeronetFileReader.h index 78b204b1b3..eb5fa6c273 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbAeronetFileReader.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbAeronetFileReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericCorrectionParameters.h b/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericCorrectionParameters.h index aab2f7f682..3e8efdcf56 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericCorrectionParameters.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericCorrectionParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericRadiativeTerms.h b/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericRadiativeTerms.h index b2473c454b..234d891430 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericRadiativeTerms.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbAtmosphericRadiativeTerms.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbImageMetadataCorrectionParameters.h b/Modules/Radiometry/OpticalCalibration/include/otbImageMetadataCorrectionParameters.h index e0d7310e1a..41d2bf7483 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbImageMetadataCorrectionParameters.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbImageMetadataCorrectionParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h index 33ee1f5248..b508978e29 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbImageToRadianceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbImageToRadianceImageFilter.h index c838f33b40..ba2d07257a 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbImageToRadianceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbImageToRadianceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbImageToReflectanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbImageToReflectanceImageFilter.h index 2133b97e56..368c49e96f 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbImageToReflectanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbImageToReflectanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h index 8389e12bb0..0c9d159d91 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h index c799336a3e..ba0cdb8403 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbRadianceToImageImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbRadianceToImageImageFilter.h index f350173040..99a6a693c9 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbRadianceToImageImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbRadianceToImageImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbRadianceToReflectanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbRadianceToReflectanceImageFilter.h index 0f9fb61853..ff40509fb5 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbRadianceToReflectanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbRadianceToReflectanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h b/Modules/Radiometry/OpticalCalibration/include/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h index a521450f55..56f15031cb 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToImageImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToImageImageFilter.h index 4cdf64b071..7d4acb7a71 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToImageImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToImageImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h index 34f7e47679..899ab64d23 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToRadianceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToRadianceImageFilter.h index 866a4e6eff..5cfa55c8cf 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToRadianceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToRadianceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.h index c281465ea2..62be66d475 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.hxx b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.hxx index 245b7b6967..a84d53f0e1 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.hxx +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToSurfaceReflectanceImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbSIXSTraits.h b/Modules/Radiometry/OpticalCalibration/include/otbSIXSTraits.h index f1b0555202..e9a17c334e 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbSIXSTraits.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbSIXSTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbSpectralSensitivityReader.h b/Modules/Radiometry/OpticalCalibration/include/otbSpectralSensitivityReader.h index 616aa40b0a..640ccf69af 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbSpectralSensitivityReader.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbSpectralSensitivityReader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h index 8e5f039f4b..12d6e65b3a 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx b/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx index 32411f4a99..a40ea4dc3d 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx +++ b/Modules/Radiometry/OpticalCalibration/include/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbVarSol.h b/Modules/Radiometry/OpticalCalibration/include/otbVarSol.h index 10a7a6eb6a..de078e938e 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbVarSol.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbVarSol.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/include/otbWavelengthSpectralBands.h b/Modules/Radiometry/OpticalCalibration/include/otbWavelengthSpectralBands.h index 8bc40d1a95..1565bed16a 100644 --- a/Modules/Radiometry/OpticalCalibration/include/otbWavelengthSpectralBands.h +++ b/Modules/Radiometry/OpticalCalibration/include/otbWavelengthSpectralBands.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/otb-module.cmake b/Modules/Radiometry/OpticalCalibration/otb-module.cmake index aa771ea4e0..ce09ea8584 100644 --- a/Modules/Radiometry/OpticalCalibration/otb-module.cmake +++ b/Modules/Radiometry/OpticalCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt b/Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt index 20e49311ad..cc4f402068 100644 --- a/Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt +++ b/Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/OpticalCalibration/src/otbAeronetData.cxx b/Modules/Radiometry/OpticalCalibration/src/otbAeronetData.cxx index 7e24e379fd..817e07fcd9 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbAeronetData.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbAeronetData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbAeronetFileReader.cxx b/Modules/Radiometry/OpticalCalibration/src/otbAeronetFileReader.cxx index 5fe50aee1d..d0709d354d 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbAeronetFileReader.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbAeronetFileReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericCorrectionParameters.cxx b/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericCorrectionParameters.cxx index 658f35a2fe..d8b07ca868 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericCorrectionParameters.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericCorrectionParameters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericRadiativeTerms.cxx b/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericRadiativeTerms.cxx index 0ee31032b9..7e4523a800 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericRadiativeTerms.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbAtmosphericRadiativeTerms.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbImageMetadataCorrectionParameters.cxx b/Modules/Radiometry/OpticalCalibration/src/otbImageMetadataCorrectionParameters.cxx index 47d8d60ea1..632e4a07f6 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbImageMetadataCorrectionParameters.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbImageMetadataCorrectionParameters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbSIXSTraits.cxx b/Modules/Radiometry/OpticalCalibration/src/otbSIXSTraits.cxx index 4092ae0252..4bed08dbff 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbSIXSTraits.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbSIXSTraits.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbSpectralSensitivityReader.cxx b/Modules/Radiometry/OpticalCalibration/src/otbSpectralSensitivityReader.cxx index 5018de6422..8528dedb06 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbSpectralSensitivityReader.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbSpectralSensitivityReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/src/otbWavelengthSpectralBands.cxx b/Modules/Radiometry/OpticalCalibration/src/otbWavelengthSpectralBands.cxx index 39dd536cfc..e934c9f013 100644 --- a/Modules/Radiometry/OpticalCalibration/src/otbWavelengthSpectralBands.cxx +++ b/Modules/Radiometry/OpticalCalibration/src/otbWavelengthSpectralBands.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt b/Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt index 626ea89d7f..2e6255c719 100644 --- a/Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt +++ b/Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractData.cxx b/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractData.cxx index 689a2ba813..4d6dc7a986 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractData.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractDataBadData.cxx b/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractDataBadData.cxx index 20aad6f254..44b4661e12 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractDataBadData.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbAeronetExtractDataBadData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericCorrectionSequencement.cxx b/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericCorrectionSequencement.cxx index 8a86bae48b..c15e326057 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericCorrectionSequencement.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericCorrectionSequencement.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericRadiativeTermsTest.cxx b/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericRadiativeTermsTest.cxx index 60dad90f44..301e648b0e 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericRadiativeTermsTest.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbAtmosphericRadiativeTermsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilter.cxx index c9e17c3589..5fbf593483 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilterAuto.cxx index 9329f7cb15..0c28d6beac 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbImageToRadianceImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilter.cxx index 835e7cc6b1..9af79f4dcf 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilterAuto.cxx index 0c58e05269..67ba3d57a4 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbImageToReflectanceImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx b/Modules/Radiometry/OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx index 4c9da8cc2c..1b1a68d1b9 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilter.cxx index fea2bad34a..9d7a2b0f9a 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilterAuto.cxx index d830e81bf0..2b1cee31fb 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToImageImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilter.cxx index f7a3a66558..b04616d890 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilterAuto.cxx index d82788166d..9c5d0a12f8 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRadianceToReflectanceImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.cxx index 77b45eb210..66038a1a51 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilter.cxx index 91e498baba..6e5204fd77 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilterAuto.cxx index 544e7be5fc..ab0cfb5c10 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToImageImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilter.cxx index 7eb50ee540..3ee3e8cc9d 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilterAuto.cxx b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilterAuto.cxx index 67d61d6315..5ddce68430 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilterAuto.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToRadianceImageFilterAuto.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToSurfaceReflectanceImageFilterTest.cxx b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToSurfaceReflectanceImageFilterTest.cxx index 53526c3615..6ba226f333 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToSurfaceReflectanceImageFilterTest.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbReflectanceToSurfaceReflectanceImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbRomaniaReflectanceToRomaniaSurfaceReflectanceImageFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbRomaniaReflectanceToRomaniaSurfaceReflectanceImageFilter.cxx index 08ca2410c7..e9a76a7ec5 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbRomaniaReflectanceToRomaniaSurfaceReflectanceImageFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbRomaniaReflectanceToRomaniaSurfaceReflectanceImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsComputeAtmosphericParameters.cxx b/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsComputeAtmosphericParameters.cxx index 87cc0daf26..1d063d15e0 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsComputeAtmosphericParameters.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsComputeAtmosphericParameters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsTest.cxx b/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsTest.cxx index 6ebaec8cf1..91abe73878 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsTest.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbSIXSTraitsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbSpectralSensitivityReaderTest.cxx b/Modules/Radiometry/OpticalCalibration/test/otbSpectralSensitivityReaderTest.cxx index a572462edc..406f4b0462 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbSpectralSensitivityReaderTest.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbSpectralSensitivityReaderTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/OpticalCalibration/test/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.cxx b/Modules/Radiometry/OpticalCalibration/test/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.cxx index d369af9d2e..8ff41c1369 100644 --- a/Modules/Radiometry/OpticalCalibration/test/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.cxx +++ b/Modules/Radiometry/OpticalCalibration/test/otbSurfaceAdjacencyEffectCorrectionSchemeFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/CMakeLists.txt b/Modules/Radiometry/SARCalibration/CMakeLists.txt index 3b7e1bf17a..67cf31df93 100644 --- a/Modules/Radiometry/SARCalibration/CMakeLists.txt +++ b/Modules/Radiometry/SARCalibration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.h b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.h index 1761222b35..277f7400a5 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.hxx b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.hxx index 4a98a3eb28..976f3eb507 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunctor.h b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunctor.h index eedec765ce..890b731086 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunctor.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.h index 3e73c6e827..b66693adfa 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.hxx index 5a5127a99f..3549e09586 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarBrightnessToImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.h index 56f3fd3e7c..32a5f68e4f 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.hxx index 53c0fc6d53..faabee7b9b 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarBurstExtractionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.h index 03d8b52072..21d0296de8 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.hxx index ff65a0c565..6440bd7a6e 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarConcatenateBurstsImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.h index 6273f8dc47..565e5b5fd9 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.hxx index 3bbd21658c..b80c25445a 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarDeburstImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.h b/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.h index 71bc8b46bf..9fbbfed30f 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.hxx b/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.hxx index 1964cd1d4f..68358c3903 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarParametricMapFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.h b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.h index f95635b64d..d830d26f41 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.hxx b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.hxx index f54ed69bf3..41f0300093 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationFunction.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.h index b171bbffd5..db63c1b54b 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.hxx index b8ce89c99d..d94a2a0e9e 100644 --- a/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbSarRadiometricCalibrationToImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.h b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.h index 675b784cc1..dfd4ed0321 100644 --- a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.h +++ b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.hxx b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.hxx index f4aad6f922..39f54a0c43 100644 --- a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessFunctor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.h b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.h index 74cfa7a9c3..54df23dd78 100644 --- a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.h +++ b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.hxx b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.hxx index 44d278cb54..d339586e64 100644 --- a/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.hxx +++ b/Modules/Radiometry/SARCalibration/include/otbTerraSarBrightnessImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/otb-module.cmake b/Modules/Radiometry/SARCalibration/otb-module.cmake index 2ff0b4904f..c2acd2e11b 100644 --- a/Modules/Radiometry/SARCalibration/otb-module.cmake +++ b/Modules/Radiometry/SARCalibration/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/SARCalibration/test/CMakeLists.txt b/Modules/Radiometry/SARCalibration/test/CMakeLists.txt index d8da625416..60b95f2333 100644 --- a/Modules/Radiometry/SARCalibration/test/CMakeLists.txt +++ b/Modules/Radiometry/SARCalibration/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/SARCalibration/test/otbSARCalibrationTestDriver.cxx b/Modules/Radiometry/SARCalibration/test/otbSARCalibrationTestDriver.cxx index 2d729a2fc2..f253498254 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSARCalibrationTestDriver.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSARCalibrationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunction.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunction.cxx index 5e22312558..13c4517a8e 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunction.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctionWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctionWithoutNoise.cxx index 2810d193b6..29e219ccd8 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctionWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctionWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctor.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctor.cxx index c1dc743eca..fcbea46b5a 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctor.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctorWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctorWithoutNoise.cxx index 11b3910574..c9f8e43fc9 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctorWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessFunctorWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTest.cxx index a6a0cb6142..a47d14a7fe 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTestWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTestWithoutNoise.cxx index 55066670d4..b002f37b69 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTestWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageFilterTestWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageWithComplexPixelFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageWithComplexPixelFilterTest.cxx index f7ade06612..983e34fa28 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageWithComplexPixelFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBrightnessToImageWithComplexPixelFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarBurstExtractionFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarBurstExtractionFilterTest.cxx index 4e761dd61c..4fba81a6aa 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarBurstExtractionFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarBurstExtractionFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarDeburstFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarDeburstFilterTest.cxx index 62a097ce7c..c6bb921f51 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarDeburstFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarDeburstFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionTest.cxx index b9b5e4cfec..52a8684657 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionToImageFilter.cxx b/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionToImageFilter.cxx index 5e5f0e5b29..fafcf85e84 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionToImageFilter.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarParametricMapFunctionToImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunction.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunction.cxx index 2990996ad3..b5f0429a5e 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunction.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunction.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctionWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctionWithoutNoise.cxx index be69321a7f..cfe4a98be2 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctionWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctionWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctor.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctor.cxx index 95f596d2bb..5aa6cd9999 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctor.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctorWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctorWithoutNoise.cxx index 29f84056be..54a167f81b 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctorWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationFunctorWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterCompareTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterCompareTest.cxx index 08525c3b39..6c1f662f40 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterCompareTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterCompareTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTest.cxx index c5514a0100..d48176fb20 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTestWithoutNoise.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTestWithoutNoise.cxx index 6af2206c5f..ed0b147013 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTestWithoutNoise.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithComplexPixelTestWithoutNoise.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithExtractROIBeforeTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithExtractROIBeforeTest.cxx index 69fc89c13c..8823c7f76b 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithExtractROIBeforeTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithExtractROIBeforeTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithRealPixelTest.cxx b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithRealPixelTest.cxx index 39ff62b111..80efffda22 100644 --- a/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithRealPixelTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbSarRadiometricCalibrationToImageFilterWithRealPixelTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessFunctor.cxx b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessFunctor.cxx index 57e262e62e..45851d4951 100644 --- a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessFunctor.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessFunctor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageComplexFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageComplexFilterTest.cxx index f7e3a9fc19..0c0858fd3d 100644 --- a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageComplexFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageComplexFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageFilterTest.cxx b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageFilterTest.cxx index bb120208dc..c9cfec4caf 100644 --- a/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageFilterTest.cxx +++ b/Modules/Radiometry/SARCalibration/test/otbTerraSarBrightnessImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/CMakeLists.txt b/Modules/Radiometry/Simulation/CMakeLists.txt index 55fb4d928d..51f8e97576 100644 --- a/Modules/Radiometry/Simulation/CMakeLists.txt +++ b/Modules/Radiometry/Simulation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.h b/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.h index 6d0771fe8c..ab35181ed4 100644 --- a/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.h +++ b/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.hxx b/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.hxx index 5e5cfbe25a..dfb74760dc 100644 --- a/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.hxx +++ b/Modules/Radiometry/Simulation/include/otbAtmosphericEffects.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbDataSpecP5B.h b/Modules/Radiometry/Simulation/include/otbDataSpecP5B.h index 1089a12918..5836246dea 100644 --- a/Modules/Radiometry/Simulation/include/otbDataSpecP5B.h +++ b/Modules/Radiometry/Simulation/include/otbDataSpecP5B.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.h b/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.h index 3b9cb4f307..e4061cfc88 100644 --- a/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.h +++ b/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.hxx b/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.hxx index 6ae11c9e8e..d870cefe18 100644 --- a/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.hxx +++ b/Modules/Radiometry/Simulation/include/otbImageSimulationMethod.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.h b/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.h index e973381d77..e325544d21 100644 --- a/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.h +++ b/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.hxx b/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.hxx index 66e1911171..c8fe2eed82 100644 --- a/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.hxx +++ b/Modules/Radiometry/Simulation/include/otbLabelMapToSimulatedImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.h b/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.h index 3e5ed17c7a..b7ae0db6d8 100644 --- a/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.h +++ b/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.hxx b/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.hxx index bbf666b452..6954fbcd93 100644 --- a/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.hxx +++ b/Modules/Radiometry/Simulation/include/otbLabelToProSailParameters.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLabelToSimulationParametersBase.h b/Modules/Radiometry/Simulation/include/otbLabelToSimulationParametersBase.h index e564cb9904..c324d5ebaf 100644 --- a/Modules/Radiometry/Simulation/include/otbLabelToSimulationParametersBase.h +++ b/Modules/Radiometry/Simulation/include/otbLabelToSimulationParametersBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbLeafParameters.h b/Modules/Radiometry/Simulation/include/otbLeafParameters.h index 8a0b3acb29..b48d15da4e 100644 --- a/Modules/Radiometry/Simulation/include/otbLeafParameters.h +++ b/Modules/Radiometry/Simulation/include/otbLeafParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbProSailParameters.h b/Modules/Radiometry/Simulation/include/otbProSailParameters.h index 306bfa6173..2872f7d186 100644 --- a/Modules/Radiometry/Simulation/include/otbProSailParameters.h +++ b/Modules/Radiometry/Simulation/include/otbProSailParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbProspectModel.h b/Modules/Radiometry/Simulation/include/otbProspectModel.h index cb082c16a9..164d1c2304 100644 --- a/Modules/Radiometry/Simulation/include/otbProspectModel.h +++ b/Modules/Radiometry/Simulation/include/otbProspectModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.h b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.h index 1c48dc4050..64a8673fb8 100644 --- a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.h +++ b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.hxx b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.hxx index 1daf0cd4ad..2a6b4f5a26 100644 --- a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.hxx +++ b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponse.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.h b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.h index ae8088e953..ea2e68b36a 100644 --- a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.h +++ b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.hxx b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.hxx index fd6e57f329..933953d88f 100644 --- a/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.hxx +++ b/Modules/Radiometry/Simulation/include/otbReduceSpectralResponseClassifierRAndNIR.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSailModel.h b/Modules/Radiometry/Simulation/include/otbSailModel.h index 1db857cdc8..e91a33b25a 100644 --- a/Modules/Radiometry/Simulation/include/otbSailModel.h +++ b/Modules/Radiometry/Simulation/include/otbSailModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSatelliteRSR.h b/Modules/Radiometry/Simulation/include/otbSatelliteRSR.h index ea475676f4..f603da2255 100644 --- a/Modules/Radiometry/Simulation/include/otbSatelliteRSR.h +++ b/Modules/Radiometry/Simulation/include/otbSatelliteRSR.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSatelliteRSR.hxx b/Modules/Radiometry/Simulation/include/otbSatelliteRSR.hxx index 54cf16341c..b49549757d 100644 --- a/Modules/Radiometry/Simulation/include/otbSatelliteRSR.hxx +++ b/Modules/Radiometry/Simulation/include/otbSatelliteRSR.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSimulationStep1Base.h b/Modules/Radiometry/Simulation/include/otbSimulationStep1Base.h index 6aa3610052..3d653d5dd9 100644 --- a/Modules/Radiometry/Simulation/include/otbSimulationStep1Base.h +++ b/Modules/Radiometry/Simulation/include/otbSimulationStep1Base.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSimulationStep2Base.h b/Modules/Radiometry/Simulation/include/otbSimulationStep2Base.h index cea8dffce7..ef845b3190 100644 --- a/Modules/Radiometry/Simulation/include/otbSimulationStep2Base.h +++ b/Modules/Radiometry/Simulation/include/otbSimulationStep2Base.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSoilDataBase.h b/Modules/Radiometry/Simulation/include/otbSoilDataBase.h index f000137f03..6f82f57143 100644 --- a/Modules/Radiometry/Simulation/include/otbSoilDataBase.h +++ b/Modules/Radiometry/Simulation/include/otbSoilDataBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.h b/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.h index 7eabd03a25..43ff555dca 100644 --- a/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.h +++ b/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.hxx b/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.hxx index 8141984623..3d05b1f3df 100644 --- a/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.hxx +++ b/Modules/Radiometry/Simulation/include/otbSpatialisationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSpectralResponse.h b/Modules/Radiometry/Simulation/include/otbSpectralResponse.h index 0e89c54ca5..b82ca44ddd 100644 --- a/Modules/Radiometry/Simulation/include/otbSpectralResponse.h +++ b/Modules/Radiometry/Simulation/include/otbSpectralResponse.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSpectralResponse.hxx b/Modules/Radiometry/Simulation/include/otbSpectralResponse.hxx index 500d95db68..1aa5974ec5 100644 --- a/Modules/Radiometry/Simulation/include/otbSpectralResponse.hxx +++ b/Modules/Radiometry/Simulation/include/otbSpectralResponse.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.h b/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.h index 3baef37559..010106b166 100644 --- a/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.h +++ b/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.hxx b/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.hxx index 7532efad2c..a7bebb86fa 100644 --- a/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.hxx +++ b/Modules/Radiometry/Simulation/include/otbSurfaceReflectanceToReflectanceFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/otb-module.cmake b/Modules/Radiometry/Simulation/otb-module.cmake index 2d733970b6..4bc20132a1 100644 --- a/Modules/Radiometry/Simulation/otb-module.cmake +++ b/Modules/Radiometry/Simulation/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Simulation/src/CMakeLists.txt b/Modules/Radiometry/Simulation/src/CMakeLists.txt index 28a0998bfe..3440e62feb 100644 --- a/Modules/Radiometry/Simulation/src/CMakeLists.txt +++ b/Modules/Radiometry/Simulation/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Simulation/src/otbDataSpecP5B.cxx b/Modules/Radiometry/Simulation/src/otbDataSpecP5B.cxx index 89c039f9f4..d4256943f7 100644 --- a/Modules/Radiometry/Simulation/src/otbDataSpecP5B.cxx +++ b/Modules/Radiometry/Simulation/src/otbDataSpecP5B.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/src/otbLeafParameters.cxx b/Modules/Radiometry/Simulation/src/otbLeafParameters.cxx index 842cdfc3ca..812aad8986 100644 --- a/Modules/Radiometry/Simulation/src/otbLeafParameters.cxx +++ b/Modules/Radiometry/Simulation/src/otbLeafParameters.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/src/otbProspectModel.cxx b/Modules/Radiometry/Simulation/src/otbProspectModel.cxx index 1cfe4d2f86..2e90fba346 100644 --- a/Modules/Radiometry/Simulation/src/otbProspectModel.cxx +++ b/Modules/Radiometry/Simulation/src/otbProspectModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/src/otbSailModel.cxx b/Modules/Radiometry/Simulation/src/otbSailModel.cxx index 141128f80e..0b8871f79a 100644 --- a/Modules/Radiometry/Simulation/src/otbSailModel.cxx +++ b/Modules/Radiometry/Simulation/src/otbSailModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/src/otbSoilDataBase.cxx b/Modules/Radiometry/Simulation/src/otbSoilDataBase.cxx index 7ee082fd78..dceb6ddf04 100644 --- a/Modules/Radiometry/Simulation/src/otbSoilDataBase.cxx +++ b/Modules/Radiometry/Simulation/src/otbSoilDataBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/CMakeLists.txt b/Modules/Radiometry/Simulation/test/CMakeLists.txt index b7b257e6f8..70b022f279 100644 --- a/Modules/Radiometry/Simulation/test/CMakeLists.txt +++ b/Modules/Radiometry/Simulation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Radiometry/Simulation/test/otbAtmosphericCorrectionsRSRSVMClassifier.cxx b/Modules/Radiometry/Simulation/test/otbAtmosphericCorrectionsRSRSVMClassifier.cxx index 29a5562d58..f50d639634 100644 --- a/Modules/Radiometry/Simulation/test/otbAtmosphericCorrectionsRSRSVMClassifier.cxx +++ b/Modules/Radiometry/Simulation/test/otbAtmosphericCorrectionsRSRSVMClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbAtmosphericEffects.cxx b/Modules/Radiometry/Simulation/test/otbAtmosphericEffects.cxx index 40195f4fa8..cebccd8844 100644 --- a/Modules/Radiometry/Simulation/test/otbAtmosphericEffects.cxx +++ b/Modules/Radiometry/Simulation/test/otbAtmosphericEffects.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbFilterFunctionValues.cxx b/Modules/Radiometry/Simulation/test/otbFilterFunctionValues.cxx index 77591b85cd..aed27d5837 100644 --- a/Modules/Radiometry/Simulation/test/otbFilterFunctionValues.cxx +++ b/Modules/Radiometry/Simulation/test/otbFilterFunctionValues.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodKMeansClassif.cxx b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodKMeansClassif.cxx index 85c14746d8..bc83a90d21 100644 --- a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodKMeansClassif.cxx +++ b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodKMeansClassif.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodSVMClassif.cxx b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodSVMClassif.cxx index 1b7f6b9807..94ceb0bc0e 100644 --- a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodSVMClassif.cxx +++ b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodSVMClassif.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithSpatialisationTest.cxx b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithSpatialisationTest.cxx index ca50c6c123..27f616a3bd 100644 --- a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithSpatialisationTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithSpatialisationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithVectorDataTest.cxx b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithVectorDataTest.cxx index 2e3bc9aa4f..53a0dda75b 100644 --- a/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithVectorDataTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbImageSimulationMethodWithVectorDataTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbLabelMapToSimulatedImageFilterTest.cxx b/Modules/Radiometry/Simulation/test/otbLabelMapToSimulatedImageFilterTest.cxx index 90bcfbed9d..5755ddc3dd 100644 --- a/Modules/Radiometry/Simulation/test/otbLabelMapToSimulatedImageFilterTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbLabelMapToSimulatedImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbProspectReflTest.cxx b/Modules/Radiometry/Simulation/test/otbProspectReflTest.cxx index dc3ff5de2f..c94a02590f 100644 --- a/Modules/Radiometry/Simulation/test/otbProspectReflTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbProspectReflTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbProspectTransTest.cxx b/Modules/Radiometry/Simulation/test/otbProspectTransTest.cxx index 70eb2c0f88..d0df4c6cf1 100644 --- a/Modules/Radiometry/Simulation/test/otbProspectTransTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbProspectTransTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponse.cxx b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponse.cxx index a10ad8d25e..03eede88e9 100644 --- a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponse.cxx +++ b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponse.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseClassifierRAndNIR.cxx b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseClassifierRAndNIR.cxx index 76d1f638bc..243768a583 100644 --- a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseClassifierRAndNIR.cxx +++ b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseClassifierRAndNIR.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseSVMClassifier.cxx b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseSVMClassifier.cxx index fcb833236a..5ad228e861 100644 --- a/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseSVMClassifier.cxx +++ b/Modules/Radiometry/Simulation/test/otbReduceSpectralResponseSVMClassifier.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSailReflHTest.cxx b/Modules/Radiometry/Simulation/test/otbSailReflHTest.cxx index 5ab2c580cf..a0acea69cc 100644 --- a/Modules/Radiometry/Simulation/test/otbSailReflHTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbSailReflHTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSailReflVTest.cxx b/Modules/Radiometry/Simulation/test/otbSailReflVTest.cxx index a7d6ba9555..74cb76a0b1 100644 --- a/Modules/Radiometry/Simulation/test/otbSailReflVTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbSailReflVTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSatelliteRSR.cxx b/Modules/Radiometry/Simulation/test/otbSatelliteRSR.cxx index c9cdcc334b..1b76b997ac 100644 --- a/Modules/Radiometry/Simulation/test/otbSatelliteRSR.cxx +++ b/Modules/Radiometry/Simulation/test/otbSatelliteRSR.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx b/Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx index 7925dfc711..bdf11f408a 100644 --- a/Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx +++ b/Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSoilDBTest.cxx b/Modules/Radiometry/Simulation/test/otbSoilDBTest.cxx index 29d02268e4..ff489d3be8 100644 --- a/Modules/Radiometry/Simulation/test/otbSoilDBTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbSoilDBTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSpatialisationTest.cxx b/Modules/Radiometry/Simulation/test/otbSpatialisationTest.cxx index e699c4f9f2..d60cc1d3da 100644 --- a/Modules/Radiometry/Simulation/test/otbSpatialisationTest.cxx +++ b/Modules/Radiometry/Simulation/test/otbSpatialisationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSpectralResponse.cxx b/Modules/Radiometry/Simulation/test/otbSpectralResponse.cxx index bbc8868841..d4d0555339 100644 --- a/Modules/Radiometry/Simulation/test/otbSpectralResponse.cxx +++ b/Modules/Radiometry/Simulation/test/otbSpectralResponse.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Radiometry/Simulation/test/otbSurfaceReflectanceToReflectanceFilter.cxx b/Modules/Radiometry/Simulation/test/otbSurfaceReflectanceToReflectanceFilter.cxx index f0adf2f886..66fee5d124 100644 --- a/Modules/Radiometry/Simulation/test/otbSurfaceReflectanceToReflectanceFilter.cxx +++ b/Modules/Radiometry/Simulation/test/otbSurfaceReflectanceToReflectanceFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/CMakeLists.txt b/Modules/Registration/DisparityMap/CMakeLists.txt index a189a8c832..1259f2a888 100644 --- a/Modules/Registration/DisparityMap/CMakeLists.txt +++ b/Modules/Registration/DisparityMap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.h b/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.h index c312e73d99..418dce3926 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.h +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.hxx b/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.hxx index ba760720b9..02d63b3007 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.hxx +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapEstimationMethod.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.h b/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.h index 665befb330..8beb9a34d7 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.h +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.hxx b/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.hxx index 9c86d3c5a7..d56f6b9010 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapMedianFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.h b/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.h index e4ffbb527d..b02c3d19c9 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.h +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.hxx b/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.hxx index b6a77cb512..9913889176 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapTo3DFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.h b/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.h index 106693a719..5cffb700ed 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.h +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.hxx b/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.hxx index ea55ae41a8..67cda3d520 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbDisparityMapToDEMFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.h b/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.h index 783a2bf397..47363d8655 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.h +++ b/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.hxx b/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.hxx index 3b8214f660..c82b95255e 100644 --- a/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbDisparityTranslateFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.h b/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.h index c546e94ccd..f3f18da7b7 100644 --- a/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.h +++ b/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.hxx b/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.hxx index 57ae7898a5..f2a10300dc 100644 --- a/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbFineRegistrationImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.h b/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.h index 2eb5cb903a..d56467748b 100644 --- a/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.h +++ b/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.hxx b/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.hxx index 2bf0563584..8439caf6a0 100644 --- a/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbMultiDisparityMapTo3DFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.h b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.h index d2baecda1e..dfbce443a3 100644 --- a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.h +++ b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.hxx b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.hxx index 53c20990b4..6971b6d1a1 100644 --- a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.h b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.h index a3296a275c..a7dd64ab36 100644 --- a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.h +++ b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.hxx b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.hxx index 343e0452b7..68371d8c04 100644 --- a/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.hxx +++ b/Modules/Registration/DisparityMap/include/otbNCCRegistrationFunction.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.h b/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.h index e060ec3e59..d4c8537dd5 100644 --- a/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.h +++ b/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.hxx b/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.hxx index 383e651272..7ce309174b 100644 --- a/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbPixelWiseBlockMatchingImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.h b/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.h index 7449711874..9047913e63 100644 --- a/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.h +++ b/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.hxx b/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.hxx index 28277ff9d6..38778c4e01 100644 --- a/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.hxx +++ b/Modules/Registration/DisparityMap/include/otbSubPixelDisparityImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/otb-module.cmake b/Modules/Registration/DisparityMap/otb-module.cmake index 4eb5383cc6..b1485c19cf 100644 --- a/Modules/Registration/DisparityMap/otb-module.cmake +++ b/Modules/Registration/DisparityMap/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/DisparityMap/test/CMakeLists.txt b/Modules/Registration/DisparityMap/test/CMakeLists.txt index 1017aa1d64..3538a705b1 100644 --- a/Modules/Registration/DisparityMap/test/CMakeLists.txt +++ b/Modules/Registration/DisparityMap/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/DisparityMap/test/otbDisparityMapEstimationMethod.cxx b/Modules/Registration/DisparityMap/test/otbDisparityMapEstimationMethod.cxx index 8730be0776..e0660dc345 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityMapEstimationMethod.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityMapEstimationMethod.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbDisparityMapMedianFilter.cxx b/Modules/Registration/DisparityMap/test/otbDisparityMapMedianFilter.cxx index 727e7d4f95..5fdab91db3 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityMapMedianFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityMapMedianFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbDisparityMapTestDriver.cxx b/Modules/Registration/DisparityMap/test/otbDisparityMapTestDriver.cxx index 9c28a9d8b2..ddcb1bc2df 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityMapTestDriver.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityMapTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbDisparityMapTo3DFilter.cxx b/Modules/Registration/DisparityMap/test/otbDisparityMapTo3DFilter.cxx index c41301d977..2a034358d2 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityMapTo3DFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityMapTo3DFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbDisparityMapToDEMFilter.cxx b/Modules/Registration/DisparityMap/test/otbDisparityMapToDEMFilter.cxx index 2d2fbdafb5..91c959f7be 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityMapToDEMFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityMapToDEMFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbDisparityTranslateFilter.cxx b/Modules/Registration/DisparityMap/test/otbDisparityTranslateFilter.cxx index c92955e4ac..e7dce772d1 100644 --- a/Modules/Registration/DisparityMap/test/otbDisparityTranslateFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbDisparityTranslateFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbFineRegistrationImageFilterTest.cxx b/Modules/Registration/DisparityMap/test/otbFineRegistrationImageFilterTest.cxx index 5e96ea015d..8fde9327d7 100644 --- a/Modules/Registration/DisparityMap/test/otbFineRegistrationImageFilterTest.cxx +++ b/Modules/Registration/DisparityMap/test/otbFineRegistrationImageFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbMultiDisparityMapTo3DFilter.cxx b/Modules/Registration/DisparityMap/test/otbMultiDisparityMapTo3DFilter.cxx index 8747d39617..7524bc4387 100644 --- a/Modules/Registration/DisparityMap/test/otbMultiDisparityMapTo3DFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbMultiDisparityMapTo3DFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbNCCRegistrationFilter.cxx b/Modules/Registration/DisparityMap/test/otbNCCRegistrationFilter.cxx index 76601e6f65..214e250287 100644 --- a/Modules/Registration/DisparityMap/test/otbNCCRegistrationFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbNCCRegistrationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbPixelWiseBlockMatchingImageFilter.cxx b/Modules/Registration/DisparityMap/test/otbPixelWiseBlockMatchingImageFilter.cxx index 050560520b..760e20135b 100644 --- a/Modules/Registration/DisparityMap/test/otbPixelWiseBlockMatchingImageFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbPixelWiseBlockMatchingImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/DisparityMap/test/otbSubPixelDisparityImageFilter.cxx b/Modules/Registration/DisparityMap/test/otbSubPixelDisparityImageFilter.cxx index 0ceb2dcdc7..b4a2ea5fe5 100644 --- a/Modules/Registration/DisparityMap/test/otbSubPixelDisparityImageFilter.cxx +++ b/Modules/Registration/DisparityMap/test/otbSubPixelDisparityImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/CMakeLists.txt b/Modules/Registration/Stereo/CMakeLists.txt index 939db08f71..5b5a21edfd 100644 --- a/Modules/Registration/Stereo/CMakeLists.txt +++ b/Modules/Registration/Stereo/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.h b/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.h index 5bc7244808..da5edfdd9b 100644 --- a/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.h +++ b/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.hxx b/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.hxx index f790dd9705..57b504a08a 100644 --- a/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.hxx +++ b/Modules/Registration/Stereo/include/otbAdhesionCorrectionFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.h b/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.h index feae9b05f5..257255cb7f 100644 --- a/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.h +++ b/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.hxx b/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.hxx index 958832e687..ddb3d0a848 100644 --- a/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.hxx +++ b/Modules/Registration/Stereo/include/otbBijectionCoherencyFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.h b/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.h index e58700c669..85897fd11a 100644 --- a/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.h +++ b/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.hxx b/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.hxx index 53fda1598d..5e400069b8 100644 --- a/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.hxx +++ b/Modules/Registration/Stereo/include/otbLineOfSightOptimizer.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.h b/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.h index 64dbd64127..fda4b4fb38 100644 --- a/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.h +++ b/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.hxx b/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.hxx index a2068d3bc9..74db81b656 100644 --- a/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.hxx +++ b/Modules/Registration/Stereo/include/otbMulti3DMapToDEMFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.h b/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.h index e8f552a0e7..9b7c36bff4 100644 --- a/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.h +++ b/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.hxx b/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.hxx index 7a852b7483..4222bc55dc 100644 --- a/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.hxx +++ b/Modules/Registration/Stereo/include/otbStereoSensorModelToElevationMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.h b/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.h index 1dd2bf22b2..592c9465df 100644 --- a/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.h +++ b/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.hxx b/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.hxx index 9a65fa0014..d31a09a94f 100644 --- a/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.hxx +++ b/Modules/Registration/Stereo/include/otbStereorectificationDisplacementFieldSource.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/otb-module.cmake b/Modules/Registration/Stereo/otb-module.cmake index 27e06d7640..f3f183dce5 100644 --- a/Modules/Registration/Stereo/otb-module.cmake +++ b/Modules/Registration/Stereo/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/Stereo/test/CMakeLists.txt b/Modules/Registration/Stereo/test/CMakeLists.txt index 9d48766577..1fcfef799f 100644 --- a/Modules/Registration/Stereo/test/CMakeLists.txt +++ b/Modules/Registration/Stereo/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Registration/Stereo/test/otbAdhesionCorrectionFilter.cxx b/Modules/Registration/Stereo/test/otbAdhesionCorrectionFilter.cxx index 0d76dfd15f..a81bc1dc96 100644 --- a/Modules/Registration/Stereo/test/otbAdhesionCorrectionFilter.cxx +++ b/Modules/Registration/Stereo/test/otbAdhesionCorrectionFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/test/otbBijectionCoherencyFilter.cxx b/Modules/Registration/Stereo/test/otbBijectionCoherencyFilter.cxx index beeb7d7d72..6f346c693e 100644 --- a/Modules/Registration/Stereo/test/otbBijectionCoherencyFilter.cxx +++ b/Modules/Registration/Stereo/test/otbBijectionCoherencyFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/test/otbMulti3DMapToDEMFilter.cxx b/Modules/Registration/Stereo/test/otbMulti3DMapToDEMFilter.cxx index 6e2f405739..7a61b8e77f 100644 --- a/Modules/Registration/Stereo/test/otbMulti3DMapToDEMFilter.cxx +++ b/Modules/Registration/Stereo/test/otbMulti3DMapToDEMFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/test/otbStereoSensorModelToElevationMapFilter.cxx b/Modules/Registration/Stereo/test/otbStereoSensorModelToElevationMapFilter.cxx index 0c4c307439..caf1ea2715 100644 --- a/Modules/Registration/Stereo/test/otbStereoSensorModelToElevationMapFilter.cxx +++ b/Modules/Registration/Stereo/test/otbStereoSensorModelToElevationMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/test/otbStereoTestDriver.cxx b/Modules/Registration/Stereo/test/otbStereoTestDriver.cxx index c1adba2c2b..9aef0650d3 100644 --- a/Modules/Registration/Stereo/test/otbStereoTestDriver.cxx +++ b/Modules/Registration/Stereo/test/otbStereoTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Registration/Stereo/test/otbStereorectificationDisplacementFieldSource.cxx b/Modules/Registration/Stereo/test/otbStereorectificationDisplacementFieldSource.cxx index 0f419946c6..e6624576cf 100644 --- a/Modules/Registration/Stereo/test/otbStereorectificationDisplacementFieldSource.cxx +++ b/Modules/Registration/Stereo/test/otbStereorectificationDisplacementFieldSource.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Remote/CMakeLists.txt b/Modules/Remote/CMakeLists.txt index cdc6d47fe4..5e417d8596 100644 --- a/Modules/Remote/CMakeLists.txt +++ b/Modules/Remote/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/SertitObject.remote.cmake b/Modules/Remote/SertitObject.remote.cmake index 70127c1b37..7c9f4e72f7 100644 --- a/Modules/Remote/SertitObject.remote.cmake +++ b/Modules/Remote/SertitObject.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/diapotb.remote.cmake b/Modules/Remote/diapotb.remote.cmake index e1df83595b..0f9791f05c 100644 --- a/Modules/Remote/diapotb.remote.cmake +++ b/Modules/Remote/diapotb.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/otb-bv.remote.cmake b/Modules/Remote/otb-bv.remote.cmake index 1895c48e87..e4c1a0ee7a 100644 --- a/Modules/Remote/otb-bv.remote.cmake +++ b/Modules/Remote/otb-bv.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/otbFFSforGMM.remote.cmake b/Modules/Remote/otbFFSforGMM.remote.cmake index 5cdcfc66a4..ad13f95045 100644 --- a/Modules/Remote/otbFFSforGMM.remote.cmake +++ b/Modules/Remote/otbFFSforGMM.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/otbGRM.remote.cmake b/Modules/Remote/otbGRM.remote.cmake index 0468b52510..e6c3948966 100644 --- a/Modules/Remote/otbGRM.remote.cmake +++ b/Modules/Remote/otbGRM.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/phenotb.remote.cmake b/Modules/Remote/phenotb.remote.cmake index bc0ff47aa0..dbac196640 100644 --- a/Modules/Remote/phenotb.remote.cmake +++ b/Modules/Remote/phenotb.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Remote/temporal-gapfilling.remote.cmake b/Modules/Remote/temporal-gapfilling.remote.cmake index 6e7b1f77e7..0baa007b84 100644 --- a/Modules/Remote/temporal-gapfilling.remote.cmake +++ b/Modules/Remote/temporal-gapfilling.remote.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/CCOBIA/CMakeLists.txt b/Modules/Segmentation/CCOBIA/CMakeLists.txt index fd59c32889..989911ea4b 100644 --- a/Modules/Segmentation/CCOBIA/CMakeLists.txt +++ b/Modules/Segmentation/CCOBIA/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h index 6d23441974..26e6b2034b 100644 --- a/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h +++ b/Modules/Segmentation/CCOBIA/include/otbConnectedComponentMuParserFunctor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.h b/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.h index afe96e8104..1abce32fa2 100644 --- a/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.h +++ b/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.hxx b/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.hxx index 0516ac923a..383e381161 100644 --- a/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.hxx +++ b/Modules/Segmentation/CCOBIA/include/otbLabelObjectOpeningMuParserFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.h b/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.h index 79f484d8a5..7790cabc61 100644 --- a/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.h +++ b/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.hxx b/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.hxx index 5c5e4e59cd..e4dd44afc4 100644 --- a/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.hxx +++ b/Modules/Segmentation/CCOBIA/include/otbStreamingConnectedComponentSegmentationOBIAToVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/otb-module.cmake b/Modules/Segmentation/CCOBIA/otb-module.cmake index b4d9f9a538..09c11a2ecc 100644 --- a/Modules/Segmentation/CCOBIA/otb-module.cmake +++ b/Modules/Segmentation/CCOBIA/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/CCOBIA/test/CMakeLists.txt b/Modules/Segmentation/CCOBIA/test/CMakeLists.txt index 31def1a098..debc4b63d8 100644 --- a/Modules/Segmentation/CCOBIA/test/CMakeLists.txt +++ b/Modules/Segmentation/CCOBIA/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx b/Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx index dbaf2e47e4..6ee5c9940d 100644 --- a/Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx +++ b/Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/test/otbConnectedComponentMuParserFunctorTest.cxx b/Modules/Segmentation/CCOBIA/test/otbConnectedComponentMuParserFunctorTest.cxx index 5eac2508cc..5247836cfc 100644 --- a/Modules/Segmentation/CCOBIA/test/otbConnectedComponentMuParserFunctorTest.cxx +++ b/Modules/Segmentation/CCOBIA/test/otbConnectedComponentMuParserFunctorTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/test/otbLabelObjectOpeningMuParserFilterTest.cxx b/Modules/Segmentation/CCOBIA/test/otbLabelObjectOpeningMuParserFilterTest.cxx index 28718a1b9e..a439b87ec5 100644 --- a/Modules/Segmentation/CCOBIA/test/otbLabelObjectOpeningMuParserFilterTest.cxx +++ b/Modules/Segmentation/CCOBIA/test/otbLabelObjectOpeningMuParserFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/test/otbMeanShiftStreamingConnectedComponentOBIATest.cxx b/Modules/Segmentation/CCOBIA/test/otbMeanShiftStreamingConnectedComponentOBIATest.cxx index 9cddebad35..27b74bfd2e 100644 --- a/Modules/Segmentation/CCOBIA/test/otbMeanShiftStreamingConnectedComponentOBIATest.cxx +++ b/Modules/Segmentation/CCOBIA/test/otbMeanShiftStreamingConnectedComponentOBIATest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/CCOBIA/test/otbStreamingConnectedComponentOBIATest.cxx b/Modules/Segmentation/CCOBIA/test/otbStreamingConnectedComponentOBIATest.cxx index c7fff357f8..12b00c67f4 100644 --- a/Modules/Segmentation/CCOBIA/test/otbStreamingConnectedComponentOBIATest.cxx +++ b/Modules/Segmentation/CCOBIA/test/otbStreamingConnectedComponentOBIATest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/CMakeLists.txt b/Modules/Segmentation/Conversion/CMakeLists.txt index 416b67d681..8115b2e99c 100644 --- a/Modules/Segmentation/Conversion/CMakeLists.txt +++ b/Modules/Segmentation/Conversion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.h b/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.h index 8ca6446a4c..9666e663ea 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.hxx index eb7013082d..2837ca8e71 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelImageRegionMergingFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.h b/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.h index d745b258c0..c7bbf729c0 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.hxx index 51f009f6e5..25e8d4e48e 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelImageRegionPruningFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.h b/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.h index 0e4ca56429..766eea6b9d 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.hxx index 5922a85439..691afcb819 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelImageSmallRegionMergingFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.h b/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.h index d003711b54..dd9c4cf7de 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.hxx index 2d9de5941a..bc40e2ef0f 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelImageToOGRDataSourceFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.h b/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.h index cff18cf070..668ebe4d6a 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.hxx index ed7df826d6..0a13da680e 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelImageToVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.h b/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.h index ce0ca84715..2319e9fb52 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.h +++ b/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.hxx b/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.hxx index 5951f3b64d..a9115bbf84 100644 --- a/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbLabelMapToVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.h b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.h index 7d80d4a7df..3970cd9b7e 100644 --- a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.h +++ b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx index 1808f80b39..05a9c0b726 100644 --- a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.h b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.h index 5395648486..88d79d6d2e 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.h +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.hxx b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.hxx index 8a43f910df..3974423876 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRDataFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.h b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.h index ae5900ba9a..2c7e2630c2 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.h +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.hxx b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.hxx index 9bf7ceae0a..d05530ddab 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToOGRLayerFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.h b/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.h index c25412f432..fc631a1803 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.h +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.hxx b/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.hxx index b275d92743..7034580dc4 100644 --- a/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbPersistentImageToVectorDataFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.h b/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.h index 9021dd49e0..ef025a34ef 100644 --- a/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.h +++ b/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.hxx b/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.hxx index 92b49f0b77..7ba6695025 100644 --- a/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbRasterizeVectorDataFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.h b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.h index 93dbdc5587..2622b0d0e3 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.h +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.hxx b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.hxx index 016d8a89ea..142395adaa 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.h b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.h index 6940c5086d..2562896ad3 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.h +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.hxx b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.hxx index 8747711bb3..7750b56def 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.h b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.h index 067682a981..4f1a0d5ca4 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.h +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.hxx b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.hxx index 4494886fc7..c79e2c898e 100644 --- a/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbVectorDataToLabelMapWithAttributesFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/otb-module.cmake b/Modules/Segmentation/Conversion/otb-module.cmake index e44cd8e33f..d8e4a0e311 100644 --- a/Modules/Segmentation/Conversion/otb-module.cmake +++ b/Modules/Segmentation/Conversion/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Conversion/test/CMakeLists.txt b/Modules/Segmentation/Conversion/test/CMakeLists.txt index b704bd6275..43616c8c98 100644 --- a/Modules/Segmentation/Conversion/test/CMakeLists.txt +++ b/Modules/Segmentation/Conversion/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Conversion/test/otbConversionTestDriver.cxx b/Modules/Segmentation/Conversion/test/otbConversionTestDriver.cxx index 392570cdf4..ca2c69c000 100644 --- a/Modules/Segmentation/Conversion/test/otbConversionTestDriver.cxx +++ b/Modules/Segmentation/Conversion/test/otbConversionTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbLabelImageRegionMergingFilter.cxx b/Modules/Segmentation/Conversion/test/otbLabelImageRegionMergingFilter.cxx index a4eb31245c..b2802d73ce 100644 --- a/Modules/Segmentation/Conversion/test/otbLabelImageRegionMergingFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbLabelImageRegionMergingFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbLabelImageRegionPruningFilter.cxx b/Modules/Segmentation/Conversion/test/otbLabelImageRegionPruningFilter.cxx index eb048d847b..9117649515 100644 --- a/Modules/Segmentation/Conversion/test/otbLabelImageRegionPruningFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbLabelImageRegionPruningFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbLabelImageToOGRDataSourceFilter.cxx b/Modules/Segmentation/Conversion/test/otbLabelImageToOGRDataSourceFilter.cxx index 69753a3593..4878039afb 100644 --- a/Modules/Segmentation/Conversion/test/otbLabelImageToOGRDataSourceFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbLabelImageToOGRDataSourceFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbLabelImageToVectorDataFilter.cxx b/Modules/Segmentation/Conversion/test/otbLabelImageToVectorDataFilter.cxx index b35fe81b51..29d9dae7ef 100644 --- a/Modules/Segmentation/Conversion/test/otbLabelImageToVectorDataFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbLabelImageToVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbLabelMapToVectorDataFilter.cxx b/Modules/Segmentation/Conversion/test/otbLabelMapToVectorDataFilter.cxx index ec688303fd..50cdf15142 100644 --- a/Modules/Segmentation/Conversion/test/otbLabelMapToVectorDataFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbLabelMapToVectorDataFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx b/Modules/Segmentation/Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx index 9f8679877c..d5473d84c4 100644 --- a/Modules/Segmentation/Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbPolygonizationRasterizationTest.cxx b/Modules/Segmentation/Conversion/test/otbPolygonizationRasterizationTest.cxx index 61b9442565..ba2d8e89ac 100644 --- a/Modules/Segmentation/Conversion/test/otbPolygonizationRasterizationTest.cxx +++ b/Modules/Segmentation/Conversion/test/otbPolygonizationRasterizationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbVectorDataRasterizeFilter.cxx b/Modules/Segmentation/Conversion/test/otbVectorDataRasterizeFilter.cxx index 392c701e2e..c7906db2ca 100644 --- a/Modules/Segmentation/Conversion/test/otbVectorDataRasterizeFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbVectorDataRasterizeFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilter.cxx b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilter.cxx index 24e121489c..ccee7d1469 100644 --- a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilterWithoutReader.cxx b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilterWithoutReader.cxx index d6e09aa4fd..4905eb4957 100644 --- a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilterWithoutReader.cxx +++ b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilterWithoutReader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelMapFilter.cxx b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelMapFilter.cxx index 16b6925d2c..6a5f5a5dd4 100644 --- a/Modules/Segmentation/Conversion/test/otbVectorDataToLabelMapFilter.cxx +++ b/Modules/Segmentation/Conversion/test/otbVectorDataToLabelMapFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/CMakeLists.txt b/Modules/Segmentation/Labelling/CMakeLists.txt index f5a408cb65..0c4f0d3c54 100644 --- a/Modules/Segmentation/Labelling/CMakeLists.txt +++ b/Modules/Segmentation/Labelling/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Labelling/include/otbLabelToBoundaryImageFilter.h b/Modules/Segmentation/Labelling/include/otbLabelToBoundaryImageFilter.h index 98e5653edb..d155663928 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelToBoundaryImageFilter.h +++ b/Modules/Segmentation/Labelling/include/otbLabelToBoundaryImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabeledOutputAccessor.h b/Modules/Segmentation/Labelling/include/otbLabeledOutputAccessor.h index 9193144162..1b1b884e4e 100644 --- a/Modules/Segmentation/Labelling/include/otbLabeledOutputAccessor.h +++ b/Modules/Segmentation/Labelling/include/otbLabeledOutputAccessor.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.h b/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.h index ac5e04c465..a93ba2a783 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.h +++ b/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.hxx b/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.hxx index 8088d675cf..8b8d24a30a 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.hxx +++ b/Modules/Segmentation/Labelling/include/otbLabelizeConfidenceConnectedImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.h b/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.h index f4370e0475..33de064428 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.h +++ b/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.hxx b/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.hxx index 5868b252fd..6a8616c97f 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.hxx +++ b/Modules/Segmentation/Labelling/include/otbLabelizeConnectedThresholdImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.h b/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.h index e5b49e9959..15d50c3be8 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.h +++ b/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.hxx b/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.hxx index 24cf3eb7bf..46b677039b 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.hxx +++ b/Modules/Segmentation/Labelling/include/otbLabelizeImageFilterBase.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.h b/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.h index aba85a9f25..ad3d22cf09 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.h +++ b/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.hxx b/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.hxx index e195c95378..9d8338c848 100644 --- a/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.hxx +++ b/Modules/Segmentation/Labelling/include/otbLabelizeNeighborhoodConnectedImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.h b/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.h index cbfd4b3808..820d06d54d 100644 --- a/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.h +++ b/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.hxx b/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.hxx index 95f08ae880..37b9766993 100644 --- a/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.hxx +++ b/Modules/Segmentation/Labelling/include/otbRelabelComponentImageFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/otb-module.cmake b/Modules/Segmentation/Labelling/otb-module.cmake index 355e3247ac..e7e0c1cdb3 100644 --- a/Modules/Segmentation/Labelling/otb-module.cmake +++ b/Modules/Segmentation/Labelling/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Labelling/test/CMakeLists.txt b/Modules/Segmentation/Labelling/test/CMakeLists.txt index 20232a7347..abd5df4265 100644 --- a/Modules/Segmentation/Labelling/test/CMakeLists.txt +++ b/Modules/Segmentation/Labelling/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Labelling/test/otbLabelToBoundaryImageFilter.cxx b/Modules/Segmentation/Labelling/test/otbLabelToBoundaryImageFilter.cxx index d1edd00d34..dd7b092851 100644 --- a/Modules/Segmentation/Labelling/test/otbLabelToBoundaryImageFilter.cxx +++ b/Modules/Segmentation/Labelling/test/otbLabelToBoundaryImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/test/otbLabelizeConfidenceConnectedImageFilter.cxx b/Modules/Segmentation/Labelling/test/otbLabelizeConfidenceConnectedImageFilter.cxx index 1e97545903..ce56c7d015 100644 --- a/Modules/Segmentation/Labelling/test/otbLabelizeConfidenceConnectedImageFilter.cxx +++ b/Modules/Segmentation/Labelling/test/otbLabelizeConfidenceConnectedImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/test/otbLabelizeConnectedThresholdImageFilter.cxx b/Modules/Segmentation/Labelling/test/otbLabelizeConnectedThresholdImageFilter.cxx index e6ed2cc0ba..eaec1f6b0a 100644 --- a/Modules/Segmentation/Labelling/test/otbLabelizeConnectedThresholdImageFilter.cxx +++ b/Modules/Segmentation/Labelling/test/otbLabelizeConnectedThresholdImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/test/otbLabelizeNeighborhoodConnectedImageFilter.cxx b/Modules/Segmentation/Labelling/test/otbLabelizeNeighborhoodConnectedImageFilter.cxx index 07c9136377..7d70c702e9 100644 --- a/Modules/Segmentation/Labelling/test/otbLabelizeNeighborhoodConnectedImageFilter.cxx +++ b/Modules/Segmentation/Labelling/test/otbLabelizeNeighborhoodConnectedImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx b/Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx index ac87fadeff..7cec7f6d98 100644 --- a/Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx +++ b/Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/CMakeLists.txt b/Modules/Segmentation/MeanShift/CMakeLists.txt index 3c36f9dce1..6c88a8c9af 100644 --- a/Modules/Segmentation/MeanShift/CMakeLists.txt +++ b/Modules/Segmentation/MeanShift/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.h b/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.h index 1a14006590..4527814e4e 100644 --- a/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.h +++ b/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.hxx b/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.hxx index 9cb7329454..9bf6f5d8e9 100644 --- a/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.hxx +++ b/Modules/Segmentation/MeanShift/include/otbMeanShiftConnectedComponentSegmentationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.h b/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.h index 19736d8bd0..e296e5965d 100644 --- a/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.h +++ b/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.hxx b/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.hxx index 4c3a264c4b..c8d60c2002 100644 --- a/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.hxx +++ b/Modules/Segmentation/MeanShift/include/otbMeanShiftSegmentationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/otb-module.cmake b/Modules/Segmentation/MeanShift/otb-module.cmake index ed922658a5..f7b567abf8 100644 --- a/Modules/Segmentation/MeanShift/otb-module.cmake +++ b/Modules/Segmentation/MeanShift/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MeanShift/test/CMakeLists.txt b/Modules/Segmentation/MeanShift/test/CMakeLists.txt index f7186627cb..31c580e349 100644 --- a/Modules/Segmentation/MeanShift/test/CMakeLists.txt +++ b/Modules/Segmentation/MeanShift/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MeanShift/test/otbMeanShiftConnectedComponentSegmentationFilterTest.cxx b/Modules/Segmentation/MeanShift/test/otbMeanShiftConnectedComponentSegmentationFilterTest.cxx index 9691806c87..e02a8ffc1c 100644 --- a/Modules/Segmentation/MeanShift/test/otbMeanShiftConnectedComponentSegmentationFilterTest.cxx +++ b/Modules/Segmentation/MeanShift/test/otbMeanShiftConnectedComponentSegmentationFilterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/test/otbMeanShiftSegmentationFilter.cxx b/Modules/Segmentation/MeanShift/test/otbMeanShiftSegmentationFilter.cxx index 6fc80bbd4f..88811b221b 100644 --- a/Modules/Segmentation/MeanShift/test/otbMeanShiftSegmentationFilter.cxx +++ b/Modules/Segmentation/MeanShift/test/otbMeanShiftSegmentationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx b/Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx index 537522d96f..22cee4abd5 100644 --- a/Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx +++ b/Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/CMakeLists.txt b/Modules/Segmentation/Metrics/CMakeLists.txt index 4aca63bff2..7d202be057 100644 --- a/Modules/Segmentation/Metrics/CMakeLists.txt +++ b/Modules/Segmentation/Metrics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.h b/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.h index 1ec677a7de..ac516d156e 100644 --- a/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.h +++ b/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.hxx b/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.hxx index 3fc9af551d..6448bf618b 100644 --- a/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.hxx +++ b/Modules/Segmentation/Metrics/include/otbHooverInstanceFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.h b/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.h index 08df4332f8..883125792a 100644 --- a/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.h +++ b/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.hxx b/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.hxx index 686be50d81..5e98481afe 100644 --- a/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.hxx +++ b/Modules/Segmentation/Metrics/include/otbHooverMatrixFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/otb-module.cmake b/Modules/Segmentation/Metrics/otb-module.cmake index ce5372c23f..ac0b18fab8 100644 --- a/Modules/Segmentation/Metrics/otb-module.cmake +++ b/Modules/Segmentation/Metrics/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Metrics/test/CMakeLists.txt b/Modules/Segmentation/Metrics/test/CMakeLists.txt index 63f104f6ca..54638a4fb0 100644 --- a/Modules/Segmentation/Metrics/test/CMakeLists.txt +++ b/Modules/Segmentation/Metrics/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Metrics/test/otbHooverInstanceFilterToAttributeImage.cxx b/Modules/Segmentation/Metrics/test/otbHooverInstanceFilterToAttributeImage.cxx index d3dfc23d61..982ecd1aaf 100644 --- a/Modules/Segmentation/Metrics/test/otbHooverInstanceFilterToAttributeImage.cxx +++ b/Modules/Segmentation/Metrics/test/otbHooverInstanceFilterToAttributeImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/test/otbHooverMatrixFilter.cxx b/Modules/Segmentation/Metrics/test/otbHooverMatrixFilter.cxx index 35c30239dc..e294fdcbd4 100644 --- a/Modules/Segmentation/Metrics/test/otbHooverMatrixFilter.cxx +++ b/Modules/Segmentation/Metrics/test/otbHooverMatrixFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx b/Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx index fb39a9295c..a23e6f1f6f 100644 --- a/Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx +++ b/Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt b/Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt index ac48a1a3fc..3e822ec2aa 100644 --- a/Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt +++ b/Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.h index f380c48367..55194f319f 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.hxx index 6f51bd5e5e..45a1393e19 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbClosingOpeningMorphologicalFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbConvexOrConcaveClassificationFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbConvexOrConcaveClassificationFilter.h index 47d4b94e3b..956ab5702e 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbConvexOrConcaveClassificationFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbConvexOrConcaveClassificationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.h index 97e007a8a1..8fd3c6c77c 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.hxx index cdc00cf53b..34a2a0c8b2 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyDecompositionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.h index f8885beb0d..b37d8369e2 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.hxx index 7a9ec9ac6e..3e9ebaa62a 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyIterativeDecompositionImageFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyLevelingFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyLevelingFilter.h index 7a10229810..00979b10f2 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyLevelingFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbGeodesicMorphologyLevelingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.h index ce0e17523d..80b7fde65d 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.hxx index cb537d9bcc..35a4476899 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbImageToProfileFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalClosingProfileFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalClosingProfileFilter.h index adc03a5343..86090a971e 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalClosingProfileFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalClosingProfileFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalOpeningProfileFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalOpeningProfileFilter.h index 80551b39a4..23d8c9f1cc 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalOpeningProfileFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalOpeningProfileFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.h index aeda318bac..54234d163b 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.hxx index 253f2b2d2e..fedf90a1ff 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbMorphologicalProfilesSegmentationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbMultiScaleConvexOrConcaveClassificationFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbMultiScaleConvexOrConcaveClassificationFilter.h index 62abc54b8e..30cc1e8198 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbMultiScaleConvexOrConcaveClassificationFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbMultiScaleConvexOrConcaveClassificationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.h index 3d73d8a9e1..0041d9f40b 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.hxx index 959352300c..9e7bc18478 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbOpeningClosingMorphologicalFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.h index 60a9bb1705..b66f6fc260 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.hxx index fecf4e41e9..0e82e2f186 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileDerivativeToMultiScaleCharacteristicsFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.h b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.h index 5d522b2bf0..69d3289f40 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.h +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.hxx b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.hxx index d7442c8bac..efa171b276 100644 --- a/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.hxx +++ b/Modules/Segmentation/MorphologicalProfiles/include/otbProfileToProfileDerivativeFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/otb-module.cmake b/Modules/Segmentation/MorphologicalProfiles/otb-module.cmake index 7998ae0e20..48682b42af 100644 --- a/Modules/Segmentation/MorphologicalProfiles/otb-module.cmake +++ b/Modules/Segmentation/MorphologicalProfiles/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt b/Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt index 84ebb269d8..00fc3d3ca0 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt +++ b/Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbClosingOpeningMorphologicalFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbClosingOpeningMorphologicalFilter.cxx index 9570640dc7..379ea33930 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbClosingOpeningMorphologicalFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbClosingOpeningMorphologicalFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbConvexOrConcaveClassificationFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbConvexOrConcaveClassificationFilter.cxx index bc1a175882..04aca16344 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbConvexOrConcaveClassificationFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbConvexOrConcaveClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyDecompositionImageFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyDecompositionImageFilter.cxx index bcd6569b46..552cde1b35 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyDecompositionImageFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyDecompositionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyIterativeDecompositionImageFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyIterativeDecompositionImageFilter.cxx index d3638d2011..07b02b54d3 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyIterativeDecompositionImageFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyIterativeDecompositionImageFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyLevelingFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyLevelingFilter.cxx index bd50597619..9613835fca 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyLevelingFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbGeodesicMorphologyLevelingFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalClosingProfileFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalClosingProfileFilter.cxx index 3ca52be951..cef4fac6a6 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalClosingProfileFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalClosingProfileFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalOpeningProfileFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalOpeningProfileFilter.cxx index 128710de62..e44a024e81 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalOpeningProfileFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalOpeningProfileFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesSegmentationFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesSegmentationFilter.cxx index 24fe4c0a81..e7ca2d461c 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesSegmentationFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesSegmentationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx index fdd4f5b1d5..3c20d09644 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbMultiScaleConvexOrConcaveClassificationFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbMultiScaleConvexOrConcaveClassificationFilter.cxx index cceb9aa6b0..4b6d2d8a4f 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbMultiScaleConvexOrConcaveClassificationFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbMultiScaleConvexOrConcaveClassificationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbOpeningClosingMorphologicalFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbOpeningClosingMorphologicalFilter.cxx index 53ac87eb60..069e6a6025 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbOpeningClosingMorphologicalFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbOpeningClosingMorphologicalFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbProfileDerivativeToMultiScaleCharacteristicsFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbProfileDerivativeToMultiScaleCharacteristicsFilter.cxx index 8b7181dd95..8fd788d5a5 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbProfileDerivativeToMultiScaleCharacteristicsFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbProfileDerivativeToMultiScaleCharacteristicsFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/MorphologicalProfiles/test/otbProfileToProfileDerivativeFilter.cxx b/Modules/Segmentation/MorphologicalProfiles/test/otbProfileToProfileDerivativeFilter.cxx index 73d8290ae1..3863f5c5e6 100644 --- a/Modules/Segmentation/MorphologicalProfiles/test/otbProfileToProfileDerivativeFilter.cxx +++ b/Modules/Segmentation/MorphologicalProfiles/test/otbProfileToProfileDerivativeFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/CMakeLists.txt b/Modules/Segmentation/OGRProcessing/CMakeLists.txt index d2e25a6e8f..7b300da4bb 100644 --- a/Modules/Segmentation/OGRProcessing/CMakeLists.txt +++ b/Modules/Segmentation/OGRProcessing/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.h b/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.h index eaeee09ce8..94e190241f 100644 --- a/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.h +++ b/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.hxx b/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.hxx index 8bcf87e402..413565e01c 100644 --- a/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.hxx +++ b/Modules/Segmentation/OGRProcessing/include/otbOGRLayerStreamStitchingFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.h b/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.h index e300f91434..8c6aaa9173 100644 --- a/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.h +++ b/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.hxx b/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.hxx index 82904bdca1..711148b4e6 100644 --- a/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.hxx +++ b/Modules/Segmentation/OGRProcessing/include/otbStreamingImageToOGRLayerSegmentationFilter.hxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/otb-module.cmake b/Modules/Segmentation/OGRProcessing/otb-module.cmake index fbf22660a2..9dc4df047d 100644 --- a/Modules/Segmentation/OGRProcessing/otb-module.cmake +++ b/Modules/Segmentation/OGRProcessing/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/OGRProcessing/test/CMakeLists.txt b/Modules/Segmentation/OGRProcessing/test/CMakeLists.txt index 72fe324554..560c460a21 100644 --- a/Modules/Segmentation/OGRProcessing/test/CMakeLists.txt +++ b/Modules/Segmentation/OGRProcessing/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx b/Modules/Segmentation/OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx index 49e086a43d..da114a40bd 100644 --- a/Modules/Segmentation/OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx +++ b/Modules/Segmentation/OGRProcessing/test/otbOGRLayerStreamStitchingFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx b/Modules/Segmentation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx index fc26c2a930..b1f3dc8823 100644 --- a/Modules/Segmentation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx +++ b/Modules/Segmentation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Watersheds/CMakeLists.txt b/Modules/Segmentation/Watersheds/CMakeLists.txt index 2f169fd97d..422711c1fd 100644 --- a/Modules/Segmentation/Watersheds/CMakeLists.txt +++ b/Modules/Segmentation/Watersheds/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.h b/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.h index 1d878ee06c..9307b63c53 100644 --- a/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.h +++ b/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.hxx b/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.hxx index bafe8e3270..0b66b4dbfa 100644 --- a/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.hxx +++ b/Modules/Segmentation/Watersheds/include/otbWatershedSegmentationFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Watersheds/otb-module.cmake b/Modules/Segmentation/Watersheds/otb-module.cmake index 8fcfc7b7a5..c7a3df209f 100644 --- a/Modules/Segmentation/Watersheds/otb-module.cmake +++ b/Modules/Segmentation/Watersheds/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Watersheds/test/CMakeLists.txt b/Modules/Segmentation/Watersheds/test/CMakeLists.txt index bf2ad3ebd4..7067db99da 100644 --- a/Modules/Segmentation/Watersheds/test/CMakeLists.txt +++ b/Modules/Segmentation/Watersheds/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Segmentation/Watersheds/test/otbWatershedSegmentationFilter.cxx b/Modules/Segmentation/Watersheds/test/otbWatershedSegmentationFilter.cxx index 832054375b..7d1f614bf5 100644 --- a/Modules/Segmentation/Watersheds/test/otbWatershedSegmentationFilter.cxx +++ b/Modules/Segmentation/Watersheds/test/otbWatershedSegmentationFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx b/Modules/Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx index e102c029dd..837d14c644 100644 --- a/Modules/Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx +++ b/Modules/Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/6S/CMakeLists.txt b/Modules/ThirdParty/6S/CMakeLists.txt index a78ee06e85..63fe4ab034 100644 --- a/Modules/ThirdParty/6S/CMakeLists.txt +++ b/Modules/ThirdParty/6S/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/6S/otb-module.cmake b/Modules/ThirdParty/6S/otb-module.cmake index a8034e206f..13bdd1ef60 100644 --- a/Modules/ThirdParty/6S/otb-module.cmake +++ b/Modules/ThirdParty/6S/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/6S/src/CMakeLists.txt b/Modules/ThirdParty/6S/src/CMakeLists.txt index 2898cca97f..e174445c96 100644 --- a/Modules/ThirdParty/6S/src/CMakeLists.txt +++ b/Modules/ThirdParty/6S/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Boost/CMakeLists.txt b/Modules/ThirdParty/Boost/CMakeLists.txt index 494d008bfb..556f9ffcb9 100644 --- a/Modules/ThirdParty/Boost/CMakeLists.txt +++ b/Modules/ThirdParty/Boost/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Boost/otb-module-init.cmake b/Modules/ThirdParty/Boost/otb-module-init.cmake index 320f3ee6ec..c7b4baf1dd 100644 --- a/Modules/ThirdParty/Boost/otb-module-init.cmake +++ b/Modules/ThirdParty/Boost/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Boost/otb-module.cmake b/Modules/ThirdParty/Boost/otb-module.cmake index 8796296316..5541651867 100644 --- a/Modules/ThirdParty/Boost/otb-module.cmake +++ b/Modules/ThirdParty/Boost/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Boost/src/boost/type_traits/is_contiguous.h b/Modules/ThirdParty/Boost/src/boost/type_traits/is_contiguous.h index 0f0ace8c18..962a6409b6 100644 --- a/Modules/ThirdParty/Boost/src/boost/type_traits/is_contiguous.h +++ b/Modules/ThirdParty/Boost/src/boost/type_traits/is_contiguous.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/Boost/src/otbBoostDox.h b/Modules/ThirdParty/Boost/src/otbBoostDox.h index afa027a20b..78932c1341 100644 --- a/Modules/ThirdParty/Boost/src/otbBoostDox.h +++ b/Modules/ThirdParty/Boost/src/otbBoostDox.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/Curl/CMake/otbTestCurlMulti.cxx b/Modules/ThirdParty/Curl/CMake/otbTestCurlMulti.cxx index 850bdafcc6..6f1d08468b 100644 --- a/Modules/ThirdParty/Curl/CMake/otbTestCurlMulti.cxx +++ b/Modules/ThirdParty/Curl/CMake/otbTestCurlMulti.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/Curl/CMakeLists.txt b/Modules/ThirdParty/Curl/CMakeLists.txt index f796378676..ce56ff716b 100644 --- a/Modules/ThirdParty/Curl/CMakeLists.txt +++ b/Modules/ThirdParty/Curl/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Curl/otb-module-init.cmake b/Modules/ThirdParty/Curl/otb-module-init.cmake index 81f5696f96..2c867407b2 100644 --- a/Modules/ThirdParty/Curl/otb-module-init.cmake +++ b/Modules/ThirdParty/Curl/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Curl/otb-module.cmake b/Modules/ThirdParty/Curl/otb-module.cmake index a579657e0d..02f8dcec05 100644 --- a/Modules/ThirdParty/Curl/otb-module.cmake +++ b/Modules/ThirdParty/Curl/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Curl/src/otb_curl.h.in b/Modules/ThirdParty/Curl/src/otb_curl.h.in index 0158f1df79..8572679afd 100644 --- a/Modules/ThirdParty/Curl/src/otb_curl.h.in +++ b/Modules/ThirdParty/Curl/src/otb_curl.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/CMakeLists.txt b/Modules/ThirdParty/GDAL/CMakeLists.txt index d0204f5134..6f731af8d0 100644 --- a/Modules/ThirdParty/GDAL/CMakeLists.txt +++ b/Modules/ThirdParty/GDAL/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GDAL/gdalCreateCopyTest.cxx b/Modules/ThirdParty/GDAL/gdalCreateCopyTest.cxx index 8608f71e79..b9e4b76eca 100644 --- a/Modules/ThirdParty/GDAL/gdalCreateCopyTest.cxx +++ b/Modules/ThirdParty/GDAL/gdalCreateCopyTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalCreateTest.cxx b/Modules/ThirdParty/GDAL/gdalCreateTest.cxx index 0a20f27b63..3fee4b16fd 100644 --- a/Modules/ThirdParty/GDAL/gdalCreateTest.cxx +++ b/Modules/ThirdParty/GDAL/gdalCreateTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalFormatsListTest.c b/Modules/ThirdParty/GDAL/gdalFormatsListTest.c index 0b14cb6425..4c76fc740a 100644 --- a/Modules/ThirdParty/GDAL/gdalFormatsListTest.c +++ b/Modules/ThirdParty/GDAL/gdalFormatsListTest.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalFormatsTest.c b/Modules/ThirdParty/GDAL/gdalFormatsTest.c index 58b00d0dd7..b4fa468dac 100644 --- a/Modules/ThirdParty/GDAL/gdalFormatsTest.c +++ b/Modules/ThirdParty/GDAL/gdalFormatsTest.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalOGRTest.cxx b/Modules/ThirdParty/GDAL/gdalOGRTest.cxx index 4803e3f969..f9f217fc57 100644 --- a/Modules/ThirdParty/GDAL/gdalOGRTest.cxx +++ b/Modules/ThirdParty/GDAL/gdalOGRTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalSymbolsTest.cxx b/Modules/ThirdParty/GDAL/gdalSymbolsTest.cxx index 260de46da6..c08b70e288 100644 --- a/Modules/ThirdParty/GDAL/gdalSymbolsTest.cxx +++ b/Modules/ThirdParty/GDAL/gdalSymbolsTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/gdalTest.sh.in b/Modules/ThirdParty/GDAL/gdalTest.sh.in index 88527ee1b6..32c91fb50c 100644 --- a/Modules/ThirdParty/GDAL/gdalTest.sh.in +++ b/Modules/ThirdParty/GDAL/gdalTest.sh.in @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GDAL/gdalVersionTest.cxx b/Modules/ThirdParty/GDAL/gdalVersionTest.cxx index 3b3e1efa78..a76fcb39f3 100644 --- a/Modules/ThirdParty/GDAL/gdalVersionTest.cxx +++ b/Modules/ThirdParty/GDAL/gdalVersionTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/GDAL/otb-module-init.cmake b/Modules/ThirdParty/GDAL/otb-module-init.cmake index 5c0247dfad..6dfcdcb331 100644 --- a/Modules/ThirdParty/GDAL/otb-module-init.cmake +++ b/Modules/ThirdParty/GDAL/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GDAL/otb-module.cmake b/Modules/ThirdParty/GDAL/otb-module.cmake index e82ff586ed..91e07e3774 100644 --- a/Modules/ThirdParty/GDAL/otb-module.cmake +++ b/Modules/ThirdParty/GDAL/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GLFW/CMakeLists.txt b/Modules/ThirdParty/GLFW/CMakeLists.txt index bf353a307b..f2b038a0b7 100644 --- a/Modules/ThirdParty/GLFW/CMakeLists.txt +++ b/Modules/ThirdParty/GLFW/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GLFW/otb-module-init.cmake b/Modules/ThirdParty/GLFW/otb-module-init.cmake index b255904beb..0a274bc088 100644 --- a/Modules/ThirdParty/GLFW/otb-module-init.cmake +++ b/Modules/ThirdParty/GLFW/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GLFW/otb-module.cmake b/Modules/ThirdParty/GLFW/otb-module.cmake index 6221adf47b..709f9c5d43 100644 --- a/Modules/ThirdParty/GLFW/otb-module.cmake +++ b/Modules/ThirdParty/GLFW/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GSL/CMakeLists.txt b/Modules/ThirdParty/GSL/CMakeLists.txt index 49d82cfa7e..e58b42ca8a 100644 --- a/Modules/ThirdParty/GSL/CMakeLists.txt +++ b/Modules/ThirdParty/GSL/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GSL/otb-module-init.cmake b/Modules/ThirdParty/GSL/otb-module-init.cmake index 7dfbf6a931..98e49011b8 100644 --- a/Modules/ThirdParty/GSL/otb-module-init.cmake +++ b/Modules/ThirdParty/GSL/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GSL/otb-module.cmake b/Modules/ThirdParty/GSL/otb-module.cmake index ad7ff50f0b..2c710c81e4 100644 --- a/Modules/ThirdParty/GSL/otb-module.cmake +++ b/Modules/ThirdParty/GSL/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GeoTIFF/CMakeLists.txt b/Modules/ThirdParty/GeoTIFF/CMakeLists.txt index edee04d56b..081d932868 100644 --- a/Modules/ThirdParty/GeoTIFF/CMakeLists.txt +++ b/Modules/ThirdParty/GeoTIFF/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GeoTIFF/otb-module-init.cmake b/Modules/ThirdParty/GeoTIFF/otb-module-init.cmake index 3c4b7edbd2..a77887a121 100644 --- a/Modules/ThirdParty/GeoTIFF/otb-module-init.cmake +++ b/Modules/ThirdParty/GeoTIFF/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/GeoTIFF/otb-module.cmake b/Modules/ThirdParty/GeoTIFF/otb-module.cmake index 60b514f709..23dcced8c2 100644 --- a/Modules/ThirdParty/GeoTIFF/otb-module.cmake +++ b/Modules/ThirdParty/GeoTIFF/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glew/CMakeLists.txt b/Modules/ThirdParty/Glew/CMakeLists.txt index c219e3121e..a5ef1dc6d7 100644 --- a/Modules/ThirdParty/Glew/CMakeLists.txt +++ b/Modules/ThirdParty/Glew/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glew/otb-module-init.cmake b/Modules/ThirdParty/Glew/otb-module-init.cmake index 0116eaa359..57c1d5e7f4 100644 --- a/Modules/ThirdParty/Glew/otb-module-init.cmake +++ b/Modules/ThirdParty/Glew/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glew/otb-module.cmake b/Modules/ThirdParty/Glew/otb-module.cmake index 8245102f54..81367e7240 100644 --- a/Modules/ThirdParty/Glew/otb-module.cmake +++ b/Modules/ThirdParty/Glew/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glut/CMakeLists.txt b/Modules/ThirdParty/Glut/CMakeLists.txt index a3c1ffc92b..67163fa121 100644 --- a/Modules/ThirdParty/Glut/CMakeLists.txt +++ b/Modules/ThirdParty/Glut/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glut/otb-module-init.cmake b/Modules/ThirdParty/Glut/otb-module-init.cmake index b04d3cdbc0..438f17c6dc 100644 --- a/Modules/ThirdParty/Glut/otb-module-init.cmake +++ b/Modules/ThirdParty/Glut/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Glut/otb-module.cmake b/Modules/ThirdParty/Glut/otb-module.cmake index dd1293ec22..70ba6d97a8 100644 --- a/Modules/ThirdParty/Glut/otb-module.cmake +++ b/Modules/ThirdParty/Glut/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/ITK/CMakeLists.txt b/Modules/ThirdParty/ITK/CMakeLists.txt index b705116584..8610d03b0c 100644 --- a/Modules/ThirdParty/ITK/CMakeLists.txt +++ b/Modules/ThirdParty/ITK/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/ITK/otb-module-init.cmake b/Modules/ThirdParty/ITK/otb-module-init.cmake index d5d354ec56..25ee07ee5e 100644 --- a/Modules/ThirdParty/ITK/otb-module-init.cmake +++ b/Modules/ThirdParty/ITK/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/ITK/otb-module.cmake b/Modules/ThirdParty/ITK/otb-module.cmake index 4c1056c4ef..6acfa67c5c 100644 --- a/Modules/ThirdParty/ITK/otb-module.cmake +++ b/Modules/ThirdParty/ITK/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/LibSVM/CMakeLists.txt b/Modules/ThirdParty/LibSVM/CMakeLists.txt index 66578ad827..5437692bde 100644 --- a/Modules/ThirdParty/LibSVM/CMakeLists.txt +++ b/Modules/ThirdParty/LibSVM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/LibSVM/otb-module-init.cmake b/Modules/ThirdParty/LibSVM/otb-module-init.cmake index 6919f585db..225d2f5dac 100644 --- a/Modules/ThirdParty/LibSVM/otb-module-init.cmake +++ b/Modules/ThirdParty/LibSVM/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/LibSVM/otb-module.cmake b/Modules/ThirdParty/LibSVM/otb-module.cmake index 0c89455ffe..2100c42a45 100644 --- a/Modules/ThirdParty/LibSVM/otb-module.cmake +++ b/Modules/ThirdParty/LibSVM/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MPI/CMakeLists.txt b/Modules/ThirdParty/MPI/CMakeLists.txt index cdeefcd153..2a259f14b1 100644 --- a/Modules/ThirdParty/MPI/CMakeLists.txt +++ b/Modules/ThirdParty/MPI/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MPI/otb-module-init.cmake b/Modules/ThirdParty/MPI/otb-module-init.cmake index 39665d6ad4..7d847f78df 100644 --- a/Modules/ThirdParty/MPI/otb-module-init.cmake +++ b/Modules/ThirdParty/MPI/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MPI/otb-module.cmake b/Modules/ThirdParty/MPI/otb-module.cmake index cfacc2db84..de1917217f 100644 --- a/Modules/ThirdParty/MPI/otb-module.cmake +++ b/Modules/ThirdParty/MPI/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParser/CMake/otbTestMuParserHasCxxLogicalOperators.cxx b/Modules/ThirdParty/MuParser/CMake/otbTestMuParserHasCxxLogicalOperators.cxx index afd42827eb..9c93eadb72 100644 --- a/Modules/ThirdParty/MuParser/CMake/otbTestMuParserHasCxxLogicalOperators.cxx +++ b/Modules/ThirdParty/MuParser/CMake/otbTestMuParserHasCxxLogicalOperators.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/MuParser/CMakeLists.txt b/Modules/ThirdParty/MuParser/CMakeLists.txt index 05c8ed6718..9fb0192029 100644 --- a/Modules/ThirdParty/MuParser/CMakeLists.txt +++ b/Modules/ThirdParty/MuParser/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParser/otb-module-init.cmake b/Modules/ThirdParty/MuParser/otb-module-init.cmake index 40cce4d700..6221004ceb 100644 --- a/Modules/ThirdParty/MuParser/otb-module-init.cmake +++ b/Modules/ThirdParty/MuParser/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParser/otb-module.cmake b/Modules/ThirdParty/MuParser/otb-module.cmake index 8cc5328fd7..28db203638 100644 --- a/Modules/ThirdParty/MuParser/otb-module.cmake +++ b/Modules/ThirdParty/MuParser/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParser/src/otb_muparser.h.in b/Modules/ThirdParty/MuParser/src/otb_muparser.h.in index 069d4b7d37..3067452382 100644 --- a/Modules/ThirdParty/MuParser/src/otb_muparser.h.in +++ b/Modules/ThirdParty/MuParser/src/otb_muparser.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/MuParserX/CMakeLists.txt b/Modules/ThirdParty/MuParserX/CMakeLists.txt index af244fecae..0e5fa617e9 100644 --- a/Modules/ThirdParty/MuParserX/CMakeLists.txt +++ b/Modules/ThirdParty/MuParserX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParserX/otb-module-init.cmake b/Modules/ThirdParty/MuParserX/otb-module-init.cmake index 0f5890d63e..6c106da76f 100644 --- a/Modules/ThirdParty/MuParserX/otb-module-init.cmake +++ b/Modules/ThirdParty/MuParserX/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/MuParserX/otb-module.cmake b/Modules/ThirdParty/MuParserX/otb-module.cmake index fe8ef15851..b6f36ea9b8 100644 --- a/Modules/ThirdParty/MuParserX/otb-module.cmake +++ b/Modules/ThirdParty/MuParserX/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenCV/CMakeLists.txt b/Modules/ThirdParty/OpenCV/CMakeLists.txt index 514f0f45b4..36a2b4ca06 100644 --- a/Modules/ThirdParty/OpenCV/CMakeLists.txt +++ b/Modules/ThirdParty/OpenCV/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenCV/otb-module-init.cmake b/Modules/ThirdParty/OpenCV/otb-module-init.cmake index 78e498b379..df7c0f2a13 100644 --- a/Modules/ThirdParty/OpenCV/otb-module-init.cmake +++ b/Modules/ThirdParty/OpenCV/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenCV/otb-module.cmake b/Modules/ThirdParty/OpenCV/otb-module.cmake index 59aa39a896..4afd05e34c 100644 --- a/Modules/ThirdParty/OpenCV/otb-module.cmake +++ b/Modules/ThirdParty/OpenCV/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenCV/src/otb_opencv_api.h.in b/Modules/ThirdParty/OpenCV/src/otb_opencv_api.h.in index c49d4f8dea..d0f8338ea1 100644 --- a/Modules/ThirdParty/OpenCV/src/otb_opencv_api.h.in +++ b/Modules/ThirdParty/OpenCV/src/otb_opencv_api.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/OpenGL/CMakeLists.txt b/Modules/ThirdParty/OpenGL/CMakeLists.txt index 8deb75335b..024934ad14 100644 --- a/Modules/ThirdParty/OpenGL/CMakeLists.txt +++ b/Modules/ThirdParty/OpenGL/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenGL/otb-module-init.cmake b/Modules/ThirdParty/OpenGL/otb-module-init.cmake index 765132446d..30ce2fc89e 100644 --- a/Modules/ThirdParty/OpenGL/otb-module-init.cmake +++ b/Modules/ThirdParty/OpenGL/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenGL/otb-module.cmake b/Modules/ThirdParty/OpenGL/otb-module.cmake index 918f21a76d..c82063764c 100644 --- a/Modules/ThirdParty/OpenGL/otb-module.cmake +++ b/Modules/ThirdParty/OpenGL/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenThreads/CMakeLists.txt b/Modules/ThirdParty/OpenThreads/CMakeLists.txt index aa3c22775a..fcc38508a6 100644 --- a/Modules/ThirdParty/OpenThreads/CMakeLists.txt +++ b/Modules/ThirdParty/OpenThreads/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenThreads/otb-module-init.cmake b/Modules/ThirdParty/OpenThreads/otb-module-init.cmake index 7fa198d766..28bf9f40d4 100644 --- a/Modules/ThirdParty/OpenThreads/otb-module-init.cmake +++ b/Modules/ThirdParty/OpenThreads/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OpenThreads/otb-module.cmake b/Modules/ThirdParty/OpenThreads/otb-module.cmake index b3c9b8d61e..a0e8f405e1 100644 --- a/Modules/ThirdParty/OpenThreads/otb-module.cmake +++ b/Modules/ThirdParty/OpenThreads/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Ossim/CMakeLists.txt b/Modules/ThirdParty/Ossim/CMakeLists.txt index cba2eb02da..f2b67d97fd 100644 --- a/Modules/ThirdParty/Ossim/CMakeLists.txt +++ b/Modules/ThirdParty/Ossim/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Ossim/include/otb_ossim.h b/Modules/ThirdParty/Ossim/include/otb_ossim.h index 1a898b9fe3..e61ef04186 100644 --- a/Modules/ThirdParty/Ossim/include/otb_ossim.h +++ b/Modules/ThirdParty/Ossim/include/otb_ossim.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/Ossim/otb-module-init.cmake b/Modules/ThirdParty/Ossim/otb-module-init.cmake index 5b400332d8..7fc99c9f48 100644 --- a/Modules/ThirdParty/Ossim/otb-module-init.cmake +++ b/Modules/ThirdParty/Ossim/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Ossim/otb-module.cmake b/Modules/ThirdParty/Ossim/otb-module.cmake index ebaa7d2793..640c009aee 100644 --- a/Modules/ThirdParty/Ossim/otb-module.cmake +++ b/Modules/ThirdParty/Ossim/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OssimPlugins/CMakeLists.txt b/Modules/ThirdParty/OssimPlugins/CMakeLists.txt index 52e9db1cd4..191d7972ac 100644 --- a/Modules/ThirdParty/OssimPlugins/CMakeLists.txt +++ b/Modules/ThirdParty/OssimPlugins/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OssimPlugins/otb-module.cmake b/Modules/ThirdParty/OssimPlugins/otb-module.cmake index eb59f6317c..6ebe414ee8 100644 --- a/Modules/ThirdParty/OssimPlugins/otb-module.cmake +++ b/Modules/ThirdParty/OssimPlugins/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OssimPlugins/src/CMakeLists.txt b/Modules/ThirdParty/OssimPlugins/src/CMakeLists.txt index 7e89a23639..bb8f26cfa1 100644 --- a/Modules/ThirdParty/OssimPlugins/src/CMakeLists.txt +++ b/Modules/ThirdParty/OssimPlugins/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/OssimPlugins/test/CMakeLists.txt b/Modules/ThirdParty/OssimPlugins/test/CMakeLists.txt index 356b72d3d9..e3426784b2 100644 --- a/Modules/ThirdParty/OssimPlugins/test/CMakeLists.txt +++ b/Modules/ThirdParty/OssimPlugins/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qt/CMakeLists.txt b/Modules/ThirdParty/Qt/CMakeLists.txt index 8ac1d4b462..59b93110f3 100644 --- a/Modules/ThirdParty/Qt/CMakeLists.txt +++ b/Modules/ThirdParty/Qt/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qt/otb-module-init.cmake b/Modules/ThirdParty/Qt/otb-module-init.cmake index 18655b4944..b7dc7b5ace 100644 --- a/Modules/ThirdParty/Qt/otb-module-init.cmake +++ b/Modules/ThirdParty/Qt/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qt/otb-module.cmake b/Modules/ThirdParty/Qt/otb-module.cmake index 12426ee991..881e5df433 100644 --- a/Modules/ThirdParty/Qt/otb-module.cmake +++ b/Modules/ThirdParty/Qt/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qwt/CMakeLists.txt b/Modules/ThirdParty/Qwt/CMakeLists.txt index b9ddafcec5..3477fb488c 100644 --- a/Modules/ThirdParty/Qwt/CMakeLists.txt +++ b/Modules/ThirdParty/Qwt/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qwt/otb-module-init.cmake b/Modules/ThirdParty/Qwt/otb-module-init.cmake index 922daff889..06f86d3870 100644 --- a/Modules/ThirdParty/Qwt/otb-module-init.cmake +++ b/Modules/ThirdParty/Qwt/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Qwt/otb-module.cmake b/Modules/ThirdParty/Qwt/otb-module.cmake index 0ee8486ddc..ad818b2352 100644 --- a/Modules/ThirdParty/Qwt/otb-module.cmake +++ b/Modules/ThirdParty/Qwt/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SPTW/CMakeLists.txt b/Modules/ThirdParty/SPTW/CMakeLists.txt index 52ed49d1e6..af9a1de5db 100644 --- a/Modules/ThirdParty/SPTW/CMakeLists.txt +++ b/Modules/ThirdParty/SPTW/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SPTW/otb-module.cmake b/Modules/ThirdParty/SPTW/otb-module.cmake index 5dd69b8751..d160708b6a 100644 --- a/Modules/ThirdParty/SPTW/otb-module.cmake +++ b/Modules/ThirdParty/SPTW/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SPTW/src/CMakeLists.txt b/Modules/ThirdParty/SPTW/src/CMakeLists.txt index 8e41fd9ca7..4b9822efd7 100644 --- a/Modules/ThirdParty/SPTW/src/CMakeLists.txt +++ b/Modules/ThirdParty/SPTW/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Shark/CMakeLists.txt b/Modules/ThirdParty/Shark/CMakeLists.txt index 17f7a0eb48..ffe2ce7a61 100644 --- a/Modules/ThirdParty/Shark/CMakeLists.txt +++ b/Modules/ThirdParty/Shark/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Shark/include/otbSharkUtils.h b/Modules/ThirdParty/Shark/include/otbSharkUtils.h index d66be1b921..155179641c 100644 --- a/Modules/ThirdParty/Shark/include/otbSharkUtils.h +++ b/Modules/ThirdParty/Shark/include/otbSharkUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/Shark/otb-module-init.cmake b/Modules/ThirdParty/Shark/otb-module-init.cmake index deaf3d8fcc..862dbd18bb 100644 --- a/Modules/ThirdParty/Shark/otb-module-init.cmake +++ b/Modules/ThirdParty/Shark/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Shark/otb-module.cmake b/Modules/ThirdParty/Shark/otb-module.cmake index 3ede3ea9b7..3989843e70 100644 --- a/Modules/ThirdParty/Shark/otb-module.cmake +++ b/Modules/ThirdParty/Shark/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/Shark/src/otb_shark.h.in b/Modules/ThirdParty/Shark/src/otb_shark.h.in index 7559989d85..ec117b639c 100644 --- a/Modules/ThirdParty/Shark/src/otb_shark.h.in +++ b/Modules/ThirdParty/Shark/src/otb_shark.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/SiftFast/CMakeLists.txt b/Modules/ThirdParty/SiftFast/CMakeLists.txt index 3c843663c9..9d3a5cbc5c 100644 --- a/Modules/ThirdParty/SiftFast/CMakeLists.txt +++ b/Modules/ThirdParty/SiftFast/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SiftFast/otb-module.cmake b/Modules/ThirdParty/SiftFast/otb-module.cmake index 7e29c24301..21021118aa 100644 --- a/Modules/ThirdParty/SiftFast/otb-module.cmake +++ b/Modules/ThirdParty/SiftFast/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SiftFast/src/CMakeLists.txt b/Modules/ThirdParty/SiftFast/src/CMakeLists.txt index 0718ae262b..1f21e99a3f 100644 --- a/Modules/ThirdParty/SiftFast/src/CMakeLists.txt +++ b/Modules/ThirdParty/SiftFast/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SiftFast/src/otb_siftfast.h b/Modules/ThirdParty/SiftFast/src/otb_siftfast.h index a2ca80530f..c5f2b59093 100644 --- a/Modules/ThirdParty/SiftFast/src/otb_siftfast.h +++ b/Modules/ThirdParty/SiftFast/src/otb_siftfast.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/SiftFast/src/otbsiftfast/FindOctave.cmake b/Modules/ThirdParty/SiftFast/src/otbsiftfast/FindOctave.cmake index 5298601f7c..57dac25952 100644 --- a/Modules/ThirdParty/SiftFast/src/otbsiftfast/FindOctave.cmake +++ b/Modules/ThirdParty/SiftFast/src/otbsiftfast/FindOctave.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/SiftFast/src/otbsiftfast/cmake_uninstall.cmake.in b/Modules/ThirdParty/SiftFast/src/otbsiftfast/cmake_uninstall.cmake.in index f4a2ebdfe3..cbbef09178 100644 --- a/Modules/ThirdParty/SiftFast/src/otbsiftfast/cmake_uninstall.cmake.in +++ b/Modules/ThirdParty/SiftFast/src/otbsiftfast/cmake_uninstall.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TIFF/CMakeLists.txt b/Modules/ThirdParty/TIFF/CMakeLists.txt index f551d80c3e..87285eb43a 100644 --- a/Modules/ThirdParty/TIFF/CMakeLists.txt +++ b/Modules/ThirdParty/TIFF/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TIFF/otb-module-init.cmake b/Modules/ThirdParty/TIFF/otb-module-init.cmake index 92f6e6f80d..682332b1c0 100644 --- a/Modules/ThirdParty/TIFF/otb-module-init.cmake +++ b/Modules/ThirdParty/TIFF/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TIFF/otb-module.cmake b/Modules/ThirdParty/TIFF/otb-module.cmake index 790c08737e..84263fe886 100644 --- a/Modules/ThirdParty/TIFF/otb-module.cmake +++ b/Modules/ThirdParty/TIFF/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TinyXML/CMake/otbTestTinyXMLUseSTL.cxx b/Modules/ThirdParty/TinyXML/CMake/otbTestTinyXMLUseSTL.cxx index e8b6687c0c..f911b1c049 100644 --- a/Modules/ThirdParty/TinyXML/CMake/otbTestTinyXMLUseSTL.cxx +++ b/Modules/ThirdParty/TinyXML/CMake/otbTestTinyXMLUseSTL.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/TinyXML/CMakeLists.txt b/Modules/ThirdParty/TinyXML/CMakeLists.txt index 3a85fe9c40..c54b484227 100644 --- a/Modules/ThirdParty/TinyXML/CMakeLists.txt +++ b/Modules/ThirdParty/TinyXML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TinyXML/otb-module-init.cmake b/Modules/ThirdParty/TinyXML/otb-module-init.cmake index 799f7121ef..1ed71057c6 100644 --- a/Modules/ThirdParty/TinyXML/otb-module-init.cmake +++ b/Modules/ThirdParty/TinyXML/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TinyXML/otb-module.cmake b/Modules/ThirdParty/TinyXML/otb-module.cmake index ece94d14ac..0f43a1057e 100644 --- a/Modules/ThirdParty/TinyXML/otb-module.cmake +++ b/Modules/ThirdParty/TinyXML/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/TinyXML/src/otb_tinyxml.h.in b/Modules/ThirdParty/TinyXML/src/otb_tinyxml.h.in index 4fdb682e97..88c97ffaa8 100644 --- a/Modules/ThirdParty/TinyXML/src/otb_tinyxml.h.in +++ b/Modules/ThirdParty/TinyXML/src/otb_tinyxml.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/ThirdParty/libkml/CMakeLists.txt b/Modules/ThirdParty/libkml/CMakeLists.txt index 3f59241e21..923a2bacc9 100644 --- a/Modules/ThirdParty/libkml/CMakeLists.txt +++ b/Modules/ThirdParty/libkml/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/libkml/otb-module-init.cmake b/Modules/ThirdParty/libkml/otb-module-init.cmake index bf33ea2d36..0ccddf43df 100644 --- a/Modules/ThirdParty/libkml/otb-module-init.cmake +++ b/Modules/ThirdParty/libkml/otb-module-init.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/ThirdParty/libkml/otb-module.cmake b/Modules/ThirdParty/libkml/otb-module.cmake index b6f37e7aa8..54626a724f 100644 --- a/Modules/ThirdParty/libkml/otb-module.cmake +++ b/Modules/ThirdParty/libkml/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Ice/CMakeLists.txt b/Modules/Visualization/Ice/CMakeLists.txt index 36bd57f3c5..b9efdb7676 100644 --- a/Modules/Visualization/Ice/CMakeLists.txt +++ b/Modules/Visualization/Ice/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Ice/include/otbGeoInterface.h b/Modules/Visualization/Ice/include/otbGeoInterface.h index cc6e2ddb70..f59e8ef6ce 100644 --- a/Modules/Visualization/Ice/include/otbGeoInterface.h +++ b/Modules/Visualization/Ice/include/otbGeoInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlActor.h b/Modules/Visualization/Ice/include/otbGlActor.h index 55aa76084f..df564df073 100644 --- a/Modules/Visualization/Ice/include/otbGlActor.h +++ b/Modules/Visualization/Ice/include/otbGlActor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlBufferObject.h b/Modules/Visualization/Ice/include/otbGlBufferObject.h index 74cf7ca310..300543cae8 100644 --- a/Modules/Visualization/Ice/include/otbGlBufferObject.h +++ b/Modules/Visualization/Ice/include/otbGlBufferObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlError.h b/Modules/Visualization/Ice/include/otbGlError.h index abc6c8cc81..f914501276 100644 --- a/Modules/Visualization/Ice/include/otbGlError.h +++ b/Modules/Visualization/Ice/include/otbGlError.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlHandle.h b/Modules/Visualization/Ice/include/otbGlHandle.h index 94f5c5be7c..de86adc072 100644 --- a/Modules/Visualization/Ice/include/otbGlHandle.h +++ b/Modules/Visualization/Ice/include/otbGlHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlImageActor.h b/Modules/Visualization/Ice/include/otbGlImageActor.h index 40b9c6d839..3264577675 100644 --- a/Modules/Visualization/Ice/include/otbGlImageActor.h +++ b/Modules/Visualization/Ice/include/otbGlImageActor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlMesh.h b/Modules/Visualization/Ice/include/otbGlMesh.h index 3d64d73368..b86f4bd753 100644 --- a/Modules/Visualization/Ice/include/otbGlMesh.h +++ b/Modules/Visualization/Ice/include/otbGlMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlROIActor.h b/Modules/Visualization/Ice/include/otbGlROIActor.h index 691792804a..d7ba39b7c5 100644 --- a/Modules/Visualization/Ice/include/otbGlROIActor.h +++ b/Modules/Visualization/Ice/include/otbGlROIActor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlTypeTraits.h b/Modules/Visualization/Ice/include/otbGlTypeTraits.h index c9f9846cc4..0a2d208691 100644 --- a/Modules/Visualization/Ice/include/otbGlTypeTraits.h +++ b/Modules/Visualization/Ice/include/otbGlTypeTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlVectorActor.h b/Modules/Visualization/Ice/include/otbGlVectorActor.h index 6fdbd3bd08..bf9e8daea4 100644 --- a/Modules/Visualization/Ice/include/otbGlVectorActor.h +++ b/Modules/Visualization/Ice/include/otbGlVectorActor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlVersionChecker.h b/Modules/Visualization/Ice/include/otbGlVersionChecker.h index d78e7f4010..dab6580f3b 100644 --- a/Modules/Visualization/Ice/include/otbGlVersionChecker.h +++ b/Modules/Visualization/Ice/include/otbGlVersionChecker.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlVertexArrayObject.h b/Modules/Visualization/Ice/include/otbGlVertexArrayObject.h index 9eb49be8d5..8ef627a23e 100644 --- a/Modules/Visualization/Ice/include/otbGlVertexArrayObject.h +++ b/Modules/Visualization/Ice/include/otbGlVertexArrayObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbGlView.h b/Modules/Visualization/Ice/include/otbGlView.h index 15a85e31dd..ff8c49a202 100644 --- a/Modules/Visualization/Ice/include/otbGlView.h +++ b/Modules/Visualization/Ice/include/otbGlView.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbImageSettings.h b/Modules/Visualization/Ice/include/otbImageSettings.h index 6b6563d134..41b326f1df 100644 --- a/Modules/Visualization/Ice/include/otbImageSettings.h +++ b/Modules/Visualization/Ice/include/otbImageSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbMinimalShader.h b/Modules/Visualization/Ice/include/otbMinimalShader.h index 536b9779de..b146b478c9 100644 --- a/Modules/Visualization/Ice/include/otbMinimalShader.h +++ b/Modules/Visualization/Ice/include/otbMinimalShader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbNonOptGlImageActor.h b/Modules/Visualization/Ice/include/otbNonOptGlImageActor.h index caa9863610..d58d0954dd 100644 --- a/Modules/Visualization/Ice/include/otbNonOptGlImageActor.h +++ b/Modules/Visualization/Ice/include/otbNonOptGlImageActor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbShader.h b/Modules/Visualization/Ice/include/otbShader.h index 68e7baa2bf..125868f4b0 100644 --- a/Modules/Visualization/Ice/include/otbShader.h +++ b/Modules/Visualization/Ice/include/otbShader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbShaderRegistry.h b/Modules/Visualization/Ice/include/otbShaderRegistry.h index 9d0b82337f..b3d8e7ef4a 100644 --- a/Modules/Visualization/Ice/include/otbShaderRegistry.h +++ b/Modules/Visualization/Ice/include/otbShaderRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbStandardShader.h b/Modules/Visualization/Ice/include/otbStandardShader.h index 790ea965bd..fffc11fe9f 100644 --- a/Modules/Visualization/Ice/include/otbStandardShader.h +++ b/Modules/Visualization/Ice/include/otbStandardShader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/include/otbViewSettings.h b/Modules/Visualization/Ice/include/otbViewSettings.h index 28d3803a16..d65db19077 100644 --- a/Modules/Visualization/Ice/include/otbViewSettings.h +++ b/Modules/Visualization/Ice/include/otbViewSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/otb-module.cmake b/Modules/Visualization/Ice/otb-module.cmake index 4b7e7febb2..75849dd56d 100644 --- a/Modules/Visualization/Ice/otb-module.cmake +++ b/Modules/Visualization/Ice/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Ice/src/CMakeLists.txt b/Modules/Visualization/Ice/src/CMakeLists.txt index da8c78f3f3..f777679c41 100644 --- a/Modules/Visualization/Ice/src/CMakeLists.txt +++ b/Modules/Visualization/Ice/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Ice/src/otbGeoInterface.cxx b/Modules/Visualization/Ice/src/otbGeoInterface.cxx index 1e40cf5f00..603d71b481 100644 --- a/Modules/Visualization/Ice/src/otbGeoInterface.cxx +++ b/Modules/Visualization/Ice/src/otbGeoInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlActor.cxx b/Modules/Visualization/Ice/src/otbGlActor.cxx index f7ee8c419d..15b07be04b 100644 --- a/Modules/Visualization/Ice/src/otbGlActor.cxx +++ b/Modules/Visualization/Ice/src/otbGlActor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlImageActor.cxx b/Modules/Visualization/Ice/src/otbGlImageActor.cxx index 179343db26..9ebcb2a5fd 100644 --- a/Modules/Visualization/Ice/src/otbGlImageActor.cxx +++ b/Modules/Visualization/Ice/src/otbGlImageActor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlMesh.cxx b/Modules/Visualization/Ice/src/otbGlMesh.cxx index 22ce6bf0bc..bf41ef5dcf 100644 --- a/Modules/Visualization/Ice/src/otbGlMesh.cxx +++ b/Modules/Visualization/Ice/src/otbGlMesh.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlROIActor.cxx b/Modules/Visualization/Ice/src/otbGlROIActor.cxx index fdb9fea053..182af261eb 100644 --- a/Modules/Visualization/Ice/src/otbGlROIActor.cxx +++ b/Modules/Visualization/Ice/src/otbGlROIActor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlVectorActor.cxx b/Modules/Visualization/Ice/src/otbGlVectorActor.cxx index 58615f7820..f13f93cbcc 100644 --- a/Modules/Visualization/Ice/src/otbGlVectorActor.cxx +++ b/Modules/Visualization/Ice/src/otbGlVectorActor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlVersionChecker.cxx b/Modules/Visualization/Ice/src/otbGlVersionChecker.cxx index a669553555..3322291a7e 100644 --- a/Modules/Visualization/Ice/src/otbGlVersionChecker.cxx +++ b/Modules/Visualization/Ice/src/otbGlVersionChecker.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlVertexArrayObject.cxx b/Modules/Visualization/Ice/src/otbGlVertexArrayObject.cxx index 230dad2eab..30641eccbf 100644 --- a/Modules/Visualization/Ice/src/otbGlVertexArrayObject.cxx +++ b/Modules/Visualization/Ice/src/otbGlVertexArrayObject.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbGlView.cxx b/Modules/Visualization/Ice/src/otbGlView.cxx index d5a020d704..3c8979e453 100644 --- a/Modules/Visualization/Ice/src/otbGlView.cxx +++ b/Modules/Visualization/Ice/src/otbGlView.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbImageSettings.cxx b/Modules/Visualization/Ice/src/otbImageSettings.cxx index 2cd090f2e4..a2acf887c3 100644 --- a/Modules/Visualization/Ice/src/otbImageSettings.cxx +++ b/Modules/Visualization/Ice/src/otbImageSettings.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbMinimalShader.cxx b/Modules/Visualization/Ice/src/otbMinimalShader.cxx index b09a8d9a63..451b614d24 100644 --- a/Modules/Visualization/Ice/src/otbMinimalShader.cxx +++ b/Modules/Visualization/Ice/src/otbMinimalShader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbNonOptGlImageActor.cxx b/Modules/Visualization/Ice/src/otbNonOptGlImageActor.cxx index 2741d75bd4..28cc02754d 100644 --- a/Modules/Visualization/Ice/src/otbNonOptGlImageActor.cxx +++ b/Modules/Visualization/Ice/src/otbNonOptGlImageActor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbShader.cxx b/Modules/Visualization/Ice/src/otbShader.cxx index 7f4492a1f8..6431a7c7fe 100644 --- a/Modules/Visualization/Ice/src/otbShader.cxx +++ b/Modules/Visualization/Ice/src/otbShader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbShaderRegistry.cxx b/Modules/Visualization/Ice/src/otbShaderRegistry.cxx index 0072fecbfc..06fea2d975 100644 --- a/Modules/Visualization/Ice/src/otbShaderRegistry.cxx +++ b/Modules/Visualization/Ice/src/otbShaderRegistry.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbStandardShader.cxx b/Modules/Visualization/Ice/src/otbStandardShader.cxx index 920e2b320d..8eace2f931 100644 --- a/Modules/Visualization/Ice/src/otbStandardShader.cxx +++ b/Modules/Visualization/Ice/src/otbStandardShader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Ice/src/otbViewSettings.cxx b/Modules/Visualization/Ice/src/otbViewSettings.cxx index 3bd7e6fb0e..520ef1eeb1 100644 --- a/Modules/Visualization/Ice/src/otbViewSettings.cxx +++ b/Modules/Visualization/Ice/src/otbViewSettings.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/IceViewer/CMakeLists.txt b/Modules/Visualization/IceViewer/CMakeLists.txt index 77560d4c12..f3651c7e76 100644 --- a/Modules/Visualization/IceViewer/CMakeLists.txt +++ b/Modules/Visualization/IceViewer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/IceViewer/include/otbIceViewer.h b/Modules/Visualization/IceViewer/include/otbIceViewer.h index 79c0d41d0e..89f07243a9 100644 --- a/Modules/Visualization/IceViewer/include/otbIceViewer.h +++ b/Modules/Visualization/IceViewer/include/otbIceViewer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/IceViewer/otb-module.cmake b/Modules/Visualization/IceViewer/otb-module.cmake index 05e4f0bde6..eda8bd0de2 100644 --- a/Modules/Visualization/IceViewer/otb-module.cmake +++ b/Modules/Visualization/IceViewer/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/IceViewer/src/CMakeLists.txt b/Modules/Visualization/IceViewer/src/CMakeLists.txt index 5793bb3154..481cffdbf5 100644 --- a/Modules/Visualization/IceViewer/src/CMakeLists.txt +++ b/Modules/Visualization/IceViewer/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/IceViewer/src/otbIce.cxx b/Modules/Visualization/IceViewer/src/otbIce.cxx index 728fcb2656..4afffe3abd 100644 --- a/Modules/Visualization/IceViewer/src/otbIce.cxx +++ b/Modules/Visualization/IceViewer/src/otbIce.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/IceViewer/src/otbIceViewer.cxx b/Modules/Visualization/IceViewer/src/otbIceViewer.cxx index a1a3321253..8c0e157a2a 100644 --- a/Modules/Visualization/IceViewer/src/otbIceViewer.cxx +++ b/Modules/Visualization/IceViewer/src/otbIceViewer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Mapla/CMakeLists.txt b/Modules/Visualization/Mapla/CMakeLists.txt index d1f60a7bf1..00d3071e79 100644 --- a/Modules/Visualization/Mapla/CMakeLists.txt +++ b/Modules/Visualization/Mapla/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Mapla/include/mvdMaplaApplication.h b/Modules/Visualization/Mapla/include/mvdMaplaApplication.h index 7095524cae..6b53eb9f20 100644 --- a/Modules/Visualization/Mapla/include/mvdMaplaApplication.h +++ b/Modules/Visualization/Mapla/include/mvdMaplaApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Mapla/include/mvdMaplaMainWindow.h b/Modules/Visualization/Mapla/include/mvdMaplaMainWindow.h index 5abbe134ef..e4f44e65fd 100644 --- a/Modules/Visualization/Mapla/include/mvdMaplaMainWindow.h +++ b/Modules/Visualization/Mapla/include/mvdMaplaMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Mapla/otb-module.cmake b/Modules/Visualization/Mapla/otb-module.cmake index 510d1f6b6c..08621d265b 100644 --- a/Modules/Visualization/Mapla/otb-module.cmake +++ b/Modules/Visualization/Mapla/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Mapla/src/CMakeLists.txt b/Modules/Visualization/Mapla/src/CMakeLists.txt index 35308a9001..44a3d9a77e 100644 --- a/Modules/Visualization/Mapla/src/CMakeLists.txt +++ b/Modules/Visualization/Mapla/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Mapla/src/main.cxx b/Modules/Visualization/Mapla/src/main.cxx index 932bf15fb4..116c77a121 100644 --- a/Modules/Visualization/Mapla/src/main.cxx +++ b/Modules/Visualization/Mapla/src/main.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Mapla/src/mvdMaplaApplication.cxx b/Modules/Visualization/Mapla/src/mvdMaplaApplication.cxx index e9ac334fc0..1a094aa531 100644 --- a/Modules/Visualization/Mapla/src/mvdMaplaApplication.cxx +++ b/Modules/Visualization/Mapla/src/mvdMaplaApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Mapla/src/mvdMaplaMainWindow.cxx b/Modules/Visualization/Mapla/src/mvdMaplaMainWindow.cxx index ace05cf071..78a01f0ad1 100644 --- a/Modules/Visualization/Mapla/src/mvdMaplaMainWindow.cxx +++ b/Modules/Visualization/Mapla/src/mvdMaplaMainWindow.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/CMakeLists.txt b/Modules/Visualization/Monteverdi/CMakeLists.txt index cd4063b827..f2fd0e4e0d 100644 --- a/Modules/Visualization/Monteverdi/CMakeLists.txt +++ b/Modules/Visualization/Monteverdi/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Monteverdi/include/mvdApplication.h b/Modules/Visualization/Monteverdi/include/mvdApplication.h index 5d5ac2bb45..3d8df9394f 100644 --- a/Modules/Visualization/Monteverdi/include/mvdApplication.h +++ b/Modules/Visualization/Monteverdi/include/mvdApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/include/mvdMainWindow.h b/Modules/Visualization/Monteverdi/include/mvdMainWindow.h index a07dd808a0..0b303a416b 100644 --- a/Modules/Visualization/Monteverdi/include/mvdMainWindow.h +++ b/Modules/Visualization/Monteverdi/include/mvdMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h b/Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h index 43981cb5f9..6884ace091 100644 --- a/Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h +++ b/Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/otb-module.cmake b/Modules/Visualization/Monteverdi/otb-module.cmake index 022ea21622..594acfe4a8 100644 --- a/Modules/Visualization/Monteverdi/otb-module.cmake +++ b/Modules/Visualization/Monteverdi/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Monteverdi/src/CMakeLists.txt b/Modules/Visualization/Monteverdi/src/CMakeLists.txt index 239c81ac65..d6f55013b1 100644 --- a/Modules/Visualization/Monteverdi/src/CMakeLists.txt +++ b/Modules/Visualization/Monteverdi/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Monteverdi/src/main.cxx b/Modules/Visualization/Monteverdi/src/main.cxx index 54ace4cd35..a02dedc7af 100644 --- a/Modules/Visualization/Monteverdi/src/main.cxx +++ b/Modules/Visualization/Monteverdi/src/main.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2017 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/Visualization/Monteverdi/src/mvdApplication.cxx b/Modules/Visualization/Monteverdi/src/mvdApplication.cxx index ebc51f82dc..900ddd3d7e 100644 --- a/Modules/Visualization/Monteverdi/src/mvdApplication.cxx +++ b/Modules/Visualization/Monteverdi/src/mvdApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx b/Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx index b0ece49222..32a2cc9d02 100644 --- a/Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx +++ b/Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * Copyright (C) 2017 CS Systemes d'Information (CS SI) * * This file is part of Orfeo Toolbox diff --git a/Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx b/Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx index 334653ac6d..13d549bdb9 100644 --- a/Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx +++ b/Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/test/CMakeLists.txt b/Modules/Visualization/Monteverdi/test/CMakeLists.txt index d2efbc6c4f..11b5b0f3ef 100644 --- a/Modules/Visualization/Monteverdi/test/CMakeLists.txt +++ b/Modules/Visualization/Monteverdi/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/Monteverdi/test/mvdMonteverdiApplicationTest.cxx b/Modules/Visualization/Monteverdi/test/mvdMonteverdiApplicationTest.cxx index 7a17b449bc..a32aab7c1d 100644 --- a/Modules/Visualization/Monteverdi/test/mvdMonteverdiApplicationTest.cxx +++ b/Modules/Visualization/Monteverdi/test/mvdMonteverdiApplicationTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/Monteverdi/test/mvdMonteverdiTestDriver.cxx b/Modules/Visualization/Monteverdi/test/mvdMonteverdiTestDriver.cxx index efe82e2383..0ab1e4e99f 100644 --- a/Modules/Visualization/Monteverdi/test/mvdMonteverdiTestDriver.cxx +++ b/Modules/Visualization/Monteverdi/test/mvdMonteverdiTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/CMakeLists.txt b/Modules/Visualization/MonteverdiCore/CMakeLists.txt index fd72126d2c..bf20c4fc0b 100644 --- a/Modules/Visualization/MonteverdiCore/CMakeLists.txt +++ b/Modules/Visualization/MonteverdiCore/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAbstractImageModel.h b/Modules/Visualization/MonteverdiCore/include/mvdAbstractImageModel.h index b83409a168..5cd51a4d06 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAbstractImageModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAbstractImageModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAbstractLayerModel.h b/Modules/Visualization/MonteverdiCore/include/mvdAbstractLayerModel.h index 48f0383870..c8518f0d72 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAbstractLayerModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAbstractLayerModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h b/Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h index b4ef7be5d3..297de3199f 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h b/Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h index 873be0f342..96b1fb4a55 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h b/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h index 93fea67487..6b614da3f7 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdAlgorithm.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdApplicationsBrowser.h b/Modules/Visualization/MonteverdiCore/include/mvdApplicationsBrowser.h index a80afafdfc..6bc82969e9 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdApplicationsBrowser.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdApplicationsBrowser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdBackgroundTask.h b/Modules/Visualization/MonteverdiCore/include/mvdBackgroundTask.h index 869ea969f4..fc5a4c3128 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdBackgroundTask.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdBackgroundTask.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdCore.h b/Modules/Visualization/MonteverdiCore/include/mvdCore.h index f498be0710..6896da60ba 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdCore.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdCore.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdDataStream.h b/Modules/Visualization/MonteverdiCore/include/mvdDataStream.h index d4bf63e422..c321be446c 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdDataStream.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdDataStream.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdFilenameInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdFilenameInterface.h index 9061396cab..f4c138bdc9 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdFilenameInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdFilenameInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdHistogramModel.h b/Modules/Visualization/MonteverdiCore/include/mvdHistogramModel.h index f262ab2874..6286b28b9c 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdHistogramModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdHistogramModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdI18nCoreApplication.h b/Modules/Visualization/MonteverdiCore/include/mvdI18nCoreApplication.h index 8b3d9a98eb..b63af93c4e 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdI18nCoreApplication.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdI18nCoreApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h b/Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h index f21ea7b5d5..f0e4c57fe4 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdImagePlacenameLoader.h b/Modules/Visualization/MonteverdiCore/include/mvdImagePlacenameLoader.h index 1bc0018542..35152a8953 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdImagePlacenameLoader.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdImagePlacenameLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdImageProperties.h b/Modules/Visualization/MonteverdiCore/include/mvdImageProperties.h index 1288581eea..c0bc0b13c9 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdImageProperties.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdImageProperties.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdImageSettings.h b/Modules/Visualization/MonteverdiCore/include/mvdImageSettings.h index 95e69976e0..2235504e8b 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdImageSettings.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdImageSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdImageSettingsInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdImageSettingsInterface.h index 730bd89cdf..f2074c4226 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdImageSettingsInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdImageSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdMath.h b/Modules/Visualization/MonteverdiCore/include/mvdMath.h index b7ce1192d3..8f56cf3fe3 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdMath.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdMath.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdModifiableInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdModifiableInterface.h index 292d32d969..de522f8ca2 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdModifiableInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdModifiableInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdMyClass.h b/Modules/Visualization/MonteverdiCore/include/mvdMyClass.h index 93e99db9d1..153f80372f 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdMyClass.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdMyClass.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdOverviewBuilder.h b/Modules/Visualization/MonteverdiCore/include/mvdOverviewBuilder.h index 20e24a4ba4..ff5a773219 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdOverviewBuilder.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdOverviewBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdProcessObjectObserver.h b/Modules/Visualization/MonteverdiCore/include/mvdProcessObjectObserver.h index db3e2d89b1..9c335ceaf2 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdProcessObjectObserver.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdProcessObjectObserver.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdProgressInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdProgressInterface.h index cbeb96fb9e..79bad52da4 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdProgressInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdProgressInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdQuicklookModel.h b/Modules/Visualization/MonteverdiCore/include/mvdQuicklookModel.h index 37eee11960..33728e3f26 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdQuicklookModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdQuicklookModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdSerializableInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdSerializableInterface.h index 2c49d64a45..a6ecdd08c3 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdSerializableInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdSerializableInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdStackedLayerModel.h b/Modules/Visualization/MonteverdiCore/include/mvdStackedLayerModel.h index 6f6b7b0415..4829e77ae0 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdStackedLayerModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdStackedLayerModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdSystemError.h b/Modules/Visualization/MonteverdiCore/include/mvdSystemError.h index 84caa5a3a2..0311ecf2a1 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdSystemError.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdSystemError.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdTextStream.h b/Modules/Visualization/MonteverdiCore/include/mvdTextStream.h index 0319a86f51..7910093748 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdTextStream.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdTextStream.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdTypes.h b/Modules/Visualization/MonteverdiCore/include/mvdTypes.h index c9ba7216a8..35cd8d9a58 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdTypes.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdVectorImageModel.h b/Modules/Visualization/MonteverdiCore/include/mvdVectorImageModel.h index 3696aba6b1..40d51233f1 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdVectorImageModel.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdVectorImageModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdVectorImageSettings.h b/Modules/Visualization/MonteverdiCore/include/mvdVectorImageSettings.h index 8cd7bf5109..4e173b5d54 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdVectorImageSettings.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdVectorImageSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/include/mvdVisibleInterface.h b/Modules/Visualization/MonteverdiCore/include/mvdVisibleInterface.h index 713a409dc4..28db2ae647 100644 --- a/Modules/Visualization/MonteverdiCore/include/mvdVisibleInterface.h +++ b/Modules/Visualization/MonteverdiCore/include/mvdVisibleInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/otb-module.cmake b/Modules/Visualization/MonteverdiCore/otb-module.cmake index 841f6cea23..6b884f697d 100644 --- a/Modules/Visualization/MonteverdiCore/otb-module.cmake +++ b/Modules/Visualization/MonteverdiCore/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiCore/src/CMakeLists.txt b/Modules/Visualization/MonteverdiCore/src/CMakeLists.txt index c2d2dc0305..012d9ff7dc 100644 --- a/Modules/Visualization/MonteverdiCore/src/CMakeLists.txt +++ b/Modules/Visualization/MonteverdiCore/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiCore/src/ConfigureMonteverdi.h.in b/Modules/Visualization/MonteverdiCore/src/ConfigureMonteverdi.h.in index 944d740a13..ad7796e748 100644 --- a/Modules/Visualization/MonteverdiCore/src/ConfigureMonteverdi.h.in +++ b/Modules/Visualization/MonteverdiCore/src/ConfigureMonteverdi.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx index 9de70172eb..4adeba655e 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdAbstractLayerModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdAbstractLayerModel.cxx index fc59742d0c..d5f7031c79 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdAbstractLayerModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdAbstractLayerModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdAbstractModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdAbstractModel.cxx index 759d246ef0..0682165c8f 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdAbstractModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdAbstractModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx b/Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx index 518b1f6166..ef2121996e 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdApplicationsBrowser.cxx b/Modules/Visualization/MonteverdiCore/src/mvdApplicationsBrowser.cxx index d6a83f7467..2548010d85 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdApplicationsBrowser.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdApplicationsBrowser.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdBackgroundTask.cxx b/Modules/Visualization/MonteverdiCore/src/mvdBackgroundTask.cxx index ef51b0dc22..ecb8edaf31 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdBackgroundTask.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdBackgroundTask.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdCore.cxx b/Modules/Visualization/MonteverdiCore/src/mvdCore.cxx index c1d2b180be..1e233988a9 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdCore.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdCore.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdDataStream.cxx b/Modules/Visualization/MonteverdiCore/src/mvdDataStream.cxx index 635ec56129..87885069a1 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdDataStream.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdDataStream.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdFilenameInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdFilenameInterface.cxx index 1fe1937cb2..c5ed9200a0 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdFilenameInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdFilenameInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdHistogramModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdHistogramModel.cxx index bb029e03c8..e72f6d7b3a 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdHistogramModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdHistogramModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdI18nCoreApplication.cxx b/Modules/Visualization/MonteverdiCore/src/mvdI18nCoreApplication.cxx index 0116eef28e..e7e98bcc31 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdI18nCoreApplication.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdI18nCoreApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdImageImporter.cxx b/Modules/Visualization/MonteverdiCore/src/mvdImageImporter.cxx index 69d883a9ba..4e05035ea3 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdImageImporter.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdImageImporter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdImagePlacenameLoader.cxx b/Modules/Visualization/MonteverdiCore/src/mvdImagePlacenameLoader.cxx index 3ebe72f1b7..fde03ac32b 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdImagePlacenameLoader.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdImagePlacenameLoader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdImageProperties.cxx b/Modules/Visualization/MonteverdiCore/src/mvdImageProperties.cxx index 83496e7028..05f4a75488 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdImageProperties.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdImageProperties.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdImageSettings.cxx b/Modules/Visualization/MonteverdiCore/src/mvdImageSettings.cxx index 8110dff69e..4ef4173df8 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdImageSettings.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdImageSettings.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdImageSettingsInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdImageSettingsInterface.cxx index 6d5c3d7659..f470f37459 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdImageSettingsInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdImageSettingsInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdModifiableInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdModifiableInterface.cxx index b098fd2c9e..ce2d8e4899 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdModifiableInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdModifiableInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdMyClass.cxx b/Modules/Visualization/MonteverdiCore/src/mvdMyClass.cxx index 2b6abed21d..5dd49207dd 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdMyClass.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdMyClass.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdOverviewBuilder.cxx b/Modules/Visualization/MonteverdiCore/src/mvdOverviewBuilder.cxx index dbf0c92497..6b3a5c1672 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdOverviewBuilder.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdOverviewBuilder.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdProcessObjectObserver.cxx b/Modules/Visualization/MonteverdiCore/src/mvdProcessObjectObserver.cxx index 97dc36ae54..2bd5773102 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdProcessObjectObserver.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdProcessObjectObserver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdProgressInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdProgressInterface.cxx index c742d22e19..b7f2fa36ff 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdProgressInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdProgressInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdQuicklookModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdQuicklookModel.cxx index dc7c658273..56d52fac8f 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdQuicklookModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdQuicklookModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdSerializableInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdSerializableInterface.cxx index 1dd74167d8..d61de4fd7b 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdSerializableInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdSerializableInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdStackedLayerModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdStackedLayerModel.cxx index ef596c89a0..76e3c8ac75 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdStackedLayerModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdStackedLayerModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdTextStream.cxx b/Modules/Visualization/MonteverdiCore/src/mvdTextStream.cxx index b36596c0a3..174687543b 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdTextStream.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdTextStream.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdTypes.cxx b/Modules/Visualization/MonteverdiCore/src/mvdTypes.cxx index d4665e30d2..3d3b5df2b5 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdTypes.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdTypes.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdVectorImageModel.cxx b/Modules/Visualization/MonteverdiCore/src/mvdVectorImageModel.cxx index 88193ef627..7481f1ffb4 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdVectorImageModel.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdVectorImageModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdVectorImageSettings.cxx b/Modules/Visualization/MonteverdiCore/src/mvdVectorImageSettings.cxx index c4e0876226..622e372a0e 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdVectorImageSettings.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdVectorImageSettings.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiCore/src/mvdVisibleInterface.cxx b/Modules/Visualization/MonteverdiCore/src/mvdVisibleInterface.cxx index 27869de794..197449633f 100644 --- a/Modules/Visualization/MonteverdiCore/src/mvdVisibleInterface.cxx +++ b/Modules/Visualization/MonteverdiCore/src/mvdVisibleInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/CMakeLists.txt b/Modules/Visualization/MonteverdiGui/CMakeLists.txt index f4937d9bcb..5db4f87006 100644 --- a/Modules/Visualization/MonteverdiGui/CMakeLists.txt +++ b/Modules/Visualization/MonteverdiGui/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiGui/include/mvdAboutDialog.h b/Modules/Visualization/MonteverdiGui/include/mvdAboutDialog.h index 1856a259f7..857affc3a3 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdAboutDialog.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdAboutDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdAbstractDragAndDropEventFilter.h b/Modules/Visualization/MonteverdiGui/include/mvdAbstractDragAndDropEventFilter.h index 97af57db89..5ed3514be2 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdAbstractDragAndDropEventFilter.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdAbstractDragAndDropEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewManipulator.h b/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewManipulator.h index 19d042ed98..083114499f 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewManipulator.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewRenderer.h b/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewRenderer.h index dc368bccbd..189c247900 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewRenderer.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdAbstractImageViewRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdAbstractModelController.h b/Modules/Visualization/MonteverdiGui/include/mvdAbstractModelController.h index 994e828644..8dc198a4b8 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdAbstractModelController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdAbstractModelController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdApplicationLauncher.h b/Modules/Visualization/MonteverdiGui/include/mvdApplicationLauncher.h index 36ee6cf919..cd9864bfbc 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdApplicationLauncher.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdApplicationLauncher.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBox.h b/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBox.h index 2e0b2af71a..dd69305e7e 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBox.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBox.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBoxController.h b/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBoxController.h index e0d11f9e48..3d6eb3ef91 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBoxController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdApplicationsToolBoxController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdColorBandDynamicsWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdColorBandDynamicsWidget.h index f3ea9e24c7..9fd0064ea9 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdColorBandDynamicsWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdColorBandDynamicsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsController.h b/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsController.h index 502d916083..b64d4d8a38 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsWidget.h index 575ad1883d..d8902e26af 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdColorDynamicsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdColorSetupController.h b/Modules/Visualization/MonteverdiGui/include/mvdColorSetupController.h index 2472be9fe1..5041cb0e89 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdColorSetupController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdColorSetupController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdColorSetupWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdColorSetupWidget.h index 8b45a8e4fd..28939ab624 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdColorSetupWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdColorSetupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdDoubleValidator.h b/Modules/Visualization/MonteverdiGui/include/mvdDoubleValidator.h index 767b4aca4b..dd48bba748 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdDoubleValidator.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdDoubleValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdDropLineEdit.h b/Modules/Visualization/MonteverdiGui/include/mvdDropLineEdit.h index e005cd1de9..43758c1ebf 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdDropLineEdit.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdDropLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdFilenameDragAndDropEventFilter.h b/Modules/Visualization/MonteverdiGui/include/mvdFilenameDragAndDropEventFilter.h index 1b6408cf7e..20621f5adf 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdFilenameDragAndDropEventFilter.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdFilenameDragAndDropEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdGui.h b/Modules/Visualization/MonteverdiGui/include/mvdGui.h index 8597cd4bb1..bd598d0525 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdGui.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdGui.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdHistogramController.h b/Modules/Visualization/MonteverdiGui/include/mvdHistogramController.h index cecdbde680..f37f46f999 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdHistogramController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdHistogramController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdHistogramPlotPicker.h b/Modules/Visualization/MonteverdiGui/include/mvdHistogramPlotPicker.h index 1548d93642..6a7c5b9dc0 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdHistogramPlotPicker.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdHistogramPlotPicker.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdHistogramWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdHistogramWidget.h index 99c30c061b..783a948107 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdHistogramWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdHistogramWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdI18nApplication.h b/Modules/Visualization/MonteverdiGui/include/mvdI18nApplication.h index a2e309a1d3..f4732db6f4 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdI18nApplication.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdI18nApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdI18nMainWindow.h b/Modules/Visualization/MonteverdiGui/include/mvdI18nMainWindow.h index 592d86bc78..d92c07ced1 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdI18nMainWindow.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdI18nMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdImageViewManipulator.h b/Modules/Visualization/MonteverdiGui/include/mvdImageViewManipulator.h index aebbfa303f..e4808f7773 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdImageViewManipulator.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdImageViewManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdImageViewRenderer.h b/Modules/Visualization/MonteverdiGui/include/mvdImageViewRenderer.h index c2f61ecbef..2f248a03e3 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdImageViewRenderer.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdImageViewRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdImageViewWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdImageViewWidget.h index 035de9f2b2..2eb5a6ec65 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdImageViewWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdImageViewWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdImportImagesDialog.h b/Modules/Visualization/MonteverdiGui/include/mvdImportImagesDialog.h index 5a7941670f..2d2ed80d39 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdImportImagesDialog.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdImportImagesDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdImportSubDatasetDialog.h b/Modules/Visualization/MonteverdiGui/include/mvdImportSubDatasetDialog.h index c7bbe43049..59debc6d1d 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdImportSubDatasetDialog.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdImportSubDatasetDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdKeymapDialog.h b/Modules/Visualization/MonteverdiGui/include/mvdKeymapDialog.h index a4ff799c25..556fbcb946 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdKeymapDialog.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdKeymapDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackController.h b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackController.h index ee0d2c381d..e3162e7cc7 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackController.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackController.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackItemModel.h b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackItemModel.h index 4fabe0ff12..464679c0c2 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackItemModel.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackItemModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackWidget.h index 3328af3bed..60e9387957 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdLayerStackWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdLayerStackWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdMainWindowTitleLoader.h b/Modules/Visualization/MonteverdiGui/include/mvdMainWindowTitleLoader.h index 05eae074c9..012d091b79 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdMainWindowTitleLoader.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdMainWindowTitleLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdMultiResolutionPyramidWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdMultiResolutionPyramidWidget.h index 659f3d691f..a936554c37 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdMultiResolutionPyramidWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdMultiResolutionPyramidWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdMyWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdMyWidget.h index a22e170c97..891b13e39a 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdMyWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdMyWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdOTBApplicationsModel.h b/Modules/Visualization/MonteverdiGui/include/mvdOTBApplicationsModel.h index 755d28b457..6a0f49e01e 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdOTBApplicationsModel.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdOTBApplicationsModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdPixelDescriptionWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdPixelDescriptionWidget.h index 7e8f526f17..86fd1a645c 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdPixelDescriptionWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdPixelDescriptionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdProjectionBarWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdProjectionBarWidget.h index 90ae5df512..9139e41bce 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdProjectionBarWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdProjectionBarWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetParameterInitializers.h b/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetParameterInitializers.h index e22346d705..def7341e21 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetParameterInitializers.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetParameterInitializers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetView.h b/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetView.h index 8ac0816c52..013e844bdc 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetView.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdQtWidgetView.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewManipulator.h b/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewManipulator.h index 040518359f..fc191d08ad 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewManipulator.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewRenderer.h b/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewRenderer.h index 921d8c1441..4424169f42 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewRenderer.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdQuicklookViewRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdSearchableTreeWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdSearchableTreeWidget.h index f231dd026a..3a5c2fa32a 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdSearchableTreeWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdSearchableTreeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdShaderWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdShaderWidget.h index d4a1b65c73..639bca9f0c 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdShaderWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdShaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdStatusBarWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdStatusBarWidget.h index 34cde3cb22..c95ccc92aa 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdStatusBarWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdStatusBarWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdTaskProgressDialog.h b/Modules/Visualization/MonteverdiGui/include/mvdTaskProgressDialog.h index 3c201019a6..17e68a5a92 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdTaskProgressDialog.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdTaskProgressDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidget.h b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidget.h index 6c5155c8da..61265a753f 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidget.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItem.h b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItem.h index f1771297b4..04d7a53c59 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItem.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItem.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItemDragAndDropEventFilter.h b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItemDragAndDropEventFilter.h index 9fd6efc72d..9aabb0e68b 100644 --- a/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItemDragAndDropEventFilter.h +++ b/Modules/Visualization/MonteverdiGui/include/mvdTreeWidgetItemDragAndDropEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/otb-module.cmake b/Modules/Visualization/MonteverdiGui/otb-module.cmake index cb0dd4d689..c1da0b5cb5 100644 --- a/Modules/Visualization/MonteverdiGui/otb-module.cmake +++ b/Modules/Visualization/MonteverdiGui/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiGui/src/CMakeLists.txt b/Modules/Visualization/MonteverdiGui/src/CMakeLists.txt index 90aba91c05..3cf60a0fa6 100644 --- a/Modules/Visualization/MonteverdiGui/src/CMakeLists.txt +++ b/Modules/Visualization/MonteverdiGui/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.cxx b/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.cxx index 0ad5f37012..fe61151db3 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.ui b/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.ui index 91e7ed24e3..70ea8f29e9 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.ui +++ b/Modules/Visualization/MonteverdiGui/src/mvdAboutDialog.ui @@ -98,7 +98,7 @@ <enum>QFrame::NoFrame</enum> </property> <property name="text"> - <string><html><head/><body><p>Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES)</p><p>Monteverdi is part of Orfeo Toolbox</p><p><a href="https://www.orfeo-toolbox.org/"><span style=" text-decoration: underline; color:#0000ff;">https://www.orfeo-toolbox.org/</span></a></p><p>Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with<br/>the License. You may obtain a copy of the License at:</p><p><a href="http://www.apache.org/licenses/LICENSE-2.0"><span style=" text-decoration: underline; color:#0000ff;">http://www.apache.org/licenses/LICENSE-2.0</span></a></p><p>Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an <br/>&quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License<br/>for the specific language governing permissions and limitations under the License.</p></body></html></string> + <string><html><head/><body><p>Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)</p><p>Monteverdi is part of Orfeo Toolbox</p><p><a href="https://www.orfeo-toolbox.org/"><span style=" text-decoration: underline; color:#0000ff;">https://www.orfeo-toolbox.org/</span></a></p><p>Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with<br/>the License. You may obtain a copy of the License at:</p><p><a href="http://www.apache.org/licenses/LICENSE-2.0"><span style=" text-decoration: underline; color:#0000ff;">http://www.apache.org/licenses/LICENSE-2.0</span></a></p><p>Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an <br/>&quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License<br/>for the specific language governing permissions and limitations under the License.</p></body></html></string> </property> </widget> </item> diff --git a/Modules/Visualization/MonteverdiGui/src/mvdAbstractDragAndDropEventFilter.cxx b/Modules/Visualization/MonteverdiGui/src/mvdAbstractDragAndDropEventFilter.cxx index 9fb6bc54e9..70af180b17 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdAbstractDragAndDropEventFilter.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdAbstractDragAndDropEventFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdAbstractModelController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdAbstractModelController.cxx index 101ea07fe4..b3bb100ec9 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdAbstractModelController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdAbstractModelController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdApplicationLauncher.cxx b/Modules/Visualization/MonteverdiGui/src/mvdApplicationLauncher.cxx index 5c8c6cd347..89bcdf0912 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdApplicationLauncher.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdApplicationLauncher.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBox.cxx b/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBox.cxx index 62835008a9..b2b6ea110f 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBox.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBox.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBoxController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBoxController.cxx index 032fd6575a..4941ab6287 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBoxController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdApplicationsToolBoxController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdColorBandDynamicsWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdColorBandDynamicsWidget.cxx index 66599ec08d..df979b9d72 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdColorBandDynamicsWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdColorBandDynamicsWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsController.cxx index 6c3acb7a48..9ba734db2e 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsWidget.cxx index b38d0b520e..c43a90a945 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdColorDynamicsWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdColorSetupController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdColorSetupController.cxx index f2ea31dff8..3abbff9905 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdColorSetupController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdColorSetupController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdColorSetupWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdColorSetupWidget.cxx index fb493af16d..0395d1b828 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdColorSetupWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdColorSetupWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdDoubleValidator.cxx b/Modules/Visualization/MonteverdiGui/src/mvdDoubleValidator.cxx index 4170f4f1f9..19ff0a293e 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdDoubleValidator.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdDoubleValidator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdDropLineEdit.cxx b/Modules/Visualization/MonteverdiGui/src/mvdDropLineEdit.cxx index 86564cf273..ddd8aef945 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdDropLineEdit.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdDropLineEdit.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdFilenameDragAndDropEventFilter.cxx b/Modules/Visualization/MonteverdiGui/src/mvdFilenameDragAndDropEventFilter.cxx index 919f30521e..91f8e339d1 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdFilenameDragAndDropEventFilter.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdFilenameDragAndDropEventFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdGui.cxx b/Modules/Visualization/MonteverdiGui/src/mvdGui.cxx index 8025107185..6f5636bb07 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdGui.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdGui.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdHistogramController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdHistogramController.cxx index 08fdce092d..80ae68b14b 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdHistogramController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdHistogramController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdHistogramPlotPicker.cxx b/Modules/Visualization/MonteverdiGui/src/mvdHistogramPlotPicker.cxx index e4fcf66dad..baf0cdb134 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdHistogramPlotPicker.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdHistogramPlotPicker.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdHistogramWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdHistogramWidget.cxx index a2e835c58d..f8d3d5a31d 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdHistogramWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdHistogramWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdI18nApplication.cxx b/Modules/Visualization/MonteverdiGui/src/mvdI18nApplication.cxx index 786cbd7af2..55585283f1 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdI18nApplication.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdI18nApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdI18nMainWindow.cxx b/Modules/Visualization/MonteverdiGui/src/mvdI18nMainWindow.cxx index 74de1dadb9..bc244326b7 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdI18nMainWindow.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdI18nMainWindow.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdImageViewManipulator.cxx b/Modules/Visualization/MonteverdiGui/src/mvdImageViewManipulator.cxx index 873d30dedd..84bee7b797 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdImageViewManipulator.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdImageViewManipulator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdImageViewRenderer.cxx b/Modules/Visualization/MonteverdiGui/src/mvdImageViewRenderer.cxx index 9b5b319f7a..917fb0300a 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdImageViewRenderer.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdImageViewRenderer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdImageViewWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdImageViewWidget.cxx index 47b29df57a..9436261478 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdImageViewWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdImageViewWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdImportImagesDialog.cxx b/Modules/Visualization/MonteverdiGui/src/mvdImportImagesDialog.cxx index c2e465a776..810442681f 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdImportImagesDialog.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdImportImagesDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdImportSubDatasetDialog.cxx b/Modules/Visualization/MonteverdiGui/src/mvdImportSubDatasetDialog.cxx index b7e834b771..a88f45f0d4 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdImportSubDatasetDialog.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdImportSubDatasetDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdKeymapDialog.cxx b/Modules/Visualization/MonteverdiGui/src/mvdKeymapDialog.cxx index f89e80d6b1..71a301e700 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdKeymapDialog.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdKeymapDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackController.cxx b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackController.cxx index c4ab44724a..a5800754e9 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackController.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackController.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackItemModel.cxx b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackItemModel.cxx index cf096da74c..2993295490 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackItemModel.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackItemModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackWidget.cxx index 5550ee0751..0427e871c9 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdLayerStackWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdLayerStackWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdMainWindowTitleLoader.cxx b/Modules/Visualization/MonteverdiGui/src/mvdMainWindowTitleLoader.cxx index dd8d4cdd9b..ae685bd648 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdMainWindowTitleLoader.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdMainWindowTitleLoader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdMultiResolutionPyramidWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdMultiResolutionPyramidWidget.cxx index b88622b904..dff0a0634d 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdMultiResolutionPyramidWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdMultiResolutionPyramidWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdMyWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdMyWidget.cxx index 7d123996d9..953040bd8c 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdMyWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdMyWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdOTBApplicationsModel.cxx b/Modules/Visualization/MonteverdiGui/src/mvdOTBApplicationsModel.cxx index 47ae3d1b14..a506232344 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdOTBApplicationsModel.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdOTBApplicationsModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdPixelDescriptionWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdPixelDescriptionWidget.cxx index c719171cd8..9b2683f94e 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdPixelDescriptionWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdPixelDescriptionWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdProjectionBarWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdProjectionBarWidget.cxx index 4a413d3a70..7549bf9c35 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdProjectionBarWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdProjectionBarWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdQtWidgetView.cxx b/Modules/Visualization/MonteverdiGui/src/mvdQtWidgetView.cxx index 7011c0d618..3bd6757244 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdQtWidgetView.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdQtWidgetView.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewManipulator.cxx b/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewManipulator.cxx index 5ed7ef4882..3cb2e62ce3 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewManipulator.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewManipulator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewRenderer.cxx b/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewRenderer.cxx index 14108050fc..d649b558c2 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewRenderer.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdQuicklookViewRenderer.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdSearchableTreeWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdSearchableTreeWidget.cxx index e2f49fc64f..d73fa786f0 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdSearchableTreeWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdSearchableTreeWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdShaderWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdShaderWidget.cxx index 5f166033cc..dda555ee3b 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdShaderWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdShaderWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdStatusBarWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdStatusBarWidget.cxx index e0e53ddd7a..cd32457235 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdStatusBarWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdStatusBarWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdTaskProgressDialog.cxx b/Modules/Visualization/MonteverdiGui/src/mvdTaskProgressDialog.cxx index 019162b43c..d87d3ff53e 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdTaskProgressDialog.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdTaskProgressDialog.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidget.cxx b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidget.cxx index abb8228ef5..60e67d3507 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidget.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItem.cxx b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItem.cxx index 1df768ef88..0f3f6a2cee 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItem.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItem.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItemDragAndDropEventFilter.cxx b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItemDragAndDropEventFilter.cxx index 76d46172b3..48e92c1f8f 100644 --- a/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItemDragAndDropEventFilter.cxx +++ b/Modules/Visualization/MonteverdiGui/src/mvdTreeWidgetItemDragAndDropEventFilter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/test/CMakeLists.txt b/Modules/Visualization/MonteverdiGui/test/CMakeLists.txt index e5098cee7d..b812a7e3d6 100644 --- a/Modules/Visualization/MonteverdiGui/test/CMakeLists.txt +++ b/Modules/Visualization/MonteverdiGui/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Visualization/MonteverdiGui/test/mvdApplicationsBrowserTest.cxx b/Modules/Visualization/MonteverdiGui/test/mvdApplicationsBrowserTest.cxx index 847d10e1f8..065aef8db5 100644 --- a/Modules/Visualization/MonteverdiGui/test/mvdApplicationsBrowserTest.cxx +++ b/Modules/Visualization/MonteverdiGui/test/mvdApplicationsBrowserTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/test/mvdApplicationsToolBoxTest.cxx b/Modules/Visualization/MonteverdiGui/test/mvdApplicationsToolBoxTest.cxx index be429e92f5..4847d973d5 100644 --- a/Modules/Visualization/MonteverdiGui/test/mvdApplicationsToolBoxTest.cxx +++ b/Modules/Visualization/MonteverdiGui/test/mvdApplicationsToolBoxTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/test/mvdFillToolBoxWidgetTreeTest.cxx b/Modules/Visualization/MonteverdiGui/test/mvdFillToolBoxWidgetTreeTest.cxx index cf84b79dfe..35b2f3bb5d 100644 --- a/Modules/Visualization/MonteverdiGui/test/mvdFillToolBoxWidgetTreeTest.cxx +++ b/Modules/Visualization/MonteverdiGui/test/mvdFillToolBoxWidgetTreeTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Visualization/MonteverdiGui/test/mvdMonteverdiGuiTestDriver.cxx b/Modules/Visualization/MonteverdiGui/test/mvdMonteverdiGuiTestDriver.cxx index 08b2cdb504..0e418543f4 100644 --- a/Modules/Visualization/MonteverdiGui/test/mvdMonteverdiGuiTestDriver.cxx +++ b/Modules/Visualization/MonteverdiGui/test/mvdMonteverdiGuiTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/CMakeLists.txt b/Modules/Wrappers/ApplicationEngine/CMakeLists.txt index bc4d150204..9ab25d6fb5 100644 --- a/Modules/Wrappers/ApplicationEngine/CMakeLists.txt +++ b/Modules/Wrappers/ApplicationEngine/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperAbstractParameterList.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperAbstractParameterList.h index 5e591fb1d1..bf54664d48 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperAbstractParameterList.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperAbstractParameterList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperAddProcessToWatchEvent.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperAddProcessToWatchEvent.h index 56ab0bb579..3ddac9956d 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperAddProcessToWatchEvent.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperAddProcessToWatchEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h index 63f4621775..f3b6be1d99 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.hxx b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.hxx index 55a8e724af..5d71f9c876 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.hxx +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplication.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactory.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactory.h index ac40a79891..115d4a9ac6 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactory.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactoryBase.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactoryBase.h index 00e509f674..3ef174ea96 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactoryBase.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationFactoryBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationRegistry.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationRegistry.h index 590cbbcae3..5dd1d1bdf0 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationRegistry.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperApplicationRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperBoolParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperBoolParameter.h index 57dfdc12a9..683f6f0492 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperBoolParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperBoolParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperCastImage.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperCastImage.h index 0e975d7adc..86319604a5 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperCastImage.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperCastImage.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperChoiceParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperChoiceParameter.h index ae7ffefab5..652b294e65 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperChoiceParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperChoiceParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperCompositeApplication.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperCompositeApplication.h index 9d9302000c..b2b92e90ec 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperCompositeApplication.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperCompositeApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperDirectoryParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperDirectoryParameter.h index 781b8207ee..f6db8be277 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperDirectoryParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperDirectoryParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperDocExampleStructure.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperDocExampleStructure.h index 2cc9a11c6d..1af490c74d 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperDocExampleStructure.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperDocExampleStructure.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperElevationParametersHandler.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperElevationParametersHandler.h index 837d1521da..ebc1f43f96 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperElevationParametersHandler.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperElevationParametersHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameListParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameListParameter.h index d992ecc3fd..335e705a6a 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameListParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameParameter.h index ec0fd01fa9..cb4a0a4c6e 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputFilenameParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageListParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageListParameter.h index a932b0879a..cee94e3735 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageListParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.h index 2e0a17ac2a..1265edf1ab 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.hxx b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.hxx index 687c7002bc..b4e410bf22 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.hxx +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputImageParameter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataListParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataListParameter.h index 8c594ca8b7..d3f6b621aa 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataListParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataParameter.h index f81a8e2b42..f00b3fb424 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputVectorDataParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputXML.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputXML.h index ab33810d11..f7635bb56e 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputXML.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperInputXML.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperListViewParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperListViewParameter.h index d8e34a2818..a7509a89e9 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperListViewParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperListViewParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMacros.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMacros.h index 0bd7c83160..3fb74ddf51 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMacros.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMapProjectionParametersHandler.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMapProjectionParametersHandler.h index d73d7d8761..38c4926c02 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMapProjectionParametersHandler.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMapProjectionParametersHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMetaDataHelper.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMetaDataHelper.h index 856c5fe287..fddba78ef5 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperMetaDataHelper.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperMetaDataHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperNumericalParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperNumericalParameter.h index 17abbe7007..fe0da0d41f 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperNumericalParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperNumericalParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputFilenameParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputFilenameParameter.h index 434705e07b..cfa9855300 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputFilenameParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputFilenameParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputImageParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputImageParameter.h index ed7f451793..02c9991381 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputImageParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputImageParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputVectorDataParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputVectorDataParameter.h index 85d0ba939e..6e05704e12 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputVectorDataParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputVectorDataParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputXML.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputXML.h index 31e666b264..6c530f90a7 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputXML.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperOutputXML.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameter.h index b8ea41480e..5ed876903a 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterGroup.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterGroup.h index 728413badc..3724f2de79 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterGroup.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterKey.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterKey.h index 7a24f49cbb..f16a45ecd0 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterKey.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterKey.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.h index 4dce89acb8..1c98f422c0 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.hxx b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.hxx index 2e2d6c33ef..b3ba8d0668 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.hxx +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperParameterList.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperProxyParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperProxyParameter.h index 0dbefbc7ae..bb602a9a85 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperProxyParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperProxyParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListInterface.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListInterface.h index 7be527f070..9bd3a6033b 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListInterface.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListParameter.h index c336618353..6d472ff280 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringParameter.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringParameter.h index 0e013916e0..782b16b61d 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringParameter.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperStringParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTags.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTags.h index f42c310b1a..071c8050fd 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTags.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTags.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h index 3a8c602bb7..74d03c67e4 100644 --- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h +++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/otb-module.cmake b/Modules/Wrappers/ApplicationEngine/otb-module.cmake index da40e101f8..ad9d2444c7 100644 --- a/Modules/Wrappers/ApplicationEngine/otb-module.cmake +++ b/Modules/Wrappers/ApplicationEngine/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt b/Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt index a3f78c16fe..21607fbdfd 100644 --- a/Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt +++ b/Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt @@ -1,6 +1,6 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperAbstractParameterList.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperAbstractParameterList.cxx index 5ca625401a..bd153fc5be 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperAbstractParameterList.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperAbstractParameterList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index 02df87e476..4246be6e8f 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationFactoryBase.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationFactoryBase.cxx index 0486ce7983..09c4c388d2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationFactoryBase.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationFactoryBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx index 81e78c53b0..7872f997aa 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperBoolParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperBoolParameter.cxx index db0adccef4..3c6f20dee2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperBoolParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperBoolParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperCastImage.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperCastImage.cxx index 347954c65e..5954f8660f 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperCastImage.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperCastImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperChoiceParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperChoiceParameter.cxx index 89c25829e8..48365eece1 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperChoiceParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperChoiceParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperCompositeApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperCompositeApplication.cxx index dabe8e2c4f..c58884863b 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperCompositeApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperCompositeApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperDocExampleStructure.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperDocExampleStructure.cxx index 3981be1341..c570fc37d2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperDocExampleStructure.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperDocExampleStructure.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperElevationParametersHandler.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperElevationParametersHandler.cxx index a4828613ed..94997bd5a9 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperElevationParametersHandler.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperElevationParametersHandler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputFilenameListParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputFilenameListParameter.cxx index c45163c851..13e10c11a9 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputFilenameListParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputFilenameListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageListParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageListParameter.cxx index 912860fdf1..c7f46c2bef 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageListParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx index fc41406d32..6eea4b2545 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx index 3e6d5f1dfe..b6e1f91786 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx index e0bc4d9800..faa23eb383 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx index 83772146eb..1be31aa5f0 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx index d82ff185f6..1c49daa832 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx index 4b4647a28b..23b0f93db8 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx index ecb6f5f0da..c47ccc58c2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx index d216633ebe..53130819ca 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx index c5abd521e8..d88c572ddd 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterMacros.h b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterMacros.h index 8c84d0c88a..2646cae13d 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterMacros.h +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx index e9b6192c35..31b80c668f 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx index 6999cb8378..40efec2c85 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx index 15256c6bae..304de6e74b 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataListParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataListParameter.cxx index 46ff925763..4e4714b1a2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataListParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataParameter.cxx index 34a32ffa22..9801167952 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputVectorDataParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputXML.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputXML.cxx index 8f2f3fbf42..c21b248070 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputXML.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperInputXML.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperListViewParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperListViewParameter.cxx index dfa153f656..cbe562349d 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperListViewParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperListViewParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperMapProjectionParametersHandler.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperMapProjectionParametersHandler.cxx index fb7b655e21..2262962abd 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperMapProjectionParametersHandler.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperMapProjectionParametersHandler.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperMetaDataHelper.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperMetaDataHelper.cxx index 5f58d5d74c..e0483c5ad9 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperMetaDataHelper.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperMetaDataHelper.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputImageParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputImageParameter.cxx index cd7a510c16..b60f671eea 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputImageParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputImageParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputVectorDataParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputVectorDataParameter.cxx index dbaa6b09f6..836643c0a3 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputVectorDataParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputVectorDataParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputXML.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputXML.cxx index 4b8a60619e..0fcbdf6dc3 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputXML.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperOutputXML.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameter.cxx index bae8e60f37..3fdeac9fd1 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterGroup.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterGroup.cxx index 6212dfb211..3b8d4d8ed2 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterGroup.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterGroup.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterKey.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterKey.cxx index 27b64bf339..28137d0a09 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterKey.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterKey.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterList.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterList.cxx index ee7697b8c9..14d69ef60c 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterList.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperParameterList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListInterface.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListInterface.cxx index 5dd45bde20..a629fa641c 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListInterface.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListParameter.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListParameter.cxx index e7d0b6686e..260044a750 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListParameter.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperStringListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperTypes.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperTypes.cxx index 90d7d81e68..d02c3c437a 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperTypes.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperTypes.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/0000436-WrapperInputImage_GetImage.cxx b/Modules/Wrappers/ApplicationEngine/test/0000436-WrapperInputImage_GetImage.cxx index 8cbf175017..02c3d5312c 100644 --- a/Modules/Wrappers/ApplicationEngine/test/0000436-WrapperInputImage_GetImage.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/0000436-WrapperInputImage_GetImage.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/CMakeLists.txt b/Modules/Wrappers/ApplicationEngine/test/CMakeLists.txt index ffb6ce0cd1..b5a2e5de5a 100644 --- a/Modules/Wrappers/ApplicationEngine/test/CMakeLists.txt +++ b/Modules/Wrappers/ApplicationEngine/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/ApplicationEngine/test/otbApplicationEngineTestDriver.cxx b/Modules/Wrappers/ApplicationEngine/test/otbApplicationEngineTestDriver.cxx index 541f3c6d2b..a42f32f553 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbApplicationEngineTestDriver.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbApplicationEngineTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbApplicationMemoryConnectTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbApplicationMemoryConnectTest.cxx index 9bf1c793fd..bdc549b47b 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbApplicationMemoryConnectTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbApplicationMemoryConnectTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationDocTests.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationDocTests.cxx index f07276b50c..8810ecfc11 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationDocTests.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationDocTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationRegistryTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationRegistryTest.cxx index 009a85a6fd..476f8effed 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationRegistryTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperApplicationRegistryTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperChoiceParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperChoiceParameterTest.cxx index 8d8b6e47f9..48d50d7124 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperChoiceParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperChoiceParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperDocExampleStructureTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperDocExampleStructureTest.cxx index 56002ccfed..388024024a 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperDocExampleStructureTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperDocExampleStructureTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx index c06284af51..135bc60e0e 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperImageInterface.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageListParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageListParameterTest.cxx index ada330c11e..0f7ba0ac12 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageListParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageListParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageParameterTest.cxx index 1e7f2c5fcb..9dcc1c7399 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputImageParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputVectorDataListParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputVectorDataListParameterTest.cxx index 5c6ca6a139..47b67a393d 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputVectorDataListParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperInputVectorDataListParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperNumericalParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperNumericalParameterTest.cxx index a101fdb85d..a5d80737e8 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperNumericalParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperNumericalParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperOutputImageParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperOutputImageParameterTest.cxx index 643a72415c..2a9d7f95fa 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperOutputImageParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperOutputImageParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterKeyTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterKeyTest.cxx index 0805b5e289..c91ae56a75 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterKeyTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterKeyTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterListTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterListTest.cxx index 5372a56353..0fa8f1de57 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterListTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperParameterListTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringListParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringListParameterTest.cxx index 01ee90344c..c2ab3bc497 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringListParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringListParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringParameterTest.cxx b/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringParameterTest.cxx index 924627ba13..264f985145 100644 --- a/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringParameterTest.cxx +++ b/Modules/Wrappers/ApplicationEngine/test/otbWrapperStringParameterTest.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/CMakeLists.txt b/Modules/Wrappers/CommandLine/CMakeLists.txt index b241951883..f91dcd4fcd 100644 --- a/Modules/Wrappers/CommandLine/CMakeLists.txt +++ b/Modules/Wrappers/CommandLine/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineLauncher.h b/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineLauncher.h index d9e5fe677e..6f14585539 100644 --- a/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineLauncher.h +++ b/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineLauncher.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineParser.h b/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineParser.h index 2310ea76a5..465172273b 100644 --- a/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineParser.h +++ b/Modules/Wrappers/CommandLine/include/otbWrapperCommandLineParser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/otb-module.cmake b/Modules/Wrappers/CommandLine/otb-module.cmake index 78909a9606..3bc67d1d37 100644 --- a/Modules/Wrappers/CommandLine/otb-module.cmake +++ b/Modules/Wrappers/CommandLine/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/CommandLine/src/CMakeLists.txt b/Modules/Wrappers/CommandLine/src/CMakeLists.txt index a8b86579e1..2e64e80968 100644 --- a/Modules/Wrappers/CommandLine/src/CMakeLists.txt +++ b/Modules/Wrappers/CommandLine/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/CommandLine/src/otbApplicationLauncherCommandLine.cxx b/Modules/Wrappers/CommandLine/src/otbApplicationLauncherCommandLine.cxx index a4e6e7e784..cf34dfc15a 100644 --- a/Modules/Wrappers/CommandLine/src/otbApplicationLauncherCommandLine.cxx +++ b/Modules/Wrappers/CommandLine/src/otbApplicationLauncherCommandLine.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineLauncher.cxx b/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineLauncher.cxx index 59e1d90750..4283b9a229 100644 --- a/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineLauncher.cxx +++ b/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineLauncher.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineParser.cxx b/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineParser.cxx index 0c4f012a13..343630bd62 100644 --- a/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineParser.cxx +++ b/Modules/Wrappers/CommandLine/src/otbWrapperCommandLineParser.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/test/CMakeLists.txt b/Modules/Wrappers/CommandLine/test/CMakeLists.txt index f3bd7acb30..1f7e56fc4c 100644 --- a/Modules/Wrappers/CommandLine/test/CMakeLists.txt +++ b/Modules/Wrappers/CommandLine/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/CommandLine/test/otbCommandLineTestDriver.cxx b/Modules/Wrappers/CommandLine/test/otbCommandLineTestDriver.cxx index a63280d6f0..d5d69b949e 100644 --- a/Modules/Wrappers/CommandLine/test/otbCommandLineTestDriver.cxx +++ b/Modules/Wrappers/CommandLine/test/otbCommandLineTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineLauncherTests.cxx b/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineLauncherTests.cxx index 45a1d87858..1e97af58f2 100644 --- a/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineLauncherTests.cxx +++ b/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineLauncherTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineParserTests.cxx b/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineParserTests.cxx index ade7cfb7df..3ac40db685 100644 --- a/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineParserTests.cxx +++ b/Modules/Wrappers/CommandLine/test/otbWrapperCommandLineParserTests.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QGIS/CMakeLists.txt b/Modules/Wrappers/QGIS/CMakeLists.txt index 012f3e0272..ffa7aad205 100644 --- a/Modules/Wrappers/QGIS/CMakeLists.txt +++ b/Modules/Wrappers/QGIS/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QGIS/otb-module.cmake b/Modules/Wrappers/QGIS/otb-module.cmake index 113695350c..9270de1156 100644 --- a/Modules/Wrappers/QGIS/otb-module.cmake +++ b/Modules/Wrappers/QGIS/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QGIS/src/CMakeLists.txt b/Modules/Wrappers/QGIS/src/CMakeLists.txt index 167f57d3ed..5029524c12 100644 --- a/Modules/Wrappers/QGIS/src/CMakeLists.txt +++ b/Modules/Wrappers/QGIS/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QGIS/src/otbQgisDescriptor.cxx b/Modules/Wrappers/QGIS/src/otbQgisDescriptor.cxx index 2b27702fda..0bd6763c42 100644 --- a/Modules/Wrappers/QGIS/src/otbQgisDescriptor.cxx +++ b/Modules/Wrappers/QGIS/src/otbQgisDescriptor.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/CMakeLists.txt b/Modules/Wrappers/QtWidget/CMakeLists.txt index 3bdc2cc6fa..f5c7bd7d9c 100644 --- a/Modules/Wrappers/QtWidget/CMakeLists.txt +++ b/Modules/Wrappers/QtWidget/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QtWidget/include/itkQtProgressBar.h b/Modules/Wrappers/QtWidget/include/itkQtProgressBar.h index fdc3edf6e4..edfb44f3b0 100644 --- a/Modules/Wrappers/QtWidget/include/itkQtProgressBar.h +++ b/Modules/Wrappers/QtWidget/include/itkQtProgressBar.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbQtApplication.h b/Modules/Wrappers/QtWidget/include/otbQtApplication.h index 41b3a48468..e68bc5cdc2 100644 --- a/Modules/Wrappers/QtWidget/include/otbQtApplication.h +++ b/Modules/Wrappers/QtWidget/include/otbQtApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbQtFileSelectionWidget.h b/Modules/Wrappers/QtWidget/include/otbQtFileSelectionWidget.h index 8ba8a13a2b..56739c1957 100644 --- a/Modules/Wrappers/QtWidget/include/otbQtFileSelectionWidget.h +++ b/Modules/Wrappers/QtWidget/include/otbQtFileSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbQtLogOutput.h b/Modules/Wrappers/QtWidget/include/otbQtLogOutput.h index b6322be754..65c1ad67fe 100644 --- a/Modules/Wrappers/QtWidget/include/otbQtLogOutput.h +++ b/Modules/Wrappers/QtWidget/include/otbQtLogOutput.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbQtStringSelectionWidget.h b/Modules/Wrappers/QtWidget/include/otbQtStringSelectionWidget.h index f8e278ce9c..9084926334 100644 --- a/Modules/Wrappers/QtWidget/include/otbQtStringSelectionWidget.h +++ b/Modules/Wrappers/QtWidget/include/otbQtStringSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetBoolParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetBoolParameter.h index bfb968718d..9a7c66d287 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetBoolParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetBoolParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetChoiceParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetChoiceParameter.h index 961009912b..4772f8182c 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetChoiceParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetChoiceParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetDirectoryParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetDirectoryParameter.h index 49ab393961..27c78f2b1f 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetDirectoryParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetDirectoryParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetFloatParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetFloatParameter.h index bdab621024..1f270122ec 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetFloatParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetFloatParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameListParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameListParameter.h index 077565d492..e889ad8ee9 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameListParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameParameter.h index ec53a22511..0cf963610f 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputFilenameParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageListParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageListParameter.h index 69f1918448..8780dafe5a 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageListParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageParameter.h index 0035edee4b..a1c0678863 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputImageParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataListParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataListParameter.h index 1247512d01..f465aa6954 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataListParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataParameter.h index 856a75735c..41c625acfa 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetInputVectorDataParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetIntParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetIntParameter.h index a1e521f833..0fc627b27b 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetIntParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetIntParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditItemModel.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditItemModel.h index 3efbda99ce..eadcbe8be8 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditItemModel.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditItemModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditWidget.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditWidget.h index b1bd126e1b..dde3263478 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditWidget.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListEditWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListViewParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListViewParameter.h index b95aec9e0f..53b3aff31d 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListViewParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetListViewParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetMainWindow.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetMainWindow.h index 0bd6704b59..7b3c5d9b03 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetMainWindow.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetModel.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetModel.h index c15d4d0c78..f689926c99 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetModel.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputFilenameParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputFilenameParameter.h index 9d7642c4d6..c601313c9d 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputFilenameParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputFilenameParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputImageParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputImageParameter.h index b2ce58a1e2..77e3460493 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputImageParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputImageParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputVectorDataParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputVectorDataParameter.h index 633bebcd95..7935512e0e 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputVectorDataParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetOutputVectorDataParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterBase.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterBase.h index ecfe6c6ef3..f1ef1160c0 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterBase.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterFactory.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterFactory.h index 0ad661c5c1..9cca503aac 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterFactory.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterGroup.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterGroup.h index 5db65a0af5..bc6f3db4db 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterGroup.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterLabel.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterLabel.h index c079d7fe4e..d9d3a58abb 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterLabel.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterList.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterList.h index 3b15ef8a4b..753419436e 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterList.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetParameterList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetRAMParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetRAMParameter.h index 0734cc3465..bc96f90b95 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetRAMParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetRAMParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSimpleProgressReport.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSimpleProgressReport.h index 1940fa1fc8..a448325ec6 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSimpleProgressReport.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSimpleProgressReport.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSpinBoxes.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSpinBoxes.h index 784240eccb..61bcecface 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSpinBoxes.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetSpinBoxes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringListParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringListParameter.h index 4f50f585dc..99267e3cda 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringListParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringListParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringParameter.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringParameter.h index c6514b7a19..3a9be9ea71 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringParameter.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetStringParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetView.h b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetView.h index 7912cc38a5..e0c4e5fa3c 100644 --- a/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetView.h +++ b/Modules/Wrappers/QtWidget/include/otbWrapperQtWidgetView.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/otb-module.cmake b/Modules/Wrappers/QtWidget/otb-module.cmake index 3703f9fd52..4216951f58 100644 --- a/Modules/Wrappers/QtWidget/otb-module.cmake +++ b/Modules/Wrappers/QtWidget/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QtWidget/src/CMakeLists.txt b/Modules/Wrappers/QtWidget/src/CMakeLists.txt index 461bd06209..9f0f3d3c7c 100644 --- a/Modules/Wrappers/QtWidget/src/CMakeLists.txt +++ b/Modules/Wrappers/QtWidget/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QtWidget/src/itkQtProgressBar.cxx b/Modules/Wrappers/QtWidget/src/itkQtProgressBar.cxx index 9ee23809ff..9f4a03f8fc 100644 --- a/Modules/Wrappers/QtWidget/src/itkQtProgressBar.cxx +++ b/Modules/Wrappers/QtWidget/src/itkQtProgressBar.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbApplicationLauncherQt.cxx b/Modules/Wrappers/QtWidget/src/otbApplicationLauncherQt.cxx index 2ee6bed4fb..b3bbe01a94 100644 --- a/Modules/Wrappers/QtWidget/src/otbApplicationLauncherQt.cxx +++ b/Modules/Wrappers/QtWidget/src/otbApplicationLauncherQt.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbQtApplication.cxx b/Modules/Wrappers/QtWidget/src/otbQtApplication.cxx index c7e7efca2d..07ad7d99d7 100644 --- a/Modules/Wrappers/QtWidget/src/otbQtApplication.cxx +++ b/Modules/Wrappers/QtWidget/src/otbQtApplication.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbQtFileSelectionWidget.cxx b/Modules/Wrappers/QtWidget/src/otbQtFileSelectionWidget.cxx index 741da70a23..7bf480faa5 100644 --- a/Modules/Wrappers/QtWidget/src/otbQtFileSelectionWidget.cxx +++ b/Modules/Wrappers/QtWidget/src/otbQtFileSelectionWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbQtLogOutput.cxx b/Modules/Wrappers/QtWidget/src/otbQtLogOutput.cxx index 1289c78a4a..5a291f1afd 100644 --- a/Modules/Wrappers/QtWidget/src/otbQtLogOutput.cxx +++ b/Modules/Wrappers/QtWidget/src/otbQtLogOutput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbQtStringSelectionWidget.cxx b/Modules/Wrappers/QtWidget/src/otbQtStringSelectionWidget.cxx index 381de3ea63..013d5544d5 100644 --- a/Modules/Wrappers/QtWidget/src/otbQtStringSelectionWidget.cxx +++ b/Modules/Wrappers/QtWidget/src/otbQtStringSelectionWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetBoolParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetBoolParameter.cxx index 6c060c9b16..e1e0afcc16 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetBoolParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetBoolParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetChoiceParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetChoiceParameter.cxx index 03c3f58a96..502592a590 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetChoiceParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetChoiceParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetDirectoryParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetDirectoryParameter.cxx index b9dc773994..88776bfb02 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetDirectoryParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetDirectoryParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetFloatParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetFloatParameter.cxx index c391331c12..b83d54f62a 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetFloatParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetFloatParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameListParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameListParameter.cxx index 1fece3e4fb..3a4256aab7 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameListParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameParameter.cxx index f5a7779ce2..a24b88b952 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputFilenameParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageListParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageListParameter.cxx index f0b3ad77c7..24464782c7 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageListParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageParameter.cxx index fd5854781d..d320d30e4c 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputImageParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataListParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataListParameter.cxx index 4862abac57..fb5d36bf3b 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataListParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataParameter.cxx index 26c62ac850..824c2f35aa 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetInputVectorDataParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetIntParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetIntParameter.cxx index e690f65e61..77ecd9a607 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetIntParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetIntParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditItemModel.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditItemModel.cxx index 6c043fb8f8..88a948966e 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditItemModel.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditItemModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditWidget.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditWidget.cxx index 50155db314..fa372b6f54 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditWidget.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListEditWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListViewParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListViewParameter.cxx index 1bc25a8cb1..767d0ae24e 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListViewParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetListViewParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetMainWindow.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetMainWindow.cxx index 40cd64b48a..4007fea48b 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetMainWindow.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetMainWindow.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx index d94d74c01b..a60bb644db 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputFilenameParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputFilenameParameter.cxx index 476ee1539b..b37ccb1e11 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputFilenameParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputFilenameParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputImageParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputImageParameter.cxx index 30b2a2b8a8..6a4a89701f 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputImageParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputImageParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputVectorDataParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputVectorDataParameter.cxx index 769442f5c4..7903e7ee07 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputVectorDataParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetOutputVectorDataParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterBase.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterBase.cxx index b12d9502fd..ee8bc77cfe 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterBase.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterBase.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterFactory.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterFactory.cxx index 04c97ec1b3..bd328c1d18 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterFactory.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterGroup.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterGroup.cxx index 2e2b2d1804..63ea89b4ea 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterGroup.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterGroup.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterLabel.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterLabel.cxx index 0325fde991..ca38776ce9 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterLabel.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterLabel.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterList.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterList.cxx index d94a9fd03f..866c4ed5ec 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterList.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetParameterList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetRAMParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetRAMParameter.cxx index ceefc9da7b..198eb83090 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetRAMParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetRAMParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSimpleProgressReport.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSimpleProgressReport.cxx index b9f1cac1c2..14a2b1009e 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSimpleProgressReport.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSimpleProgressReport.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSpinBoxes.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSpinBoxes.cxx index f4de500ab2..b53f0656b1 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSpinBoxes.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetSpinBoxes.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringListParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringListParameter.cxx index 64b3de2804..2257395498 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringListParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringListParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringParameter.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringParameter.cxx index 2dfc3a97db..9d821d5f75 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringParameter.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetStringParameter.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetView.cxx b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetView.cxx index f6bff25d8f..b4e468088f 100644 --- a/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetView.cxx +++ b/Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetView.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/test/CMakeLists.txt b/Modules/Wrappers/QtWidget/test/CMakeLists.txt index 683056cdc2..664b6ee837 100644 --- a/Modules/Wrappers/QtWidget/test/CMakeLists.txt +++ b/Modules/Wrappers/QtWidget/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/QtWidget/test/otbQtWidgetTestDriver.cxx b/Modules/Wrappers/QtWidget/test/otbQtWidgetTestDriver.cxx index afa0e3d6db..acb885f5b6 100644 --- a/Modules/Wrappers/QtWidget/test/otbQtWidgetTestDriver.cxx +++ b/Modules/Wrappers/QtWidget/test/otbQtWidgetTestDriver.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetParameterFactory.cxx b/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetParameterFactory.cxx index b667b0fc17..92d87e36c8 100644 --- a/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetParameterFactory.cxx +++ b/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetParameterFactory.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetShowWidget.cxx b/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetShowWidget.cxx index d31188f229..e8a2025038 100644 --- a/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetShowWidget.cxx +++ b/Modules/Wrappers/QtWidget/test/otbWrapperQtWidgetShowWidget.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/CMakeLists.txt b/Modules/Wrappers/SWIG/CMakeLists.txt index 4c89f65c2f..1f69e20bf5 100644 --- a/Modules/Wrappers/SWIG/CMakeLists.txt +++ b/Modules/Wrappers/SWIG/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/otb-module.cmake b/Modules/Wrappers/SWIG/otb-module.cmake index 67fffb63f6..d3b988dbb4 100644 --- a/Modules/Wrappers/SWIG/otb-module.cmake +++ b/Modules/Wrappers/SWIG/otb-module.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/src/PyCommand.i b/Modules/Wrappers/SWIG/src/PyCommand.i index 7412f3f245..576f9e6c1f 100644 --- a/Modules/Wrappers/SWIG/src/PyCommand.i +++ b/Modules/Wrappers/SWIG/src/PyCommand.i @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/Python.i b/Modules/Wrappers/SWIG/src/Python.i index 0f54f58dc0..4edcb542d8 100644 --- a/Modules/Wrappers/SWIG/src/Python.i +++ b/Modules/Wrappers/SWIG/src/Python.i @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/itkBase.i b/Modules/Wrappers/SWIG/src/itkBase.i index 6c2a2a35ae..911ae05fd9 100644 --- a/Modules/Wrappers/SWIG/src/itkBase.i +++ b/Modules/Wrappers/SWIG/src/itkBase.i @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/itkBase.includes b/Modules/Wrappers/SWIG/src/itkBase.includes index 673a86cfee..c7e8cd2456 100644 --- a/Modules/Wrappers/SWIG/src/itkBase.includes +++ b/Modules/Wrappers/SWIG/src/itkBase.includes @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/itkMacro.i b/Modules/Wrappers/SWIG/src/itkMacro.i index f5b6cf233f..4b5f479912 100644 --- a/Modules/Wrappers/SWIG/src/itkMacro.i +++ b/Modules/Wrappers/SWIG/src/itkMacro.i @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/otbPythonLogOutput.i b/Modules/Wrappers/SWIG/src/otbPythonLogOutput.i index 044942d56d..de746365a9 100644 --- a/Modules/Wrappers/SWIG/src/otbPythonLogOutput.i +++ b/Modules/Wrappers/SWIG/src/otbPythonLogOutput.i @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/itkPyCommand.cxx b/Modules/Wrappers/SWIG/src/python/itkPyCommand.cxx index d0eddffeb9..9f6acb0104 100644 --- a/Modules/Wrappers/SWIG/src/python/itkPyCommand.cxx +++ b/Modules/Wrappers/SWIG/src/python/itkPyCommand.cxx @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/itkPyCommand.h b/Modules/Wrappers/SWIG/src/python/itkPyCommand.h index c872ed0854..2d83b07cf7 100644 --- a/Modules/Wrappers/SWIG/src/python/itkPyCommand.h +++ b/Modules/Wrappers/SWIG/src/python/itkPyCommand.h @@ -1,6 +1,6 @@ /* * Copyright (C) 1999-2011 Insight Software Consortium - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx b/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx index 99e01e1f46..615f1dfa6c 100644 --- a/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx +++ b/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h b/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h index a46000a0c2..dffacd9542 100644 --- a/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h +++ b/Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.cxx b/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.cxx index d8f703c4b8..a924de7a16 100644 --- a/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.cxx +++ b/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.h b/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.h index d8e8cfeed2..68e8655beb 100644 --- a/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.h +++ b/Modules/Wrappers/SWIG/src/python/otbPythonLogOutput.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/src/python/otbSwigPrintCallback.h b/Modules/Wrappers/SWIG/src/python/otbSwigPrintCallback.h index 79d4203e80..73fe42e1c3 100644 --- a/Modules/Wrappers/SWIG/src/python/otbSwigPrintCallback.h +++ b/Modules/Wrappers/SWIG/src/python/otbSwigPrintCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Modules/Wrappers/SWIG/test/CMakeLists.txt b/Modules/Wrappers/SWIG/test/CMakeLists.txt index 47c7553e7a..e1626ee7b3 100644 --- a/Modules/Wrappers/SWIG/test/CMakeLists.txt +++ b/Modules/Wrappers/SWIG/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/Bug1498.py b/Modules/Wrappers/SWIG/test/python/Bug1498.py index 6e6ed15dc3..0c6d95554e 100644 --- a/Modules/Wrappers/SWIG/test/python/Bug1498.py +++ b/Modules/Wrappers/SWIG/test/python/Bug1498.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #-*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/Bug1899.py b/Modules/Wrappers/SWIG/test/python/Bug1899.py index 93d768d9ca..a42afd0abb 100644 --- a/Modules/Wrappers/SWIG/test/python/Bug1899.py +++ b/Modules/Wrappers/SWIG/test/python/Bug1899.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #-*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/Bug736.py b/Modules/Wrappers/SWIG/test/python/Bug736.py index 89d0ef949d..53cfa3c8bc 100644 --- a/Modules/Wrappers/SWIG/test/python/Bug736.py +++ b/Modules/Wrappers/SWIG/test/python/Bug736.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/Bug804.py b/Modules/Wrappers/SWIG/test/python/Bug804.py index 673b241c49..4744ec7b61 100644 --- a/Modules/Wrappers/SWIG/test/python/Bug804.py +++ b/Modules/Wrappers/SWIG/test/python/Bug804.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/Bug823.py b/Modules/Wrappers/SWIG/test/python/Bug823.py index 8530dbacd7..eb4a3b7f71 100644 --- a/Modules/Wrappers/SWIG/test/python/Bug823.py +++ b/Modules/Wrappers/SWIG/test/python/Bug823.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonConnectApplications.py b/Modules/Wrappers/SWIG/test/python/PythonConnectApplications.py index a9b3133534..a5d669125f 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonConnectApplications.py +++ b/Modules/Wrappers/SWIG/test/python/PythonConnectApplications.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonHyperspectralUnmixing1.py b/Modules/Wrappers/SWIG/test/python/PythonHyperspectralUnmixing1.py index d0ba814002..547676028a 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonHyperspectralUnmixing1.py +++ b/Modules/Wrappers/SWIG/test/python/PythonHyperspectralUnmixing1.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonImageInterface.py b/Modules/Wrappers/SWIG/test/python/PythonImageInterface.py index ee1bfc7243..4f0bb3fb31 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonImageInterface.py +++ b/Modules/Wrappers/SWIG/test/python/PythonImageInterface.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #-*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonInXMLTest.py b/Modules/Wrappers/SWIG/test/python/PythonInXMLTest.py index 70207aaf49..279863795f 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonInXMLTest.py +++ b/Modules/Wrappers/SWIG/test/python/PythonInXMLTest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonNewStyleParametersInstantiateAllTest.py b/Modules/Wrappers/SWIG/test/python/PythonNewStyleParametersInstantiateAllTest.py index 7e7f99e317..adbe7ac6db 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonNewStyleParametersInstantiateAllTest.py +++ b/Modules/Wrappers/SWIG/test/python/PythonNewStyleParametersInstantiateAllTest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonNoUpdateParameter.py b/Modules/Wrappers/SWIG/test/python/PythonNoUpdateParameter.py index 8453eb1bb6..5361a0f1b9 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonNoUpdateParameter.py +++ b/Modules/Wrappers/SWIG/test/python/PythonNoUpdateParameter.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonOutXMLTest.py b/Modules/Wrappers/SWIG/test/python/PythonOutXMLTest.py index dca30937e2..0185e472c7 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonOutXMLTest.py +++ b/Modules/Wrappers/SWIG/test/python/PythonOutXMLTest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonParametersDict.py b/Modules/Wrappers/SWIG/test/python/PythonParametersDict.py index 2afb1363d9..c82fd324d1 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonParametersDict.py +++ b/Modules/Wrappers/SWIG/test/python/PythonParametersDict.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonRescaleTest.py b/Modules/Wrappers/SWIG/test/python/PythonRescaleTest.py index 5110ef2ccb..ef2d01ed9e 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonRescaleTest.py +++ b/Modules/Wrappers/SWIG/test/python/PythonRescaleTest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonSmoothingTest.py b/Modules/Wrappers/SWIG/test/python/PythonSmoothingTest.py index cf4a07c465..54baad16d8 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonSmoothingTest.py +++ b/Modules/Wrappers/SWIG/test/python/PythonSmoothingTest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Modules/Wrappers/SWIG/test/python/PythonTestDriver.py b/Modules/Wrappers/SWIG/test/python/PythonTestDriver.py index e068ec39a6..8c9f37f13e 100644 --- a/Modules/Wrappers/SWIG/test/python/PythonTestDriver.py +++ b/Modules/Wrappers/SWIG/test/python/PythonTestDriver.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/CMakeLists.txt b/Packaging/CMakeLists.txt index a8d5c1658b..cd18967e06 100644 --- a/Packaging/CMakeLists.txt +++ b/Packaging/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/CTestConfig.cmake b/Packaging/CTestConfig.cmake index a61552e69e..bded7d286e 100644 --- a/Packaging/CTestConfig.cmake +++ b/Packaging/CTestConfig.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/External_patchelf.cmake b/Packaging/External_patchelf.cmake index 0e38b8de56..1729c82b5e 100644 --- a/Packaging/External_patchelf.cmake +++ b/Packaging/External_patchelf.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/build_examples.cmake b/Packaging/Files/build_examples.cmake index bb84429550..327f29fb0b 100644 --- a/Packaging/Files/build_examples.cmake +++ b/Packaging/Files/build_examples.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/linux_pkgsetup.in b/Packaging/Files/linux_pkgsetup.in index c8b43f145a..9b55e8ef03 100644 --- a/Packaging/Files/linux_pkgsetup.in +++ b/Packaging/Files/linux_pkgsetup.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/macx_pkgsetup.in b/Packaging/Files/macx_pkgsetup.in index 09ed5a743a..d4733af545 100755 --- a/Packaging/Files/macx_pkgsetup.in +++ b/Packaging/Files/macx_pkgsetup.in @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/mapla.bat b/Packaging/Files/mapla.bat index d5e6367614..de689710b8 100644 --- a/Packaging/Files/mapla.bat +++ b/Packaging/Files/mapla.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/mapla.sh b/Packaging/Files/mapla.sh index 8546b16548..a69c6b9a6f 100755 --- a/Packaging/Files/mapla.sh +++ b/Packaging/Files/mapla.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/monteverdi.bat b/Packaging/Files/monteverdi.bat index d8309fec79..71a0d9189a 100644 --- a/Packaging/Files/monteverdi.bat +++ b/Packaging/Files/monteverdi.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/monteverdi.sh b/Packaging/Files/monteverdi.sh index fa45a97e10..a6686e4d29 100755 --- a/Packaging/Files/monteverdi.sh +++ b/Packaging/Files/monteverdi.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/otb_loader.cxx b/Packaging/Files/otb_loader.cxx index 7e31bcfd55..f00a4f0435 100644 --- a/Packaging/Files/otb_loader.cxx +++ b/Packaging/Files/otb_loader.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Packaging/Files/otbenv.bash b/Packaging/Files/otbenv.bash index f9e48c6994..bf59617839 100644 --- a/Packaging/Files/otbenv.bash +++ b/Packaging/Files/otbenv.bash @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/otbenv.bat b/Packaging/Files/otbenv.bat index 720fc23726..0d97a66edd 100644 --- a/Packaging/Files/otbenv.bat +++ b/Packaging/Files/otbenv.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/otbenv.profile b/Packaging/Files/otbenv.profile index 8f9ed04c57..4879f198a4 100644 --- a/Packaging/Files/otbenv.profile +++ b/Packaging/Files/otbenv.profile @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/selftester.bat b/Packaging/Files/selftester.bat index d30e8b350a..b33994b414 100755 --- a/Packaging/Files/selftester.bat +++ b/Packaging/Files/selftester.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/selftester.sh b/Packaging/Files/selftester.sh index 0ecbdde352..8b7d783d68 100755 --- a/Packaging/Files/selftester.sh +++ b/Packaging/Files/selftester.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/setup_python.sh b/Packaging/Files/setup_python.sh index d2b256f711..416f6903fd 100755 --- a/Packaging/Files/setup_python.sh +++ b/Packaging/Files/setup_python.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/Files/start_devenv.bat b/Packaging/Files/start_devenv.bat index b65e2e7cb5..3c054466b6 100755 --- a/Packaging/Files/start_devenv.bat +++ b/Packaging/Files/start_devenv.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/uninstall_otb.bat b/Packaging/Files/uninstall_otb.bat index 9ef3871e0a..99ec44d870 100644 --- a/Packaging/Files/uninstall_otb.bat +++ b/Packaging/Files/uninstall_otb.bat @@ -1,5 +1,5 @@ :: -:: Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +:: Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) :: :: This file is part of Orfeo Toolbox :: diff --git a/Packaging/Files/uninstall_otb.sh b/Packaging/Files/uninstall_otb.sh index be82c406e6..bb7dad47b1 100755 --- a/Packaging/Files/uninstall_otb.sh +++ b/Packaging/Files/uninstall_otb.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/PackageGlobals.cmake b/Packaging/PackageGlobals.cmake index 8f1fd7be41..9db929f030 100644 --- a/Packaging/PackageGlobals.cmake +++ b/Packaging/PackageGlobals.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/check_cmake_variables.cmake b/Packaging/check_cmake_variables.cmake index 4582ede61f..79ca21fca9 100644 --- a/Packaging/check_cmake_variables.cmake +++ b/Packaging/check_cmake_variables.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/cleanup_package.cmake b/Packaging/cleanup_package.cmake index a003fa0986..43e954ec0e 100644 --- a/Packaging/cleanup_package.cmake +++ b/Packaging/cleanup_package.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/clear_cmakecache_variables.cmake b/Packaging/clear_cmakecache_variables.cmake index 4baf70d149..a6e8d26208 100644 --- a/Packaging/clear_cmakecache_variables.cmake +++ b/Packaging/clear_cmakecache_variables.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/configure_loader.cmake b/Packaging/configure_loader.cmake index 64949fe11b..39c92a421f 100644 --- a/Packaging/configure_loader.cmake +++ b/Packaging/configure_loader.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/create_package.cmake b/Packaging/create_package.cmake index 97fa1c9d7c..64ce36e615 100644 --- a/Packaging/create_package.cmake +++ b/Packaging/create_package.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/detect_using_file_command.cmake b/Packaging/detect_using_file_command.cmake index 9fae4baaa1..8ecbddd664 100644 --- a/Packaging/detect_using_file_command.cmake +++ b/Packaging/detect_using_file_command.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/get_variables_ending_with.cmake b/Packaging/get_variables_ending_with.cmake index 31fa10c350..6e850c4251 100644 --- a/Packaging/get_variables_ending_with.cmake +++ b/Packaging/get_variables_ending_with.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_cmake_files.cmake b/Packaging/install_cmake_files.cmake index c890e19a19..d08eeedf04 100644 --- a/Packaging/install_cmake_files.cmake +++ b/Packaging/install_cmake_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_importlibs.cmake b/Packaging/install_importlibs.cmake index 54925a21e4..62baaddfe9 100644 --- a/Packaging/install_importlibs.cmake +++ b/Packaging/install_importlibs.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_include_dirs.cmake b/Packaging/install_include_dirs.cmake index 07134da906..2233022ec1 100644 --- a/Packaging/install_include_dirs.cmake +++ b/Packaging/install_include_dirs.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_otbapp_wrapper_scripts.cmake b/Packaging/install_otbapp_wrapper_scripts.cmake index e9a7f46f69..249d3bcb12 100644 --- a/Packaging/install_otbapp_wrapper_scripts.cmake +++ b/Packaging/install_otbapp_wrapper_scripts.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_python_bindings.cmake b/Packaging/install_python_bindings.cmake index 5de31587c0..73361e5fa5 100644 --- a/Packaging/install_python_bindings.cmake +++ b/Packaging/install_python_bindings.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_qtdev_files.cmake b/Packaging/install_qtdev_files.cmake index 0d009d5c0a..7f1effc7bc 100644 --- a/Packaging/install_qtdev_files.cmake +++ b/Packaging/install_qtdev_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_rule.cmake b/Packaging/install_rule.cmake index f335ad1654..9a59f08468 100644 --- a/Packaging/install_rule.cmake +++ b/Packaging/install_rule.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_share_dirs.cmake b/Packaging/install_share_dirs.cmake index 0ab2d6b7a6..f748005400 100644 --- a/Packaging/install_share_dirs.cmake +++ b/Packaging/install_share_dirs.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_vstudio_files.cmake b/Packaging/install_vstudio_files.cmake index caf8169fc0..fcdb41e607 100644 --- a/Packaging/install_vstudio_files.cmake +++ b/Packaging/install_vstudio_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/install_without_message.cmake b/Packaging/install_without_message.cmake index f4ba83b589..f7f67396c9 100644 --- a/Packaging/install_without_message.cmake +++ b/Packaging/install_without_message.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/installer_files.cmake b/Packaging/installer_files.cmake index d3af59e3b9..ce011953f2 100644 --- a/Packaging/installer_files.cmake +++ b/Packaging/installer_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/isfile_symlink.cmake b/Packaging/isfile_symlink.cmake index a67cceaff6..9aca62fa8b 100644 --- a/Packaging/isfile_symlink.cmake +++ b/Packaging/isfile_symlink.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/patch_cmake_files.cmake b/Packaging/patch_cmake_files.cmake index cd0d2db300..5be49718ad 100644 --- a/Packaging/patch_cmake_files.cmake +++ b/Packaging/patch_cmake_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/post_install.cmake b/Packaging/post_install.cmake index b08b2faa4e..1b56a07d90 100644 --- a/Packaging/post_install.cmake +++ b/Packaging/post_install.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/prepare_file_list.cmake b/Packaging/prepare_file_list.cmake index 87fdeb065a..32b764af46 100644 --- a/Packaging/prepare_file_list.cmake +++ b/Packaging/prepare_file_list.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/prepare_search_dirs.cmake b/Packaging/prepare_search_dirs.cmake index 1a0a248f47..8f15dc5ad6 100644 --- a/Packaging/prepare_search_dirs.cmake +++ b/Packaging/prepare_search_dirs.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/process_file_recurse.cmake b/Packaging/process_file_recurse.cmake index 8825d2b790..02dbb69739 100644 --- a/Packaging/process_file_recurse.cmake +++ b/Packaging/process_file_recurse.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/search_library.cmake b/Packaging/search_library.cmake index de5c07c9ac..f91bfe446a 100644 --- a/Packaging/search_library.cmake +++ b/Packaging/search_library.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/setif_value_in_list.cmake b/Packaging/setif_value_in_list.cmake index b82650012c..3381ec94e8 100644 --- a/Packaging/setif_value_in_list.cmake +++ b/Packaging/setif_value_in_list.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Packaging/testing.cmake b/Packaging/testing.cmake index 0cda22d19c..6a5fd62a79 100644 --- a/Packaging/testing.cmake +++ b/Packaging/testing.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/CTestCustom.cmake.in b/SuperBuild/CMake/CTestCustom.cmake.in index eeaee44c07..3e28e96c43 100644 --- a/SuperBuild/CMake/CTestCustom.cmake.in +++ b/SuperBuild/CMake/CTestCustom.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_boost.cmake b/SuperBuild/CMake/External_boost.cmake index edd73c86b0..f3a971469e 100644 --- a/SuperBuild/CMake/External_boost.cmake +++ b/SuperBuild/CMake/External_boost.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_curl.cmake b/SuperBuild/CMake/External_curl.cmake index b9154f9203..85bbd1440f 100644 --- a/SuperBuild/CMake/External_curl.cmake +++ b/SuperBuild/CMake/External_curl.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_expat.cmake b/SuperBuild/CMake/External_expat.cmake index c857db624a..aced23d21d 100644 --- a/SuperBuild/CMake/External_expat.cmake +++ b/SuperBuild/CMake/External_expat.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_fftw.cmake b/SuperBuild/CMake/External_fftw.cmake index ab845b0b35..b6048d35ee 100644 --- a/SuperBuild/CMake/External_fftw.cmake +++ b/SuperBuild/CMake/External_fftw.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_font.cmake b/SuperBuild/CMake/External_font.cmake index 5810916089..b9c088b153 100644 --- a/SuperBuild/CMake/External_font.cmake +++ b/SuperBuild/CMake/External_font.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_freetype.cmake b/SuperBuild/CMake/External_freetype.cmake index f3ed29cd44..9bfbfb2cb4 100644 --- a/SuperBuild/CMake/External_freetype.cmake +++ b/SuperBuild/CMake/External_freetype.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_gdal.cmake b/SuperBuild/CMake/External_gdal.cmake index c2e389c7fa..ad47a8f3c4 100644 --- a/SuperBuild/CMake/External_gdal.cmake +++ b/SuperBuild/CMake/External_gdal.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_geos.cmake b/SuperBuild/CMake/External_geos.cmake index d623f016df..d52fe3a55e 100644 --- a/SuperBuild/CMake/External_geos.cmake +++ b/SuperBuild/CMake/External_geos.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_geotiff.cmake b/SuperBuild/CMake/External_geotiff.cmake index 7a895d18d8..9de4b2cbf5 100644 --- a/SuperBuild/CMake/External_geotiff.cmake +++ b/SuperBuild/CMake/External_geotiff.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_glew.cmake b/SuperBuild/CMake/External_glew.cmake index 973abeddbd..546886b430 100644 --- a/SuperBuild/CMake/External_glew.cmake +++ b/SuperBuild/CMake/External_glew.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_glfw.cmake b/SuperBuild/CMake/External_glfw.cmake index 4e93ccfa01..77a6ea0bfe 100644 --- a/SuperBuild/CMake/External_glfw.cmake +++ b/SuperBuild/CMake/External_glfw.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_glut.cmake b/SuperBuild/CMake/External_glut.cmake index 1be9c9ffc6..08b987b049 100644 --- a/SuperBuild/CMake/External_glut.cmake +++ b/SuperBuild/CMake/External_glut.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_gsl.cmake b/SuperBuild/CMake/External_gsl.cmake index bae6f21184..c96132d935 100644 --- a/SuperBuild/CMake/External_gsl.cmake +++ b/SuperBuild/CMake/External_gsl.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_hdf4.cmake b/SuperBuild/CMake/External_hdf4.cmake index 5773b7f4ef..803ccaae68 100644 --- a/SuperBuild/CMake/External_hdf4.cmake +++ b/SuperBuild/CMake/External_hdf4.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_hdf5.cmake b/SuperBuild/CMake/External_hdf5.cmake index de40c34fce..d1b1ada3d8 100644 --- a/SuperBuild/CMake/External_hdf5.cmake +++ b/SuperBuild/CMake/External_hdf5.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_itk.cmake b/SuperBuild/CMake/External_itk.cmake index 7cd21d5a42..491b68fa86 100644 --- a/SuperBuild/CMake/External_itk.cmake +++ b/SuperBuild/CMake/External_itk.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_jpeg.cmake b/SuperBuild/CMake/External_jpeg.cmake index 3820b1d148..1284a96587 100644 --- a/SuperBuild/CMake/External_jpeg.cmake +++ b/SuperBuild/CMake/External_jpeg.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_libkml.cmake b/SuperBuild/CMake/External_libkml.cmake index 510c857c16..e8a9f7c9f7 100644 --- a/SuperBuild/CMake/External_libkml.cmake +++ b/SuperBuild/CMake/External_libkml.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_libsvm.cmake b/SuperBuild/CMake/External_libsvm.cmake index b3d7a9d332..34c58e9fb3 100644 --- a/SuperBuild/CMake/External_libsvm.cmake +++ b/SuperBuild/CMake/External_libsvm.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_muparser.cmake b/SuperBuild/CMake/External_muparser.cmake index a11a97d2d4..fa80ebb6a9 100644 --- a/SuperBuild/CMake/External_muparser.cmake +++ b/SuperBuild/CMake/External_muparser.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_muparserx.cmake b/SuperBuild/CMake/External_muparserx.cmake index 40005697d9..f8c40eb7fe 100644 --- a/SuperBuild/CMake/External_muparserx.cmake +++ b/SuperBuild/CMake/External_muparserx.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_netcdf.cmake b/SuperBuild/CMake/External_netcdf.cmake index cf7be410fe..bb2cb4d49a 100644 --- a/SuperBuild/CMake/External_netcdf.cmake +++ b/SuperBuild/CMake/External_netcdf.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_opencv.cmake b/SuperBuild/CMake/External_opencv.cmake index 895ad789f8..d668a40875 100644 --- a/SuperBuild/CMake/External_opencv.cmake +++ b/SuperBuild/CMake/External_opencv.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_openjpeg.cmake b/SuperBuild/CMake/External_openjpeg.cmake index dcd8da8e2a..6877170c3a 100644 --- a/SuperBuild/CMake/External_openjpeg.cmake +++ b/SuperBuild/CMake/External_openjpeg.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_openssl.cmake b/SuperBuild/CMake/External_openssl.cmake index 80adb8a6c1..6f27644f0a 100644 --- a/SuperBuild/CMake/External_openssl.cmake +++ b/SuperBuild/CMake/External_openssl.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_openthreads.cmake b/SuperBuild/CMake/External_openthreads.cmake index 0f2db7215e..c9c2afb65c 100644 --- a/SuperBuild/CMake/External_openthreads.cmake +++ b/SuperBuild/CMake/External_openthreads.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_ossim.cmake b/SuperBuild/CMake/External_ossim.cmake index e91609f9cf..b1d9eace5c 100644 --- a/SuperBuild/CMake/External_ossim.cmake +++ b/SuperBuild/CMake/External_ossim.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_otb.cmake b/SuperBuild/CMake/External_otb.cmake index d056b4080a..95b93eba9b 100644 --- a/SuperBuild/CMake/External_otb.cmake +++ b/SuperBuild/CMake/External_otb.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_pcre.cmake b/SuperBuild/CMake/External_pcre.cmake index 92c38e2880..ac47ae00c2 100644 --- a/SuperBuild/CMake/External_pcre.cmake +++ b/SuperBuild/CMake/External_pcre.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_png.cmake b/SuperBuild/CMake/External_png.cmake index 80186eea9d..b7301d0eac 100644 --- a/SuperBuild/CMake/External_png.cmake +++ b/SuperBuild/CMake/External_png.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_proj.cmake b/SuperBuild/CMake/External_proj.cmake index 69b6002bae..dc014e321a 100644 --- a/SuperBuild/CMake/External_proj.cmake +++ b/SuperBuild/CMake/External_proj.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_qt5.cmake b/SuperBuild/CMake/External_qt5.cmake index 65281c88b7..0cac35eaa2 100644 --- a/SuperBuild/CMake/External_qt5.cmake +++ b/SuperBuild/CMake/External_qt5.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_qwt.cmake b/SuperBuild/CMake/External_qwt.cmake index ba2b41bc24..9e97c83228 100644 --- a/SuperBuild/CMake/External_qwt.cmake +++ b/SuperBuild/CMake/External_qwt.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_shark.cmake b/SuperBuild/CMake/External_shark.cmake index bdb14a2c0d..0f45682cdd 100644 --- a/SuperBuild/CMake/External_shark.cmake +++ b/SuperBuild/CMake/External_shark.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_sqlite.cmake b/SuperBuild/CMake/External_sqlite.cmake index 70927aaf87..6ab49ca32c 100644 --- a/SuperBuild/CMake/External_sqlite.cmake +++ b/SuperBuild/CMake/External_sqlite.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_swig.cmake b/SuperBuild/CMake/External_swig.cmake index 6cc55d22bb..5fc4828005 100644 --- a/SuperBuild/CMake/External_swig.cmake +++ b/SuperBuild/CMake/External_swig.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_tiff.cmake b/SuperBuild/CMake/External_tiff.cmake index 37c6b80995..74c2ce8f22 100644 --- a/SuperBuild/CMake/External_tiff.cmake +++ b/SuperBuild/CMake/External_tiff.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_tinyxml.cmake b/SuperBuild/CMake/External_tinyxml.cmake index 5e54bdb878..40d3caf03a 100644 --- a/SuperBuild/CMake/External_tinyxml.cmake +++ b/SuperBuild/CMake/External_tinyxml.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/External_zlib.cmake b/SuperBuild/CMake/External_zlib.cmake index 5523177581..ced6dc89f2 100644 --- a/SuperBuild/CMake/External_zlib.cmake +++ b/SuperBuild/CMake/External_zlib.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/SuperBuild_Macro.cmake b/SuperBuild/CMake/SuperBuild_Macro.cmake index b378678be5..296ef55978 100644 --- a/SuperBuild/CMake/SuperBuild_Macro.cmake +++ b/SuperBuild/CMake/SuperBuild_Macro.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/SystemCheckup/CMakeLists.txt b/SuperBuild/CMake/SystemCheckup/CMakeLists.txt index 58ed95c622..23bc664e1a 100644 --- a/SuperBuild/CMake/SystemCheckup/CMakeLists.txt +++ b/SuperBuild/CMake/SystemCheckup/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMake/patch.cmake b/SuperBuild/CMake/patch.cmake index 984d595b1c..39b875d511 100644 --- a/SuperBuild/CMake/patch.cmake +++ b/SuperBuild/CMake/patch.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CMakeLists.txt b/SuperBuild/CMakeLists.txt index d2b8b27e5a..cef87ae4c2 100644 --- a/SuperBuild/CMakeLists.txt +++ b/SuperBuild/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/CTestConfig.cmake b/SuperBuild/CTestConfig.cmake index d8f1654981..e3acafc8cd 100644 --- a/SuperBuild/CTestConfig.cmake +++ b/SuperBuild/CTestConfig.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/GLUT/CMakeLists.txt b/SuperBuild/patches/GLUT/CMakeLists.txt index 5201b82cca..6564d628b3 100644 --- a/SuperBuild/patches/GLUT/CMakeLists.txt +++ b/SuperBuild/patches/GLUT/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/LIBKML/CMakeLists.txt b/SuperBuild/patches/LIBKML/CMakeLists.txt index 1b6c1f04b5..543db3e41b 100644 --- a/SuperBuild/patches/LIBKML/CMakeLists.txt +++ b/SuperBuild/patches/LIBKML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/LIBSVM/CMakeLists.txt b/SuperBuild/patches/LIBSVM/CMakeLists.txt index d57053fb81..687eb9ba92 100644 --- a/SuperBuild/patches/LIBSVM/CMakeLists.txt +++ b/SuperBuild/patches/LIBSVM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/MUPARSER/CMakeLists.txt b/SuperBuild/patches/MUPARSER/CMakeLists.txt index 29c186f518..8a86c052f8 100644 --- a/SuperBuild/patches/MUPARSER/CMakeLists.txt +++ b/SuperBuild/patches/MUPARSER/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/OPENTHREADS/CMakeLists.txt b/SuperBuild/patches/OPENTHREADS/CMakeLists.txt index 0cc6b0ee40..074c2171f1 100644 --- a/SuperBuild/patches/OPENTHREADS/CMakeLists.txt +++ b/SuperBuild/patches/OPENTHREADS/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/OSSIM/CMakeLists.txt b/SuperBuild/patches/OSSIM/CMakeLists.txt index 53e8875e8b..9a243932bb 100644 --- a/SuperBuild/patches/OSSIM/CMakeLists.txt +++ b/SuperBuild/patches/OSSIM/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/SQLITE/CMakeLists.txt b/SuperBuild/patches/SQLITE/CMakeLists.txt index e72d318d05..583de68887 100644 --- a/SuperBuild/patches/SQLITE/CMakeLists.txt +++ b/SuperBuild/patches/SQLITE/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/SuperBuild/patches/TINYXML/CMakeLists.txt b/SuperBuild/patches/TINYXML/CMakeLists.txt index 01be0a9833..f29b602154 100644 --- a/SuperBuild/patches/TINYXML/CMakeLists.txt +++ b/SuperBuild/patches/TINYXML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Completion/CMakeLists.txt b/Utilities/Completion/CMakeLists.txt index 46752c4432..8f6e2431cd 100644 --- a/Utilities/Completion/CMakeLists.txt +++ b/Utilities/Completion/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Completion/completionGenerator.cxx b/Utilities/Completion/completionGenerator.cxx index 8d74323508..c65f87a676 100644 --- a/Utilities/Completion/completionGenerator.cxx +++ b/Utilities/Completion/completionGenerator.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * diff --git a/Utilities/Doxygen/CMakeLists.txt b/Utilities/Doxygen/CMakeLists.txt index c5d5cfa5be..4cb046702a 100644 --- a/Utilities/Doxygen/CMakeLists.txt +++ b/Utilities/Doxygen/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Doxygen/GenerateExamplesDox.cmake b/Utilities/Doxygen/GenerateExamplesDox.cmake index 6b27e654f4..3a1eb10938 100644 --- a/Utilities/Doxygen/GenerateExamplesDox.cmake +++ b/Utilities/Doxygen/GenerateExamplesDox.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Doxygen/fix_php7.pl b/Utilities/Doxygen/fix_php7.pl index 04ed486aab..20f04a3f06 100755 --- a/Utilities/Doxygen/fix_php7.pl +++ b/Utilities/Doxygen/fix_php7.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # -# Copyright (C) 2005-2018 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Doxygen/mcdoc.py b/Utilities/Doxygen/mcdoc.py index 071cf8a039..b1b005ec4e 100644 --- a/Utilities/Doxygen/mcdoc.py +++ b/Utilities/Doxygen/mcdoc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Doxygen/otbgroup.pl b/Utilities/Doxygen/otbgroup.pl index c8660c92f3..7e472c7e81 100644 --- a/Utilities/Doxygen/otbgroup.pl +++ b/Utilities/Doxygen/otbgroup.pl @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/InstallTest/CMakeLists.txt b/Utilities/InstallTest/CMakeLists.txt index f9d716368d..e7b2989f39 100644 --- a/Utilities/InstallTest/CMakeLists.txt +++ b/Utilities/InstallTest/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/InstallTest/InstallTest.cmake b/Utilities/InstallTest/InstallTest.cmake index 4ab6f827dc..eb2b1f74d6 100644 --- a/Utilities/InstallTest/InstallTest.cmake +++ b/Utilities/InstallTest/InstallTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Maintenance/SuperbuildDownloadList.sh b/Utilities/Maintenance/SuperbuildDownloadList.sh index c436e2c5c7..03df659f87 100755 --- a/Utilities/Maintenance/SuperbuildDownloadList.sh +++ b/Utilities/Maintenance/SuperbuildDownloadList.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Maintenance/TravisBuild.cmake b/Utilities/Maintenance/TravisBuild.cmake index c2387e5432..dc6260d741 100644 --- a/Utilities/Maintenance/TravisBuild.cmake +++ b/Utilities/Maintenance/TravisBuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/Utilities/Maintenance/TravisBuild.sh b/Utilities/Maintenance/TravisBuild.sh index 162223276c..baa544b903 100755 --- a/Utilities/Maintenance/TravisBuild.sh +++ b/Utilities/Maintenance/TravisBuild.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # diff --git a/i18n/CMakeLists.txt b/i18n/CMakeLists.txt index 5aa39ee48e..9469875cd9 100644 --- a/i18n/CMakeLists.txt +++ b/i18n/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) +# Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) # # This file is part of Orfeo Toolbox # -- GitLab From 8e47d3c36c0c9c12b50370b696dfea2c68972f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Mon, 27 Apr 2020 18:58:10 +0200 Subject: [PATCH 36/37] DOC: fix typo and update copyright dates --- .../AppHyperspectral/app/otbSpectralAngleClassification.cxx | 4 ++-- .../include/otbSpectralInformationDivergenceFunctor.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx index 5e4eec3dd6..0755543feb 100644 --- a/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbSpectralAngleClassification.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * @@ -65,7 +65,7 @@ private: SetDocLongDescription("This application computes a spectral measure on a hyperspectral data cube using a set of " "reference pixels. The image is then classified by finding for each pixel the index of its closest endmember, " "i.e. the endmember corresponding to the lowest measurement value. The output classification is " - "labeled from 1 to L, L being the nulber of endmembers. A threshold can be set for the " + "labeled from 1 to L, L being the number of endmembers. A threshold can be set for the " "classification step, only measurement values lower than this threshold will be considered, other " "will be classified as `background values` (default value of 0). \n\n" "Two measures are available : the spectral angle mapper and the spectral information divergence. See [1] for details"); diff --git a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h index ceb8ef05be..5e52e0b4a2 100644 --- a/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h +++ b/Modules/Filtering/ImageManipulation/include/otbSpectralInformationDivergenceFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) + * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * -- GitLab From f223a1df6bb2db4567a4ecc7ad5b86934ecf6751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= <cedric.traizet@c-s.fr> Date: Mon, 27 Apr 2020 20:58:12 +0200 Subject: [PATCH 37/37] DOC: add a paragraph on spectral classification in the hyperspectral recipe. --- .../HyperspectralImages/classification.png | Bin 0 -> 78694 bytes .../Cookbook/rst/recipes/hyperspectral.rst | 66 ++++++++++++++++++ .../Cookbook/rst/recipes/pbclassif.rst | 2 + 3 files changed, 68 insertions(+) create mode 100644 Documentation/Cookbook/Art/HyperspectralImages/classification.png diff --git a/Documentation/Cookbook/Art/HyperspectralImages/classification.png b/Documentation/Cookbook/Art/HyperspectralImages/classification.png new file mode 100644 index 0000000000000000000000000000000000000000..c84e24bea344beca46782e3dee9b9af5a29948e9 GIT binary patch literal 78694 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%0DD#QwGqoswAjuygwI%=6r4 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
?k#U((R{d0 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 literal 0 HcmV?d00001 diff --git a/Documentation/Cookbook/rst/recipes/hyperspectral.rst b/Documentation/Cookbook/rst/recipes/hyperspectral.rst index 9e89886fdf..ef6fd1b451 100644 --- a/Documentation/Cookbook/rst/recipes/hyperspectral.rst +++ b/Documentation/Cookbook/rst/recipes/hyperspectral.rst @@ -106,6 +106,68 @@ image is shown below: Resulting unmixed image, here the first three bands are displayed. +Classification +-------------- + +A common task in hyperspectral image processing is to classify a data cube. For example +one might want to match pixels to reference endmembers. The Spectral Angle Mapper (SAM) algorithm +[1] does that by computing a spectral measure between each pixel and the references. + +The spectral angle of a pixel `x` with a reference pixel `r` is defined by : + +.. math:: + + sam[x, r] = cos^{-1}(\frac{<x,r>}{\|x\| * \|r\| } ) + + +where `<x,r>` denotes the scalar product between x and r. +This is also called the spectral angle between `x` and `r`. +In SAM classification the spectral angle is computed for each pixel with a set of reference pixels, +the class associated with the pixel is the index of the reference pixel that has the lowest spectral angle. + + +:: + + otbcli_SpectralAngleClassification -in inputImage.tif + -ie endmembers.tif + -out classification.tif + -mode sam + +The result of the classification is shown below : + + +.. figure:: ../Art/HyperspectralImages/classification.png + :width: 70% + :align: center + + Resulting unmixed classified image. + + +Another algorithm is available in this application based on spectral information divergence [1], +if we define the probability mass function p of a pixel x by : + +.. math:: + x = [x_1, x_2 ,..., x_L ]^T \\ + + p = [p_1, p_2 ,..., p_L ]^T \\ + + p_i = \frac{x_i}{\sum_{j=1}^L x_j} + + +The spectral information divergence between a pixel `x` and a reference `r` is defined by : + +.. math:: + sid[x, r] = \sum_{j=1}^{L} p_j *log(\frac{p_j}{q_j}) + \sum_{j=1}^{L} q_j * log(\frac{q_j}{p_j}) + + +where p and q are respectively the probability mass function of x and r. As with the SAM algorithm, +the class associated with the pixel is the index of the reference pixel that has the lowest spectral information +divergence. + + +Note that the framework described in the +:ref:`classification recipe<classif>` can also be applied to hyperspectral data. + Anomaly detection ----------------- @@ -183,6 +245,10 @@ The value of the threshold depends on how sensitive the anomaly detector should Left: Computed Rx score, right: detected anomalies (in red) +*[1] Du, Yingzi & Chang, Chein-I & Ren, Hsuan & Chang, Chein-Chi & Jensen, James & D'Amico, Francis. (2004). +New Hyperspectral Discrimination Measure for Spectral Characterization. Optical Engineering - OPT ENG. 43.* + .. _here: http://www.ehu.eus/ccwintco/index.php/Hyperspectral_Remote_Sensing_Scenes#Cuprite .. _AVIRIS: https://aviris.jpl.nasa.gov/ .. _Pavia: http://www.ehu.eus/ccwintco/index.php/Hyperspectral_Remote_Sensing_Scenes#Pavia_University_scene + diff --git a/Documentation/Cookbook/rst/recipes/pbclassif.rst b/Documentation/Cookbook/rst/recipes/pbclassif.rst index dbeeadd8ab..8a13d970b9 100644 --- a/Documentation/Cookbook/rst/recipes/pbclassif.rst +++ b/Documentation/Cookbook/rst/recipes/pbclassif.rst @@ -1,3 +1,5 @@ +.. _classif: + Classification ============== -- GitLab