OTB  10.0.0
Orfeo Toolbox
otbTileDimensionTiledStreamingManager.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 otbTileDimensionTiledStreamingManager_h
22 #define otbTileDimensionTiledStreamingManager_h
23 
24 #include "otbStreamingManager.h"
25 
26 namespace otb
27 {
28 
45 template <class TImage>
46 class ITK_EXPORT TileDimensionTiledStreamingManager : public StreamingManager<TImage>
47 {
48 public:
52  typedef itk::SmartPointer<Self> Pointer;
53  typedef itk::SmartPointer<const Self> ConstPointer;
54 
55  typedef TImage ImageType;
56  typedef typename Superclass::RegionType RegionType;
57 
59  itkNewMacro(Self);
60 
63 
65  itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension);
66 
68  itkSetMacro(TileDimension, unsigned int);
69 
71  itkGetMacro(TileDimension, unsigned int);
72 
75  void PrepareStreaming(itk::DataObject* input, const RegionType& region) override;
76 
77 protected:
80 
83  unsigned int m_TileDimension;
84 
85 private:
88 };
89 
90 } // End namespace otb
91 
92 #ifndef OTB_MANUAL_INSTANTIATION
94 #endif
95 
96 #endif
This class handles the streaming process used in the writers implementation.
ImageType::RegionType RegionType
This class computes the divisions needed to stream an image in square tiles, driven by a user-defined...
void operator=(const TileDimensionTiledStreamingManager &)
TileDimensionTiledStreamingManager(const TileDimensionTiledStreamingManager &)
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.