ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNotImageFilter.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 itkNotImageFilter_h
19#define itkNotImageFilter_h
20
22#include "itkLogicOpsFunctors.h"
23#include "itkNumericTraits.h"
24
25namespace itk
26{
55template <typename TInputImage, typename TOutputImage>
57 : public UnaryFunctorImageFilter<TInputImage,
58 TOutputImage,
59 Functor::NOT<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
60
61{
62public:
63 ITK_DISALLOW_COPY_AND_MOVE(NotImageFilter);
64
67 using Superclass =
68 UnaryFunctorImageFilter<TInputImage,
69 TOutputImage,
71
74
76 itkNewMacro(Self);
77
79 itkOverrideGetNameOfClassMacro(NotImageFilter);
80
84 void
85 SetBackgroundValue(const typename TOutputImage::PixelType & backgroundValue)
86 {
87 if (Math::NotExactlyEquals(this->GetBackgroundValue(), backgroundValue))
88 {
89 this->Modified();
90 this->GetFunctor().SetBackgroundValue(backgroundValue);
91 }
92 }
93 typename TOutputImage::PixelType
95 {
96 return this->GetFunctor().GetBackgroundValue();
97 }
98
99
103 void
104 SetForegroundValue(const typename TOutputImage::PixelType & foregroundValue)
105 {
106 std::cout << "this->GetForegroundValue(): " << this->GetForegroundValue()
107 << " foregroundValue: " << foregroundValue << std::endl;
108 if (Math::NotExactlyEquals(this->GetForegroundValue(), foregroundValue))
109 {
110 this->Modified();
111 this->GetFunctor().SetForegroundValue(foregroundValue);
112 }
113 }
114 typename TOutputImage::PixelType
116 {
117 return this->GetFunctor().GetForegroundValue();
118 }
119
120
124
125protected:
127 {
128 this->GetFunctor().SetForegroundValue(true);
129 this->GetFunctor().SetBackgroundValue(false);
130 }
131 ~NotImageFilter() override = default;
132};
133} // end namespace itk
134
135#endif
void SetForegroundValue(const TOutput &FG)
void SetBackgroundValue(const TOutput &BG)
Unary logical NOT functor.
TOutputImage::PixelType GetForegroundValue() const
void SetBackgroundValue(const typename TOutputImage::PixelType &backgroundValue)
SmartPointer< const Self > ConstPointer
TOutputImage::PixelType GetBackgroundValue() const
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::NOT< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
~NotImageFilter() override=default
SmartPointer< Self > Pointer
void SetForegroundValue(const typename TOutputImage::PixelType &foregroundValue)
virtual void Modified() const
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
bool NotExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Definition itkMath.h:730
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....