ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkInvertIntensityImageFilter.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 itkInvertIntensityImageFilter_h
19#define itkInvertIntensityImageFilter_h
20
22
23namespace itk
24{
25namespace Functor
26{
32template <typename TInput, typename TOutput>
33class ITK_TEMPLATE_EXPORT InvertIntensityTransform
34{
35public:
39
40 void
41 SetMaximum(TOutput max)
42 {
43 m_Maximum = max;
44 }
45
46
47 bool
49 {
50 return m_Maximum == other.m_Maximum;
51 }
52
54
55 inline TOutput
56 operator()(const TInput & x) const
57 {
58 auto result = static_cast<TOutput>(m_Maximum - x);
59
60 return result;
61 }
62
63private:
64 TInput m_Maximum;
65};
66} // end namespace Functor
67
88template <typename TInputImage, typename TOutputImage = TInputImage>
89class ITK_TEMPLATE_EXPORT InvertIntensityImageFilter
91 TInputImage,
92 TOutputImage,
93 Functor::InvertIntensityTransform<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
94{
95public:
96 ITK_DISALLOW_COPY_AND_MOVE(InvertIntensityImageFilter);
97
101 TInputImage,
102 TOutputImage,
106
107 using OutputPixelType = typename TOutputImage::PixelType;
108 using InputPixelType = typename TInputImage::PixelType;
110
112 itkNewMacro(Self);
113
115 itkOverrideGetNameOfClassMacro(InvertIntensityImageFilter);
116
119 itkSetMacro(Maximum, InputPixelType);
120 itkGetConstReferenceMacro(Maximum, InputPixelType);
122 void
123 PrintSelf(std::ostream & os, Indent indent) const override;
124
126 void
128
129 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
130
131protected:
133 ~InvertIntensityImageFilter() override = default;
134
135private:
137};
138} // end namespace itk
139
140#ifndef ITK_MANUAL_INSTANTIATION
141# include "itkInvertIntensityImageFilter.hxx"
142#endif
143
144#endif
typename NumericTraits< TInput >::RealType RealType
bool operator==(const InvertIntensityTransform &other) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(InvertIntensityTransform)
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename TInputImage::PixelType InputPixelType
~InvertIntensityImageFilter() override=default
typename NumericTraits< InputPixelType >::RealType RealType
void BeforeThreadedGenerateData() override
typename TOutputImage::PixelType OutputPixelType
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::InvertIntensityTransform< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
static constexpr T max(const T &)
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....