X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FVTKTestRead.cxx;h=186afda0caedc9b23db178bc32a07c3d51fe1535;hb=de3b7ba046faa2c6728c25d54d22eafe6a24040d;hp=b4ba7ea1e4093b6a1cc40c5417b9154e14cd296e;hpb=a9405cdbae88cf5bef6f6fa5883d2502563c3914;p=gdcm.git diff --git a/Testing/VTKTestRead.cxx b/Testing/VTKTestRead.cxx index b4ba7ea1..186afda0 100644 --- a/Testing/VTKTestRead.cxx +++ b/Testing/VTKTestRead.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: VTKTestRead.cxx,v $ Language: C++ - Date: $Date: 2005/01/19 13:50:11 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/11/21 10:06:47 $ + Version: $Revision: 1.13 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,7 +15,6 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "gdcmFile.h" #include "vtkGdcmReader.h" #include "vtkImageViewer.h" #include "vtkImageData.h" @@ -25,6 +24,8 @@ #include "vtkImageAppendComponents.h" #include "vtkImageShiftScale.h" +#include "vtkPNGWriter.h" + #include //Generated file: @@ -35,11 +36,10 @@ #endif int VTKReadTest(vtkTesting *t,vtkImageViewer *viewer, - std::string const & filename, - std::string const & referenceFileName, - bool show ) + std::string const &filename, + std::string const &referenceFileName) { - int retVal = 0; //by default this is an error + int retVal; // = 0; (to avoid bcc5.5 warnings) t->CleanArguments(); t->AddArgument("-D"); @@ -49,21 +49,12 @@ int VTKReadTest(vtkTesting *t,vtkImageViewer *viewer, t->AddArgument("-T"); t->AddArgument( "." ); - // Instead of directly reading the dicom let's write it down to another file - // do a scope to be sure everything gets cleanup - { - gdcm::File file( filename ); - file.GetImageData(); - file.SetWriteModeToRaw(); - file.WriteDcmExplVR( "TestWrite.dcm" ); - } - - // Ok for now still use the original image, vtkGdcmReader *reader = vtkGdcmReader::New(); - //reader->SetFileName( filename.c_str() ); - reader->SetFileName( "TestWrite.dcm" ); + reader->SetFileName( filename.c_str() ); reader->Update(); + double range[2]; + reader->GetOutput()->GetScalarRange(range); int dim[3]; reader->GetOutput()->GetDimensions( dim ); @@ -72,7 +63,6 @@ int VTKReadTest(vtkTesting *t,vtkImageViewer *viewer, { viewer->SetInput ( reader->GetOutput() ); - vtkFloatingPointType *range = reader->GetOutput()->GetScalarRange(); viewer->SetColorWindow (range[1] - range[0]); viewer->SetColorLevel (0.5 * (range[1] + range[0])); @@ -125,13 +115,11 @@ int VTKReadTest(vtkTesting *t,vtkImageViewer *viewer, // Set an unsigned char image // Shift/Scale the image - image->Update(); - double *rng=image->GetScalarRange(); vtkImageShiftScale *iss=vtkImageShiftScale::New(); iss->SetInput(image); iss->SetOutputScalarTypeToUnsignedChar(); - iss->SetShift(-rng[0]); - iss->SetScale(255.0/(rng[1]-rng[0])); + iss->SetShift(-range[0]); + iss->SetScale(255.0/(range[1]-range[0])); iss->ClampOverflowOn(); image->UnRegister(NULL); @@ -194,7 +182,7 @@ int VTKTestRead(int argc, char *argv[]) } int ret = 0; - vtkTesting* t = vtkTesting::New(); + vtkTesting *t = vtkTesting::New(); vtkImageViewer *viewer; if( show ) viewer = vtkImageViewer::New(); @@ -209,13 +197,15 @@ int VTKTestRead(int argc, char *argv[]) } else { - ret = VTKReadTest(t,viewer,argv[1+show],argv[2+show],show); + ret = VTKReadTest(t,viewer,argv[1+show],argv[2+show]); t->Delete(); if( viewer ) viewer->Delete(); return ret; } + + gdcm::Debug::DebugOn(); // Comment out when no bug is to be tracked // Test for all images int i = 0; @@ -235,7 +225,7 @@ int VTKTestRead(int argc, char *argv[]) pngfile.insert( 0, "Baseline/"); //std::cerr << "PNG file: " << pngfile << std::endl; - ret += VTKReadTest(t,viewer,filename,pngfile,show); + ret += VTKReadTest(t,viewer,filename,pngfile); } t->Delete(); if( viewer )