<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman,new york,times,serif;font-size:12pt"><div>Hello.<br><br>I don't know if is the best option, but you can do something like this:<br><br><br>ImageType::SizeType size=image-&gt;GetLargestPossibleRegion().GetSize();<br>ImageType::IndexType index;<br>int i=0;<br>int numVox=size[0]*size[1]*size[2];<br>PixelType* img=new PixelType[numVox];<br>for(index[2]=0;index[2]&lt;size[2];index[2]++) {<br>&nbsp;&nbsp;&nbsp;&nbsp; for(index[1]=0;index[1]&lt;size[1];index[1]++) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; for(index[0]=0;index[0]&lt;size[0];index[0]++) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; img[i++]=image-&gt;GetPixel(index);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp; }<br>}<br><br><br></div></div><br>



      </body></html>