OTB  9.0.0
Orfeo Toolbox
otbOutcoreFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of S1Tiling remote module for Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbOutcoreFilter_h
22 #define otbOutcoreFilter_h
24 #include "otbOutcoreFunctor.h"
25 
26 namespace otb
27 {
28 
52 template <class TInputImage1, class TOutputImage>
53 class ITK_EXPORT OutcoreFilter :
54  public UnaryFunctorNeighborhoodImageFilter<TInputImage1, TOutputImage,
55  Functor::OutcoreFunctor<
56  typename itk::ConstNeighborhoodIterator<TInputImage1>,
57  typename TOutputImage::PixelType> >
58 {
59 public:
64  TInputImage1, TOutputImage,
66  typename itk::ConstNeighborhoodIterator<TInputImage1>,
67  typename TOutputImage::PixelType>
68  >;
69  using Pointer = itk::SmartPointer<Self>;
70  using ConstPointer = itk::SmartPointer<const Self>;
72 
74  itkNewMacro(Self);
75 
77  itkTypeMacro(OutcoreFilter, SuperClass);
78 
79 protected:
80  OutcoreFilter() = default;
81  ~OutcoreFilter() override = default;
82  void GenerateOutputInformation() override
83  {
84  Superclass::GenerateOutputInformation();
85 
86  this->GetOutput()->SetNumberOfComponentsPerPixel(2);
87  }
88 private:
89  OutcoreFilter(const Self &) = delete;
90  Self& operator =(const Self&) = delete;
91 };
92 
93 } // end namespace otb
94 
95 #endif
otb::Functor::OutcoreFunctor
Definition: otbOutcoreFunctor.h:38
otb::OutcoreFilter::GenerateOutputInformation
void GenerateOutputInformation() override
Definition: otbOutcoreFilter.h:82
otbUnaryFunctorNeighborhoodImageFilter.h
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otbOutcoreFunctor.h
otb::OutcoreFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbOutcoreFilter.h:70
otb::UnaryFunctorNeighborhoodImageFilter
Implements neighborhood-wise generic operation on image.
Definition: otbUnaryFunctorNeighborhoodImageFilter.h:43
otb::OutcoreFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbOutcoreFilter.h:69
otb::OutcoreFilter
Definition: otbOutcoreFilter.h:53