X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FexXCoherentFileSet.cxx;h=db2dd0e107f150f894b84c0caef7ef576cb93036;hb=779c8f5232ad160d353b90d3fa47d0503e17965d;hp=311373f1d6141b35ce8c2e4d1762f560f557aa88;hpb=9bde6f3f31e9228fc14b705656e63fa00070cb80;p=gdcm.git diff --git a/Example/exXCoherentFileSet.cxx b/Example/exXCoherentFileSet.cxx index 311373f1..db2dd0e1 100755 --- a/Example/exXCoherentFileSet.cxx +++ b/Example/exXCoherentFileSet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exXCoherentFileSet.cxx,v $ Language: C++ - Date: $Date: 2005/11/04 08:59:08 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/11/14 15:55:17 $ + 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 @@ -86,13 +86,13 @@ int main(int argc, char *argv[]) int pos = am->ArgMgrDefined("pos"); int ori = am->ArgMgrDefined("ori"); - int tag = am->ArgMgrDefined("tag"); int nb; uint16_t *groupelem; - if (tag) + groupelem = am->ArgMgrGetXInt16Enum("tag", &nb); + + if (groupelem != 0) { - groupelem = am->ArgMgrGetXInt16Enum("tag", &nb); if (nb != 1) { std::cout << "TAG : one and only one group,elem!" << std::endl; @@ -115,9 +115,10 @@ int main(int argc, char *argv[]) gdcm::SerieHelper *s; - s = new gdcm::SerieHelper(); + s = gdcm::SerieHelper::New(); s->SetLoadMode(gdcm::LD_ALL); // Load everything for each File - //s->AddRestriction(tagKey, valueToCheck); // Keep only files where + //gdcm::TagKey t(0x0020,0x0013); + //s->AddRestriction(t, "340", gdcm::GDCM_LESS); // Keep only files where // restriction is true s->SetDirectory(dirName, true); // true : recursive exploration @@ -150,7 +151,7 @@ int main(int argc, char *argv[]) xcm = s->SplitOnOrientation(l); if (pos) xcm = s->SplitOnPosition(l); - if (tag) + if (groupelem != 0) xcm = s->SplitOnTagValue(l, groupelem[0],groupelem[1] ); for (gdcm::XCoherentFileSetmap::iterator i = xcm.begin(); @@ -161,7 +162,7 @@ int main(int argc, char *argv[]) std::cout << "Orientation : "; if (pos) std::cout << "Position : "; - if (tag) + if (groupelem != 0) std::cout << "Tag (" << std::hex << groupelem[0] << "|" << groupelem[1] << ") value : "; @@ -186,7 +187,7 @@ int main(int argc, char *argv[]) l = s->GetNextSingleSerieUIDFileSet(); } - delete s; + s->Delete(); return 0; }