OTB  10.0.0
Orfeo Toolbox
otbLmvmPanSharpeningFusionImageFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1999-2011 Insight Software Consortium
3  * Copyright (C) 2005-2024 Centre National d'Etudes Spatiales (CNES)
4  *
5  * This file is part of Orfeo Toolbox
6  *
7  * https://www.orfeo-toolbox.org/
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #ifndef otbLmvmPanSharpeningFusionImageFilter_h
23 #define otbLmvmPanSharpeningFusionImageFilter_h
24 
26 #include "otbFunctorImageFilter.h"
28 #include "itkNoiseImageFilter.h"
29 #include "otbVectorImage.h"
30 
31 #include "itkProgressAccumulator.h"
32 
33 
34 namespace otb
35 {
56 template <class TPanImageType, class TXsImageType, class TOutputImageType, class TInternalPrecision = float>
57 class ITK_EXPORT LmvmPanSharpeningFusionImageFilter : public itk::ImageToImageFilter<TXsImageType, TOutputImageType>
58 {
59 public:
62  typedef itk::ImageToImageFilter<TXsImageType, TOutputImageType> Superclass;
63  typedef itk::SmartPointer<Self> Pointer;
64  typedef itk::SmartPointer<const Self> ConstPointer;
65 
68 
70  typedef typename TXsImageType::InternalPixelType XsPixelType;
72 
75 
77  typedef typename itk::Array<TInternalPrecision> ArrayType;
78 
80  itkNewMacro(Self);
81 
83  itkTypeMacro(LmvmPanSharpeningFusionImageFilter, itk::ImageToImageFilter);
84 
87 
89  itkGetMacro(Radius, RadiusType);
90  itkSetMacro(Radius, RadiusType);
92 
94  itkSetMacro(Filter, ArrayType);
95  itkGetConstReferenceMacro(Filter, ArrayType);
97 
98  virtual void SetPanInput(const TPanImageType* image);
99  const TPanImageType* GetPanInput(void) const;
100 
101  virtual void SetXsInput(const TXsImageType* path);
102  const TXsImageType* GetXsInput(void) const;
103 
104 protected:
107 
110 
112  void GenerateData() override;
113 
115  void PrintSelf(std::ostream& os, itk::Indent indent) const override;
116 
117 private:
118  LmvmPanSharpeningFusionImageFilter(Self&); // intentionally not implemented
119  void operator=(const Self&); // intentionally not implemented
120 
128  {
129  public:
130  // Implement the fusion as a six arguments operator
131  void operator()(typename TOutputImageType::PixelType& output, const typename InternalVectorImageType::PixelType& stdXsPixel,
132  const TInternalPrecision& smoothPanchroPixel, const typename TPanImageType::PixelType& sharpPanchroPixel) const
133  {
134  // Perform fusion for each band with appropriate casting
135  for (unsigned int i = 0; i < stdXsPixel.Size(); ++i)
136  {
137  output[i] = static_cast<typename TOutputImageType::InternalPixelType>(((sharpPanchroPixel - smoothPanchroPixel) * stdXsPixel[i]));
138  }
139  }
140  constexpr size_t OutputSize(const std::array<size_t, 3> inputsNbBands) const
141  {
142  return inputsNbBands[0];
143  }
144  };
145 
147  {
148  public:
149  // Implement the fusion as a six arguments operator
150  void operator()(typename TOutputImageType::PixelType& output, const typename TOutputImageType::PixelType& functor1Pixel,
151  const typename InternalVectorImageType::PixelType& smoothXsPixel, const TInternalPrecision& stdPanchroPixel) const
152  {
153  TInternalPrecision scale = 1.;
154 
155  if (std::abs(stdPanchroPixel) > 1e-10)
156  {
157  scale = 1.0 / stdPanchroPixel;
158  }
159 
160  // Perform fusion for each band with appropriate casting
161  for (unsigned int i = 0; i < smoothXsPixel.Size(); ++i)
162  {
163  output[i] = static_cast<typename TOutputImageType::InternalPixelType>(((functor1Pixel[i] * scale) + smoothXsPixel[i]));
164  }
165  }
166 
167  constexpr size_t OutputSize(const std::array<size_t, 3> inputsNbBands) const
168  {
169  return inputsNbBands[0];
170  }
171  };
172 
178 
181 
182 
184 
187 
188 
192 
195 
199 
202 
204  typedef itk::NoiseImageFilter<TPanImageType, InternalImageType> PanNoiseFilterType;
205 
207  typename PanNoiseFilterType::Pointer m_PanNoiseFilter;
208 
210  typedef itk::NoiseImageFilter<XsBandImageType, InternalImageType> XsNoiseFilterType;
211 
213  typename XsNoiseFilterType::Pointer m_XsNoiseFilter;
214 
217 
220 
223 
226 
229 
232 
234  typename itk::ProgressAccumulator::Pointer m_ProgressAccumulator;
235 };
236 
237 } // end namespace otb
238 
239 #ifndef OTB_MANUAL_INSTANTIATION
241 #endif
242 
243 #endif
Applies a convolution filter to a mono channel image.
itk::SmartPointer< Self > Pointer
A generic functor filter templated by its functor.
itk::SmartPointer< Self > Pointer
Creation of an "otb" image which contains metadata.
Definition: otbImage.h:92
Superclass::SizeType SizeType
Definition: otbImage.h:148
constexpr vcl_size_t OutputSize(const std::array< vcl_size_t, 3 > inputsNbBands) const
void operator()(typename TOutputImageType::PixelType &output, const typename InternalVectorImageType::PixelType &stdXsPixel, const TInternalPrecision &smoothPanchroPixel, const typename TPanImageType::PixelType &sharpPanchroPixel) const
void operator()(typename TOutputImageType::PixelType &output, const typename TOutputImageType::PixelType &functor1Pixel, const typename InternalVectorImageType::PixelType &smoothXsPixel, const TInternalPrecision &stdPanchroPixel) const
constexpr vcl_size_t OutputSize(const std::array< vcl_size_t, 3 > inputsNbBands) const
This class performs a Local Mean and Variance Matching (LMVM) Pan sharpening operation.
itk::NoiseImageFilter< XsBandImageType, InternalImageType > XsNoiseFilterType
itk::NoiseImageFilter< TPanImageType, InternalImageType > PanNoiseFilterType
FunctorImageFilter< FusionFunctor1 > FusionStep1FilterType
otb::PerBandVectorImageFilter< TXsImageType, InternalVectorImageType, XsConvolutionFilterType > XsVectorConvolutionFilterType
otb::PerBandVectorImageFilter< TXsImageType, InternalVectorImageType, XsNoiseFilterType > XsVectorNoiseFilterType
XsVectorConvolutionFilterType::Pointer m_XsVectorConvolutionFilter
otb::Image< XsPixelType, TXsImageType::ImageDimension > XsBandImageType
otb::ConvolutionImageFilter< TPanImageType, InternalImageType, itk::ZeroFluxNeumannBoundaryCondition< TPanImageType >, TInternalPrecision > PanConvolutionFilterType
itk::ImageToImageFilter< TXsImageType, TOutputImageType > Superclass
otb::ConvolutionImageFilter< XsBandImageType, InternalImageType, itk::ZeroFluxNeumannBoundaryCondition< TPanImageType >, TInternalPrecision > XsConvolutionFilterType
otb::Image< TInternalPrecision, TPanImageType::ImageDimension > InternalImageType
FunctorImageFilter< FusionFunctor2 > FusionStep2FilterType
otb::VectorImage< TInternalPrecision, TXsImageType::ImageDimension > InternalVectorImageType
This filter is a helper class to apply per band a standard itk::ImageToImageFilter to a VectorImage.
Creation of an "otb" vector image which contains metadata.
Superclass::PixelType PixelType
static const std::string Filter
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.