<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Hi Elisabeth,</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">you could try using <a href="https://itk.org/Doxygen/html/classitk_1_1BinaryImageToStatisticsLabelMapFilter.html">BinaryImageToStatisticsLabelMapFilter</a> or some other filter from the same <a href="https://itk.org/Doxygen/html/group__ITKLabelMap.html">group</a>. The feature you want to pay attention to is 'perimeter'.</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Regards,</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Dženan</div></div><br><div class="gmail_quote"><div dir="ltr">On Sat, May 5, 2018 at 2:09 AM Elisabeth Pfaehler <<a href="mailto:elli.pfaehler@gmail.com">elli.pfaehler@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">
Dear all,<br>
<br>
I am facing a problem calculating the surface of an ITK mesh.<br>
Originally I have an image mask and converted this mask to a triangle 
mesh. In order to calculate the surface, I wanted to convert this mesh 
to a simplex mesh using:<br>
<br>
    typedef itk::SimplexMesh< float, 3 > TSimplex;<br>
    typedef itk::TriangleMeshToSimplexMeshFilter< MeshType, TSimplex > TConvert;<br>
<br>
    // Convert the triangle mesh to a simplex mesh.<br>
    TConvert::Pointer convert = TConvert::New();<br>
    convert->SetInput(meshSource->GetOutput());<br>
    convert->Update();<br>
<br>
As I found it in one example. But in this case my software starts calculating and never stops.
<br>
<br>
So, now I tried to calculate the surface of every cell and add these surfaces. But is there maybe another, nicer way?<br>
<br>
Thanks a lot in advance<br>
<br>
Elli

<div dir="ltr" class="m_1224443643335091353gmail_signature" data-smartmail="gmail_signature"><br></div></div>
The ITK community is transitioning from this mailing list to <a href="http://discourse.itk.org" rel="noreferrer" target="_blank">discourse.itk.org</a>. Please join us there!<br>
________________________________<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/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/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_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://itk.org/mailman/listinfo/insight-users" rel="noreferrer" target="_blank">https://itk.org/mailman/listinfo/insight-users</a><br>
</blockquote></div>