ITK  4.13.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< typename TInputImage, typename TCoordRep = float >
42 class ITK_TEMPLATE_EXPORT NeighborhoodBinaryThresholdImageFunction:
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 
83 
85  itkSetMacro(Radius, InputSizeType);
86 
88  itkGetConstReferenceMacro(Radius, InputSizeType);
89 
91  virtual bool EvaluateAtIndex(const IndexType & index) const ITK_OVERRIDE;
92 
94  virtual bool Evaluate(const PointType & point) const ITK_OVERRIDE
95  {
96  IndexType index;
97 
98  this->ConvertPointToNearestIndex(point, index);
99  return this->EvaluateAtIndex(index);
100  }
101 
103  const ContinuousIndexType & cindex) const ITK_OVERRIDE
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 ITK_OVERRIDE;
115 
116 private:
117  ITK_DISALLOW_COPY_AND_ASSIGN(NeighborhoodBinaryThresholdImageFunction);
118 
120 };
121 } // end namespace itk
122 
123 #ifndef ITK_MANUAL_INSTANTIATION
124 #include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
125 #endif
126 
127 /*
128 #ifndef ITK_MANUAL_INSTANTIATION
129 #include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
130 #endif
131 */
132 
133 #endif
Light weight base class for most itk classes.
virtual bool EvaluateAtContinuousIndex(const ContinuousIndexType &cindex) const override
Superclass::ContinuousIndexType ContinuousIndexType
BinaryThresholdImageFunction< TInputImage, TCoordRep > Superclass
Determine whether all the pixels in the specified neighborhood meet a threshold criteria.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Returns true is the value of an image lies within a range of thresholds This ImageFunction returns tr...
virtual bool Evaluate(const PointType &point) const override