<p> </p>
<p>LUIS, thanks for reply.</p>
<p>My problem is know how tags I need use to calculate original DICOM dimensions x,y,z to milimeters.</p>
<p>My application read a DICOM series and create a volume. After that, the user will work from slices x,y,z obtained from</p>
<p>vtkImagePlaneWidget-&gt;GetResliceOutput(), so I need to establish a co-relation between the volume (vtkImagePlaneWidget-&gt;GetResliceOutput) and the original measures of DICOM Series in milimeters.</p>
<p>Thanks again,</p>
<p> </p>
<p>Luis</p>
<p>Em 09/12/2009 13:27, <strong><span>Luis Ibanez &lt; luis.ibanez@kitware.com &gt;</span></strong> escreveu:</p>
<blockquote style="border-left: 2px solid #6868cc; margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br />Hi Luis,<br /><br />Could you please be more specific regarding<br />what you call "measures"   ?<br /><br />Are you referring to the total physical extent of the image ?<br />(e.g. the volume of space that is occupied by the image).<br /><br />or are you referring to measuring distances between pairs<br />of pixels in the image ?<br /><br />If you are talking about the second case, then what<br />you want to do is to take the indices of  both pixels.<br />(let's call them index1 and index2) and do the following:<br /><br /><br /> const ImageType * image = reader-&gt;GetInput();<br /> ImageType::PointType point1;<br /> ImageType::PointType point2;<br /><br /> image-&gt;TransformIndexToPhysicalPoint( index1, point1 );<br /> image-&gt;TransformIndexToPhysicalPoint( index2, point2 );<br /><br /> const double distance = point1.EuclideanDistanceTo( point2 );<br /><br /> That val
 ue of "distance" will be measured in millimeters,<br /> which is the default unit in DICOM,<br /><br /> When the indices are converted to physical points, the<br /> computation process will take into account:<br /><br /> A) The coordinates of the image Origin<br /> B) The values of pixel spacing<br /> C) The orientation (direction) of the image<br /><br /> The resulting value of "distance" will therefore be<br /> in the units of physical space.<br /><br /><br />As Michiel pointed out, the values of (A), (B) and (C)<br />are defined in the DICOM tags.   If you are curious<br />about the values, you could also print them out with<br /><br /> reader-&gt;Update();<br /> const ImageType * image = reader-&gt;GetInput();<br /> std::cout &lt;&lt; image-&gt;GetOrigin() &lt;&lt; std::endl;<br /> std::cout &lt;&lt; image-&gt;GetSpacing() &lt;&lt; std::endl;<br /> std::cout &lt;&lt; image-&gt;GetDirection() &lt;&lt; std::endl;<br /><br /><br />---<br /><br />If you were talking about ot
 her type of "measures",<br />please, describe them in detail.<br /><br /><br /> Thanks,<br /><br /><br /> Luis<br /><br /><br />------------------------------------------------------------------------------------------<br />On Wed, Dec 9, 2009 at 8:13 AM, michiel mentink<br /> wrote:<br />&gt; Hi Luis,<br />&gt;<br />&gt; try example Examples/IO/DicomSeriesReadPrintTags.cxx.<br />&gt; It prints the most important tags.<br />&gt;<br />&gt; It is described in the itk software guide paragraph 7.12.6<br />&gt; You can also see those tags summarized on my page on:<br />&gt; https://sites.google.com/site/michielmentink/programming/itk/image-translate<br />&gt; (on the bottom).<br />&gt;<br />&gt; greets,<br />&gt;<br />&gt; Michael<br />&gt;<br />&gt; On 12/9/09, l.a.pereira  wrote:<br />&gt;&gt;<br />&gt;&gt; Hi,<br />&gt;&gt;<br />&gt;&gt; I'm reading a DICOM series with GDCMImageIO.<br />&gt;&gt;<br />&gt;&gt; Now, I need obtain the measures of this DICOM series to convert it i
 n<br />&gt;&gt; milimeters.<br />&gt;&gt;<br />&gt;&gt; How can I do it ?<br />&gt;&gt;<br />&gt;&gt; There is some tags in DICOM header where I can calculate/convert this<br />&gt;&gt; measures to milimeters ?<br />&gt;&gt;<br />&gt;&gt; Thanks,<br />&gt;&gt;<br />&gt;&gt;<br />&gt;&gt;<br />&gt;&gt; Luis<br />&gt;&gt;<br />&gt;&gt;<br />&gt;&gt;<br />&gt;&gt; _____________________________________<br />&gt;&gt; Powered by www.kitware.com<br />&gt;&gt;<br />&gt;&gt; Visit other Kitware open-source projects at<br />&gt;&gt; http://www.kitware.com/opensource/opensource.html<br />&gt;&gt;<br />&gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br />&gt;&gt; http://www.kitware.com/products/protraining.html<br />&gt;&gt;<br />&gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br />&gt;&gt; http://www.itk.org/Wiki/ITK_FAQ<br />&gt;&gt;<br />&gt;&gt; Follow this link to subscribe/unsubscribe:<br />&gt;&gt; http://www.itk.org/mailman/listinfo/ins
 ight-users<br />&gt;&gt;<br />&gt;<br />&gt;<br />&gt; _____________________________________<br />&gt; Powered by www.kitware.com<br />&gt;<br />&gt; Visit other Kitware open-source projects at<br />&gt; http://www.kitware.com/opensource/opensource.html<br />&gt;<br />&gt; Kitware offers ITK Training Courses, for more information visit:<br />&gt; http://www.kitware.com/products/protraining.html<br />&gt;<br />&gt; Please keep messages on-topic and check the ITK FAQ at:<br />&gt; http://www.itk.org/Wiki/ITK_FAQ<br />&gt;<br />&gt; Follow this link to subscribe/unsubscribe:<br />&gt; http://www.itk.org/mailman/listinfo/insight-users<br />&gt;<br />&gt;<br /><br /></blockquote>