ITK  5.2.0
Insight Toolkit
itkNeighborhoodBinaryThresholdImageFunction.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 itkNeighborhoodBinaryThresholdImageFunction_h
19 #define itkNeighborhoodBinaryThresholdImageFunction_h
20 
22 
23 namespace itk
24 {
41 template <typename TInputImage, typename TCoordRep = float>
43  : public BinaryThresholdImageFunction<TInputImage, TCoordRep>
44 {
45 public:
46  ITK_DISALLOW_COPY_AND_MOVE(NeighborhoodBinaryThresholdImageFunction);
47 
53 
56 
58  itkNewMacro(Self);
59 
61  using InputImageType = TInputImage;
62 
64  using OutputType = typename Superclass::OutputType;
65 
67  using IndexType = typename Superclass::IndexType;
68 
70  using ContinuousIndexType = typename Superclass::ContinuousIndexType;
71 
73  using PointType = typename Superclass::PointType;
74 
76  using PixelType = typename Superclass::PixelType;
77 
79  static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
80 
83 
85  itkSetMacro(Radius, InputSizeType);
86 
88  itkGetConstReferenceMacro(Radius, InputSizeType);
89 
91  bool
92  EvaluateAtIndex(const IndexType & index) const override;
93 
95  bool
96  Evaluate(const PointType & point) const override
97  {
98  IndexType index;
99 
100  this->ConvertPointToNearestIndex(point, index);
101  return this->EvaluateAtIndex(index);
102  }
103 
104  bool
105  EvaluateAtContinuousIndex(const ContinuousIndexType & cindex) const override
106  {
107  IndexType index;
108 
109  this->ConvertContinuousIndexToNearestIndex(cindex, index);
110  return this->EvaluateAtIndex(index);
111  }
112 
113 protected:
115  ~NeighborhoodBinaryThresholdImageFunction() override = default;
116  void
117  PrintSelf(std::ostream & os, Indent indent) const override;
118 
119 private:
121 };
122 } // end namespace itk
123 
124 #ifndef ITK_MANUAL_INSTANTIATION
125 # include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
126 #endif
127 
128 /*
129 #ifndef ITK_MANUAL_INSTANTIATION
130 #include "itkNeighborhoodBinaryThresholdImageFunction.hxx"
131 #endif
132 */
133 
134 #endif
itk::BinaryThresholdImageFunction::PointType
typename Superclass::PointType PointType
Definition: itkBinaryThresholdImageFunction.h:71
itk::NeighborhoodBinaryThresholdImageFunction::Evaluate
bool Evaluate(const PointType &point) const override
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:96
itk::BinaryThresholdImageFunction::IndexType
typename Superclass::IndexType IndexType
Definition: itkBinaryThresholdImageFunction.h:74
itkBinaryThresholdImageFunction.h
itk::BinaryThresholdImageFunction::PixelType
typename TInputImage::PixelType PixelType
Definition: itkBinaryThresholdImageFunction.h:65
itk::GTest::TypedefsAndConstructors::Dimension2::PointType
ImageBaseType::PointType PointType
Definition: itkGTestTypedefsAndConstructors.h:51
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::NeighborhoodBinaryThresholdImageFunction::OutputType
typename Superclass::OutputType OutputType
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:64
itk::BinaryThresholdImageFunction::InputImageType
typename Superclass::InputImageType InputImageType
Definition: itkBinaryThresholdImageFunction.h:62
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::NeighborhoodBinaryThresholdImageFunction::m_Radius
InputSizeType m_Radius
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:120
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::BinaryThresholdImageFunction
Returns true is the value of an image lies within a range of thresholds This ImageFunction returns tr...
Definition: itkBinaryThresholdImageFunction.h:44
itk::NeighborhoodBinaryThresholdImageFunction
Determine whether all the pixels in the specified neighborhood meet a threshold criteria.
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:42
itk::NeighborhoodBinaryThresholdImageFunction::EvaluateAtContinuousIndex
bool EvaluateAtContinuousIndex(const ContinuousIndexType &cindex) const override
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:105
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::BinaryThresholdImageFunction::ContinuousIndexType
typename Superclass::ContinuousIndexType ContinuousIndexType
Definition: itkBinaryThresholdImageFunction.h:77
itk::NeighborhoodBinaryThresholdImageFunction::InputSizeType
typename InputImageType::SizeType InputSizeType
Definition: itkNeighborhoodBinaryThresholdImageFunction.h:82