ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkNumericTraitsCovariantVectorPixel.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 itkNumericTraitsCovariantVectorPixel_h
19 #define itkNumericTraitsCovariantVectorPixel_h
20 
21 #include "itkNumericTraits.h"
22 #include "itkCovariantVector.h"
23 
24 namespace itk
25 {
43 template< typename T, unsigned int D >
45 {
46 private:
47 
53 
54 public:
55 
57  typedef T ValueType;
58 
60 
63 
66 
70 
73 
76 
79 
82 
88  static const Self max(const Self &)
89  {
90  return Self( NumericTraits< T >::max() );
91  }
92 
93  static const Self min(const Self &)
94  {
95  return Self( NumericTraits< T >::min() );
96  }
97 
98  static const Self max()
99  {
100  return Self( NumericTraits< T >::max() );
101  }
102 
103  static const Self min()
104  {
105  return Self( NumericTraits< T >::min() );
106  }
107 
108  static const Self NonpositiveMin()
109  {
111  }
112 
113  static const Self ZeroValue()
114  {
116  }
117 
118  static const Self OneValue()
119  {
121  }
122 
123  static const Self NonpositiveMin(const Self &)
124  {
125  return NonpositiveMin();
126  }
127 
128  static const Self ZeroValue(const Self &)
129  {
130  return ZeroValue();
131  }
132 
133  static const Self OneValue(const Self &)
134  {
135  return OneValue();
136  }
137 
138  static ITK_CONSTEXPR_VAR bool IsSigned = NumericTraits< ValueType >::IsSigned;
139  static ITK_CONSTEXPR_VAR bool IsInteger = NumericTraits< ValueType >::IsInteger;
140  static ITK_CONSTEXPR_VAR bool IsComplex = NumericTraits< ValueType >::IsComplex;
141 
145  static void SetLength(CovariantVector< T, D > & m, const unsigned int s)
146  {
147  if ( s != D )
148  {
149  itkGenericExceptionMacro(<< "Cannot set the size of a CovariantVector of length "
150  << D << " to " << s);
151  }
153  }
155 
157  static unsigned int GetLength(const CovariantVector< T, D > &)
158  {
159  return D;
160  }
161 
163  static unsigned int GetLength()
164  {
165  return D;
166  }
167 
168  static void AssignToArray( const Self & v, MeasurementVectorType & mv )
169  {
170  mv = v;
171  }
172 
173  template<typename TArray>
174  static void AssignToArray( const Self & v, TArray & mv )
175  {
176  for( unsigned int i=0; i<D; i++ )
177  {
178  mv[i] = v[i];
179  }
180  }
181 
185  static const Self ITKCommon_EXPORT Zero;
186  static const Self ITKCommon_EXPORT One;
187 };
188 } // end namespace itk
189 
190 #endif // itkNumericTraitsCovariantVectorPixel_h
static void SetLength(CovariantVector< T, D > &m, const unsigned int s)
static ITK_CONSTEXPR_VAR bool IsComplex
CovariantVector< ElementAccumulateType, D > AccumulateType
static ITK_CONSTEXPR_VAR bool IsInteger
static unsigned int GetLength(const CovariantVector< T, D > &)
static void AssignToArray(const Self &v, MeasurementVectorType &mv)
static ITK_CONSTEXPR_FUNC T NonpositiveMin()
static ITK_CONSTEXPR_VAR bool IsSigned
Define additional traits for native types such as int or float.
A templated class holding a n-Dimensional covariant vector.