ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Core
Common
include
itkNumericTraitsRGBPixel.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 __itkNumericTraitsRGBPixel_h
19
#define __itkNumericTraitsRGBPixel_h
20
21
#include "
itkNumericTraits.h
"
22
#include "
itkRGBPixel.h
"
23
24
namespace
itk
25
{
42
template
<
typename
T >
43
class
NumericTraits
<
RGBPixel
< T > >
44
{
45
private
:
46
47
typedef
typename
NumericTraits< T >::AbsType
ElementAbsType
;
48
typedef
typename
NumericTraits< T >::AccumulateType
ElementAccumulateType
;
49
typedef
typename
NumericTraits< T >::FloatType
ElementFloatType
;
50
typedef
typename
NumericTraits< T >::PrintType
ElementPrintType
;
51
typedef
typename
NumericTraits< T >::RealType
ElementRealType
;
52
53
public
:
54
56
typedef
T
ValueType
;
57
58
typedef
RGBPixel< T >
Self
;
59
61
typedef
RGBPixel< ElementAbsType >
AbsType
;
62
64
typedef
RGBPixel< ElementAccumulateType >
AccumulateType
;
65
68
typedef
RGBPixel< ElementFloatType >
FloatType
;
69
71
typedef
RGBPixel< ElementPrintType >
PrintType
;
72
74
typedef
RGBPixel< ElementRealType >
RealType
;
75
77
typedef
ElementRealType
ScalarRealType
;
78
80
typedef
Self
MeasurementVectorType
;
81
87
static
const
Self
max
(
const
Self
&)
88
{
89
return
Self
(
NumericTraits< T >::max
() );
90
}
91
92
static
const
Self
min
(
const
Self
&)
93
{
94
return
Self
(
NumericTraits< T >::min
() );
95
}
96
97
static
const
Self
max
()
98
{
99
return
Self
(
NumericTraits< T >::max
() );
100
}
101
102
static
const
Self
min
()
103
{
104
return
Self
(
NumericTraits< T >::min
() );
105
}
106
107
static
const
Self
NonpositiveMin
()
108
{
109
return
Self
(
NumericTraits< ValueType >::NonpositiveMin
() );
110
}
111
112
static
const
Self
ZeroValue
()
113
{
114
return
Self
(
NumericTraits< T >::Zero
);
115
}
116
117
static
const
Self
OneValue
()
118
{
119
return
Self
(
NumericTraits< T >::One
);
120
}
121
122
static
const
Self
NonpositiveMin
(
const
Self
&)
123
{
124
return
NonpositiveMin
();
125
}
126
127
static
const
Self
ZeroValue
(
const
Self
&)
128
{
129
return
ZeroValue
();
130
}
131
132
static
const
Self
OneValue
(
const
Self
&)
133
{
134
return
OneValue
();
135
}
136
140
static
void
SetLength
(
RGBPixel< T >
& m,
const
unsigned
int
s)
141
{
142
if
( s != 3 )
143
{
144
itkGenericExceptionMacro(<<
"Cannot set the size of a RGBPixel to anything other "
145
"than 3."
);
146
}
147
m.
Fill
(
NumericTraits< T >::Zero
);
148
}
150
152
static
unsigned
int
GetLength
(
const
RGBPixel< T >
&)
153
{
154
return
3;
155
}
156
158
static
unsigned
int
GetLength
()
159
{
160
return
3;
161
}
162
163
static
void
AssignToArray
(
const
Self
& v,
MeasurementVectorType
& mv )
164
{
165
mv = v;
166
}
167
168
template
<
class
TArray>
169
static
void
AssignToArray
(
const
Self
& v, TArray & mv )
170
{
171
for
(
unsigned
int
i=0; i<3; i++ )
172
{
173
mv[i] = v[i];
174
}
175
}
176
180
static
const
Self
ITKCommon_EXPORT
Zero
;
181
static
const
Self
ITKCommon_EXPORT
One
;
182
};
183
}
// end namespace itk
184
185
#endif // __itkNumericTraitsRGBPixel_h
186
Generated on Sun Dec 9 2012 01:21:18 for ITK by
1.8.2