| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkNumericTraitsRGBPixel.cxx.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:42 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 13 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 |
|
PURPOSE. See the above copyright notices for more information. |
| 15 |
|
|
| 16 |
DEF |
=========================================================================*/ |
| 17 |
|
#include "itkNumericTraitsRGBPixel.h" |
| 18 |
|
|
| 19 |
|
namespace itk |
| 20 |
|
{ |
| 21 |
|
|
| 22 |
LEN |
const RGBPixel<unsigned char> NumericTraits<RGBPixel<unsigned char> >::Zero = RGBPixel<unsigned char>( NumericTraits<unsigned char>::Zero ); |
| 23 |
LEN |
const RGBPixel<unsigned char> NumericTraits<RGBPixel<unsigned char> >::One = RGBPixel<unsigned char>( NumericTraits<unsigned char>::One ); |
| 24 |
|
|
| 25 |
|
} // end namespace itk |
| 26 |
|
|