1 /*=========================================================================
4 Module: $RCSfile: gdcmSerieHelper.cxx,v $
6 Date: $Date: 2005/02/05 01:37:09 $
7 Version: $Revision: 1.4 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmSerieHelper.h"
20 #include "gdcmDirList.h"
22 #include "gdcmDebug.h"
31 //-----------------------------------------------------------------------------
32 // Constructor / Destructor
34 * \brief Constructor from a given SerieHelper
36 SerieHelper::SerieHelper()
38 // For all the File lists of the gdcm::Serie
39 GdcmFileList *l = GetFirstCoherentFileList();
42 // For all the files of a File list
43 for (GdcmFileList::iterator it = l->begin();
51 l = GetNextCoherentFileList();
56 * \brief Canonical destructor.
58 SerieHelper::~SerieHelper()
60 // For all the Coherent File lists of the gdcm::Serie
61 GdcmFileList *l = GetFirstCoherentFileList();
64 // For all the files of a Coherent File list
65 for (GdcmFileList::iterator it = l->begin();
73 l = GetNextCoherentFileList();
77 //-----------------------------------------------------------------------------
79 //-----------------------------------------------------------------------------
83 * \brief add a gdcm::File to the list corresponding to its Serie UID
84 * @param filename Name of the file to deal with
86 void SerieHelper::AddFileName(std::string const &filename)
88 //directly use string and not const char*:
89 File *header = new File( filename );
90 if( header->IsReadable() )
92 // 0020 000e UI REL Series Instance UID
93 std::string uid = header->GetEntryValue (0x0020, 0x000e);
94 // if uid == GDCM_UNFOUND then consistently we should find GDCM_UNFOUND
95 // no need here to do anything special
97 if ( CoherentGdcmFileListHT.count(uid) == 0 )
99 gdcmWarningMacro(" New Serie UID :[" << uid << "]");
100 // create a std::list in 'uid' position
101 CoherentGdcmFileListHT[uid] = new GdcmFileList;
103 // Current Serie UID and DICOM header seems to match add the file:
104 CoherentGdcmFileListHT[uid]->push_back( header );
108 gdcmWarningMacro("Could not read file: " << filename );
114 * \brief Sets the root Directory
115 * @param dir Name of the directory to deal with
116 * @param recursive whether we want explore recursively the Directory
118 void SerieHelper::SetDirectory(std::string const &dir, bool recursive)
120 DirList dirList(dir, recursive); // OS specific
122 DirListType filenames_list = dirList.GetFilenames();
123 for( DirListType::const_iterator it = filenames_list.begin();
124 it != filenames_list.end(); ++it)
131 * \brief Sorts the given File List
132 * \warning This could be implemented in a 'Strategy Pattern' approach
133 * But as I don't know how to do it, I leave it this way
134 * BTW, this is also a Strategy, I don't know this is the best approach :)
136 void SerieHelper::OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList)
138 if( ImagePositionPatientOrdering( CoherentGdcmFileList ) )
142 else if( ImageNumberOrdering(CoherentGdcmFileList ) )
148 FileNameOrdering(CoherentGdcmFileList );
153 * \brief Get the first List while visiting the CoherentFileListHT
154 * @return The first GdcmFileList if found, otherwhise NULL
156 GdcmFileList *SerieHelper::GetFirstCoherentFileList()
158 ItListHt = CoherentGdcmFileListHT.begin();
159 if( ItListHt != CoherentGdcmFileListHT.end() )
160 return ItListHt->second;
165 * \brief Get the next List while visiting the CoherentFileListHT
166 * \note : meaningfull only if GetFirstCoherentFileList already called
167 * @return The next GdcmFileList if found, otherwhise NULL
169 GdcmFileList *SerieHelper::GetNextCoherentFileList()
171 gdcmAssertMacro (ItListHt != CoherentGdcmFileListHT.end());
174 if ( ItListHt != CoherentGdcmFileListHT.end() )
175 return ItListHt->second;
180 * \brief Get the Coherent Files list according to its Serie UID
181 * @param SerieUID SerieUID
182 * \return pointer to the Coherent Filseslist if found, otherwhise NULL
184 GdcmFileList *SerieHelper::GetCoherentFileList(std::string SerieUID)
186 if ( CoherentGdcmFileListHT.count(SerieUID) == 0 )
188 return CoherentGdcmFileListHT[SerieUID];
191 //-----------------------------------------------------------------------------
194 //-----------------------------------------------------------------------------
197 * \brief sorts the images, according to their Patient Position
198 * We may order, considering :
199 * -# Image Position Patient
201 * -# More to come :-)
202 * @param fileList Coherent File list (same Serie UID) to sort
203 * @return false only if the header is bugged !
205 bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
206 //based on Jolinda's algorithm
208 //iop is calculated based on the file file
213 float min = 0, max = 0;
216 std::vector<float> distlist;
218 //!\todo rewrite this for loop.
219 for ( GdcmFileList::const_iterator
220 it = fileList->begin();
221 it != fileList->end(); ++it )
225 (*it)->GetImageOrientationPatient( cosines );
227 // You only have to do this once for all slices in the volume. Next,
228 // for each slice, calculate the distance along the slice normal
229 // using the IPP tag ("dist" is initialized to zero before reading
230 // the first slice) :
231 normal[0] = cosines[1]*cosines[5] - cosines[2]*cosines[4];
232 normal[1] = cosines[2]*cosines[3] - cosines[0]*cosines[5];
233 normal[2] = cosines[0]*cosines[4] - cosines[1]*cosines[3];
235 ipp[0] = (*it)->GetXOrigin();
236 ipp[1] = (*it)->GetYOrigin();
237 ipp[2] = (*it)->GetZOrigin();
240 for ( int i = 0; i < 3; ++i )
242 dist += normal[i]*ipp[i];
250 distlist.push_back( dist );
257 ipp[0] = (*it)->GetXOrigin();
258 ipp[1] = (*it)->GetYOrigin();
259 ipp[2] = (*it)->GetZOrigin();
262 for ( int i = 0; i < 3; ++i )
264 dist += normal[i]*ipp[i];
272 distlist.push_back( dist );
274 min = (min < dist) ? min : dist;
275 max = (max > dist) ? max : dist;
280 // Then I order the slices according to the value "dist". Finally, once
281 // I've read in all the slices, I calculate the z-spacing as the difference
282 // between the "dist" values for the first two slices.
283 GdcmFileVector CoherentGdcmFileVector(n);
284 // CoherentGdcmFileVector.reserve( n );
285 CoherentGdcmFileVector.resize( n );
286 // gdcmAssertMacro( CoherentGdcmFileVector.capacity() >= n );
288 float step = (max - min)/(n - 1);
292 //VC++ don't understand what scope is !! it -> it2
293 for (GdcmFileList::const_iterator it2 = fileList->begin();
294 it2 != fileList->end(); ++it2, ++n)
297 //Assumption: all files are present (no one missing)
298 pos = (int)( fabs( (distlist[n]-min)/step) + .5 );
300 // a Dicom 'Serie' may contain scout views
301 // and images may have differents directions
302 // -> More than one may have the same 'pos'
303 // Sorting has then NO meaning !
304 if (CoherentGdcmFileVector[pos]==NULL)
305 CoherentGdcmFileVector[pos] = *it2;
308 gdcmWarningMacro( "2 files same position");
313 fileList->clear(); // doesn't delete list elements, only node
315 //VC++ don't understand what scope is !! it -> it3
316 for (GdcmFileVector::const_iterator it3 = CoherentGdcmFileVector.begin();
317 it3 != CoherentGdcmFileVector.end(); ++it3)
319 fileList->push_back( *it3 );
323 CoherentGdcmFileVector.clear();
328 bool SerieHelper::ImageNumberLessThan(File *file1, File *file2)
330 return file1->GetImageNumber() < file2->GetImageNumber();
334 * \brief sorts the images, according to their Image Number
335 * \note Works only on bona fide files (i.e image number is a character string
336 * corresponding to an integer)
337 * within a bona fide serie (i.e image numbers are consecutive)
338 * @param fileList Coherent File list (same Serie UID) to sort
339 * @return false if non nona fide stuff encountered
341 bool SerieHelper::ImageNumberOrdering(GdcmFileList *fileList)
344 int n = fileList->size();
346 GdcmFileList::const_iterator it = fileList->begin();
347 min = max = (*it)->GetImageNumber();
349 for (; it != fileList->end(); ++it, ++n)
351 pos = (*it)->GetImageNumber();
352 min = (min < pos) ? min : pos;
353 max = (max > pos) ? max : pos;
356 // Find out if image numbers are coherent (consecutive)
357 if( min == max || max == 0 || max >= (n+min))
360 std::sort(fileList->begin(), fileList->end(), SerieHelper::ImageNumberLessThan );
365 bool SerieHelper::FileNameLessThan(File *file1, File *file2)
367 return file1->GetFileName() < file2->GetFileName();
371 * \brief sorts the images, according to their File Name
372 * @param fileList Coherent File list (same Serie UID) to sort
373 * @return false only if the header is bugged !
375 bool SerieHelper::FileNameOrdering(GdcmFileList *fileList)
377 std::sort(fileList->begin(), fileList->end(), SerieHelper::FileNameLessThan);
381 //-----------------------------------------------------------------------------
384 * \brief Canonical printer.
386 void SerieHelper::Print(std::ostream &os, std::string const & indent)
388 // For all the Coherent File lists of the gdcm::Serie
389 CoherentFileListmap::iterator itl = CoherentGdcmFileListHT.begin();
390 if ( itl == CoherentGdcmFileListHT.end() )
392 gdcmWarningMacro( "No Coherent File list found" );
395 while (itl != CoherentGdcmFileListHT.end())
397 os << "Serie UID :[" << itl->first << "]" << std::endl;
399 // For all the files of a Coherent File list
400 for (GdcmFileList::iterator it = (itl->second)->begin();
401 it != (itl->second)->end();
404 os << indent << " --- " << (*it)->GetFileName() << std::endl;
410 //-----------------------------------------------------------------------------
411 } // end namespace gdcm