SimpleITK  
sitkGridImageSource.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 * 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 sitkGridImageSource_h
19 #define sitkGridImageSource_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkImageSourceTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
59  public:
61 
63  virtual ~GridImageSource();
64 
68 
71 
72 
73 
74 \
75 
78  SITK_RETURN_SELF_TYPE_HEADER SetOutputPixelType ( PixelIDValueEnum OutputPixelType ) { this->m_OutputPixelType = OutputPixelType; return *this; }
79 
82  PixelIDValueEnum GetOutputPixelType() const { return this->m_OutputPixelType; }\
83 
86  SITK_RETURN_SELF_TYPE_HEADER SetSize ( std::vector<unsigned int> Size ) { this->m_Size = std::move(Size); return *this; }
87 
90  std::vector<unsigned int> GetSize() const { return this->m_Size; }\
91 
95  SITK_RETURN_SELF_TYPE_HEADER SetSigma ( std::vector<double> Sigma ) { this->m_Sigma = std::move(Sigma); return *this; }
96 
98  SITK_RETURN_SELF_TYPE_HEADER SetSigma( double value ) { this->m_Sigma = std::vector<double>(3, value); return *this; }
99 
103  std::vector<double> GetSigma() const { return this->m_Sigma; }\
104 
108  SITK_RETURN_SELF_TYPE_HEADER SetGridSpacing ( std::vector<double> GridSpacing ) { this->m_GridSpacing = std::move(GridSpacing); return *this; }
109 
113  std::vector<double> GetGridSpacing() const { return this->m_GridSpacing; }\
114 
118  SITK_RETURN_SELF_TYPE_HEADER SetGridOffset ( std::vector<double> GridOffset ) { this->m_GridOffset = std::move(GridOffset); return *this; }
119 
123  std::vector<double> GetGridOffset() const { return this->m_GridOffset; }\
124 
128  SITK_RETURN_SELF_TYPE_HEADER SetScale ( double Scale ) { this->m_Scale = Scale; return *this; }
129 
133  double GetScale() const { return this->m_Scale; }\
134 
137  SITK_RETURN_SELF_TYPE_HEADER SetOrigin ( std::vector<double> Origin ) { this->m_Origin = std::move(Origin); return *this; }
138 
141  std::vector<double> GetOrigin() const { return this->m_Origin; }\
142 
145  SITK_RETURN_SELF_TYPE_HEADER SetSpacing ( std::vector<double> Spacing ) { this->m_Spacing = std::move(Spacing); return *this; }
146 
149  std::vector<double> GetSpacing() const { return this->m_Spacing; }\
150 
153  SITK_RETURN_SELF_TYPE_HEADER SetDirection ( std::vector<double> Direction ) { this->m_Direction = Direction; return *this; }
154 
157  std::vector<double> GetDirection() const { return this->m_Direction; }\
158 
162  SITK_RETURN_SELF_TYPE_HEADER SetWhichDimensions ( std::vector<bool> WhichDimensions ) { this->m_WhichDimensions = std::move(WhichDimensions); return *this; }
163 
167  std::vector<bool> GetWhichDimensions() const { return this->m_WhichDimensions; }
168 
170  std::string GetName() const { return std::string ("GridImageSource"); }
171 
173  std::string ToString() const;
174 
175 
178  Image Execute ( );
179 
180 
181  private:
182 
185  using MemberFunctionType = Image (Self::*)( );
186  template <class TImageType> Image ExecuteInternal ( );
187 
188 
190 
191  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
192 
193 
195 
196  std::vector<unsigned int> m_Size{std::vector<unsigned int>(3, 64)};
197 
198  std::vector<double> m_Sigma{std::vector<double>(3, 0.5)};
199 
200  std::vector<double> m_GridSpacing{std::vector<double>(3, 4.0)};
201 
202  std::vector<double> m_GridOffset{std::vector<double>(3, 0.0)};
203 
204  double m_Scale{255.0};
205 
206  std::vector<double> m_Origin{std::vector<double>(3, 0.0)};
207 
208  std::vector<double> m_Spacing{std::vector<double>(3, 1.0)};
209 
210  /* Passing a zero sized array, defaults to identiy matrix. The size of the array must exactly match the direction matrix for the dimension of the image. */
211  std::vector<double> m_Direction{std::vector<double>()};
212 
213  std::vector<bool> m_WhichDimensions{std::vector<bool>(3, true)};
214 
215 
216 
217 
218 
219  };
220 
221 
222 
231 SITKBasicFilters_EXPORT Image GridSource ( PixelIDValueEnum outputPixelType = itk::simple::sitkFloat32, std::vector<unsigned int> size = std::vector<unsigned int>(3, 64), std::vector<double> sigma = std::vector<double>(3, 0.5), std::vector<double> gridSpacing = std::vector<double>(3, 4.0), std::vector<double> gridOffset = std::vector<double>(3, 0.0), double scale = 255.0, std::vector<double> origin = std::vector<double>(3, 0.0), std::vector<double> spacing = std::vector<double>(3, 1.0), std::vector<double> direction = std::vector<double>(), std::vector<bool> whichDimensions = std::vector<bool>(3, true) );
232  }
233 }
234 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::GridImageSource::GetOrigin
std::vector< double > GetOrigin() const
Definition: sitkGridImageSource.h:141
sitkBasicFilters.h
itk::simple::GridImageSource::GetGridOffset
std::vector< double > GetGridOffset() const
Definition: sitkGridImageSource.h:123
itk::simple::GridImageSource::GetSize
std::vector< unsigned int > GetSize() const
Definition: sitkGridImageSource.h:90
itk::simple::GridImageSource::SetOutputPixelType
Self & SetOutputPixelType(PixelIDValueEnum OutputPixelType)
Definition: sitkGridImageSource.h:78
itk::Size
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::GridImageSource::SetSigma
Self & SetSigma(std::vector< double > Sigma)
Definition: sitkGridImageSource.h:95
itk::simple::GridSource
Image GridSource(PixelIDValueEnum outputPixelType=itk::simple::sitkFloat32, std::vector< unsigned int > size=std::vector< unsigned int >(3, 64), std::vector< double > sigma=std::vector< double >(3, 0.5), std::vector< double > gridSpacing=std::vector< double >(3, 4.0), std::vector< double > gridOffset=std::vector< double >(3, 0.0), double scale=255.0, std::vector< double > origin=std::vector< double >(3, 0.0), std::vector< double > spacing=std::vector< double >(3, 1.0), std::vector< double > direction=std::vector< double >(), std::vector< bool > whichDimensions=std::vector< bool >(3, true))
Generate an n-dimensional image of a grid.
itk::simple::BasicPixelIDTypeList
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > > BasicPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:53
itk::simple::GridImageSource::SetGridSpacing
Self & SetGridSpacing(std::vector< double > GridSpacing)
Definition: sitkGridImageSource.h:108
itk::simple::GridImageSource::SetSpacing
Self & SetSpacing(std::vector< double > Spacing)
Definition: sitkGridImageSource.h:145
itk::simple::PixelIDValueEnum
PixelIDValueEnum
Enumerated values of pixelIDs.
Definition: sitkPixelIDValues.h:93
sitkImageFilter.h
itk::simple::GridImageSource::GetName
std::string GetName() const
Definition: sitkGridImageSource.h:170
itk::simple::GridImageSource::SetWhichDimensions
Self & SetWhichDimensions(std::vector< bool > WhichDimensions)
Definition: sitkGridImageSource.h:162
itk::simple::GridImageSource::GetScale
double GetScale() const
Definition: sitkGridImageSource.h:133
itk::simple::GridImageSource::SetDirection
Self & SetDirection(std::vector< double > Direction)
Definition: sitkGridImageSource.h:153
itk::simple::sitkFloat32
@ sitkFloat32
32 bit float
Definition: sitkPixelIDValues.h:103
itk::simple::GridImageSource::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkGridImageSource.h:70
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::GridImageSource::GetWhichDimensions
std::vector< bool > GetWhichDimensions() const
Definition: sitkGridImageSource.h:167
itk
itk::simple::GridImageSource::SetSigma
Self & SetSigma(double value)
Definition: sitkGridImageSource.h:98
itk::simple::GridImageSource::MemberFunctionType
Image(Self::*)() MemberFunctionType
Definition: sitkGridImageSource.h:185
itk::simple::GridImageSource::SetSize
Self & SetSize(std::vector< unsigned int > Size)
Definition: sitkGridImageSource.h:86
itk::simple::GridImageSource::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkGridImageSource.h:191
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::simple::GridImageSource
Generate an n-dimensional image of a grid.
Definition: sitkGridImageSource.h:58
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple::GridImageSource::SetScale
Self & SetScale(double Scale)
Definition: sitkGridImageSource.h:128
itk::simple::GridImageSource::SetOrigin
Self & SetOrigin(std::vector< double > Origin)
Definition: sitkGridImageSource.h:137
itk::simple::GridImageSource::GetDirection
std::vector< double > GetDirection() const
Definition: sitkGridImageSource.h:157
itk::simple::GridImageSource::SetGridOffset
Self & SetGridOffset(std::vector< double > GridOffset)
Definition: sitkGridImageSource.h:118
itk::simple::GridImageSource::GetGridSpacing
std::vector< double > GetGridSpacing() const
Definition: sitkGridImageSource.h:113
itk::simple::GridImageSource::GetSpacing
std::vector< double > GetSpacing() const
Definition: sitkGridImageSource.h:149
itk::simple::GridImageSource::GetOutputPixelType
PixelIDValueEnum GetOutputPixelType() const
Definition: sitkGridImageSource.h:82
itk::simple::GridImageSource::GetSigma
std::vector< double > GetSigma() const
Definition: sitkGridImageSource.h:103