ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Filtering
ImageSources
include
itkParametricImageSource.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 __itkParametricImageSource_h
19
#define __itkParametricImageSource_h
20
21
#include "
itkGenerateImageSource.h
"
22
23
#include "
itkArray.h
"
24
25
namespace
itk
26
{
27
43
template
<
class
TOutputImage>
44
class
ITK_EXPORT
ParametricImageSource
45
:
public
GenerateImageSource
< TOutputImage >
46
{
47
public
:
49
typedef
ParametricImageSource
Self
;
50
typedef
GenerateImageSource<TOutputImage>
Superclass
;
51
typedef
SmartPointer<Self>
Pointer
;
52
typedef
SmartPointer<const Self>
ConstPointer
;
53
55
typedef
DataObject::Pointer
DataObjectPointer
;
56
58
typedef
TOutputImage
OutputImageType
;
59
typedef
typename
OutputImageType::Pointer
OutputImagePointer
;
60
typedef
typename
OutputImageType::PixelType
OutputImagePixelType
;
61
62
typedef
double
ParametersValueType
;
63
typedef
Array< ParametersValueType >
ParametersType
;
64
66
itkStaticConstMacro(OutputImageDimension,
67
unsigned
int
,
68
TOutputImage::ImageDimension);
69
71
itkTypeMacro(
ParametricImageSource
,
GenerateImageSource
);
72
77
virtual
void
SetParameters(
const
ParametersType
& parameters ) = 0;
79
81
virtual
ParametersType
GetParameters()
const
= 0;
82
84
virtual
unsigned
int
GetNumberOfParameters()
const
= 0;
85
86
protected
:
87
ParametricImageSource
() {};
88
virtual
~ParametricImageSource
() {}
89
void
PrintSelf(std::ostream& os,
Indent
indent)
const
;
90
91
private
:
92
ParametricImageSource
(
const
Self&);
//purposely not implemented
93
void
operator=(
const
Self&);
//purposely not implemented
94
95
};
96
}
// end namespace itk
97
98
99
#ifndef ITK_MANUAL_INSTANTIATION
100
#include "itkParametricImageSource.hxx"
101
#endif
102
103
#endif
104
Generated on Sun Dec 9 2012 01:22:04 for ITK by
1.8.2