<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
New Features
<ul>
  <li> <tt>AnonymizeNoLoad</tt> used with <tt>dirin=inputDirectoryName</tt>
anonymizes all the files within the given Directory. <br>
    <br>
  </li>
  <li> <tt>gdcm::SerieHelper()</tt> has a new method <tt>void
AddGdcmFile(File *header)</tt>, that allows aware user to create a '<tt>FileList</tt>'
(actually a <tt>std::vector< File* > </tt>).<br>
The <tt>FileList</tt> created this way will be the 'first one' in the <tt>gdcm::FileHelper()</tt>
(retrieve it with <tt>FileList *GetFirstCoherentFileList()</tt> ).<br>
It may be sorted using <tt>OrderFileList</tt>.<br>
No 'coherence check' will be performed on this <tt>FileList</tt>
before sorting.<br>
It may be passed to a <tt>vtkGdcmReader</tt> (to avoid parsing twice
the files) <br>
    <br>
  </li>
  <li> <tt>vtkGdcmReader</tt> can now get the result of <tt>gdcm::SerieHelper</tt>
(to avoid parsing twice the files)<br>
Proceed as follow :<br>
    <pre>           gdcmSerieHelper *sh = new gdcmSerieHelper();
           sh->SetDirectory(myImageDirectory, true);
           gdcmFileList *l = s->GetFirstCoherentFileList();
           s->OrderFileList(l);

           vtkGdcmReader *gr = new vtkGdcmReader();
           gr->SetCoherentFileList(l);
           gr->Update();  
           </pre>
This works with a directory that contains only one '<tt>Serie</tt>'
(same <tt>Serie UID</tt> for all the images).<br>
If it contains more than one <tt>Serie</tt>, you'll have to loop on
the Series, using <tt>GetNextCoherentFileList()</tt>;<br>
It will be up to the user to delete the <tt>gdcm::File</tt>. <br>
    <br>
See <tt>vtkgdcmSerieViewer</tt> for an example. </li>
</ul>
<br>
</body>
</html>