From: Gauthier Bouilhol Date: Tue, 11 Oct 2011 14:30:15 +0000 (+0200) Subject: now compatible with GDCM 1.x and GDCM 2.x X-Git-Tag: v1.3.0~187 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=34281784b60482e54081b83ed6269c42c6c7981b;p=clitk.git now compatible with GDCM 1.x and GDCM 2.x --- diff --git a/tools/clitkDicomWave2Text.cxx b/tools/clitkDicomWave2Text.cxx index 7fc7c6b..1e04b26 100644 --- a/tools/clitkDicomWave2Text.cxx +++ b/tools/clitkDicomWave2Text.cxx @@ -2,112 +2,117 @@ #include "clitkDicomWave2Text_ggo.h" #include "clitkCommon.h" -//gdcm include -#include "gdcmFile.h" +#include "gdcmFile.h" #if GDCM_MAJOR_VERSION < 2 - #include "gdcmUtil.h" #include "gdcmBinEntry.h" - #include "gdcmValEntry.h" - #include "gdcmSeqEntry.h" - #include "gdcmSQItem.h" +#else + #include "gdcmReader.h" + #include "gdcmPrivateTag.h" #endif -#include "gdcmSerieHelper.h" - #include #include -//========================================================================================================================== - -int main(int argc, char * argv[]) { -//----------------------------------------------------------------------------- -// init command line -GGO(clitkDicomWave2Text, args_info); -//----------------------------------------------------------------------------- - -#if GDCM_MAJOR_VERSION < 2 -//----------------------------------------------------------------------- -// opening dicom input file -gdcm::File * mDCMFile = new gdcm::File(); -mDCMFile->SetFileName(args_info.InputFile_arg); -mDCMFile->AddForceLoadElement(0x01e1,0x1018); //Load wave data no matter its size - -if (!mDCMFile->OpenFile ()) { - std::cerr << "Sorry, the file does not exist or does not appear to be a DICOM file. Abort." << std::endl; - exit(0); -} -mDCMFile->Load(); -std::cout << "File: "<< args_info.InputFile_arg << " loaded !"<< std::endl; - - -//----------------------------------------------------------------------- -// read data -gdcm::DocEntrySet* item = mDCMFile; -#define T short - -gdcm::BinEntry* entry = item->GetBinEntry(0x01e1,0x1018); -DD(entry); -T* buffer = reinterpret_cast(entry->GetBinArea()); -int length=item->GetEntryLength(0x01e1,0x1018)/sizeof(T); -std::ofstream text_file(args_info.OutputFile_arg, std::ios::out | std::ios::trunc); -if(text_file) +bool wave2stream( std::ostream &text_file, const short *buffer, int length ) { - std::string stat=""; - text_file << "COMPLETE_WAVE" << '\t' << "MASK" << '\t' << "AQUISITION_PROFIL" << '\t' << "END-INHALE" << '\t' << "END-EXHALE" << '\t' << "AQUISITION_WAVE" << '\t' << "WAVE_STATISTICS" << '\t' << "MASK" << std::endl; - for (int i=0;iSetFileName(args_info.InputFile_arg); + mDCMFile->AddForceLoadElement(0x01e1,0x1018); //Load wave data no matter its size + if ( !mDCMFile->OpenFile() ) + { + std::cerr << "Failed to read: " << args_info.InputFile_arg << std::endl; + return 1; + } + mDCMFile->Load(); + gdcm::DocEntrySet* item = mDCMFile; + #define T short + gdcm::BinEntry * entry = item->GetBinEntry(0x01e1,0x1018); + T* buffer = reinterpret_cast(entry->GetBinArea()); + int length=item->GetEntryLength(0x01e1,0x1018)/sizeof(T); + + #else + + gdcm::Reader reader; + reader.SetFileName(args_info.InputFile_arg); + if( !reader.Read() ) + { + std::cerr << "Failed to read: " << args_info.InputFile_arg << std::endl; + return 1; + } + const gdcm::DataSet& ds = reader.GetFile().GetDataSet(); + const gdcm::PrivateTag twave(0x01e1,0x18,"ELSCINT1"); + if( !ds.FindDataElement( twave ) ) return 1; + const gdcm::DataElement& wave = ds.GetDataElement( twave ); + if ( wave.IsEmpty() ) return 1; + const gdcm::ByteValue * bv = wave.GetByteValue(); + short * buffer = (short*)bv->GetPointer(); + int length = bv->GetLength() / sizeof( short ); + + #endif + + // Dump that to a CSV file: + wave2stream( os, buffer, length ); + os.close(); + return 0; }