X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=Testing%2FTestReadWriteReadCompare.cxx;h=468b8721840febb9fa0087fc72fb81cc8d511422;hb=de628879bbc28ca8a1c93f293d7b6c49692ebe55;hp=24a2a763d0d946da0e797528f5984cd000ba3809;hpb=c852120fdb6d542d84f74440b68414fdb52178d7;p=gdcm.git diff --git a/Testing/TestReadWriteReadCompare.cxx b/Testing/TestReadWriteReadCompare.cxx index 24a2a763..468b8721 100644 --- a/Testing/TestReadWriteReadCompare.cxx +++ b/Testing/TestReadWriteReadCompare.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestReadWriteReadCompare.cxx,v $ Language: C++ - Date: $Date: 2004/11/24 16:39:18 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/01/21 11:40:54 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,8 +15,8 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "gdcmHeader.h" #include "gdcmFile.h" +#include "gdcmFileHelper.h" //Generated file: #include "gdcmDataImages.h" @@ -27,7 +27,7 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 1 (see above description): - gdcm::Header *header = new gdcm::Header( filename ); + gdcm::File *header = new gdcm::File( filename ); if( !header->IsReadable() ) { std::cerr << "Test::TestReadWriteReadCompare: Image not gdcm compatible:" @@ -39,9 +39,9 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 2: - gdcm::File* file = new gdcm::File( header ); - int dataSize = file->GetImageDataSizeRaw(); - uint8_t* imageData = file->GetImageDataRaw(); //EXTREMELY IMPORTANT + gdcm::FileHelper* file = new gdcm::FileHelper( header ); + int dataSize = file->GetImageDataSize(); + uint8_t* imageData = file->GetImageData(); //EXTREMELY IMPORTANT // Sure, it is : It's up to the user to decide if he wants to // GetImageData or if he wants to GetImageDataRaw // (even if we do it by setting a flag, he will have to decide) @@ -70,8 +70,8 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 3: - gdcm::File* reread = new gdcm::File( output ); - if( !reread->GetHeader()->IsReadable() ) + gdcm::FileHelper* reread = new gdcm::FileHelper( output ); + if( !reread->GetFile()->IsReadable() ) { std::cerr << "Failed" << std::endl << "Test::TestReadWriteReadCompare: Could not reread image " @@ -83,11 +83,30 @@ int CompareInternal(std::string const & filename, std::string const & output) } std::cout << "3..."; // For the next step: - int dataSizeWritten = reread->GetImageDataSizeRaw(); - uint8_t* imageDataWritten = reread->GetImageDataRaw(); + int dataSizeWritten = reread->GetImageDataSize(); + uint8_t* imageDataWritten = reread->GetImageData(); //////////////// Step 4: + // Test the image size + if (header->GetXSize() != reread->GetFile()->GetXSize() || + header->GetYSize() != reread->GetFile()->GetYSize() || + header->GetZSize() != reread->GetFile()->GetZSize()) + { + std::cout << "Failed" << std::endl + << " X Size differs: " + << "X: " << header->GetXSize() << " # " + << reread->GetFile()->GetXSize() << " | " + << "Y: " << header->GetYSize() << " # " + << reread->GetFile()->GetYSize() << " | " + << "Z: " << header->GetZSize() << " # " + << reread->GetFile()->GetZSize() << std::endl; + delete header; + delete file; + delete reread; + return 1; + } + // Test the data size if (dataSize != dataSizeWritten) { std::cout << "Failed" << std::endl @@ -99,6 +118,7 @@ int CompareInternal(std::string const & filename, std::string const & output) return 1; } + // Test the data's content if (int res = memcmp(imageData, imageDataWritten, dataSize) !=0) { (void)res; @@ -138,7 +158,7 @@ int TestReadWriteReadCompare(int argc, char* argv[]) std::cout << " For all images in gdcmData (and not blacklisted in " "Test/CMakeLists.txt)" << std::endl; std::cout << " apply the following multistep test: " << 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: write the corresponding image in DICOM V3 " << "with explicit" << std::endl