ITK  6.0.0
Insight Toolkit
itkParametricImageSource.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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
22
23#include "itkArray.h"
24
25namespace itk
26{
27
44template <typename TOutputImage>
45class ITK_TEMPLATE_EXPORT ParametricImageSource : public GenerateImageSource<TOutputImage>
46{
47public:
48 ITK_DISALLOW_COPY_AND_MOVE(ParametricImageSource);
49
55
58
60 using OutputImageType = TOutputImage;
62 using OutputImagePixelType = typename OutputImageType::PixelType;
63
64 using ParametersValueType = double;
66
68 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
69
71 itkOverrideGetNameOfClassMacro(ParametricImageSource);
72
77 virtual void
78 SetParameters(const ParametersType & parameters) = 0;
82 virtual ParametersType
83 GetParameters() const = 0;
84
86 virtual unsigned int
88
89protected:
91 ~ParametricImageSource() override = default;
92 void
93 PrintSelf(std::ostream & os, Indent indent) const override;
94};
95} // end namespace itk
96
97
98#ifndef ITK_MANUAL_INSTANTIATION
99# include "itkParametricImageSource.hxx"
100#endif
101
102#endif
Array class with size defined at construction time.
Definition: itkArray.h:48
SmartPointer< Self > Pointer
a Base class for image sources which need to have image size, and other meta-data set.
Base class for all process objects that output image data.
typename OutputImageType::PixelType OutputImagePixelType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
Control indentation during Print() invocation.
Definition: itkIndent.h:50
Base class for all parametric image sources.
virtual unsigned int GetNumberOfParameters() const =0
void PrintSelf(std::ostream &os, Indent indent) const override
virtual ParametersType GetParameters() const =0
~ParametricImageSource() override=default
virtual void SetParameters(const ParametersType &parameters)=0
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....