OTB  9.0.0
Orfeo Toolbox
otbImageListToImageListFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of 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 otbImageListToImageListFilter_h
22 #define otbImageListToImageListFilter_h
23 
24 #include "otbImageListSource.h"
25 
26 namespace otb
27 {
36 template <class TInputImage, class TOutputImage>
37 class ITK_EXPORT ImageListToImageListFilter : public ImageListSource<TOutputImage>
38 {
39 public:
43  typedef itk::SmartPointer<Self> Pointer;
44  typedef itk::SmartPointer<const Self> ConstPointer;
45 
47  itkNewMacro(Self);
48 
51 
53  typedef TInputImage InputImageType;
54  typedef typename InputImageType::ConstPointer InputImagePointer;
55  typedef typename InputImageType::RegionType InputImageRegionType;
56  typedef typename InputImageType::PixelType InputImagePixelType;
57  typedef typename InputImageType::SizeType SizeType;
58  typedef typename InputImageType::ValueType ValueType;
62 
64  typedef typename Superclass::OutputImageType OutputImageType;
65  typedef typename Superclass::OutputImageListType OutputImageListType;
66  typedef typename Superclass::OutputImageListPointerType OutputImageListPointerType;
67  typedef typename Superclass::OutputImagePointerType OutputImagePointer;
68 
70  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
71 
73  using Superclass::SetInput;
74  virtual void SetInput(const InputImageListType* imageList);
75  virtual InputImageListType* GetInput(void);
77 
78 protected:
81 
84  {
85  }
86 
88  void PrintSelf(std::ostream& os, itk::Indent indent) const override;
89 
90 private:
91  ImageListToImageListFilter(const Self&) = delete;
92  void operator=(const Self&) = delete;
93 };
94 } // End namespace otb
95 #ifndef OTB_MANUAL_INSTANTIATION
97 #endif
98 
99 #endif
otb::ImageListToImageListFilter::Superclass
ImageListSource< TOutputImage > Superclass
Definition: otbImageListToImageListFilter.h:42
otb::ImageListSource
Base class for all the filters producing an otbImageList.
Definition: otbImageListSource.h:40
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::ImageListToImageListFilter::InputImageListType
ImageList< InputImageType > InputImageListType
Definition: otbImageListToImageListFilter.h:59
otb::ImageListToImageListFilter::InputImageListPointerType
InputImageListType::Pointer InputImageListPointerType
Definition: otbImageListToImageListFilter.h:60
otb::ImageListToImageListFilter::OutputImageListType
Superclass::OutputImageListType OutputImageListType
Definition: otbImageListToImageListFilter.h:65
otb::ImageListToImageListFilter::OutputImagePointer
Superclass::OutputImagePointerType OutputImagePointer
Definition: otbImageListToImageListFilter.h:67
otb::ImageListToImageListFilter::InputImageListConstPointer
InputImageListType::ConstPointer InputImageListConstPointer
Definition: otbImageListToImageListFilter.h:61
otb::ImageListToImageListFilter
Base class for all the filters taking an image list as input to produce an image list.
Definition: otbImageListToImageListFilter.h:37
otb::ImageList::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbImageList.h:45
otbImageListToImageListFilter.hxx
otb::ImageListToImageListFilter::OutputImageType
Superclass::OutputImageType OutputImageType
Definition: otbImageListToImageListFilter.h:64
otb::ImageListToImageListFilter::InputImagePointer
InputImageType::ConstPointer InputImagePointer
Definition: otbImageListToImageListFilter.h:54
otb::ImageListToImageListFilter::OutputImageListPointerType
Superclass::OutputImageListPointerType OutputImageListPointerType
Definition: otbImageListToImageListFilter.h:66
otb::ImageListToImageListFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbImageListToImageListFilter.h:44
otb::ImageListToImageListFilter::~ImageListToImageListFilter
~ImageListToImageListFilter() override
Definition: otbImageListToImageListFilter.h:83
otb::ImageListToImageListFilter::SizeType
InputImageType::SizeType SizeType
Definition: otbImageListToImageListFilter.h:57
otb::ImageListToImageListFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbImageListToImageListFilter.h:43
otb::ImageListToImageListFilter::InputImageRegionType
InputImageType::RegionType InputImageRegionType
Definition: otbImageListToImageListFilter.h:55
otb::ImageList
This class represent a list of images.
Definition: otbImageList.h:39
otb::ImageListToImageListFilter::Self
ImageListToImageListFilter Self
Definition: otbImageListToImageListFilter.h:41
otb::ImageListToImageListFilter::InputImagePixelType
InputImageType::PixelType InputImagePixelType
Definition: otbImageListToImageListFilter.h:56
otbImageListSource.h
otb::ImageListToImageListFilter::InputImageType
TInputImage InputImageType
Definition: otbImageListToImageListFilter.h:50
otb::ImageListToImageListFilter::ValueType
InputImageType::ValueType ValueType
Definition: otbImageListToImageListFilter.h:58
otb::ImageList::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbImageList.h:46