<div dir="ltr"><div><div><div><div><div><div>Hello Fabian,<br><br></div>You are most likely allocating more memory than what your computer can allocates. If you compute the memory required for your matrix, it will be at least:<br></div>8 (long doubles on Visual Studio C++ are the same size as doubles) * 2*100*100*2*100*100 = 3 200 000 000 Bytes<br><br></div>This means that you need to have at least that much memory available.<br></div>If your computer does not have this amount of memory available, you will run into errors.<br><br></div>Hope this helps,<br></div>Francois<br><div><div><div><div><div><br></div></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 30, 2017 at 12:24 PM, Fabian Torres <span dir="ltr"><<a href="mailto:fabian.trobles@gmail.com" target="_blank">fabian.trobles@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi evryone.<div><br></div><div>I´m using itk VariableMatrix to do some image processing. But I have some problems initializing my matrices.</div><div>When I use small sizes like this I do not have any problem</div><div><br></div><div><div>//matrix A</div><div>regionSize[0] = 15;</div><div>regionSze[1] = 15;</div><div> VariableSizeMatrix<long double> matA;</div><div>matA.SetSize(2*regionSize[0]*<wbr>regionSize[1],2*regionSize[0]*<wbr>regionSize[1]);</div><div>matA.Fill(0.0);</div></div><div><br></div><div>But when I use bigger sizes like:</div><div><div><br></div><div>regionSize[0] = 100;</div><div>regionSze[1] = 100;</div></div><div><div><br></div><div>I get an Acces Violation exception</div><div>Access violation reading location 0xcdcdcdc1.<br></div><div><br></div><div>I'm using Visualstudio 2008 and ITK 4.4</div><div><br></div><div>Does this has something to do with memory allocation?</div><div>Is there a way a could verify if I have enough memory to allocate my matrix?</div><div><br></div><div>Thanks.</div><span class="HOEnZb"><font color="#888888"><div><br></div>-- <br><div class="m_-1360984515801176538gmail_signature"><div dir="ltr"><div>Fabián Torres Robles<br>Maestría en Ciencias en Ingeniería Electrónica<br>Ingeniería en Sistemas Electrónicos<br>Tel. 58081280, 0445534661338<br>E-mail <a href="mailto:fabian.trobles@gmail.com" target="_blank">fabian.trobles@gmail.com</a>, <a href="mailto:dae.wong@gmail.com" target="_blank">dae.wong@gmail.com</a>  <div style="padding:0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line-height:130%"></div><div style="padding:0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line-height:130%"></div></div></div></div>
</font></span></div></div>
<br>______________________________<wbr>_______<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>products/protraining.php</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" rel="noreferrer" target="_blank">http://www.itk.org/Wiki/ITK_<wbr>FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br></div>