<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-9">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:8.5in 11.0in;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal>Hi everyone;<o:p></o:p></p>

<p class=MsoNormal>I am writing a MPR and VRT application for DICOM datasets in
C++. Firstly I was using vtkDicomImageReader for reading DICOM series, I created
MPR section and it works great, but VTK doesn&#8217;t support to parse all of
the DICOM headers. So I decided to use ITK and GDCM to read DICOM header . Now
my application reads the same DICOM set twice (with VTK and GDCM) so I want to
manage all reading process with ITK and GDCM. I&#8217;ve parsed the header as
illustrated in Insight\Examples\IO\DicomSeriesReadPrintTags.cxx . How can I convert
reader-&gt;GetOutput() to vtkImageData ?<o:p></o:p></p>

<p class=MsoNormal>Thanks already;<o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas;
color:#E0E0E0'>      </span><span style='font-family:Consolas'>      typedef signed
short PixelType;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            const
unsigned int Dimension = 3;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            typedef
itk::Image&lt; PixelType, Dimension &gt; ImageType;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            typedef
itk::ImageSeriesReader&lt; ImageType &gt; ReaderType;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            ReaderType::Pointer
reader = ReaderType::New();<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            typedef
itk::GDCMImageIO ImageIOType;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            ImageIOType::Pointer
dicomIO = ImageIOType::New();<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            reader-&gt;SetImageIO(
dicomIO );<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            typedef
itk::GDCMSeriesFileNames NamesGeneratorType;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            NamesGeneratorType::Pointer
nameGenerator = NamesGeneratorType::New();<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            nameGenerator-&gt;SetInputDirectory(
dir.c_str() );<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            typedef
std::vector&lt;std::string&gt; FileNamesContainer;<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            FileNamesContainer
fileNames = nameGenerator-&gt;GetInputFileNames();<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            reader-&gt;SetFileNames(
fileNames );<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            try<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>            {<o:p></o:p></span></p>

<p class=MsoNormal style='text-autospace:none'><span style='font-family:Consolas'>                  reader-&gt;Update();<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-family:Consolas'>            }</span><o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>

</body>

</html>