ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkPointSetToImageFilter.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 __itkPointSetToImageFilter_h
19 #define __itkPointSetToImageFilter_h
20 
21 #include "itkImageSource.h"
22 #include "itkConceptChecking.h"
23 
24 namespace itk
25 {
33 template< class TInputPointSet, class TOutputImage >
34 class ITK_EXPORT PointSetToImageFilter:public ImageSource< TOutputImage >
35 {
36 public:
42  typedef typename TOutputImage::SizeType SizeType;
43  typedef TOutputImage OutputImageType;
44  typedef typename OutputImageType::Pointer OutputImagePointer;
45  typedef typename OutputImageType::ValueType ValueType;
46 
48  itkNewMacro(Self);
49 
52 
54  typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
55 
57  typedef TInputPointSet InputPointSetType;
58  typedef typename InputPointSetType::Pointer InputPointSetPointer;
59  typedef typename InputPointSetType::ConstPointer InputPointSetConstPointer;
60 
62  itkStaticConstMacro(InputPointSetDimension, unsigned int,
63  InputPointSetType::PointDimension);
64  itkStaticConstMacro(OutputImageDimension, unsigned int,
65  TOutputImage::ImageDimension);
67 
69  typedef typename TOutputImage::SpacingType SpacingType;
70  typedef typename TOutputImage::DirectionType DirectionType;
71  typedef typename TOutputImage::PointType PointType;
72 
74  using Superclass::SetInput;
75  virtual void SetInput(const InputPointSetType *pointset);
76 
77  virtual void SetInput(unsigned int, const InputPointSetType *pointset);
78 
79  const InputPointSetType * GetInput(void);
80 
81  const InputPointSetType * GetInput(unsigned int idx);
82 
87  itkSetMacro(Spacing, SpacingType);
88  virtual void SetSpacing(const double *spacing);
90 
91  virtual void SetSpacing(const float *spacing);
92 
97  itkGetConstReferenceMacro(Spacing, SpacingType);
98 
102  itkSetMacro(Direction, DirectionType);
103  itkGetConstReferenceMacro(Direction, DirectionType);
105 
110  itkSetMacro(Origin, PointType);
111  virtual void SetOrigin(const double *origin);
113 
114  virtual void SetOrigin(const float *origin);
115 
120  itkGetConstReferenceMacro(Origin, PointType);
121 
128  itkSetMacro(InsideValue, ValueType);
129  itkGetConstMacro(InsideValue, ValueType);
131 
138  itkSetMacro(OutsideValue, ValueType);
139  itkGetConstMacro(OutsideValue, ValueType);
141 
143  itkSetMacro(Size, SizeType);
144  itkGetConstMacro(Size, SizeType);
145 protected:
149 
150  virtual void GenerateOutputInformation(){} // do nothing
151  virtual void GenerateData();
152 
154 
156 
158 
160 
163 
164  virtual void PrintSelf(std::ostream & os, Indent indent) const;
165 
166 private:
167  PointSetToImageFilter(const Self &); //purposely not implemented
168  void operator=(const Self &); //purposely not implemented
169 };
170 } // end namespace itk
171 
172 #ifndef ITK_MANUAL_INSTANTIATION
173 #include "itkPointSetToImageFilter.hxx"
174 #endif
175 
176 #endif
177