X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FexColorToRGB.cxx;h=e056b039dd5dccae467d09481bd03646dab603cf;hb=9fc41d585113e37d4d1d1d511e61d2e638096fb3;hp=a1a9ea64e38c4f86e205baf8537e999669eaa86d;hpb=dfa6db1c22f6b67eceb10c1ef94a91a643e36dd2;p=gdcm.git diff --git a/Example/exColorToRGB.cxx b/Example/exColorToRGB.cxx index a1a9ea64..e056b039 100644 --- a/Example/exColorToRGB.cxx +++ b/Example/exColorToRGB.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exColorToRGB.cxx,v $ Language: C++ - Date: $Date: 2005/07/06 15:49:31 $ - Version: $Revision: 1.2 $ + Date: $Date: 2007/05/23 14:18:05 $ + Version: $Revision: 1.10 $ 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 @@ -48,27 +47,32 @@ int main(int argc, char *argv[]) // ============================================================ // Read the input image. // ============================================================ - // a gdcm::File contains all the Dicom Field but the Pixels Element - - gdcm::File *f1= new gdcm::File( fileName ); - + // a GDCM_NAME_SPACE::File contains all the Dicom Field but the Pixels Element std::cout << argv[1] << std::endl; - f1 = new gdcm::File( fileName ); - if (!f1->IsReadable()) { + GDCM_NAME_SPACE::File *f = GDCM_NAME_SPACE::File::New(); + f->SetLoadMode( GDCM_NAME_SPACE::LD_ALL); + f->SetFileName( fileName ); + bool res = f->Load(); + + if (!res) + { std::cerr << "Sorry, " << fileName <<" not a gdcm-readable " << "DICOM / ACR File" <Delete(); return 0; } std::cout << " ... is readable " << std::endl; /* - if (!f1->IsMonochrome()) { + if (!f->IsMonochrome()) + { std::cerr << "Sorry, " << fileName <<" not a 'color' File " << " " <Delete(); return 0; } */ @@ -77,69 +81,65 @@ 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 *fh1 = new gdcm::FileHelper(f1); + // 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) + // uint8_t DOESN'T mean it's mandatory for the image to be a 8 bits one ! + // It's just for prototyping. + // Feel free to cast it. - uint8_t *imageData = fh1->GetImageData(); + uint8_t *imageData = fh->GetImageData(); if ( imageData == 0 ) { std::cerr << "Sorry, Pixels of" << fileName <<" are not " << " gdcm-readable." << std::endl; + f->Delete(); return 0; } - - // ------ User wants write a new image without shadow groups ------------- // ------ without Sequences ------------- - gdcm::FileHelper *copy = new gdcm::FileHelper( output ); + GDCM_NAME_SPACE::FileHelper *copy = GDCM_NAME_SPACE::FileHelper::New( ); + copy->SetFileName( output ); + copy->Load(); - gdcm::DocEntry *d = f1->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 = f1->GetNextEntry(); + d = f->GetNextEntry(); } // User knows the image is a 'color' one -RGB, YBR, Palette Color- // and wants to write it as RGB - copy->SetImageData(imageData, fh1->GetImageDataSize()); + copy->SetImageData(imageData, fh->GetImageDataSize()); copy->SetWriteModeToRGB(); copy->WriteDcmExplVR( output ); - - delete f1; - delete fh1; - delete copy; + f->Delete(); + fh->Delete(); + copy->Delete(); exit (0); }