X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmFile.cxx;h=43d8c3a19f612626015becf4bf28cd2b8a86b343;hb=5e17bc4d219d5136ce530159f182528d4f842eae;hp=a3cb423c17e6efa2382f03c014a0c5c896a3df37;hpb=52364c14a6ae132d7cedcfca51f49a6f411316a3;p=gdcm.git diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index a3cb423c..43d8c3a1 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -151,7 +151,7 @@ bool gdcmFile::ParsePixelData(void) { // JPEG Image - cout << "JPEG image" << std::endl; + std::cout << "JPEG image" << std::endl; ftellRes=ftell(fp); fread(&ItemTagGr,2,1,fp); // Reading (fffe) : Basic Offset Table Item Tag Gr fread(&ItemTagEl,2,1,fp); // Reading (e000) : Basic Offset Table Item Tag El @@ -220,7 +220,7 @@ bool gdcmFile::ParsePixelData(void) { // RLE Image - cout << "RLE image" << std::endl; + std::cout << "RLE image" << std::endl; long RleSegmentLength[15],fragmentLength; guint32 nbRleSegments; guint32 RleSegmentOffsetTable[15]; @@ -538,7 +538,7 @@ bool gdcmFile::ReadPixelData(void* destination) { } //(char *) destination += taille * nBytes; - //cout << "destination" << destination << std::endl; + //std::cout << "destination" << destination << std::endl; } return res;