00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __mitkTFEmptySpace_h
00011 #define __mitkTFEmptySpace_h
00012
00013 #include "mitkVisualization2Includes.h"
00014
00015 class mitkLut1D;
00016
00017 class MITK_VISUALIZATION2_API mitkTFEmptySpace
00018 {
00019 public:
00020 int m_SampleNumber;
00021 float m_min,m_max;
00022 float* m_Data;
00023
00024 mitkTFEmptySpace();
00025 ~mitkTFEmptySpace();
00026
00027 void CalculateTFEmptySpace(const mitkLut1D* Lut);
00028
00029 };
00030
00031 #endif
00032