<HTML dir=ltr><HEAD>
<META http-equiv=Content-Type content="text/html; charset=unicode">
<META content="MSHTML 6.00.2900.3132" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial color=#000000 size=2>My general question would be about resources I might use to learn how to work with ITK using Tcl; reading C++ examples doesn't really help me much.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>At the moment, I'm having trouble reading a series of DICOM images; the containing directory has 2 sets of data interleaved, so I'm wondering if using the 'SetUseSeriesDetails' thing would help me.&nbsp; </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>This was in the example DicomSeriesReadImageWrite2.cxx</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>typedef itk::GDCMSeriesFileNames NamesGeneratorType;</FONT></DIV>
<DIV><FONT face=Arial size=2>NamesGeneratorType::Pointer nameGenerator = NamesGeneratorType::New();</FONT></DIV>
<DIV><FONT face=Arial size=2>nameGenerator-&gt;SetUseSeriesDetails( true );</FONT></DIV>
<DIV><FONT face=Arial size=2>nameGenerator-&gt;SetDirectory( argv[1] );</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>but I have no idea how to get that to work in Tcl.&nbsp; Part of my code is </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>set reader [itkImageSeriesReaderUS2_New]<BR>set dicomIO [itkGDCMImageIO_New]</DIV>
<DIV>set nameGenerator [itkGDCMSeriesFileNames_New]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;---Does not work<BR>$nameGenerator [SetUseSeriesDetails true]</DIV>
<DIV>$nameGenerator SetDirectoryName [file join [file dirname [info script]] DIRECTORY]</DIV></BODY></HTML>