<div dir="ltr">Dear David,<br><br>many thanks for your effort to help.<br><br>I found the problem: a large amount of memory space was required to generate about 100*3MB for a vector image(100MB for an image (pixeltype of double) and multiply by three for three vector length) .<br>
I use a laptop and maybe it was a problem.<br>so I simply cropped my input image to 60MB and the final size was ~180MB for a vector image.<br><br>if you have something in mind to sharp my observation- please mention it ... I have to change a computer?<br>
any information would be very appreciated!<br><br>Best Regards,<br>Hila<br> <br><br><div class="gmail_quote">On Fri, May 18, 2012 at 6:32 PM, 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="im">&gt; vectorImage-&gt;SetVectorLength(vectorLength);<br>
&gt; vectorImage-&gt;SetSpacing(vec_spacing);<br>
&gt;<br>
&gt; It shouldn&#39;t be?:<br>
&gt;<br>
&gt;<br>
&gt; typedef itk::Image&lt;unsigned short, 3&gt;  ImageType;<br>
&gt;<br>
&gt; void CreateImage(ImageType* const image)<br>
&gt; {<br>
&gt;  ImageType::IndexType start;<br>
&gt;  start.Fill(0);<br>
&gt;<br>
&gt;  ImageType::SizeType size;<br>
&gt;  size[0] =202; size[1] =419; size[2] = 157;<br>
&gt;<br>
&gt; image-&gt;SetSpacing(vec_spacing);<br>
&gt; image-&gt;SetRegions(region);<br>
&gt; image-&gt;SetVectorLength(vectorLength);<br>
&gt; image-&gt;Allocate();<br>
&gt; }<br>
<br>
</div>I was trying to make you an image of your input type:<br>
<div class="im"><br>
typedef    itk::Image    &lt; pixelType, myDimension &gt;  ImageType;<br>
<br>
</div>so that you could try to convert it to the itk::VectorImage that you<br>
want. The spacing shouldn&#39;t matter for this (trying to make the<br>
example as simple as possible), and SetVectorLength is something that<br>
you need to do in your conversion code, not in this code to create a<br>
dummy image.<br>
<div class="HOEnZb"><div class="h5">typedef    itk::Image    &lt; pixelType, myDimension &gt;  ImageType;<br>
</div></div></blockquote></div><br></div>