ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAdaptImageFilter.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 itkAdaptImageFilter_h
19#define itkAdaptImageFilter_h
20
22
23namespace itk
24{
25namespace Functor
26{
42template <typename TInput, typename TAccessor>
44{
45public:
48 using AccessorType = TAccessor;
49
51 using OutputType = typename TAccessor::ExternalType;
52 inline OutputType
53 operator()(const TInput & A) const
54 {
55 return m_Accessor.Get(A);
56 }
57
61 {
62 return m_Accessor;
63 }
64
70 void
72 {
73 m_Accessor = accessor;
74 }
75
77 bool
78 operator==(const Self & other) const
79 {
80 return m_Accessor == other.m_Accessor;
81 }
82
84
85private:
87};
88} // namespace Functor
89
118template <typename TInputImage, typename TOutputImage, typename TAccessor>
120 : public UnaryFunctorImageFilter<TInputImage,
121 TOutputImage,
122 Functor::AccessorFunctor<typename TInputImage::PixelType, TAccessor>>
123{
124public:
125 ITK_DISALLOW_COPY_AND_MOVE(AdaptImageFilter);
126
129
131 TOutputImage,
133
136 using typename Superclass::FunctorType;
137
139 itkNewMacro(Self);
140
142 using AccessorType = TAccessor;
143
145 itkOverrideGetNameOfClassMacro(AdaptImageFilter);
146
150 {
151 return this->GetFunctor().GetAccessor();
152 }
153
155 void
157 {
158 FunctorType functor = this->GetFunctor();
159 if (accessor != functor.GetAccessor())
160 {
161 functor.SetAccessor(accessor);
162 this->SetFunctor(functor);
163 this->Modified();
164 }
165 }
166
167protected:
168 AdaptImageFilter() = default;
169 ~AdaptImageFilter() override = default;
170};
171} // end namespace itk
172
173#endif
~AdaptImageFilter() override=default
AdaptImageFilter()=default
SmartPointer< Self > Pointer
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::AccessorFunctor< typename TInputImage::PixelType, TAccessor > > Superclass
void SetAccessor(AccessorType &accessor)
SmartPointer< const Self > ConstPointer
Convert an accessor to a functor so that it can be used in a UnaryFunctorImageFilter.
OutputType operator()(const TInput &A) const
bool operator==(const Self &other) const
typename TAccessor::ExternalType OutputType
void SetAccessor(AccessorType &accessor)
virtual void Modified() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....