X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vtk%2FvtkGdcmReader.h;h=d3ca650a63cb679214c6b2b468e4e346cf6fd388;hb=4caa0694570fdecca63e745c25471edc4272aad1;hp=32fc2fd0994a53e046328281d048fc35096104b6;hpb=b178cc9e1efeff5116c138ac66beaf0235d8c09a;p=gdcm.git diff --git a/vtk/vtkGdcmReader.h b/vtk/vtkGdcmReader.h index 32fc2fd0..d3ca650a 100644 --- a/vtk/vtkGdcmReader.h +++ b/vtk/vtkGdcmReader.h @@ -3,6 +3,8 @@ #ifndef __vtkGdcmReader_h #define __vtkGdcmReader_h +#include "gdcmCommon.h" // To avoid warnings concerning the std + #include #include #include @@ -14,13 +16,22 @@ class vtkLookupTable; class VTK_EXPORT vtkGdcmReader : public vtkImageReader { public: - static vtkGdcmReader *New() {return new vtkGdcmReader;}; - vtkTypeMacro(vtkGdcmReader, vtkImageReader); + static vtkGdcmReader *New(); + vtkTypeRevisionMacro(vtkGdcmReader, vtkImageReader); void PrintSelf(ostream& os, vtkIndent indent); virtual void RemoveAllFileName(void); virtual void AddFileName(const char* name); virtual void SetFileName(const char *name); + + // Description: + // If this flag is set and the DICOM reader encounters a dicom file with + // lookup table the data will be kept as unsigned chars and a lookuptable + // will be exported and accessible through GetLookupTable() + vtkSetMacro(AllowLookupTable,int); + vtkGetMacro(AllowLookupTable,int); + vtkBooleanMacro(AllowLookupTable,int); + vtkGetObjectMacro(LookupTable,vtkLookupTable); protected: @@ -45,6 +56,7 @@ private: // Variables vtkLookupTable *LookupTable; vtkTimeStamp fileTime; + int AllowLookupTable; //BTX // Number of columns of the image/volume to be loaded