ITK  5.3.0
Insight Toolkit
itkTensorRelativeAnisotropyImageFilter.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 itkTensorRelativeAnisotropyImageFilter_h
19 #define itkTensorRelativeAnisotropyImageFilter_h
20 
22 #include "itkImage.h"
23 
24 namespace itk
25 {
26 // This functor class invokes the computation of relative anisotropy from
27 // every pixel.
28 namespace Functor
29 {
30 template <typename TInput>
32 {
33 public:
34  using RealValueType = typename TInput::RealValueType;
37  bool
39  {
40  return true;
41  }
42 
44 
45  inline RealValueType
46  operator()(const TInput & x) const
47  {
48  return x.GetRelativeAnisotropy();
49  }
50 };
51 } // end namespace Functor
52 
68 template <typename TInputImage,
69  typename TOutputImage =
70  Image<typename NumericTraits<typename TInputImage::PixelType::ValueType>::RealType, TInputImage::Dimension>>
72  : public UnaryFunctorImageFilter<TInputImage,
73  TOutputImage,
74  Functor::TensorRelativeAnisotropyFunction<typename TInputImage::PixelType>>
75 {
76 public:
77  ITK_DISALLOW_COPY_AND_MOVE(TensorRelativeAnisotropyImageFilter);
78 
81  using Superclass =
82  UnaryFunctorImageFilter<TInputImage,
83  TOutputImage,
85 
88 
89  using typename Superclass::OutputImageType;
90  using OutputPixelType = typename TOutputImage::PixelType;
91  using InputPixelType = typename TInputImage::PixelType;
92  using InputValueType = typename InputPixelType::ValueType;
93 
96 
98  itkNewMacro(Self);
99 
101  void
102  PrintSelf(std::ostream & os, Indent indent) const override
103  {
104  this->Superclass::PrintSelf(os, indent);
105  }
106 
107 #ifdef ITK_USE_CONCEPT_CHECKING
108  // Begin concept checking
109  itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputValueType>));
110  // End concept checking
111 #endif
112 
113 protected:
115  ~TensorRelativeAnisotropyImageFilter() override = default;
116 };
117 } // end namespace itk
118 
119 #endif
itkUnaryFunctorImageFilter.h
itk::Concept::HasNumericTraits
Definition: itkConceptChecking.h:714
itk::UnaryFunctorImageFilter
Implements pixel-wise generic operation on one image.
Definition: itkUnaryFunctorImageFilter.h:50
itk::Functor::TensorRelativeAnisotropyFunction::ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(TensorRelativeAnisotropyFunction)
itk::TensorRelativeAnisotropyImageFilter::InputPixelType
typename TInputImage::PixelType InputPixelType
Definition: itkTensorRelativeAnisotropyImageFilter.h:91
itkImage.h
itk::TensorRelativeAnisotropyImageFilter::~TensorRelativeAnisotropyImageFilter
~TensorRelativeAnisotropyImageFilter() override=default
itk::SmartPointer< Self >
itk::Functor::TensorRelativeAnisotropyFunction::TensorRelativeAnisotropyFunction
TensorRelativeAnisotropyFunction()=default
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::TensorRelativeAnisotropyImageFilter
Computes the Relative Anisotropy for every pixel of a input tensor image.
Definition: itkTensorRelativeAnisotropyImageFilter.h:71
itk::Functor::TensorRelativeAnisotropyFunction::operator==
bool operator==(const TensorRelativeAnisotropyFunction &) const
Definition: itkTensorRelativeAnisotropyImageFilter.h:38
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::UnaryFunctorImageFilter::OutputImageType
TOutputImage OutputImageType
Definition: itkUnaryFunctorImageFilter.h:75
itk::InPlaceImageFilter::PrintSelf
void PrintSelf(std::ostream &os, Indent indent) const override
itk::Functor::TensorRelativeAnisotropyFunction
Definition: itkTensorRelativeAnisotropyImageFilter.h:31
itk::TensorRelativeAnisotropyImageFilter::InputValueType
typename InputPixelType::ValueType InputValueType
Definition: itkTensorRelativeAnisotropyImageFilter.h:92
itk::TensorRelativeAnisotropyImageFilter::OutputPixelType
typename TOutputImage::PixelType OutputPixelType
Definition: itkTensorRelativeAnisotropyImageFilter.h:90
itk::Functor::TensorRelativeAnisotropyFunction< TInputImage::PixelType >::RealValueType
typename TInputImage::PixelType ::RealValueType RealValueType
Definition: itkTensorRelativeAnisotropyImageFilter.h:34
itk::Functor::TensorRelativeAnisotropyFunction::operator()
RealValueType operator()(const TInput &x) const
Definition: itkTensorRelativeAnisotropyImageFilter.h:46
itk::TensorRelativeAnisotropyImageFilter::TensorRelativeAnisotropyImageFilter
TensorRelativeAnisotropyImageFilter()=default
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition: itkConceptChecking.h:65
itk::Functor::TensorRelativeAnisotropyFunction::~TensorRelativeAnisotropyFunction
~TensorRelativeAnisotropyFunction()=default
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itk::TensorRelativeAnisotropyImageFilter::PrintSelf
void PrintSelf(std::ostream &os, Indent indent) const override
Definition: itkTensorRelativeAnisotropyImageFilter.h:102
itk::GTest::TypedefsAndConstructors::Dimension2::Dimension
constexpr unsigned int Dimension
Definition: itkGTestTypedefsAndConstructors.h:44