#include "gdcmFileHelper.h"
#include "gdcmFile.h"
#include "gdcmSerieHelper.h"
#include "vtkGdcmReader.h"
#include "gdcmDebug.h"
#include "gdcmCommon.h"
#include <vtkObjectFactory.h>
#include <vtkImageData.h>
#include <vtkPointData.h>
#include <vtkLookupTable.h>
Include dependency graph for vtkGdcmReader.cxx:
Go to the source code of this file.
Functions | |
vtkCxxRevisionMacro (vtkGdcmReader,"$Revision: 1.91 $") vtkStandardNewMacro(vtkGdcmReader) vtkGdcmReader |
|
Definition at line 95 of file vtkGdcmReader.cxx. References GDCM_NAME_SPACE::LD_ALL, and LookupTable. 00095 : 1.91 $") 00096 vtkStandardNewMacro(vtkGdcmReader) 00097 00098 //----------------------------------------------------------------------------- 00099 // Constructor / Destructor 00100 vtkGdcmReader::vtkGdcmReader() 00101 { 00102 this->LookupTable = NULL; 00103 this->AllowLookupTable = false; 00104 //this->AllowLightChecking = false; 00105 this->LoadMode = GDCM_NAME_SPACE::LD_ALL; // Load everything (possible values : 00106 // - LD_NOSEQ, 00107 // - LD_NOSHADOW, 00108 // - LD_NOSHADOWSEQ) 00109 this->CoherentFileList = 0; 00110 this->UserFunction = 0; 00111 00112 this->OwnFile=true; 00113 // this->Execution=false; // For VTK5.0 00114 }
|