HI, Michael<br>      If your output image is the last selectorIndex component of input vectorimage, you might need disconnect the output image before proceed on. See embedded lines.<br><br><div class="gmail_quote">On Sat, Mar 26, 2011 at 1:50 AM, Hsieh <span dir="ltr">&lt;<a href="mailto:M.Hsieh@student.tudelft.nl">M.Hsieh@student.tudelft.nl</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Luis,<br>
<br>
This is a very helpful message that this filter does exactly what I need.<br>
<br>
But, I am wondering if I can use only one instance of the filter to generate multiple output by setting different index? I&#39;ve tried something as below,<br>
  int selectorIndex = 0;<br>
  selector-&gt;SetIndex( selectorIndex );<br></blockquote><div> selector-&gt;Update();<br>ScalarImagePointer output0 = selector-&gt;GetOutput();<br> output0-&gt;DisconnectPipeline();<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

  writer0-&gt;SetInput( output0);<br>
  selectorIndex++;<br>
<br>
  selector-&gt;SetIndex( selectorIndex );<br></blockquote><div>  selector-&gt;Update();<br>
ScalarImagePointer output1 = selector-&gt;GetOutput();<br>
 output1-&gt;DisconnectPipeline();<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
  writer1-&gt;SetInput( output1);<br>
  selectorIndex++;<br>
<br>
and so on. But all the writers give the same component of the tensor image. Instead, I have to instantiate 6 selectors as many as the writers to achieve the goal of saving six components of a DTI tensor image.<br>
However, I&#39;d like to have a single class and one instance that can produce multiple outputs, say, extract all six components in the tensor like:<br>
        selector-&gt;GetComponentOne( );<br>
        selector-&gt;GetComponentTwo( );<br>
and so on.<br>
Do you think that I have to write a new class capable of multiple outputs inherited from the itkVectorIndexSelectionCastImageFilter? Or any simpler way?<br>
<div class="im"><br>
<br>
<br>
Best regards,<br>
Meng-Kang Hsieh (Michael)<br>
<br>
<br>
</div><div><div></div><div class="h5">-----Original Message-----<br>
From: Luis Ibanez [mailto:<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>]<br>
Sent: Tuesday, February 22, 2011 12:54 AM<br>
To: robert tamburo<br>
Cc: Hsieh; <a href="mailto:insight-users@itk.org">insight-users@itk.org</a>; <a href="mailto:norman-k-williams@uiowa.edu">norman-k-williams@uiowa.edu</a><br>
Subject: Re: [Insight-users] Problem in reading nifti image<br>
<br>
Hi Michael<br>
<br>
As Robert described, the ImageAdaptor will not work before a Writer.<br>
<br>
You may want to use instead the filter:<br>
<br>
<a href="http://public.kitware.com/Insight/Doxygen/html/classitk_1_1VectorIndexSelectionCastImageFilter.html" target="_blank">http://public.kitware.com/Insight/Doxygen/html/classitk_1_1VectorIndexSelectionCastImageFilter.html</a><br>

<br>
<br>
     Luis<br>
