X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestReadWriteJPEGReadCompare.cxx;h=a674060789a1be1a3db0814da87f1b01760f612a;hb=877ca41e984513a592552a8bed79e3bc6416f9f3;hp=511b84bfef5b10901bfd90a77f139a1d7063a2df;hpb=336bf4a855ae72cfa933510e0f4b731c42ca33cf;p=gdcm.git diff --git a/Testing/TestReadWriteJPEGReadCompare.cxx b/Testing/TestReadWriteJPEGReadCompare.cxx index 511b84bf..a6740607 100755 --- a/Testing/TestReadWriteJPEGReadCompare.cxx +++ b/Testing/TestReadWriteJPEGReadCompare.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestReadWriteJPEGReadCompare.cxx,v $ Language: C++ - Date: $Date: 2007/09/05 09:55:01 $ - Version: $Revision: 1.10 $ + Date: $Date: 2007/10/19 15:29:57 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -95,7 +95,7 @@ static int CompareInternalJPEG(std::string const &filename, std::string const &o file->Delete(); filehelper->Delete(); fileout->Delete(); - return 0; + return 0; } GDCM_NAME_SPACE::FileHelper *reread = GDCM_NAME_SPACE::FileHelper::New( fileout ); @@ -151,13 +151,20 @@ static int CompareInternalJPEG(std::string const &filename, std::string const &o // Test the data content unsigned int j = 0; unsigned int nbDiff = 0; - if (memcmp(imageData, imageDataWritten, dataSizeFixed) !=0) + unsigned int lengthToCompare = file->GetXSize()*file->GetYSize()*file->GetZSize() + *file->GetPixelSize()*file->GetSamplesPerPixel(); + + // just to see ! + if ( lengthToCompare!=dataSizeFixed) + std::cout << "lengthToCompare : " << lengthToCompare << " not= dataSizeFixed : " << dataSizeFixed << std::endl; + + if (memcmp(imageData, imageDataWritten, lengthToCompare) !=0) { std::string PixelType = filehelper->GetFile()->GetPixelType(); std::string ts = filehelper->GetFile()->GetTransferSyntax(); for(int i1=0; i1 2) { + if (abs ((int)imageData[i1]-(int)imageDataWritten[i1]) > 0) { nbDiff++; // break; // at debug time, keep line commented out; (uncommenting will save CPU time) } @@ -218,7 +225,7 @@ static int CompareInternalJPEG(std::string const &filename, std::string const &o << " bytes differing (pos : original - written) :" << std::endl; - for(int i=0, j=0; i