ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkNumericTraitsDiffusionTensor3DPixel.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkNumericTraitsDiffusionTensor3DPixel_h
19 #define itkNumericTraitsDiffusionTensor3DPixel_h
20 
21 #include "itkNumericTraits.h"
22 #include "itkDiffusionTensor3D.h"
23 
24 // This file is meant to define numeric traits for tensor pixels types in itk
25 
26 namespace itk
27 {
44 template< typename T >
46 {
47 private:
48 
54 
55 public:
56 
58  typedef T ValueType;
59 
61 
64 
67 
71 
74 
77 
80 
83 
89  static const Self max(const Self &)
90  {
91  return Self( NumericTraits< T >::max() );
92  }
93 
94  static const Self min(const Self &)
95  {
96  return Self( NumericTraits< T >::min() );
97  }
98 
99  static const Self NonpositiveMin(const Self &)
100  {
102  }
103 
104  static const Self ZeroValue(const Self &)
105  {
107  }
108 
109  static const Self OneValue(const Self &)
110  {
112  }
113 
114  static const Self max()
115  {
116  return Self( NumericTraits< T >::max() );
117  }
118 
119  static const Self min()
120  {
121  return Self( NumericTraits< T >::min() );
122  }
123 
124  static const Self NonpositiveMin()
125  {
127  }
128 
129  static const Self ZeroValue()
130  {
132  }
133 
134  static const Self OneValue()
135  {
137  }
138 
139  static ITK_CONSTEXPR_VAR bool IsSigned = NumericTraits< ValueType >::IsSigned;
140  static ITK_CONSTEXPR_VAR bool IsInteger = NumericTraits< ValueType >::IsInteger;
141  static ITK_CONSTEXPR_VAR bool IsComplex = NumericTraits< ValueType >::IsComplex;
142 
147  static void SetLength(DiffusionTensor3D< T > & m, const unsigned int s)
148  {
149  if ( s != 6 )
150  {
151  itkGenericExceptionMacro(<< "Cannot set the size of a DiffusionTensor3D "
152  "to anything other than 6.");
153  }
155  }
157 
159  static unsigned int GetLength(const DiffusionTensor3D< T > &)
160  {
161  return 6;
162  }
163 
165  static unsigned int GetLength()
166  {
167  return 6;
168  }
169 
170  static void AssignToArray( const Self & v, MeasurementVectorType & mv )
171  {
172  mv = v;
173  }
174 
175  template<typename TArray>
176  static void AssignToArray( const Self & v, TArray & mv )
177  {
178  for( unsigned int i=0; i<6; i++ )
179  {
180  mv[i] = v[i];
181  }
182  }
183 
187  static const Self ITKCommon_EXPORT Zero;
188  static const Self ITKCommon_EXPORT One;
189 };
190 } // end namespace itk
191 
192 #endif // itkNumericTraitsTensorPixel_h
DiffusionTensor3D< ElementAccumulateType > AccumulateType
static ITK_CONSTEXPR_VAR bool IsComplex
static ITK_CONSTEXPR_VAR bool IsInteger
static unsigned int GetLength(const DiffusionTensor3D< T > &)
static ITK_CONSTEXPR_VAR bool IsSigned
static void SetLength(DiffusionTensor3D< T > &m, const unsigned int s)
static void AssignToArray(const Self &v, MeasurementVectorType &mv)
Define additional traits for native types such as int or float.
Represent a diffusion tensor as used in DTI images.