<br>
<br>
---------------------------------<br>
On Mon, Feb 21, 2011 at 2:06 PM, robert tamburo<br>
&lt;<a href="mailto:robert.tamburo@gmail.com">robert.tamburo@gmail.com</a>&gt; wrote:<br>
&gt; Section 12.5 of the ITK software guide:<br>
&gt; 12.5 Adaptors and Writers<br>
&gt; Image adaptors will not behave correctly when connected directly to a<br>
&gt; writer. The reason is<br>
&gt; that writers tend to get direct access to the image buffer from their input,<br>
&gt; since image adaptors<br>
&gt; do not have a real buffer their behavior in this circumstances is incorrect.<br>
&gt; You should avoid<br>
&gt; instantiating the ImageFileWriter or the ImageSeriesWriter over an image<br>
&gt; adaptor type.<br>
&gt; From an email to the user list by Luis&#39;<br>
&gt; (<a href="http://www.itk.org/pipermail/insight-users/2005-April/012553.html" target="_blank">http://www.itk.org/pipermail/insight-users/2005-April/012553.html</a>):<br>
&gt; This means that when you use ImageAdaptors, you must make sure<br>
&gt; that the filter receiving the Adaptor is based on the use of the<br>
&gt; &quot;*WithIndex&quot; iterators.<br>
&gt;<br>
&gt; On Mon, Feb 21, 2011 at 1:36 PM, Hsieh &lt;<a href="mailto:M.Hsieh@student.tudelft.nl">M.Hsieh@student.tudelft.nl</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Now I send it to Insight-Users mailing list.<br>
&gt;&gt;<br>
&gt;&gt; My purpose is to extract elements from the tensor image to analyze and<br>
&gt;&gt; register the tensor channels. With your help now I can do so with vector<br>
&gt;&gt; image adaptor, which extracts one of the element of the vector. However, in<br>
&gt;&gt; the example of ImageAdaptor3.cxx, the adaptor itself cannot directly be fed<br>
&gt;&gt; into the writer to create a scalar image. It is shown that a filter, such as<br>
&gt;&gt; rescaling the intensity, has to be done and therefore the<br>
&gt;&gt; rescaler-&gt;GetOutput() can be set as the input image for writer. Is there a<br>
&gt;&gt; way not to modify the intensity of the image? Is there an identity filter or<br>
&gt;&gt; something like that?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt;<br>
&gt;&gt; Michael<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; This is more of a question for the Insight-Users mailing list.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; That being said, you don&#39;t show your work, so I can&#39;t say exactly what<br>
&gt;&gt; you&#39;re doing wrong.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I wrote the NIfTI image reader, and as I remember there&#39;s some strange<br>
&gt;&gt; things that go on with respect to  Images with dimension &gt; 3.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; If I recall correctly, in a NIfTI image dimensions of [ 128 128 64 1 6 ]<br>
&gt;&gt; would not correspond to an 5D scalar image at all.  It would be a 3D image<br>
&gt;&gt; where each voxel is a 6-element vector.  The 4th dimension is ALWAYS<br>
&gt;&gt; interpreted as a time dimension, and the sixth and subsequent dimensions are<br>
&gt;&gt; interpreted according to what the image modality actually was.  Most often,<br>
&gt;&gt; and what&#39;s implemented in the reader, is to interpret it as an Image of<br>
&gt;&gt; Vector voxels. So NiftiImageIO reads in 6 3D volumes, and then constructs<br>
&gt;&gt; vector pixels by pulling one pixel from each of the volumes.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; In other words if you used<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::Image&lt; itk::Vector&lt;float, 6&gt;, 3 &gt; ImageType;<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::ImageFileReader&lt;Imagetype&gt; ImageReaderType;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; You would get all the data.  If you use<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::Image&lt;float, 3&gt; ImageType;<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::ImageFileReader&lt;ImageType&gt; ImageReaderType;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; the ImageFileReader will think that it&#39;s a vector image and try to convert<br>
&gt;&gt; the vector voxels to a scalar voxel, probably by taking the first value of<br>
&gt;&gt; each voxel&#39;s vector.  It will then report the image size as you reported.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; From: Hsieh &lt;<a href="mailto:M.Hsieh@student.tudelft.nl">M.Hsieh@student.tudelft.nl</a>&gt;<br>
&gt;&gt; Date: Fri, 18 Feb 2011 16:35:07 +0100<br>
&gt;&gt; To: ITK &lt;<a href="mailto:insight-developers@itk.org">insight-developers@itk.org</a>&gt;<br>
&gt;&gt; Subject: [Insight-developers] Problem in reading 5D nifti image<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I am trying to read a diffusion tensor image in nifti(.nii) format, which<br>
&gt;&gt; has dimension of [128 128 64 1 6]. However, the image I got after read by<br>
&gt;&gt; the itkImageFileReader.h had dimension only [128 128 64 1 1]. The last two<br>
&gt;&gt; dimension are suppressed by the reader. When I looked into the class (.h)<br>
&gt;&gt; and the .txx file, I found out that the numberOfDimensionsIO, which is 3, is<br>
&gt;&gt; smaller than TOutputImage::ImageDimension, which is set manually to 5, so<br>
&gt;&gt; that the 4th and the 5th dimension are set to 1 later. Why does that happen?<br>
&gt;&gt; numberOfDimensionsIO should be 5 in this case.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt;<br>
&gt;&gt; Meng-Kang Hsieh (Michael)<br>
&gt;&gt;<br>
&gt;&gt; OpSciTech, Erasmus Mundus<br>
&gt;&gt;<br>
&gt;&gt; Delft University of Technology<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt;<br>
&gt;&gt; Meng-Kang Hsieh (Michael)<br>
&gt;&gt;<br>
&gt;&gt; OpSciTech, Erasmus Mundus<br>
&gt;&gt;<br>
&gt;&gt; Delft University of Technology<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _____________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt;&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _____________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;<br>
&gt;<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
</div></div></blockquote></div><br>