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
itkImageRegionSplitter.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 __itkImageRegionSplitter_h
19
#define __itkImageRegionSplitter_h
20
21
#include "
itkImageRegion.h
"
22
#include "
itkObjectFactory.h
"
23
24
namespace
itk
25
{
62
template
<
unsigned
int
VImageDimension >
63
class
ITK_EXPORT
ImageRegionSplitter
:
public
Object
64
{
65
public
:
67
typedef
ImageRegionSplitter
Self
;
68
typedef
Object
Superclass
;
69
typedef
SmartPointer< Self >
Pointer
;
70
typedef
SmartPointer< const Self >
ConstPointer
;
71
73
itkNewMacro(
Self
);
74
76
itkTypeMacro(
ImageRegionSplitter
,
Object
);
77
79
itkStaticConstMacro(ImageDimension,
unsigned
int
, VImageDimension);
80
82
static
unsigned
int
GetImageDimension()
83
{
return
VImageDimension; }
84
86
typedef
Index< VImageDimension >
IndexType
;
87
89
typedef
Size< VImageDimension >
SizeType
;
90
typedef
typename
SizeType::SizeValueType
SizeValueType
;
91
93
typedef
ImageRegion< VImageDimension >
RegionType
;
94
101
virtual
unsigned
int
GetNumberOfSplits(
const
RegionType
& region,
102
unsigned
int
requestedNumber);
103
107
virtual
RegionType
GetSplit(
unsigned
int
i,
unsigned
int
numberOfPieces,
108
const
RegionType
& region);
109
110
protected
:
111
ImageRegionSplitter
() {}
112
~ImageRegionSplitter
() {}
113
void
PrintSelf(std::ostream & os,
Indent
indent)
const
;
114
115
private
:
116
ImageRegionSplitter
(
const
ImageRegionSplitter
&);
//purposely not implemented
117
void
operator=(
const
ImageRegionSplitter
&);
//purposely not implemented
118
};
119
}
// end namespace itk
120
121
#ifndef ITK_MANUAL_INSTANTIATION
122
#include "itkImageRegionSplitter.hxx"
123
#endif
124
125
#endif
126
Generated on Sun Dec 9 2012 01:08:56 for ITK by
1.8.2