X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vtk%2FvtkGdcmReader.cxx;h=ea4545a02a57c104cbe938be545d633b254083be;hb=d569212ce5d0577c01b30796b288aafc2ae4fd9d;hp=34f53f257c92b132bfd882086e2168f16b68bd37;hpb=ac6281627c9571b711bd4d6e55a4adabc8b91afb;p=gdcm.git diff --git a/vtk/vtkGdcmReader.cxx b/vtk/vtkGdcmReader.cxx index 34f53f25..ea4545a0 100644 --- a/vtk/vtkGdcmReader.cxx +++ b/vtk/vtkGdcmReader.cxx @@ -63,6 +63,7 @@ vtkGdcmReader::vtkGdcmReader() { this->LookupTable = NULL; + this->AllowLookupTable = 0; } vtkGdcmReader::~vtkGdcmReader() @@ -122,6 +123,7 @@ void vtkGdcmReader::SetFileName(const char *name) // Since we maintain a list of filenames, when building a volume, // (see vtkGdcmReader::AddFileName), we additionaly need to purge // this list when we manually positionate the filename. + vtkDebugMacro("Clearing all files given with AddFileName"); this->FileNameList.clear(); this->Modified(); } @@ -319,10 +321,26 @@ void vtkGdcmReader::ExecuteData(vtkDataObject *output) */ void vtkGdcmReader::BuildFileListFromPattern() { + this->RemoveAllInternalFileName(); + if ((! this->FileNameList.empty()) && this->FileName ) { - vtkErrorMacro("Both file patterns and AddFileName schemes were used"); - vtkErrorMacro("Only the files specified with AddFileName shall be used"); + vtkErrorMacro("Both AddFileName and SetFileName schemes were used"); + vtkErrorMacro("No images loaded ! "); + return; + } + + if ((! this->FileNameList.empty()) && this->FilePrefix ) + { + vtkErrorMacro("Both AddFileName and SetFilePrefix schemes were used"); + vtkErrorMacro("No images loaded ! "); + return; + } + + if (this->FileName && this->FilePrefix) + { + vtkErrorMacro("Both SetFileName and SetFilePrefix schemes were used"); + vtkErrorMacro("No images loaded ! "); return; } @@ -333,24 +351,24 @@ void vtkGdcmReader::BuildFileListFromPattern() return; } - if (!this->FileName && !this->FilePattern) + if (!this->FileName && !this->FilePrefix) { vtkErrorMacro("FileNames are not set. Either use AddFileName() or"); - vtkErrorMacro("specify a FileName or FilePattern."); + vtkErrorMacro("specify a FileName or FilePrefix."); return; } - this->RemoveAllInternalFileName(); - if( this->FileNameList.empty() ) + if( this->FileName ) { - //Multiframe case: + // Single file loading (as given with ::SetFileName()): + // Case of multi-frame file considered here this->ComputeInternalFileName(this->DataExtent[4]); vtkDebugMacro("Adding file " << this->InternalFileName); this->AddInternalFileName(this->InternalFileName); } else { - //stack of 2D dicom case: + // Multi file loading (as given with ::SetFilePattern()): for (int idx = this->DataExtent[4]; idx <= this->DataExtent[5]; ++idx) { this->ComputeInternalFileName(idx); @@ -512,8 +530,9 @@ int vtkGdcmReader::CheckFileCoherence() this->ImageType = type; this->PixelSize = GdcmHeader.GetPixelSize(); - if( GdcmHeader.HasLUT() ) + if( GdcmHeader.HasLUT() && this->AllowLookupTable ) { + // I could raise an error is AllowLookupTable is on and HasLUT() off this->NumComponents = GdcmHeader.GetNumberOfScalarComponentsRaw(); } else @@ -607,7 +626,7 @@ size_t vtkGdcmReader::LoadImageInMemory( unsigned char * Source; - if( GdcmFile.GetHeader()->HasLUT() ) + if( GdcmFile.GetHeader()->HasLUT() && this->AllowLookupTable ) { size = GdcmFile.GetImageDataSizeRaw(); Source = (unsigned char*) GdcmFile.GetImageDataRaw();