OTB  9.0.0
Orfeo Toolbox
otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1999-2011 Insight Software Consortium
3  * Copyright (C) 2005-2022 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 otbSurfaceAdjacencyEffectCorrectionSchemeFilter_h
23 #define otbSurfaceAdjacencyEffectCorrectionSchemeFilter_h
24 
25 #include "itkNumericTraits.h"
26 #include <vector>
28 #include "itkVariableSizeMatrix.h"
30 #include <iomanip>
31 
32 namespace otb
33 {
34 namespace Functor
35 {
45 template <class TNeighIter, class TOutput>
47 {
48 public:
50  {
51  }
53  {
54  }
55 
56  typedef itk::VariableSizeMatrix<double> WeightingMatrixType;
57  typedef typename std::vector<WeightingMatrixType> WeightingValuesContainerType;
58  typedef typename TOutput::RealValueType RealValueType;
59  typedef std::vector<double> DoubleContainerType;
60 
62  {
63  m_WeightingValues = cont;
64  }
65  void SetUpwardTransmittanceRatio(DoubleContainerType& upwardTransmittanceRatio)
66  {
67  m_UpwardTransmittanceRatio = upwardTransmittanceRatio;
68  }
70  {
71  m_DiffuseRatio = diffuseRatio;
72  }
74  {
75  return m_WeightingValues;
76  }
78  {
80  }
82  {
83  return m_DiffuseRatio;
84  }
85 
86  inline TOutput operator()(const TNeighIter& it)
87  {
88  unsigned int neighborhoodSize = it.Size();
89  double contribution = 0.;
90  TOutput outPixel;
91  outPixel.SetSize(it.GetCenterPixel().Size());
92 
93  // Loop over each component
94  const unsigned int size = outPixel.GetSize();
95  for (unsigned int j = 0; j < size; ++j)
96  {
97  contribution = 0;
98  // Load the current channel ponderation value matrix
99  WeightingMatrixType TempChannelWeighting = m_WeightingValues[j];
100  // Loop over the neighborhood
101  for (unsigned int i = 0; i < neighborhoodSize; ++i)
102  {
103  // Current neighborhood pixel index calculation
104  unsigned int RowIdx = 0;
105  unsigned int ColIdx = 0;
106  RowIdx = i / TempChannelWeighting.Cols();
107  ColIdx = i - RowIdx * TempChannelWeighting.Cols();
108 
109  // Extract the current neighborhood pixel ponderation
110  double idVal = TempChannelWeighting(RowIdx, ColIdx);
111  // Extract the current neighborhood pixel value
112  TOutput tempPix = it.GetPixel(i);
113 
114  contribution += static_cast<double>(tempPix[j]) * idVal;
115  }
116 
117  outPixel[j] = static_cast<RealValueType>(it.GetCenterPixel()[j]) * m_UpwardTransmittanceRatio[j] + contribution * m_DiffuseRatio[j];
118  }
119  return outPixel;
120  }
121 
122 private:
126 };
127 }
128 
141 template <class TInputImage, class TOutputImage>
143  : public UnaryFunctorNeighborhoodImageFilter<TInputImage, TOutputImage, typename Functor::ComputeNeighborhoodContributionFunctor<
144  itk::ConstNeighborhoodIterator<TInputImage>, typename TOutputImage::PixelType>>
145 {
146 public:
149 
153  typedef itk::SmartPointer<Self> Pointer;
154  typedef itk::SmartPointer<const Self> ConstPointer;
155 
158 
159  typedef std::vector<double> DoubleContainerType;
161  itkNewMacro(Self);
162 
165 
167  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
168  itkStaticConstMacro(OutputImageDimension, unsigned int, TOutputImage::ImageDimension);
170 
172  typedef typename InputImageType::PixelType InputPixelType;
173  typedef typename InputImageType::InternalPixelType InputInternalPixelType;
174  typedef typename InputImageType::RegionType InputImageRegionType;
175  typedef typename InputImageType::SizeType SizeType;
176  typedef typename OutputImageType::PixelType OutputPixelType;
177  typedef typename OutputImageType::InternalPixelType OutputInternalPixelType;
178  typedef typename OutputImageType::RegionType OutputImageRegionType;
179 
180 
182 
185 
188 
191 
192 
196 
198 
199  typedef itk::MetaDataDictionary MetaDataDictionaryType;
200 
202  typedef itk::VariableSizeMatrix<double> WeightingMatrixType;
203  typedef typename std::vector<WeightingMatrixType> WeightingValuesContainerType;
204 
206  typedef typename itk::ConstNeighborhoodIterator<InputImageType> NeighborIterType;
207 
209  void SetWindowRadius(unsigned int rad)
210  {
211  this->SetRadius(rad);
212  m_WindowRadius = rad;
213  this->Modified();
214  }
215  itkGetConstReferenceMacro(WindowRadius, unsigned int);
217 
219  itkSetMacro(PixelSpacingInKilometers, double);
220  itkGetMacro(PixelSpacingInKilometers, double);
221 
223  itkSetMacro(ZenithalViewingAngle, double);
224  itkGetMacro(ZenithalViewingAngle, double);
226 
227 
230  {
231  m_AtmosphericRadiativeTerms = atmoRadTerms;
232  this->SetNthInput(1, m_AtmosphericRadiativeTerms);
233  m_IsSetAtmosphericRadiativeTerms = true;
234  this->Modified();
235  }
236  itkGetObjectMacro(AtmosphericRadiativeTerms, AtmosphericRadiativeTermsType);
238 
241  {
242  m_AtmoCorrectionParameters = atmoCorrTerms;
243  this->SetNthInput(2, m_AtmoCorrectionParameters);
244  m_IsSetAtmoCorrectionParameters = true;
245  this->Modified();
246  }
247  itkGetObjectMacro(AtmoCorrectionParameters, AtmoCorrectionParametersType);
249 
252  {
253  m_AcquiCorrectionParameters = acquiCorrTerms;
254  this->SetNthInput(3, m_AcquiCorrectionParameters);
255  m_IsSetAcquiCorrectionParameters = true;
256  this->Modified();
257  }
258  itkGetObjectMacro(AcquiCorrectionParameters, AcquiCorrectionParametersType);
260 
261 
263  void GenerateParameters();
264 
265 
267  itkSetMacro(IsSetAtmosphericRadiativeTerms, bool);
268  itkGetMacro(IsSetAtmosphericRadiativeTerms, bool);
269  itkBooleanMacro(IsSetAtmosphericRadiativeTerms);
271 
272 protected:
275  {
276  }
277  void PrintSelf(std::ostream& os, itk::Indent indent) const override;
278 
280  void BeforeThreadedGenerateData() override;
281 
283  void UpdateAtmosphericRadiativeTerms();
284 
286  void UpdateFunctors();
287 
289  void Modified() const override;
290 
291 private:
295 
300 
302  unsigned int m_WindowRadius;
303 
306 
309 
312 
315 };
316 
317 } // end namespace otb
318 
319 #ifndef OTB_MANUAL_INSTANTIATION
321 #endif
322 
323 #endif
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_IsSetAtmoCorrectionParameters
bool m_IsSetAtmoCorrectionParameters
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:293
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AcquiCorrectionParametersType
otb::ImageMetadataCorrectionParameters AcquiCorrectionParametersType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:186
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::WavelengthSpectralBandVectorType
AcquiCorrectionParametersType::WavelengthSpectralBandVectorType WavelengthSpectralBandVectorType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:197
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::ValuesVectorType
FilterFunctionValuesType::ValuesVectorType ValuesVectorType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:195
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::InputImageRegionType
InputImageType::RegionType InputImageRegionType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:174
otbSurfaceAdjacencyEffectCorrectionSchemeFilter.hxx
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::~SurfaceAdjacencyEffectCorrectionSchemeFilter
~SurfaceAdjacencyEffectCorrectionSchemeFilter() override
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:274
otb::AtmosphericRadiativeTerms
This class is a vector of AtmosphericRadiativeTermsSingleChannel, it contains all atmospheric radiati...
Definition: otbAtmosphericRadiativeTerms.h:185
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AtmoCorrectionParametersPointerType
AtmoCorrectionParametersType::Pointer AtmoCorrectionParametersPointerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:184
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_AcquiCorrectionParameters
AcquiCorrectionParametersPointerType m_AcquiCorrectionParameters
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:299
otb::ImageMetadataCorrectionParameters::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbImageMetadataCorrectionParameters.h:52
otb::RadiometryCorrectionParametersToAtmosphericRadiativeTerms
TODO.
Definition: otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h:41
otbRadiometryCorrectionParametersToAtmosphericRadiativeTerms.h
otb::Functor::ComputeNeighborhoodContributionFunctor::~ComputeNeighborhoodContributionFunctor
virtual ~ComputeNeighborhoodContributionFunctor()
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:52
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::DoubleContainerType
std::vector< double > DoubleContainerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:159
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::InputPixelType
InputImageType::PixelType InputPixelType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:172
otbUnaryFunctorNeighborhoodImageFilter.h
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AtmosphericRadiativeTermsPointerType
AtmosphericRadiativeTermsType::Pointer AtmosphericRadiativeTermsPointerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:190
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:153
otb::Functor::ComputeNeighborhoodContributionFunctor::m_UpwardTransmittanceRatio
DoubleContainerType m_UpwardTransmittanceRatio
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:124
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::FilterFunctionValuesType
otb::FilterFunctionValues FilterFunctionValuesType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:193
otb::Functor::ComputeNeighborhoodContributionFunctor::GetWeightingValues
WeightingValuesContainerType GetWeightingValues()
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:73
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::Superclass
UnaryFunctorNeighborhoodImageFilter< TInputImage, TOutputImage, FunctorType > Superclass
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:152
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::MetaDataDictionaryType
itk::MetaDataDictionary MetaDataDictionaryType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:199
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::CorrectionParametersToRadiativeTermsType
otb::RadiometryCorrectionParametersToAtmosphericRadiativeTerms CorrectionParametersToRadiativeTermsType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:181
otb::Functor::ComputeNeighborhoodContributionFunctor::GetUpwardTransmittanceRatio
DoubleContainerType GetUpwardTransmittanceRatio()
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:77
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::SetAcquiCorrectionParameters
void SetAcquiCorrectionParameters(AcquiCorrectionParametersPointerType acquiCorrTerms)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:251
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::OutputInternalPixelType
OutputImageType::InternalPixelType OutputInternalPixelType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:177
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::SizeType
InputImageType::SizeType SizeType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:175
otb::FilterFunctionValues
This class contains the values of the filter function for the processed spectral band.
Definition: otbFilterFunctionValues.h:44
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_FunctorParametersHaveBeenComputed
bool m_FunctorParametersHaveBeenComputed
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:308
otb::Functor::ComputeNeighborhoodContributionFunctor::ComputeNeighborhoodContributionFunctor
ComputeNeighborhoodContributionFunctor()
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:49
otb::Functor::ComputeNeighborhoodContributionFunctor::RealValueType
TOutput::RealValueType RealValueType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:58
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::InputInternalPixelType
InputImageType::InternalPixelType InputInternalPixelType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:173
otb::Functor::ComputeNeighborhoodContributionFunctor::m_WeightingValues
WeightingValuesContainerType m_WeightingValues
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:123
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::WeightingMatrixType
itk::VariableSizeMatrix< double > WeightingMatrixType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:202
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_AtmosphericRadiativeTerms
AtmosphericRadiativeTermsPointerType m_AtmosphericRadiativeTerms
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:297
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_WindowRadius
unsigned int m_WindowRadius
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:302
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::SetAtmosphericRadiativeTerms
void SetAtmosphericRadiativeTerms(AtmosphericRadiativeTermsPointerType atmoRadTerms)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:229
otb::Functor::ComputeNeighborhoodContributionFunctor::SetUpwardTransmittanceRatio
void SetUpwardTransmittanceRatio(DoubleContainerType &upwardTransmittanceRatio)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:65
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AtmoCorrectionParametersType
otb::AtmosphericCorrectionParameters AtmoCorrectionParametersType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:183
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::SetWindowRadius
void SetWindowRadius(unsigned int rad)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:209
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_IsSetAtmosphericRadiativeTerms
bool m_IsSetAtmosphericRadiativeTerms
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:292
otb::UnaryFunctorNeighborhoodImageFilter::OutputImageType
Superclass::OutputImageType OutputImageType
Definition: otbUnaryFunctorNeighborhoodImageFilter.h:65
otb::Functor::ComputeNeighborhoodContributionFunctor::m_DiffuseRatio
DoubleContainerType m_DiffuseRatio
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:125
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_PixelSpacingInKilometers
double m_PixelSpacingInKilometers
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:311
otb::UnaryFunctorNeighborhoodImageFilter::InputImageType
Superclass::InputImageType InputImageType
Definition: otbUnaryFunctorNeighborhoodImageFilter.h:60
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AtmosphericRadiativeTermsType
otb::AtmosphericRadiativeTerms AtmosphericRadiativeTermsType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:189
otb::Functor::ComputeNeighborhoodContributionFunctor::operator()
TOutput operator()(const TNeighIter &it)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:86
otb::Functor::ComputeNeighborhoodContributionFunctor::WeightingMatrixType
itk::VariableSizeMatrix< double > WeightingMatrixType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:56
otb::FilterFunctionValues::WavelengthSpectralBandType
float WavelengthSpectralBandType
Definition: otbFilterFunctionValues.h:57
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::NeighborIterType
itk::ConstNeighborhoodIterator< InputImageType > NeighborIterType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:206
otb::AtmosphericRadiativeTerms::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbAtmosphericRadiativeTerms.h:191
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::FunctorType
Functor::ComputeNeighborhoodContributionFunctor< itk::ConstNeighborhoodIterator< TInputImage >, typename TOutputImage::PixelType > FunctorType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:148
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_IsSetAcquiCorrectionParameters
bool m_IsSetAcquiCorrectionParameters
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:294
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter
Correct the scheme taking care of the surrounding pixels.
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:142
otb::AtmosphericCorrectionParameters::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbAtmosphericCorrectionParameters.h:52
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::WeightingValuesContainerType
std::vector< WeightingMatrixType > WeightingValuesContainerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:203
otb::Functor::ComputeNeighborhoodContributionFunctor::WeightingValuesContainerType
std::vector< WeightingMatrixType > WeightingValuesContainerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:57
otb::Functor::ComputeNeighborhoodContributionFunctor::SetDiffuseRatio
void SetDiffuseRatio(DoubleContainerType &diffuseRatio)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:69
otb::ImageMetadataCorrectionParameters
This class contains all atmospheric correction parameters.
Definition: otbImageMetadataCorrectionParameters.h:46
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::ValueType
FilterFunctionValuesType::WavelengthSpectralBandType ValueType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:194
otb::ImageMetadataCorrectionParameters::WavelengthSpectralBandVectorType
InternalWavelengthSpectralBandVectorType::Pointer WavelengthSpectralBandVectorType
Definition: otbImageMetadataCorrectionParameters.h:62
otb::Functor::ComputeNeighborhoodContributionFunctor::DoubleContainerType
std::vector< double > DoubleContainerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:59
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_ZenithalViewingAngle
double m_ZenithalViewingAngle
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:314
otb::UnaryFunctorNeighborhoodImageFilter
Implements neighborhood-wise generic operation on image.
Definition: otbUnaryFunctorNeighborhoodImageFilter.h:43
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_WeightingValues
WeightingValuesContainerType m_WeightingValues
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:305
otb::AtmosphericCorrectionParameters
This class contains all atmospheric correction parameters.
Definition: otbAtmosphericCorrectionParameters.h:46
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::Self
SurfaceAdjacencyEffectCorrectionSchemeFilter Self
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:151
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::OutputImageType
Superclass::OutputImageType OutputImageType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:157
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::SetAtmoCorrectionParameters
void SetAtmoCorrectionParameters(AtmoCorrectionParametersPointerType atmoCorrTerms)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:240
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::InputImageType
Superclass::InputImageType InputImageType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:156
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::OutputImageRegionType
OutputImageType::RegionType OutputImageRegionType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:178
otb::Functor::ComputeNeighborhoodContributionFunctor::SetWeightingValues
void SetWeightingValues(const WeightingValuesContainerType &cont)
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:61
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::m_AtmoCorrectionParameters
AtmoCorrectionParametersPointerType m_AtmoCorrectionParameters
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:298
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:154
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::AcquiCorrectionParametersPointerType
AcquiCorrectionParametersType::Pointer AcquiCorrectionParametersPointerType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:187
otb::SurfaceAdjacencyEffectCorrectionSchemeFilter::OutputPixelType
OutputImageType::PixelType OutputPixelType
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:176
otb::Functor::ComputeNeighborhoodContributionFunctor::GetDiffuseRatio
DoubleContainerType GetDiffuseRatio()
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:81
otb::FilterFunctionValues::ValuesVectorType
std::vector< WavelengthSpectralBandType > ValuesVectorType
Definition: otbFilterFunctionValues.h:60
otb::Functor::ComputeNeighborhoodContributionFunctor
Unary neighborhood functor to compute the value of a pixel which is a sum of the surrounding pixels v...
Definition: otbSurfaceAdjacencyEffectCorrectionSchemeFilter.h:46