Program: gdcm
Module: $RCSfile: ToInTag.cxx,v $
Language: C++
- Date: $Date: 2006/06/08 13:41:28 $
- Version: $Revision: 1.5 $
+ Date: $Date: 2006/06/30 09:58:08 $
+ Version: $Revision: 1.6 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
{
std::cout << "------------List of found files ------------" << std::endl;
dirList.Print();
+ std::cout << std::endl;
}
gdcm::DirListType fileNames;
// storing in a map ensures automatic sorting !
sf[userFileIdentifier] = f;
}
+
+ if (verbose)
+ std::cout << " " << std::endl;
std::string fullFilename, lastFilename;
std::string previousPatientName, currentPatientName;
previousTriggerTime = "";
int sliceIndex = 0; // Is incremented *at the beginning* of processing
- int frameIndex = 1;
+ int frameIndex;
+ if (taggrid)
+ frameIndex = 0;
+ else
+ frameIndex = 1;
+
int flag = 0;
gdcm::File *currentFile;
fullFilename = currentFile->GetFileName();
lastFilename = gdcm::Util::GetName( fullFilename );
- std::cout << "Rewrite [" <<lastFilename << "]" << std::endl;
+ std::cout << " --------------------------------------------------"
+ << " Rewrite [" <<lastFilename << "]" << std::endl;
tokens.clear();
gdcm::Util::Tokenize (it2->first, tokens, token);
sliceIndex = 1; // only *one* slice in a given directory
else
sliceIndex += 1;
- }
+ }
+ if (verbose)
+ std::cout << "Slice Index : " << sliceIndex << std::endl;
// We don't split on Row/Column!
/*
chSessionIndex = "1";
}
}
- if (currentFile->IsVRCoherent(0x0020) == 1 )
+ if (currentFile->IsVRCoherent(0x0020) == 1 )
currentFile->InsertEntryString(chSessionIndex, 0x0020, 0x0012, " ");
- else
+ else
currentFile->InsertEntryString(chSessionIndex, 0x0020, 0x0012, "IS");
// Deal with 0x0021, 0x1020 : 'SLICE INDEX'
std::string strImagePositionPatient = currentFile->GetEntryString(0x0020, 0x0032 );
if (strImagePositionPatient == gdcm::GDCM_UNFOUND)
- currentFile->InsertEntryString(currentFile->GetEntryString(0x0020, 0x0030), 0x0020, 0x0032, "DS" );
+ {
+ if (verbose)
+ std::cout << "Duplicate ImagePosition into ImagePositionPatient" << std::endl;
+ currentFile->InsertEntryString(currentFile->GetEntryString(0x0020, 0x0030), 0x0020, 0x0032, "DS" );
+ }
std::string strImageOrientationPatient = f->GetEntryString(0x0020, 0x0037 );
if (strImageOrientationPatient == gdcm::GDCM_UNFOUND)
+ {
+ if (verbose)
+ std::cout << "Duplicate ImageOrientation into ImageOrientationPatient" << std::endl;
currentFile->InsertEntryString(currentFile->GetEntryString(0x0020, 0x0035), 0x0020, 0x0037, "DS" );
+ }
if (taggrid)
frameIndex++;
flag = 0;
}
}
+ if (verbose)
+ std::cout << "Frame Index : " << frameIndex << std::endl;
if (split)