Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkDICOMSeriesFileNames.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkDICOMSeriesFileNames.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:29:32 $ 00007 Version: $Revision: 1.4 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __itkDICOMSeriesFileNames_h 00018 #define __itkDICOMSeriesFileNames_h 00019 00020 #ifdef _MSC_VER 00021 #pragma warning ( disable : 4786 ) 00022 #endif 00023 00024 #include "itkObject.h" 00025 #include "itkObjectFactory.h" 00026 #include "itkExceptionObject.h" 00027 #include <vector> 00028 00029 #include "DICOMParser.h" 00030 #include "DICOMAppHelper.h" 00031 00032 namespace itk 00033 { 00034 00048 class ITK_EXPORT DICOMSeriesFileNames : public Object 00049 { 00050 public: 00052 typedef DICOMSeriesFileNames Self; 00053 typedef Object Superclass; 00054 typedef SmartPointer<Self> Pointer; 00055 00057 itkNewMacro(Self); 00058 00060 itkTypeMacro(DICOMSeriesFileNames, Object); 00061 00062 /* -------- Define the API for DICOMSeriesFileNames ----------- */ 00063 00073 void SetDirectory(const std::string& dir) 00074 { 00075 if (m_Directory != dir) 00076 { 00077 m_Directory = dir; 00078 this->Modified(); 00079 00080 // Clear the SeriesUIDs and FileNames 00081 m_SeriesUIDs.clear(); 00082 m_FileNames.clear(); 00083 m_AppHelper.Clear(); 00084 } 00085 00086 // Keep track of when the directory name was set so we can 00087 // compare it when the directory was last scanned. We set this 00088 // modified time each time SetDirectory() is called. This allows 00089 // a call to SetDirectory() to force a directory to be rescanned 00090 // the next time GetFileNames() or GetSeriesUIDs() is called. 00091 m_DirectorySetTime.Modified(); 00092 } 00093 00095 itkGetStringMacro(Directory); 00096 00099 const std::vector<std::string> &GetSeriesUIDs(); 00100 00103 const std::vector<std::string> &GetFileNames (); 00104 00108 const std::vector<std::string> &GetFileNames (const std::string& seriesUID); 00109 00114 typedef enum {SortByImageNumber, SortBySliceLocation, SortByImagePositionPatient} FileNameSortingOrderType; 00115 itkSetMacro(FileNameSortingOrder, FileNameSortingOrderType); 00116 itkGetMacro(FileNameSortingOrder, FileNameSortingOrderType); 00117 void SetFileNameSortingOrderToSortByImageNumber() 00118 { this->SetFileNameSortingOrder(SortByImageNumber); } 00119 void SetFileNameSortingOrderToSortBySliceLocation() 00120 { this->SetFileNameSortingOrder(SortBySliceLocation); } 00121 void SetFileNameSortingOrderToSortByImagePositionPatient() 00122 { this->SetFileNameSortingOrder(SortByImagePositionPatient); } 00123 00124 00125 protected: 00126 DICOMSeriesFileNames(); 00127 ~DICOMSeriesFileNames() {}; 00128 void PrintSelf(std::ostream& os, Indent indent) const; 00129 00130 private: 00131 DICOMSeriesFileNames(const Self&); //purposely not implemented 00132 void operator=(const Self&); //purposely not implemented 00133 00134 int CanReadFile(const char* fname); 00135 00136 DICOMParser m_Parser; 00137 DICOMAppHelper m_AppHelper; 00138 00139 std::string m_Directory; 00140 std::vector<std::string> m_FileNames; 00141 std::vector<std::string> m_SeriesUIDs; 00142 00143 FileNameSortingOrderType m_FileNameSortingOrder; 00144 00145 TimeStamp m_DirectorySetTime; 00146 TimeStamp m_DirectoryScanTime; 00147 }; 00148 00149 } //namespace ITK 00150 00151 #endif // __itkDICOMSeriesFileNames_h

Generated at Sat Mar 31 02:17:19 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000