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 #ifndef __cmtkDeviceHistogram_kernels_h_included_
00032 #define __cmtkDeviceHistogram_kernels_h_included_
00033
00034 #include <cmtkconfig.h>
00035
00038
00040 void cmtkDeviceHistogramPopulate( float* histPtr,
00041 const float* dataPtr,
00042 const float rangeFrom,
00043 const float rangeTo,
00044 const bool logScale,
00045 const int numberOfBins,
00046 const int numberOfSamples );
00047
00049 void cmtkDeviceHistogramPopulate( float* histPtr,
00050 const float* dataPtr,
00051 const int* maskPtr,
00052 const float rangeFrom,
00053 const float rangeTo,
00054 const bool logScale,
00055 const int numberOfBins,
00056 const int numberOfSamples );
00057
00059 void cmtkDeviceHistogramEntropy( float* result, const float* dataPtr, int numberOfBins );
00060
00062
00063 #endif // #ifndef __cmtkDeviceHistogram_kernels_h_included_