ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGenerateImageSource.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
19#ifndef itkGenerateImageSource_h
20#define itkGenerateImageSource_h
21
22#include "itkImageSource.h"
23
24namespace itk
25{
26
40template <typename TOutputImage>
41class ITK_TEMPLATE_EXPORT GenerateImageSource : public ImageSource<TOutputImage>
42{
43public:
44 ITK_DISALLOW_COPY_AND_MOVE(GenerateImageSource);
45
50
52 using OutputImageType = TOutputImage;
53 using OutputImagePointer = typename OutputImageType::Pointer;
54 using PixelType = typename OutputImageType::PixelType;
55 using RegionType = typename OutputImageType::RegionType;
56 using SpacingType = typename OutputImageType::SpacingType;
57 using PointType = typename OutputImageType::PointType;
58 using DirectionType = typename OutputImageType::DirectionType;
59 using IndexType = typename OutputImageType::IndexType;
60
63
64 using SizeType = typename TOutputImage::SizeType;
65 using SizeValueType = typename TOutputImage::SizeValueType;
66
68 static constexpr unsigned int NDimensions = TOutputImage::ImageDimension;
69
71 itkOverrideGetNameOfClassMacro(GenerateImageSource);
72
73 itkSetMacro(UseReferenceImage, bool);
74 itkBooleanMacro(UseReferenceImage);
75 itkGetConstMacro(UseReferenceImage, bool);
76
81 itkSetMacro(Size, SizeType);
82 itkGetConstReferenceMacro(Size, SizeType);
83 itkSetVectorMacro(Size, SizeValueType, NDimensions);
89 itkSetMacro(Spacing, SpacingType);
90 itkGetConstReferenceMacro(Spacing, SpacingType);
91 itkSetVectorMacro(Spacing, const float, NDimensions);
93
98 itkSetMacro(Origin, PointType);
99 itkGetConstReferenceMacro(Origin, PointType);
100 itkSetVectorMacro(Origin, const float, NDimensions);
107 itkSetMacro(Direction, DirectionType);
108 itkGetConstReferenceMacro(Direction, DirectionType);
115 itkSetMacro(StartIndex, IndexType);
116 itkGetConstReferenceMacro(StartIndex, IndexType);
119 void
121
129
132
133protected:
135 ~GenerateImageSource() override = default;
136 void
137 PrintSelf(std::ostream & os, Indent indent) const override;
138
139 void
141
142private:
143 SizeType m_Size{}; // size of the output image
148 bool m_UseReferenceImage{ false };
149};
150
151} // namespace itk
152
153#ifndef ITK_MANUAL_INSTANTIATION
154# include "itkGenerateImageSource.hxx"
155#endif
156
157#endif // itkGenerateImageSource_h
SmartPointer< const Self > ConstPointer
void SetOutputParametersFromImage(const ReferenceImageBaseType *image)
ImageBase< TOutputImage::ImageDimension > ReferenceImageBaseType
ImageSource< TOutputImage > Superclass
static constexpr unsigned int NDimensions
typename TOutputImage::SizeType SizeType
itkSetInputMacro(ReferenceImage, ReferenceImageBaseType)
typename OutputImageType::PointType PointType
void PrintSelf(std::ostream &os, Indent indent) const override
void GenerateOutputInformation() override
typename OutputImageType::RegionType RegionType
~GenerateImageSource() override=default
typename OutputImageType::IndexType IndexType
typename OutputImageType::PixelType PixelType
typename TOutputImage::SizeValueType SizeValueType
itkGetInputMacro(ReferenceImage, ReferenceImageBaseType)
typename OutputImageType::Pointer OutputImagePointer
typename OutputImageType::DirectionType DirectionType
typename OutputImageType::SpacingType SpacingType
Base class for templated image classes.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70