X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestAllReadCompareDicom.cxx;h=d2fb988f5087435919ae0942aed0b78e8483141d;hb=7232238105e44d9569d21452e1600e00d8a44961;hp=2eb4cf604b9844aee238f8d91ae5a4eaba91e2eb;hpb=e8439d97c8441809e9a5236e729bae1a25ffb418;p=gdcm.git diff --git a/Testing/TestAllReadCompareDicom.cxx b/Testing/TestAllReadCompareDicom.cxx index 2eb4cf60..d2fb988f 100644 --- a/Testing/TestAllReadCompareDicom.cxx +++ b/Testing/TestAllReadCompareDicom.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestAllReadCompareDicom.cxx,v $ Language: C++ - Date: $Date: 2004/11/16 14:48:19 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/02/03 10:00:06 $ + Version: $Revision: 1.30 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,73 +15,99 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "gdcmHeader.h" +#include "gdcmDirList.h" #include "gdcmFile.h" -#include +#include "gdcmFileHelper.h" + +#include +#include //Generated file: #include "gdcmDataImages.h" -int InternalTest(std::string const & filename, - std::string const & referenceFileName ) +int InternalTest(std::string const &filename, + std::string const &referenceFileName ) { std::cout << " Testing: " << filename << std::endl; - gdcm::File* tested = new gdcm::File( filename ); - if( !tested->GetHeader()->IsReadable() ) + ////// Step 1: + std::cout << " 1..."; + gdcm::FileHelper *tested = new gdcm::FileHelper( filename ); + if( !tested->GetFile()->IsReadable() ) { - std::cout << " Image not gdcm compatible:" + std::cout << " Failed" << std::endl + << " Image not gdcm compatible:" << filename << std::endl; delete tested; return 1; } ////// Step 2: - ////// Check for existence of reference baseline dicom file: + std::cout << "2..."; - FILE* testFILE = fopen( referenceFileName.c_str(), "r" ); + std::ifstream testFILE( referenceFileName.c_str() ); if (! testFILE ) { - ////// Step 3a: - uint8_t* testedImageData = tested->GetImageData(); // Kludge + uint8_t *testedImageData = tested->GetImageData(); // Kludge + (void)testedImageData; + + tested->SetWriteModeToRGB(); tested->WriteDcmExplVR( referenceFileName ); - std::cerr << " Creating reference baseline file :" << std::endl - << " " << referenceFileName - << std::endl; - delete tested; - //delete (char*)testedImageData; - return 0; - } - else - { - fclose( testFILE ); } + testFILE.close(); + ////// Step 3a: ////// When reference file is not gdcm readable test is failed: - - gdcm::File* reference = new gdcm::File( referenceFileName ); - if( !reference->GetHeader()->IsReadable() ) + std::cout << "3a..."; + + gdcm::FileHelper *reference = new gdcm::FileHelper( referenceFileName ); + if( !reference->GetFile()->IsReadable() ) { - std::cout << " Failed: reference image " << std::endl - << " " << referenceFileName <GetFile()->GetPixelType(); + ////// Step 3b: + std::cout << "3b..."; int testedDataSize = tested->GetImageDataSize(); - uint8_t* testedImageData = tested->GetImageData(); + uint8_t *testedImageData = tested->GetImageData(); int referenceDataSize = reference->GetImageDataSize(); - uint8_t* referenceImageData = reference->GetImageData(); + uint8_t *referenceImageData = reference->GetImageData(); + + // Test the image size + if (tested->GetFile()->GetXSize() != reference->GetFile()->GetXSize() || + tested->GetFile()->GetYSize() != reference->GetFile()->GetYSize() || + tested->GetFile()->GetZSize() != reference->GetFile()->GetZSize()) + { + std::cout << "Failed" << std::endl + << " Size differs: " + << "X: " << tested->GetFile()->GetXSize() << " # " + << reference->GetFile()->GetXSize() << " | " + << "Y: " << tested->GetFile()->GetYSize() << " # " + << reference->GetFile()->GetYSize() << " | " + << "Z: " << tested->GetFile()->GetZSize() << " # " + << reference->GetFile()->GetZSize() << std::endl; + delete reference; + delete tested; + return 1; + } + // Test the data size if (testedDataSize != referenceDataSize) { - std::cout << " Failed: pixel areas lengths differ: " + std::cout << " Failed" << std::endl + << " pixel (" + << PixelType + <<") areas lengths differ: " << testedDataSize << " # " << referenceDataSize << std::endl; delete tested; @@ -89,11 +115,15 @@ int InternalTest(std::string const & filename, return 1; } + // Test the data content if (int res = memcmp(testedImageData, referenceImageData, testedDataSize) != 0 ) { (void)res; - std::cout << " Failed: pixel differ (as expanded in memory)." + std::cout << " Failed" << std::endl + << " pixel (" + << PixelType + << ") differ (as expanded in memory)." << std::endl; delete tested; delete reference; @@ -104,12 +134,12 @@ int InternalTest(std::string const & filename, delete tested; delete reference; - std::cout << " Passed..." << std::endl; + std::cout << "OK." << std::endl; return 0; } -int TestAllReadCompareDicom(int argc, char* argv[]) +int TestAllReadCompareDicom(int argc, char *argv[]) { if ( argc == 3 ) { @@ -136,7 +166,7 @@ int TestAllReadCompareDicom(int argc, char* argv[]) << std::endl; std::cout << " apply the following to each filename.xxx: " << std::endl; - std::cout << " step 1: parse the image (as gdcmHeader) and call" + std::cout << " step 1: parse the image (as gdcmFile) and call" << " IsReadable(). " << std::endl; std::cout << " step 2: find in GDCM_DATA_ROOT/BaselineDicom/filename.dcm" @@ -167,8 +197,7 @@ int TestAllReadCompareDicom(int argc, char* argv[]) std::string baseLineDir = GDCM_DATA_ROOT; baseLineDir += "/BaselineDicom/"; - std::ifstream* testDIR = new std::ifstream(baseLineDir.c_str(), std::ios::in | std::ios::binary); - if (!testDIR ) + if( !gdcm::DirList::IsDirectory(baseLineDir) ) { std::cerr << " The reference baseline directory " << std::endl << " " @@ -177,10 +206,6 @@ int TestAllReadCompareDicom(int argc, char* argv[]) << std::endl; return 1; } - else - { - testDIR->close(); - } ////// Step 1 (see above description): std::string filename = GDCM_DATA_ROOT; @@ -189,7 +214,7 @@ int TestAllReadCompareDicom(int argc, char* argv[]) std::string referenceFileName = baseLineDir + gdcmDataImages[i++]; std::string::size_type slash_pos = referenceFileName.rfind( "." ); - if ( slash_pos != std::string::npos ) + if( slash_pos != std::string::npos ) { referenceFileName.replace( slash_pos + 1, 3, "dcm" ); }