Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef __cmtkScaleHistogramValueTrait_h_included_
00033 #define __cmtkScaleHistogramValueTrait_h_included_
00034
00035 #include <cmtkconfig.h>
00036
00037 namespace
00038 cmtk
00039 {
00040
00043
00045 template<class T>
00046 class ScaleHistogramValueTrait
00047 {
00048 public:
00050 static T Scale( const float value )
00051 {
00052 return value;
00053 }
00054 };
00055
00056 template<>
00057 class ScaleHistogramValueTrait<int>
00058 {
00059 public:
00061 static int Scale( const float value )
00062 {
00063 return static_cast<int>( 256 * value );
00064 }
00065 };
00066
00067 template<>
00068 class ScaleHistogramValueTrait<unsigned int>
00069 {
00070 public:
00072 static unsigned int Scale( const float value )
00073 {
00074 return static_cast<unsigned int>( 256 * value );
00075 }
00076 };
00077
00079
00080 }
00081
00082 #endif