ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNeighborhoodOperatorImageFunction.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 itkNeighborhoodOperatorImageFunction_h
19#define itkNeighborhoodOperatorImageFunction_h
20
21#include "itkImageFunction.h"
22#include "itkNeighborhood.h"
23
24namespace itk
25{
40template <typename TInputImage, typename TOutput>
41class ITK_TEMPLATE_EXPORT NeighborhoodOperatorImageFunction : public ImageFunction<TInputImage, TOutput>
42{
43public:
46
49
53
55 itkNewMacro(Self);
56
58 using InputImageType = TInputImage;
59 using InputPixelType = typename InputImageType::PixelType;
60 using typename Superclass::IndexType;
62
64 itkOverrideGetNameOfClassMacro(NeighborhoodOperatorImageFunction);
65
67 static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
68
70
72 using typename Superclass::PointType;
73
75 // virtual void SetInputImage( InputImageType * ptr );
76
80 void
82 {
83 m_Operator = p;
84 this->Modified();
85 }
86
89 TOutput
90 Evaluate(const PointType &) const override
91 {
92 std::cout << "NeighborhoodOperatorImageFunction::Evaluate(): Not implemented!" << std::endl;
93 TOutput out = 0;
94 return out;
95 }
96
98 TOutput
99 EvaluateAtIndex(const IndexType & index) const override;
100
103 TOutput
105 {
106 std::cout << "NeighborhoodOperatorImageFunction::EvaluateAtContinuousIndex():Not implemented!" << std::endl;
107 TOutput out = 0;
108 return out;
109 }
110
111protected:
114
116
117 void
119 {}
120 void
121 PrintSelf(std::ostream & os, Indent indent) const override;
122
123private:
125};
126} // end namespace itk
127
128#ifndef ITK_MANUAL_INSTANTIATION
129# include "itkNeighborhoodOperatorImageFunction.hxx"
130#endif
131
132/*
133#ifndef ITK_MANUAL_INSTANTIATION
134#include "itkNeighborhoodOperatorImageFunction.hxx"
135#endif
136*/
137
138#endif
typename InputImageType::IndexType IndexType
Point< TCoordinate, Self::ImageDimension > PointType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
Control indentation during Print() invocation.
Definition itkIndent.h:50
TOutput EvaluateAtContinuousIndex(const ContinuousIndexType &) const override
~NeighborhoodOperatorImageFunction() override=default
TOutput EvaluateAtIndex(const IndexType &index) const override
TOutput Evaluate(const PointType &) const override
Point< TCoordinate, Self::ImageDimension > PointType
void PrintSelf(std::ostream &os, Indent indent) const override
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
A light-weight container object for storing an N-dimensional neighborhood of values.
virtual void Modified() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....