ITK  5.0.0
Insight Segmentation and Registration Toolkit
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 <typename TOutputImage>
44 class ITK_TEMPLATE_EXPORT ParametricImageSource
45  : public GenerateImageSource< TOutputImage >
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_ASSIGN(ParametricImageSource);
49 
55 
58 
60  using OutputImageType = TOutputImage;
61  using OutputImagePointer = typename OutputImageType::Pointer;
62  using OutputImagePixelType = typename OutputImageType::PixelType;
63 
64  using ParametersValueType = double;
66 
68  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
69 
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() = default;
88  ~ParametricImageSource() override = default;
89  void PrintSelf(std::ostream& os, Indent indent) const override;
90 };
91 } // end namespace itk
92 
93 
94 #ifndef ITK_MANUAL_INSTANTIATION
95 #include "itkParametricImageSource.hxx"
96 #endif
97 
98 #endif
Array class with size defined at construction time.
Definition: itkArray.h:46
typename OutputImageType::Pointer OutputImagePointer
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Base class for all process objects that output image data.
typename OutputImageType::PixelType OutputImagePixelType
TOutputImage OutputImageType
a Base class for image sources which need to have image size, and other meta-data set...
Base class for all parametric image sources.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
SmartPointer< Self > Pointer