ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageFunction.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 * https://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 itkImageFunction_h
19#define itkImageFunction_h
20
21#include "itkFunctionBase.h"
22#include "itkIndex.h"
23#include "itkImageBase.h"
24
25namespace itk
26{
54template <typename TInputImage, typename TOutput, typename TCoordinate = float>
55class ITK_TEMPLATE_EXPORT ImageFunction : public FunctionBase<Point<TCoordinate, TInputImage::ImageDimension>, TOutput>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(ImageFunction);
59
61 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
65
67
72 itkOverrideGetNameOfClassMacro(ImageFunction);
75 using InputImageType = TInputImage;
78 using InputPixelType = typename InputImageType::PixelType;
79
81 using InputImageConstPointer = typename InputImageType::ConstPointer;
84 using OutputType = TOutput;
85
87 using CoordinateType = TCoordinate;
88#ifndef ITK_FUTURE_LEGACY_REMOVE
89 using CoordRepType ITK_FUTURE_DEPRECATED(
90 "ITK 6 discourages using `CoordRepType`. Please use `CoordinateType` instead!") = CoordinateType;
91#endif
92
94 using IndexType = typename InputImageType::IndexType;
95 using IndexValueType = typename InputImageType::IndexValueType;
96
99
102
107 virtual void
109
111 const InputImageType *
113 {
114 return m_Image.GetPointer();
115 }
116
120 Evaluate(const PointType & point) const override = 0;
124 virtual TOutput
125 EvaluateAtIndex(const IndexType & index) const = 0;
126
129 virtual TOutput
131
138 virtual bool
139 IsInsideBuffer(const IndexType & index) const
140 {
141 for (unsigned int j = 0; j < ImageDimension; ++j)
142 {
143 if (index[j] < m_StartIndex[j])
144 {
145 return false;
146 }
147 if (index[j] > m_EndIndex[j])
148 {
149 return false;
150 }
151 }
152 return true;
153 }
154
158 virtual bool
160 {
161 for (unsigned int j = 0; j < ImageDimension; ++j)
162 {
163 /* Test for negative of a positive so we can catch NaN's. */
164 if (!(index[j] >= m_StartContinuousIndex[j] && index[j] < m_EndContinuousIndex[j]))
165 {
166 return false;
167 }
168 }
169 return true;
170 }
171
175 virtual bool
176 IsInsideBuffer(const PointType & point) const
177 {
178 const ContinuousIndexType index = m_Image->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
179 /* Call IsInsideBuffer to test against BufferedRegion bounds.
180 * TransformPhysicalPointToContinuousIndex tests against
181 * LargestPossibleRegion */
182 const bool isInside = IsInsideBuffer(index);
183 return isInside;
184 }
185
187 void
188 ConvertPointToNearestIndex(const PointType & point, IndexType & index) const
189 {
190 const ContinuousIndexType cindex = m_Image->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
191 this->ConvertContinuousIndexToNearestIndex(cindex, index);
192 }
193
195 void
197 {
198 cindex = m_Image->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
199 }
200
202 inline void
204 {
205 index.CopyWithRound(cindex);
206 }
207
208 itkGetConstReferenceMacro(StartIndex, IndexType);
209 itkGetConstReferenceMacro(EndIndex, IndexType);
210
211 itkGetConstReferenceMacro(StartContinuousIndex, ContinuousIndexType);
212 itkGetConstReferenceMacro(EndContinuousIndex, ContinuousIndexType);
213
214protected:
216 ~ImageFunction() override = default;
217 void
218 PrintSelf(std::ostream & os, Indent indent) const override;
219
222
226
229};
230} // end namespace itk
231
232#ifndef ITK_MANUAL_INSTANTIATION
233# include "itkImageFunction.hxx"
234#endif
235
236#endif
CovariantVector< double, MovingImageType::ImageDimension > OutputType
A templated class holding a point in n-Dimensional image space.
Base class for all ITK function objects.
void ConvertPointToContinuousIndex(const PointType &point, ContinuousIndexType &cindex) const
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void SetInputImage(const InputImageType *ptr)
~ImageFunction() override=default
virtual TOutput EvaluateAtContinuousIndex(const ContinuousIndexType &index) const =0
virtual bool IsInsideBuffer(const ContinuousIndexType &index) const
typename InputImageType::PixelType InputPixelType
virtual TOutput EvaluateAtIndex(const IndexType &index) const =0
void ConvertPointToNearestIndex(const PointType &point, IndexType &index) const
typename InputImageType::ConstPointer InputImageConstPointer
typename InputImageType::IndexValueType IndexValueType
OutputType Evaluate(const PointType &point) const override=0
const InputImageType * GetInputImage() const
virtual bool IsInsideBuffer(const PointType &point) const
Point< TCoordinate, Self::ImageDimension > PointType
void ConvertContinuousIndexToNearestIndex(const ContinuousIndexType &cindex, IndexType &index) const
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
virtual bool IsInsideBuffer(const IndexType &index) const
Control indentation during Print() invocation.
Definition itkIndent.h:50
ImageFunction< TImageType, typename NumericTraits< typename TImageType::PixelType >::RealType, TCoordinate > Superclass
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....