ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Core
Common
include
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
:
63
typedef
ImageRegionMultidimensionalSplitter
Self
;
64
typedef
ImageRegionSplitter< VImageDimension >
Superclass
;
65
typedef
SmartPointer< Self >
Pointer
;
66
typedef
SmartPointer< const Self >
ConstPointer
;
67
69
itkNewMacro(
Self
);
70
72
itkTypeMacro(
ImageRegionMultidimensionalSplitter
,
ImageRegionSplitter
);
73
75
itkStaticConstMacro(ImageDimension,
unsigned
int
, VImageDimension);
76
78
typedef
Index< VImageDimension >
IndexType
;
79
81
typedef
Size< VImageDimension >
SizeType
;
82
84
typedef
ImageRegion< VImageDimension >
RegionType
;
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
:
102
ImageRegionMultidimensionalSplitter
() {}
103
~ImageRegionMultidimensionalSplitter
() {}
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 ®ion,
112
unsigned
int
splits[]);
113
114
};
115
}
// end namespace itk
116
117
#ifndef ITK_MANUAL_INSTANTIATION
118
#include "itkImageRegionMultidimensionalSplitter.hxx"
119
#endif
120
121
#endif
122
Generated on Sun Dec 9 2012 01:08:44 for ITK by
1.8.2