OTB  10.0.0
Orfeo Toolbox
otbImageListToImageListFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2024 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
Base class for all the filters producing an otbImageList.
Base class for all the filters taking an image list as input to produce an image list.
InputImageType::ConstPointer InputImagePointer
virtual InputImageListType * GetInput(void)
Superclass::OutputImageListPointerType OutputImageListPointerType
InputImageType::RegionType InputImageRegionType
Superclass::OutputImageType OutputImageType
void PrintSelf(std::ostream &os, itk::Indent indent) const override
Superclass::OutputImageListType OutputImageListType
ImageListToImageListFilter(const Self &)=delete
itk::SmartPointer< const Self > ConstPointer
Superclass::OutputImagePointerType OutputImagePointer
ImageList< InputImageType > InputImageListType
InputImageListType::ConstPointer InputImageListConstPointer
void operator=(const Self &)=delete
ImageListSource< TOutputImage > Superclass
InputImageListType::Pointer InputImageListPointerType
virtual void SetInput(const InputImageListType *imageList)
This class represent a list of images.
Definition: otbImageList.h:40
itk::SmartPointer< const Self > ConstPointer
Definition: otbImageList.h:46
itk::SmartPointer< Self > Pointer
Definition: otbImageList.h:45
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.