/*========================================================================= Program: gdcm Module: $RCSfile: gdcmSerieHelper.h,v $ Language: C++ Date: $Date: 2005/02/05 01:25:03 $ Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef GDCMSERIEHELPER_H #define GDCMSERIEHELPER_H #include "gdcmCommon.h" #include #include #include namespace gdcm { class File; typedef std::vector GdcmFileList; //----------------------------------------------------------------------------- /** * \brief * - This class should be used for a stack of 2D dicom images. * It allows to explore (recursively or not) a directory and * makes a set of 'Coherent Files' list (coherent : same Serie UID) * It allows to sort any of the Coherent File list on the image postion */ class GDCM_EXPORT SerieHelper { public: typedef std::map CoherentFileListmap; typedef std::vector GdcmFileVector; SerieHelper(); ~SerieHelper(); void Print(std::ostream &os = std::cout, std::string const & indent = "" ); /// \todo should return bool or throw error ? void AddFileName(std::string const &filename); void SetDirectory(std::string const &dir, bool recursive=false); void OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList); /// \brief Gets the FIRST *coherent* File List. /// Deprecated; kept not to break the API /// \note Caller must call OrderGdcmFileList first /// @return the (first) *coherent* File List const GdcmFileList &GetGdcmFileList() { return *CoherentGdcmFileListHT.begin()->second; } GdcmFileList *GetFirstCoherentFileList(); GdcmFileList *GetNextCoherentFileList(); GdcmFileList *GetCoherentFileList(std::string SerieUID); private: bool ImagePositionPatientOrdering(GdcmFileList *CoherentGdcmFileList); bool ImageNumberOrdering(GdcmFileList *CoherentGdcmFileList); bool FileNameOrdering(GdcmFileList *CoherentGdcmFileList); static bool ImageNumberLessThan(File *file1, File *file2); static bool FileNameLessThan(File *file1, File *file2); CoherentFileListmap CoherentGdcmFileListHT; CoherentFileListmap::iterator ItListHt; }; } // end namespace gdcm //----------------------------------------------------------------------------- #endif