Program: gdcm
Module: $RCSfile: exSerieHelper.cxx,v $
Language: C++
- Date: $Date: 2007/05/23 14:18:05 $
- Version: $Revision: 1.8 $
+ Date: $Date: 2007/05/30 15:13:25 $
+ Version: $Revision: 1.9 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
s->Print(); // Prints all the Single SerieUID File Sets (sorted or not)
std::cout << " -------------------------------------------- Finish printing"
<< std::endl;
-
+
+ // Just to show : GetZSpacing from a gdcm::SerieHelper is right
+ std::cout << "GetZSpacing() from gdcm::SerieHelper: " << s->GetZSpacing() << std::endl;
// Only for the first Coherent File List
// ( Why not ? Just an example, for testing )
{
fileName = (*it)->GetFileName();
std::cout << fileName << std::endl;
+ // Just to show : GetZSpacing from a gdcm::File is wrong!
+ std::cout << " GetZSpacing() from gdcm::File : " << (*it)->GetZSpacing() << std::endl;
}