#include "gdcmHeader.h" #include "gdcmFile.h" //Generated file: #include "gdcmDataImages.h" int InternalTest(std::string const & filename, std::string const & referenceFileName ) { std::cout << " Testing: " << filename << std::endl; gdcmFile* tested = new gdcmFile( filename ); if( !tested->GetHeader()->IsReadable() ) { std::cout << " Image not gdcm compatible:" << filename << std::endl; delete tested; return 1; } ////// Step 2: ////// Check for existence of reference baseline dicom file: FILE* testFILE = fopen( referenceFileName.c_str(), "r" ); if (! testFILE ) { ////// Step 3a: int testedDataSize = tested->GetImageDataSize(); (void)testedDataSize; void* testedImageData = tested->GetImageData(); // Kludge tested->WriteDcmExplVR( referenceFileName ); std::cerr << " Creating reference baseline file :" << std::endl << " " << referenceFileName << std::endl; delete tested; delete (char*)testedImageData; //continue; } else { fclose( testFILE ); } ////// When reference file is not gdcm readable test is failed: gdcmFile* reference = new gdcmFile( referenceFileName.c_str() ); if( !reference->GetHeader()->IsReadable() ) { std::cout << " Reference image " << std::endl << " " << referenceFileName <GetImageDataSize(); void* testedImageData = tested->GetImageData(); int referenceDataSize = reference->GetImageDataSize(); void* referenceImageData = reference->GetImageData(); if (testedDataSize != referenceDataSize) { std::cout << " Pixel areas lengths differ: " << testedDataSize << " # " << referenceDataSize << std::endl; delete tested; delete reference; delete (char*)testedImageData; delete (char*)referenceImageData; return 1; } if (int res = memcmp(testedImageData, referenceImageData, testedDataSize) != 0 ) { (void)res; std::cout << " Pixel differ (as expanded in memory)." << std::endl; delete tested; delete reference; delete (char*)testedImageData; delete (char*)referenceImageData; return 1; } std::cout << " Passed." << std::endl ; //////////////// Clean up: delete tested; delete reference; delete (char*)testedImageData; delete (char*)referenceImageData; return 0; } int TestAllReadCompareDicom(int argc, char* argv[]) { if ( argc == 3 ) { // The test is specified a specific filename, use it instead of looping // over all images const std::string input = argv[1]; const std::string reference = argv[2]; return InternalTest( input, reference ); } else if ( argc > 3 || argc == 2 ) { std::cerr << " Usage: " << argv[0] << " (no arguments needed)." << std::endl; std::cerr << "or Usage: " << argv[0] << " filename.dcm reference.dcm" << std::endl; return 1; } // else other cases: std::cout << " Description (Test::TestAllReadCompareDicom): " << std::endl; std::cout << " For all images in gdcmData (and not blacklisted in " "Test/CMakeLists.txt)" << std::endl; std::cout << " apply the following to each filename.xxx: " << std::endl; std::cout << " step 1: parse the image (as gdcmHeader) and call" << " IsReadable(). " << std::endl; std::cout << " step 2: find in GDCM_DATA_ROOT/BaselineDicom/filename.dcm" << std::endl << " (with format DICOM V3, explicit Value" << "Representation)" << std::endl; std::cout << " step 3a: when image NOT found on step 2, write " << std::endl << " GDCM_DATA_ROOT/BaselineDicom/filename.dcm" << std::endl << " (with format DICOM V3, explicit Value" << "Representation)" << std::endl; std::cout << " step 3b: when image found on step 2, and when IsReadable()" << std::endl << " compare it (in memory with memcmp) with the" << std::endl << " image we are testing (the one of step 1). " << std::endl << std::endl; int i = 0; while( gdcmDataImages[i] != 0 ) { ////// Check for existence of reference baseline directory std::string baseLineDir = GDCM_DATA_ROOT; baseLineDir += "/BaselineDicom/"; FILE* testFILE = fopen( baseLineDir.c_str(), "r" ); if (!testFILE ) { std::cerr << " The reference baseline directory " << std::endl << " " << baseLineDir << std::endl << " couldn't be opened." << std::endl; return 1; } else { fclose( testFILE ); } ////// Step 1 (see above description): std::string filename = GDCM_DATA_ROOT; filename += "/"; filename += gdcmDataImages[i]; std::string referenceFileName = baseLineDir + gdcmDataImages[i++]; std::string::size_type slash_pos = referenceFileName.rfind( "." ); if ( slash_pos != std::string::npos ) { referenceFileName.replace( slash_pos + 1, 3, "dcm" ); } if( InternalTest( filename, referenceFileName ) != 0 ) { return 1; } } return 0; }