ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkBinaryMaskToNarrowBandPointSetFilter.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 __itkBinaryMaskToNarrowBandPointSetFilter_h
19 #define __itkBinaryMaskToNarrowBandPointSetFilter_h
20 
21 #include "itkImageToMeshFilter.h"
25 
26 namespace itk
27 {
53 template< class TInputImage, class TOutputMesh >
55  public ImageToMeshFilter< TInputImage, TOutputMesh >
56 {
57 public:
60 
62 
65 
67  itkNewMacro(Self);
68 
71 
73  typedef TInputImage InputImageType;
74  typedef typename InputImageType::ConstPointer InputImageConstPointer;
75  typedef typename InputImageType::RegionType InputImageRegionType;
76  typedef typename InputImageType::PixelType InputImagePixelType;
77 
79 
81  typedef TOutputMesh OutputMeshType;
82  typedef typename OutputMeshType::PointType PointType;
83  typedef typename OutputMeshType::Pointer OutputMeshPointer;
84  typedef typename OutputMeshType::ConstPointer OutputMeshConstPointer;
85  typedef typename OutputMeshType::PointsContainer PointsContainer;
86  typedef typename OutputMeshType::PointIdentifier PointIdentifier;
87  typedef typename PointsContainer::Pointer PointsContainerPointer;
88  typedef typename PointsContainer::Iterator PointsContainerIterator;
89  typedef typename OutputMeshType::PointDataContainer PointDataContainer;
90  typedef typename PointDataContainer::Pointer PointDataContainerPointer;
91  typedef typename PointDataContainer::Iterator PointDataContainerIterator;
92 
94  itkStaticConstMacro(ImageDimension, unsigned int,
95  TInputImage::ImageDimension);
96 
98  typedef itk::Image< float,
99  itkGetStaticConstMacro(ImageDimension) > RealImageType;
100 
110 
115 
117 
119  itkStaticConstMacro(PointDimension, unsigned int,
120  TOutputMesh::PointDimension);
121 
123  void GenerateData(void);
124 
126  void GenerateOutputInformation(void);
127 
129  using Superclass::SetInput;
130  void SetInput(const InputImageType *inputImage);
131 
136  itkSetMacro(BandWidth, float);
137  itkGetConstMacro(BandWidth, float);
139 
140 protected:
143  void PrintSelf(std::ostream & os, Indent indent) const;
144 
145 private:
146  //purposely not implemented purposely
148  void operator=(const BinaryMaskToNarrowBandPointSetFilter &);
149 
152 
153  float m_BandWidth;
154 };
155 } // end namespace itk
156 
157 #ifndef ITK_MANUAL_INSTANTIATION
158 #include "itkBinaryMaskToNarrowBandPointSetFilter.hxx"
159 #endif
160 
161 #endif
162