ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSymmetricEigenAnalysisImageFilter.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 itkSymmetricEigenAnalysisImageFilter_h
19#define itkSymmetricEigenAnalysisImageFilter_h
20
23#include "ITKImageIntensityExport.h"
24
25namespace itk
26{
27// This functor class invokes the computation of Eigen Analysis for
28// every pixel. The input pixel type must provide the API for the [][]
29// operator, while the output pixel type must provide the API for the
30// [] operator. Input pixel matrices should be symmetric.
31//
32// The default operation is to order eigen values in ascending order.
33// You may also use OrderEigenValuesBy( ) to order eigen values by
34// magnitude as is common with use of tensors in vessel extraction.
35namespace Functor
36{
37
38#if !defined(ITK_LEGACY_REMOVE)
39using OrderTypeOfEigenValue = EigenValueOrderEnum;
40#endif
41
42template <typename TInput, typename TOutput>
44{
45public:
46 using RealValueType = typename TInput::RealValueType;
48 bool
50 {
51 return true;
52 }
53
55
56 inline TOutput
57 operator()(const TInput & x) const
58 {
59 TOutput eigenValues{};
60
61 m_Calculator.ComputeEigenValues(x, eigenValues);
62 return eigenValues;
63 }
64
67 void
68 SetDimension(unsigned int n)
69 {
70 m_Calculator.SetDimension(n);
71 }
72 unsigned int
74 {
75 return m_Calculator.GetDimension();
76 }
77
78
79#if !defined(ITK_LEGACY_REMOVE)
81 using EigenValueOrderType = EigenValueOrderEnum;
82#endif
83#if !defined(ITK_LEGACY_REMOVE)
84 // We need to expose the enum values at the class level
85 // for backwards compatibility
86 static constexpr EigenValueOrderEnum OrderByValue = EigenValueOrderEnum::OrderByValue;
87 static constexpr EigenValueOrderEnum OrderByMagnitude = EigenValueOrderEnum::OrderByMagnitude;
88 static constexpr EigenValueOrderEnum DoNotOrder = EigenValueOrderEnum::DoNotOrder;
89#endif
90
94 void
96 {
97 if (order == EigenValueOrderEnum::OrderByMagnitude)
98 {
99 m_Calculator.SetOrderEigenMagnitudes(true);
100 }
101 else if (order == EigenValueOrderEnum::DoNotOrder)
102 {
103 m_Calculator.SetOrderEigenValues(false);
104 }
105 }
106 void
113 {
114 if (m_Calculator.GetOrderEigenMagnitudes())
115 {
116 return EigenValueOrderEnum::OrderByMagnitude;
117 }
118 if (m_Calculator.GetOrderEigenValues())
119 {
120 return EigenValueOrderEnum::OrderByValue;
121 }
122 return EigenValueOrderEnum::DoNotOrder;
123 }
124
125
126private:
128};
129
130template <unsigned int TMatrixDimension, typename TInput, typename TOutput>
132{
133public:
134 using RealValueType = typename TInput::RealValueType;
136 bool
138 {
139 return true;
140 }
141
143
144 inline TOutput
145 operator()(const TInput & x) const
146 {
147 TOutput eigenValues;
148
149 m_Calculator.ComputeEigenValues(x, eigenValues);
150 return eigenValues;
151 }
152
154 unsigned int
156 {
157 return m_Calculator.GetDimension();
158 }
159
160#if !defined(ITK_LEGACY_REMOVE)
162 using EigenValueOrderType = EigenValueOrderEnum;
163#endif
164#if !defined(ITK_LEGACY_REMOVE)
165 // We need to expose the enum values at the class level
166 // for backwards compatibility
167 static constexpr EigenValueOrderEnum OrderByValue = EigenValueOrderEnum::OrderByValue;
168 static constexpr EigenValueOrderEnum OrderByMagnitude = EigenValueOrderEnum::OrderByMagnitude;
169 static constexpr EigenValueOrderEnum DoNotOrder = EigenValueOrderEnum::DoNotOrder;
170#endif
171
174 void
176 {
177 if (order == EigenValueOrderEnum::OrderByMagnitude)
178 {
179 m_Calculator.SetOrderEigenMagnitudes(true);
180 }
181 else if (order == EigenValueOrderEnum::DoNotOrder)
182 {
183 m_Calculator.SetOrderEigenValues(false);
184 }
185 }
186
187private:
189};
190
192extern ITKImageIntensity_EXPORT std::ostream &
193 operator<<(std::ostream & out, const EigenValueOrderEnum value);
194
195} // end namespace Functor
196
215template <typename TInputImage, typename TOutputImage>
218 TInputImage,
219 TOutputImage,
220 Functor::SymmetricEigenAnalysisFunction<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
221{
222public:
223 ITK_DISALLOW_COPY_AND_MOVE(SymmetricEigenAnalysisImageFilter);
224
228 TInputImage,
229 TOutputImage,
231
234
235 using typename Superclass::OutputImageType;
236 using OutputPixelType = typename TOutputImage::PixelType;
237 using InputPixelType = typename TInputImage::PixelType;
238 using InputValueType = typename InputPixelType::ValueType;
239 using typename Superclass::FunctorType;
240
241#if !defined(ITK_LEGACY_REMOVE)
243 using EigenValueOrderType = EigenValueOrderEnum;
244#endif
245
249 void
254 void
261 {
262 return this->GetFunctor().GetOrderEigenValuesBy();
263 }
264
265
267 itkOverrideGetNameOfClassMacro(SymmetricEigenAnalysisImageFilter);
268
270 itkNewMacro(Self);
271
273 void
274 PrintSelf(std::ostream & os, Indent indent) const override
275 {
276 this->Superclass::PrintSelf(os, indent);
277 }
278
282 void
283 SetDimension(unsigned int p)
284 {
285 this->GetFunctor().SetDimension(p);
286 }
287 unsigned int
289 {
290 return this->GetFunctor().GetDimension();
291 }
292
293
294 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputValueType>));
295
296protected:
297 SymmetricEigenAnalysisImageFilter() { this->SetDimension(TInputImage::ImageDimension); }
299};
300
319template <unsigned int TMatrixDimension, typename TInputImage, typename TOutputImage = TInputImage>
322 TInputImage,
323 TOutputImage,
324 Functor::SymmetricEigenAnalysisFixedDimensionFunction<TMatrixDimension,
325 typename TInputImage::PixelType,
326 typename TOutputImage::PixelType>>
327{
328public:
329 ITK_DISALLOW_COPY_AND_MOVE(SymmetricEigenAnalysisFixedDimensionImageFilter);
330
334 UnaryFunctorImageFilter<TInputImage,
335 TOutputImage,
337 typename TInputImage::PixelType,
338 typename TOutputImage::PixelType>>;
339
342
343 using typename Superclass::OutputImageType;
344 using OutputPixelType = typename TOutputImage::PixelType;
345 using InputPixelType = typename TInputImage::PixelType;
346 using InputValueType = typename InputPixelType::ValueType;
347 using typename Superclass::FunctorType;
348
351
354 void
359
361 itkOverrideGetNameOfClassMacro(SymmetricEigenAnalysisFixedDimensionImageFilter);
362
364 itkNewMacro(Self);
365
367 void
368 PrintSelf(std::ostream & os, Indent indent) const override
369 {
370 this->Superclass::PrintSelf(os, indent);
371 }
372
374 unsigned int
376 {
377 return this->GetFunctor().GetDimension();
378 }
379
380 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputValueType>));
381
382protected:
385};
386} // end namespace itk
387
388#endif
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(SymmetricEigenAnalysisFixedDimensionFunction)
SymmetricEigenAnalysisFixedDimension< TMatrixDimension, TInput, TOutput > CalculatorType
bool operator==(const SymmetricEigenAnalysisFixedDimensionFunction &) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(SymmetricEigenAnalysisFunction)
bool operator==(const SymmetricEigenAnalysisFunction &) const
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::SymmetricEigenAnalysisFixedDimensionFunction< TMatrixDimension, typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
~SymmetricEigenAnalysisImageFilter() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::SymmetricEigenAnalysisFunction< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
Find Eigen values of a real 2D symmetric matrix. It serves as a thread-safe alternative to the class:...
#define itkConceptMacro(name, concept)
ITKImageIntensity_EXPORT std::ostream & operator<<(std::ostream &out, const EigenValueOrderEnum value)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SymmetricEigenAnalysisEnums::EigenValueOrder EigenValueOrderEnum