<br>Thank you both, for future reference:<br><br> const ImageType::SizeType sizeOfImage = image-&gt;GetLargestPossibleRegion().GetSize();<br><br>  std::cout &lt;&lt; &quot;Size &quot;;<br>  std::cout &lt;&lt; sizeOfImage[0] &lt;&lt; &quot;, &quot; &lt;&lt; sizeOfImage[1] &lt;&lt; &quot;, &quot; &lt;&lt; sizeOfImage[2] &lt;&lt; std::endl;<br>

<br><br>cheers, Michael<br><br><br><br><div class="gmail_quote">On Tue, Feb 2, 2010 at 1:53 PM,  <span dir="ltr">&lt;<a href="mailto:M.Staring@lumc.nl">M.Staring@lumc.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 Michael,<br>
<div><div></div><div class="h5"><br>
&gt; Is there some way of getting the number of pixels in X,Y,Z<br>
&gt; from an ITK image?<br>
&gt;<br>
&gt; There&#39;s methods in ITKImage for spacing, origin and<br>
&gt; direction, but not for the amount of pixels.<br>
&gt; Why is that?<br>
&gt;<br>
<br>
</div></div>There actually is, but it is somewhat hidden in the region:<br>
<br>
SizeType size = image-&gt;GetLargestPossibleRegion().GetSize();<br>
<br>
Cheers,<br>
<br>
Marius<br>
</blockquote></div><br>