<div dir="ltr">Thanks David, will try that.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Aug 20, 2013 at 10:54 AM, David Doria <span dir="ltr">&lt;<a href="mailto:daviddoria@gmail.com" target="_blank">daviddoria@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Sun, Aug 18, 2013 at 1:12 PM, Manuel Corrales<br>
&lt;<a href="mailto:manuelcorrales@gmail.com">manuelcorrales@gmail.com</a>&gt; wrote:<br>
&gt; Hello,<br>
&gt;<br>
&gt; I am trying to pick a &quot;pixel&quot; value from a series of DICOM image. I am able<br>
&gt; to pick a pixel using the mouse and the get the value using this:<br>
&gt;<br>
&gt; (short*)vtkImageData-&gt;GetScalarPointer(indices[0], indices[1], indices[2]);<br>
&gt;<br>
&gt;<br>
&gt; Now I have to iterate trought all data of the image and I am attempting to<br>
&gt; do that by getting the dataArray of the image like this:<br>
&gt;<br>
&gt; vtkDataArray* array = imageData-&gt;GetPointData()-&gt;GetScalars()<br>
&gt;<br>
&gt;<br>
&gt; But the, when I try to fetch the information from the array, the<br>
&gt; getTuple(index) method is returning a double* instead of short*. I have<br>
&gt; probably a missunderstanding of some concept here, can you help me?<br>
&gt;<br>
&gt; Regards,<br>
&gt; Manuel.<br>
<br>
</div></div>I think you can just do:<br>
<br>
  vtkShortArray* array = vtkShortArray::SafeDownCast (<br>
imageData-&gt;GetPointData()-&gt;GetScalars() );<br>
<br>
David<br>
</blockquote></div><br></div>