<div dir="ltr">Hi Darya,<div><br></div><div>The vtkConnectivityFilter is meant for use on mesh data.  It suspect</div><div>that when you used it on image data, it caused your computer to run</div><div>out of memory.</div><div><br></div><div>I have a connectivity filter that I wrote specifically for images, but it</div><div>is on github.  I haven't contributed it to VTK yet.  But you can try it</div><div>if you are interested:</div><div><br></div><div><a href="https://github.com/dgobbi/AIRS/tree/master/ImageSegmentation">https://github.com/dgobbi/AIRS/tree/master/ImageSegmentation</a><br></div><div><br></div><div>You can also try the vtkImageThresholdConnectivity filter that comes</div><div>with VTK:</div><div><a href="http://www.vtk.org/doc/nightly/html/classvtkImageThresholdConnectivity.html">http://www.vtk.org/doc/nightly/html/classvtkImageThresholdConnectivity.html</a><br></div><div><br></div><div> - David</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 6, 2015 at 10:36 AM, Darya Yelshyna via vtkusers <span dir="ltr"><<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="color:#000;background-color:#fff;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:13px"><div>Hi everyone!</div><div><br></div><div dir="ltr">I was trying to apply vtkConnectivityFilter to vtkImageData, but the program crashes at this step.</div><div dir="ltr">"This application has requested the Runtime to terminate it in an unusual way." This is this a part of my code:</div><div dir="ltr"><br></div><div dir="ltr">dilateFilter = vtk.vtkImageContinuousDilate3D()</div><div dir="ltr">dilateFilter.SetKernelSize(5, 5, 5)</div><div dir="ltr">dilateFilter.SetInputConnection(logic2.GetOutputPort())</div><div dir="ltr">dilateFilter.Update()</div><div dir="ltr"><br></div><div dir="ltr">connectFilter = vtk.vtkConnectivityFilter()</div><div dir="ltr">connectFilter.SetExtractionModeToLargestRegion()</div><div dir="ltr">connectFilter.SetInputConnection(dilateFilter.GetOutputPort())</div><div dir="ltr">connectFilter.Update()</div><div dir="ltr"><br></div><div dir="ltr">I don't understand what is happening.. Can anybody help me?</div><div dir="ltr"><br></div><div dir="ltr">Thank you in advance.</div><div dir="ltr"><br></div><div dir="ltr">Best regards,</div><div dir="ltr">Darya</div></div></div><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 <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br></div>