X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmSerieHelper.cxx;h=16616963b698c1c38ca51dad6d38e43ef2c62afa;hb=71f35f3ac11f6739672c446d17dc3b06c9e4280a;hp=0be2e44aa43c79f6b7bf9c4745b38ebc2f4e086e;hpb=0c1b69c840b2ab0f42ef1cdbbc1897c44a5ed264;p=gdcm.git diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index 0be2e44a..16616963 100644 --- a/src/gdcmSerieHelper.cxx +++ b/src/gdcmSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2007/06/04 08:51:24 $ - Version: $Revision: 1.56 $ + Date: $Date: 2007/07/05 09:34:12 $ + Version: $Revision: 1.59 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -43,6 +43,7 @@ SerieHelper::SerieHelper() ClearAll(); UserLessThanFunction = 0; DirectOrder = true; + } /** @@ -242,8 +243,7 @@ void SerieHelper::AddRestriction(uint16_t group, uint16_t elem, * e.g : 100 would be *before* 20; 000020.00 vs 00100.00 : OK */ void SerieHelper::AddSeriesDetail(uint16_t group, uint16_t elem, bool convert) -{ - +{ ExDetail d; d.group = group; d.elem = elem; @@ -267,6 +267,22 @@ void SerieHelper::SetDirectory(std::string const &dir, bool recursive) } } +/** + * \brief Sets the DicomDirSerie + * @param se DicomDirSerie to deal with + */ +void SerieHelper::SetDicomDirSerie(DicomDirSerie *se) +{ + DirList dirList(se); + + DirListType filenames_list = dirList.GetFilenames(); + for( DirListType::const_iterator it = filenames_list.begin(); + it != filenames_list.end(); ++it) + { + AddFileName( *it ); + } +} + /** * \brief Sorts the given Fileset * \warning This could be implemented in a 'Strategy Pattern' approach @@ -439,7 +455,7 @@ XCoherentFileSetmap SerieHelper::SplitOnOrientation(FileList *fileSet) std::ostringstream ossOrient; FileList::const_iterator it = fileSet->begin(); - it ++; + //it ++; for ( ; it != fileSet->end(); ++it) @@ -489,7 +505,7 @@ XCoherentFileSetmap SerieHelper::SplitOnPosition(FileList *fileSet) std::ostringstream ossPosition; std::string strPosition; // re computed FileList::const_iterator it = fileSet->begin(); - it ++; + //it ++; for ( ; it != fileSet->end(); ++it) @@ -565,7 +581,7 @@ XCoherentFileSetmap SerieHelper::SplitOnTagValue(FileList *fileSet, std::string strTagValue; // read on disc FileList::const_iterator it = fileSet->begin(); - it ++; + //it ++; for ( ; it != fileSet->end(); ++it) @@ -721,7 +737,8 @@ bool SerieHelper::ImagePositionPatientOrdering( FileList *fileList ) } if (!ok) { - return false; + if (! DropDuplicatePositions) + return false; } // Now, we could calculate Z Spacing as the difference @@ -748,6 +765,12 @@ bool SerieHelper::ImagePositionPatientOrdering( FileList *fileList ) ++it3) { fileList->push_back( (*it3).second ); + if (DropDuplicatePositions) + { + it3 = distmultimap.upper_bound((*it3).first); // skip all duplicates + if (it3 == distmultimap.end() ) // if last image, stop iterate + break; + } } } else // user asked for reverse order @@ -758,6 +781,12 @@ bool SerieHelper::ImagePositionPatientOrdering( FileList *fileList ) { it4--; fileList->push_back( (*it4).second ); + if (DropDuplicatePositions) // skip all duplicates + { + it4 = distmultimap.upper_bound((*it4).first); + if (it4 == distmultimap.begin() ) // if first image, stop iterate + break; + } } while (it4 != distmultimap.begin() ); } @@ -1020,7 +1049,7 @@ std::string SerieHelper::CreateUserDefinedFileIdentifier( File * inFile ) for(unsigned int i=0; i= 'a' && s[i] <= 'z') || (s[i] >= '0' && s[i] <= '9') || (s[i] >= 'A' && s[i] <= 'Z'))) @@ -1032,7 +1061,8 @@ std::string SerieHelper::CreateUserDefinedFileIdentifier( File * inFile ) id += s.c_str(); id += "%%%"; // make the FileIdentifier Tokenizable } - + id += inFile->GetFileName(); + id += "%%%"; return id; }