ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkImageRegionMultidimensionalSplitter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef __itkImageRegionMultidimensionalSplitter_h
19 #define __itkImageRegionMultidimensionalSplitter_h
20 
21 #include "itkRegion.h"
22 #include "itkIndex.h"
23 #include "itkImageRegionSplitter.h"
24 
25 namespace itk
26 {
58 template< unsigned int VImageDimension >
59 class ITK_EXPORT ImageRegionMultidimensionalSplitter:public ImageRegionSplitter< VImageDimension >
60 {
61 public:
67 
69  itkNewMacro(Self);
70 
73 
75  itkStaticConstMacro(ImageDimension, unsigned int, VImageDimension);
76 
79 
82 
85 
92  virtual unsigned int GetNumberOfSplits(const RegionType & region,
93  unsigned int requestedNumber);
94 
98  virtual RegionType GetSplit(unsigned int i, unsigned int numberOfPieces,
99  const RegionType & region);
100 
101 protected:
104  void PrintSelf(std::ostream & os, Indent indent) const;
105 
106 private:
107  ImageRegionMultidimensionalSplitter(const Self &); //purposely not implemented
108  void operator=(const Self &); //purposely not implemented
109 
110  static unsigned int ComputeSplits(unsigned int numberOfPieces,
111  const RegionType &region,
112  unsigned int splits[]);
113 
114 };
115 } // end namespace itk
116 
117 // Define instantiation macro for this template.
118 #define ITK_TEMPLATE_ImageRegionMultidimensionalSplitter(_, EXPORT, TypeX, TypeY) \
119  namespace itk \
120  { \
121  _( 1 ( class EXPORT ImageRegionMultidimensionalSplitter< ITK_TEMPLATE_1 TypeX > ) ) \
122  namespace Templates \
123  { \
124  typedef ImageRegionMultidimensionalSplitter< ITK_TEMPLATE_1 TypeX > \
125  ImageRegionMultidimensionalSplitter##TypeY; \
126  } \
127  }
128 
129 #if ITK_TEMPLATE_EXPLICIT
130 #include "Templates/itkImageRegionMultidimensionalSplitter+-.h"
131 #endif
132 
133 #if ITK_TEMPLATE_TXX
134 #include "itkImageRegionMultidimensionalSplitter.hxx"
135 #endif
136 
137 #endif
138