ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkNeighborhoodBinaryThresholdImageFunction.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 __itkNeighborhoodBinaryThresholdImageFunction_h
19 #define __itkNeighborhoodBinaryThresholdImageFunction_h
20 
22 
23 namespace itk
24 {
41 template< class TInputImage, class TCoordRep = float >
43  public BinaryThresholdImageFunction< TInputImage, TCoordRep >
44 {
45 public:
46 
52 
55 
57  itkNewMacro(Self);
58 
60  typedef TInputImage InputImageType;
61 
63  typedef typename Superclass::OutputType OutputType;
64 
66  typedef typename Superclass::IndexType IndexType;
67 
69  typedef typename Superclass::ContinuousIndexType ContinuousIndexType;
70 
72  typedef typename Superclass::PointType PointType;
73 
75  typedef typename Superclass::PixelType PixelType;
76 
78  itkStaticConstMacro(ImageDimension, unsigned int,
79  InputImageType::ImageDimension);
80 
82  typedef typename InputImageType::SizeType InputSizeType;
83 
85  itkSetMacro(Radius, InputSizeType);
86 
88  itkGetConstReferenceMacro(Radius, InputSizeType);
89 
91  virtual bool EvaluateAtIndex(const IndexType & index) const;
92 
94  virtual bool Evaluate(const PointType & point) const
95  {
96  IndexType index;
97 
98  this->ConvertPointToNearestIndex(point, index);
99  return this->EvaluateAtIndex(index);
100  }
101 
102  virtual bool EvaluateAtContinuousIndex(
103  const ContinuousIndexType & cindex) const
104  {
105  IndexType index;
106 
107  this->ConvertContinuousIndexToNearestIndex(cindex, index);
108  return this->EvaluateAtIndex(index);
109  }
110 
111 protected:
114  void PrintSelf(std::ostream & os, Indent indent) const;
115 
116 private:
117  NeighborhoodBinaryThresholdImageFunction(const Self &); //purposely not
118  // implemented
119  void operator=(const Self &); //purposely not
120 
121  // implemented
122 
124 };
125 } // end namespace itk
126 
127 #ifndef ITK_MANUAL_INSTANTIATION
128 #include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
129 #endif
130 
131 /*
132 #ifndef ITK_MANUAL_INSTANTIATION
133 #include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
134 #endif
135 */
136 
137 #endif
138