X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FexGC.cxx;h=513232998285ea801561c9644390176f48e70078;hb=e7a642c06e4cdcfdbaf024090754283ccc564408;hp=4d5e411feb8b8462d931dfebadf04f34e6b465dd;hpb=c4fa2e74a4ce56a0a8db54e4a70d404bec9fc8dd;p=gdcm.git diff --git a/Example/exGC.cxx b/Example/exGC.cxx index 4d5e411f..51323299 100644 --- a/Example/exGC.cxx +++ b/Example/exGC.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exGC.cxx,v $ Language: C++ - Date: $Date: 2005/08/30 14:40:28 $ - Version: $Revision: 1.7 $ + Date: $Date: 2007/05/23 14:18:05 $ + Version: $Revision: 1.11 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,8 +19,7 @@ #include "gdcmFile.h" #include "gdcmFileHelper.h" #include "gdcmDocument.h" -#include "gdcmValEntry.h" -#include "gdcmBinEntry.h" +#include "gdcmDataEntry.h" #include "gdcmSeqEntry.h" #include // for exit @@ -71,12 +70,12 @@ int main(int argc, char *argv[]) // ============================================================ // Read the input image. // ============================================================ - // a gdcm::File contains all the Dicom Field but the Pixels Element + // a GDCM_NAME_SPACE::File contains all the Dicom Field but the Pixels Element std::cout << argv[1] << std::endl; - gdcm::File *f = new gdcm::File(); - f->SetLoadMode( GDCM_LD_ALL); + GDCM_NAME_SPACE::File *f = GDCM_NAME_SPACE::File::New(); + f->SetLoadMode( GDCM_NAME_SPACE::LD_ALL); f->SetFileName( fileName ); bool res = f->Load(); @@ -84,6 +83,7 @@ int main(int argc, char *argv[]) std::cerr << "Sorry, " << fileName <<" not a gdcm-readable " << "DICOM / ACR File" <Delete(); return 0; } std::cout << " ... is readable " << std::endl; @@ -101,8 +101,8 @@ int main(int argc, char *argv[]) // Load the pixels in memory. // ============================================================ - // We need a gdcm::FileHelper, since we want to load the pixels - gdcm::FileHelper *fh = new gdcm::FileHelper(f); + // We need a GDCM_NAME_SPACE::FileHelper, since we want to load the pixels + GDCM_NAME_SPACE::FileHelper *fh = GDCM_NAME_SPACE::FileHelper::New(f); // (unit8_t DOESN'T mean it's mandatory for the image to be a 8 bits one) @@ -112,6 +112,8 @@ int main(int argc, char *argv[]) { std::cerr << "Sorry, Pixels of" << fileName <<" are not " << " gdcm-readable." << std::endl; + f->Delete(); + fh->Delete(); return 0; } @@ -119,34 +121,28 @@ int main(int argc, char *argv[]) // ------ without Sequences ------------- - gdcm::FileHelper *copy = new gdcm::FileHelper( ); + GDCM_NAME_SPACE::FileHelper *copy = GDCM_NAME_SPACE::FileHelper::New( ); copy->SetFileName( output ); copy->Load(); - gdcm::DocEntry *d = f->GetFirstEntry(); + GDCM_NAME_SPACE::DocEntry *d = f->GetFirstEntry(); while(d) { // We skip SeqEntries, since user cannot do much with them - if ( !(dynamic_cast(d)) + if ( !(dynamic_cast(d)) // We skip Shadow Groups, since nobody knows what they mean && !( d->GetGroup()%2 ) ) { - if ( gdcm::BinEntry *b = dynamic_cast(d) ) + if ( GDCM_NAME_SPACE::DataEntry *de = dynamic_cast(d) ) { - copy->GetFile()->InsertBinEntry( b->GetBinArea(),b->GetLength(), - b->GetGroup(),b->GetElement(), - b->GetVR() ); - } - else if ( gdcm::ValEntry *v = dynamic_cast(d) ) - { - copy->GetFile()->InsertValEntry( v->GetValue(), - v->GetGroup(),v->GetElement(), - v->GetVR() ); + copy->GetFile()->InsertEntryBinArea( de->GetBinArea(),de->GetLength(), + de->GetGroup(),de->GetElement(), + de->GetVR() ); } else { - // We skip gdcm::SeqEntries + // We skip GDCM_NAME_SPACE::SeqEntries } } d = f->GetNextEntry(); @@ -169,17 +165,17 @@ int main(int argc, char *argv[]) } } - std::cout << n << " points put to black (within " - << imageSize/3 << ")" << std::endl; + std::cout << n << " points put to black (within " + << imageSize/3 << ")" << std::endl; n = 0; for (i = 0; iWriteDcmExplVR( output ); - delete f; - delete fh; - delete copy; + f->Delete(); + fh->Delete(); + copy->Delete(); exit (0); }