<div dir="ltr"><div><div>Hi,<br></div><div></div>you should replace the vtkImageNoiseSource for a VTK file type reader. The following [1] example ilustrates how to proceed.<br><br>In the example Matt pointed, the VTK image source is vtkImageNoiseSource, which creates an image filled with noise. <br>
<br>So you would connect the output of your reader to the connector:<br><pre class=""><font>std<span class="">::</span><span class="">string</span> inputFilename <span class="">=</span> argv<span class="">[</span><span class="">1</span><span class="">]</span><span class="">;</span>
 
<span class="">// Get all data from the file</span>
vtkSmartPointer<span class="">&lt;</span>vtkGenericDataObjectReader<span class="">&gt;</span> reader <span class="">=</span> 
      vtkSmartPointer<span class="">&lt;</span>vtkGenericDataObjectReader<span class="">&gt;</span><span class="">::</span><span class="">New</span><span class="">(</span><span class="">)</span><span class="">;</span>
reader<span class="">-</span><span class="">&gt;</span>SetFileName<span class="">(</span>inputFilename.<span class="">c_str</span><span class="">(</span><span class="">)</span><span class="">)</span><span class="">;<br></span></font></pre>
<pre class=""><font><span class="">connector-&gt;SetInput(reader-&gt;GetOutput());<br></span></font></pre><br></div><div>HTH,<br>JON HAITZ<br><br><br>[1] <a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/GenericDataObjectReader">www.vtk.org/Wiki/VTK/Examples/Cxx/IO/GenericDataObjectReader</a><br>
<div><div><div class="gmail_extra"><br><br><br><br><div class="gmail_quote">On 19 November 2013 08:48, azmagillian <span dir="ltr">&lt;<a href="mailto:xrysafenia.malliastolidou@gmail.com" target="_blank">xrysafenia.malliastolidou@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Matt thank you so much! I think that&#39;s what i need but for 3 dimensions<br>
<br>
so below at the code i should change Image&lt;double,2&gt; to Image&lt;double,3&gt;?<br>
and where should i put my file .vtk input ??<br>
<br>
<br>
#include &quot;itkVTKImageToImageFilter.h&quot;<br>
20<br>
21 #include &quot;vtkImageNoiseSource.h&quot;<br>
22 #include &quot;vtkSmartPointer.h&quot;<br>
23<br>
24 int itkVTKImageToImageFilterTest(int, char*[])<br>
25 {<br>
26   typedef itk::Image&lt;double, 2&gt;                 ImageType;<br>
27   typedef vtkSmartPointer&lt;vtkImageNoiseSource&gt;  VTKNoiseType;<br>
28   typedef itk::VTKImageToImageFilter&lt;ImageType&gt; ConnectorType;<br>
29<br>
30   VTKNoiseType noise_source = VTKNoiseType::New();<br>
31   noise_source-&gt;SetWholeExtent(0,20,0,20,0,0);<br>
32   noise_source-&gt;SetMinimum(0.0);<br>
33   noise_source-&gt;SetMaximum(1.0);<br>
34   noise_source-&gt;Update();<br>
35<br>
36   ConnectorType::Pointer connector = ConnectorType::New();<br>
37   connector-&gt;SetInput(noise_source-&gt;GetOutput());<br>
38   connector-&gt;Update();<br>
39<br>
40   connector-&gt;GetOutput()-&gt;Print(std::cout);<br>
41   connector-&gt;GetImporter()-&gt;Print(std::cout);<br>
42   connector-&gt;GetExporter()-&gt;Print(std::cout);<br>
43<br>
44   connector-&gt;Print(std::cout);<br>
45<br>
46   return EXIT_SUCCESS;<br>
47 }<br>
<br>
<br>
2013/11/18 Matt McCormick-2 [via ITK Insight Users] &lt;<br>
<a href="mailto:ml-node%2Bs2283740n7584406h17@n2.nabble.com">ml-node+s2283740n7584406h17@n2.nabble.com</a>&gt;<br>
<div class="im"><br>
&gt; Hi,<br>
&gt;<br>
&gt; Code to convert a VTK ImageData to an ITK Image can be found in the<br>
&gt; ITKVtkGlue module [1].<br>
&gt;<br>
&gt; Hope this helps,<br>
&gt; Matt<br>
&gt;<br>
&gt; [1]<br>
&gt; <a href="http://itk.org/gitweb?p=ITK.git;a=blob;f=Modules/Bridge/VtkGlue/test/itkVTKImageToImageFilterTest.cxx;h=b22c9e8685cf26290249554d58232d3d14b24a97;hb=HEAD" target="_blank">http://itk.org/gitweb?p=ITK.git;a=blob;f=Modules/Bridge/VtkGlue/test/itkVTKImageToImageFilterTest.cxx;h=b22c9e8685cf26290249554d58232d3d14b24a97;hb=HEAD</a><br>

&gt;<br>
&gt; On Mon, Nov 18, 2013 at 5:14 AM, azmagillian<br>
</div>&gt; &lt;[hidden email] &lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=0" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=0</a>&gt;&gt;<br>
<div class="im">&gt; wrote:<br>
&gt;<br>
&gt; &gt; Jon you said you made a filter to  &quot;transform your VTK data object to an<br>
&gt; &gt; ITK image so that you can use ITK&#39;s segmentation filter.&quot;<br>
&gt; &gt;<br>
&gt; &gt; Where can i find it?<br>
&gt; &gt;<br>
&gt; &gt;  Thanks!!!<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; 2013/11/15 Jon Haitz Legarreta Gorroño [via ITK Insight Users] &lt;<br>
</div>&gt; &gt; [hidden email] &lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=1" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=1</a>&gt;&gt;<br>
<div><div class="h5">&gt; &gt;<br>
&gt; &gt;&gt; You should either use the filter Hans mentioned or the one I did to<br>
&gt; &gt;&gt; transform your VTK data object to an ITK image so that you can use<br>
&gt; ITK&#39;s<br>
&gt; &gt;&gt; segmentation filter.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; JON HAITZ<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; On 15 November 2013 10:19, azmagillian &lt;[hidden email]&lt;<br>
&gt; <a href="http://user/SendEmail.jtp?type=node&amp;node=7584387&amp;i=0" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584387&amp;i=0</a>&gt;<br>
&gt; &gt;&gt; &gt; wrote:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; Thank you all again !<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; As i figured the first step would be to apply the Conncted Threshold<br>
&gt; Image<br>
&gt; &gt;&gt;&gt; Filter to 3d input<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; what changes should i make to the code?<br>
&gt; &gt;&gt;&gt; can i use as an input .vtk file (i converted .obj file to .vtk ) ?<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; 2013/11/14 Jon Haitz Legarreta Gorroño [via ITK Insight Users] &lt;<br>
&gt; &gt;&gt;&gt; [hidden email] &lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584387&amp;i=1" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584387&amp;i=1</a>&gt;&gt;<br>
&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt; Hi there,<br>
&gt; &gt;&gt;&gt; &gt; you can find ITK&#39;s region growing segmentation filters here:<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; <a href="http://www.itk.org/Doxygen/html/group__RegionGrowingSegmentation.html" target="_blank">http://www.itk.org/Doxygen/html/group__RegionGrowingSegmentation.html</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; You will find some guidelines to use them in the ITK SW guide:<br>
&gt; &gt;&gt;&gt; &gt; <a href="http://www.itk.org/ItkSoftwareGuide.pdf" target="_blank">http://www.itk.org/ItkSoftwareGuide.pdf</a> (not up-to-date, but there<br>
&gt; is<br>
&gt; &gt;&gt;&gt; an<br>
&gt; &gt;&gt;&gt; &gt; ongoing effort to make it again).<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; HTH,<br>
&gt; &gt;&gt;&gt; &gt; JON HAITZ<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; On 14 November 2013 15:09, azmagillian &lt;[hidden email]&lt;<br>
&gt; &gt;&gt;&gt; <a href="http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=0" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=0</a>&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt; &gt; wrote:<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Hans thanks for replying!<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; right now i have successfully read and display my .obj with vtk<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; for next step what should i do to use on this an itk filter ?<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; also is there code for seeded 3D region growing segmentation ?<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; i didn&#39;t get how to use this code<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://insight-journal.org/browse/publication/178" target="_blank">http://insight-journal.org/browse/publication/178</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; 2013/11/14 Johnson, Hans J [via ITK Insight Users] &lt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; [hidden email] &lt;<br>
&gt; <a href="http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=1" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=1</a>&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; There is some code that can allow conversion.  It is not fully<br>
&gt; &gt;&gt;&gt; &gt;&gt; documented,<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; but last time I tried, it worked well.<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; <a href="http://insight-journal.org/browse/publication/178" target="_blank">http://insight-journal.org/browse/publication/178</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Hans<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; On 11/14/13, 6:06 AM, &quot;azmagillian&quot; &lt;[hidden email]&lt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://user/SendEmail.jtp?type=node&amp;node=7584358&amp;i=0" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584358&amp;i=0</a>&gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; wrote:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Dear, ITK users , thanks in advance for your help<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;I want to perform 3d segmentation of a .obj file<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;my thought was to use connectedthreshold but there is not an<br>
&gt; example<br>
&gt; &gt;&gt;&gt; &gt;&gt; for<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;3d<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;then i tried to use confidenceconnected threshold but i can&#39;t<br>
&gt; give<br>
&gt; &gt;&gt;&gt; a.<br>
&gt; &gt;&gt;&gt; &gt;&gt; obj<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;as<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;input<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;any ideas ?<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;is there a way to convert .obj to a format suitable for itk<br>
&gt; filters?<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;--<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;View this message in context:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;-tp7584357.html<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Sent from the ITK Insight Users mailing list archive at<br>
&gt; Nabble.com.<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;_____________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Visit other Kitware open-source projects at<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; ________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Notice: This UI Health Care e-mail (including attachments) is<br>
&gt; &gt;&gt;&gt; covered by<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521,<br>
&gt; is<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; confidential and may be legally privileged.  If you are not the<br>
&gt; &gt;&gt;&gt; intended<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; recipient, you are hereby notified that any retention,<br>
&gt; dissemination,<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; distribution, or copying of this communication is strictly<br>
&gt; &gt;&gt;&gt; prohibited.<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;  Please reply to the sender that you have received the message in<br>
&gt; &gt;&gt;&gt; error,<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; then delete it.  Thank you.<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; ________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; _____________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; ------------------------------<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;  If you reply to this email, your message will be added to the<br>
&gt; &gt;&gt;&gt; &gt;&gt; discussion<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; below:<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584358.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584358.html</a><br>

&gt; &gt;&gt;&gt; &gt;&gt; &gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; .<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt; NAML&lt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml</a><br>

&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; --<br>
&gt; &gt;&gt;&gt; &gt;&gt; View this message in context:<br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584363.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584363.html</a><br>

&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Sent from the ITK Insight Users mailing list archive at Nabble.com.<br>
&gt; &gt;&gt;&gt; &gt;&gt; _____________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Visit other Kitware open-source projects at<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt; &gt;&gt;&gt; &gt;&gt; Community mailing list<br>
&gt; &gt;&gt;&gt; &gt;&gt; [hidden email] &lt;<br>
&gt; <a href="http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=2" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584364&amp;i=2</a>&gt;<br>
&gt; &gt;&gt;&gt; &gt;&gt; <a href="http://public.kitware.com/cgi-bin/mailman/listinfo/community" target="_blank">http://public.kitware.com/cgi-bin/mailman/listinfo/community</a><br>
&gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; _____________________________________<br>
&gt; &gt;&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt; &gt;&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt;&gt; &gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt;&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt;&gt; &gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt; ------------------------------<br>
&gt; &gt;&gt;&gt; &gt;  If you reply to this email, your message will be added to the<br>
&gt; &gt;&gt;&gt; discussion<br>
&gt; &gt;&gt;&gt; &gt; below:<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584364.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584364.html</a><br>

&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; &gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt; &gt; .<br>
&gt; &gt;&gt;&gt; &gt; NAML&lt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml</a><br>

&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt; &gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; --<br>
&gt; &gt;&gt;&gt; View this message in context:<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584383.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584383.html</a><br>

&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Sent from the ITK Insight Users mailing list archive at Nabble.com.<br>
&gt; &gt;&gt;&gt; _____________________________________<br>
&gt; &gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt; &gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt;&gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt;&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt;&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; _____________________________________<br>
&gt; &gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Visit other Kitware open-source projects at<br>
&gt; &gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt;&gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt;&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt;&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; ------------------------------<br>
&gt; &gt;&gt;  If you reply to this email, your message will be added to the<br>
&gt; discussion<br>
&gt; &gt;&gt; below:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584387.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584387.html</a><br>

&gt;<br>
&gt; &gt;&gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt;<br>
&gt;<br>
</div></div><div class="im">&gt; &gt;&gt; .<br>
&gt; &gt;&gt; NAML&lt;<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml</a>&gt;<br>

&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; View this message in context:<br>
&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584398.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584398.html</a><br>

&gt;<br>
&gt; &gt; Sent from the ITK Insight Users mailing list archive at Nabble.com.<br>
&gt; &gt; _____________________________________<br>
&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;<br>
&gt; &gt; Visit other Kitware open-source projects at<br>
&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;<br>
&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;<br>
&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;<br>
&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; Community mailing list<br>
</div>&gt; &gt; [hidden email] &lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=2" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=2</a>&gt;<br>
<div class="im">&gt; &gt; <a href="http://public.kitware.com/cgi-bin/mailman/listinfo/community" target="_blank">http://public.kitware.com/cgi-bin/mailman/listinfo/community</a><br>
&gt; _____________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;<br>
&gt;<br>
&gt; ------------------------------<br>
&gt;  If you reply to this email, your message will be added to the discussion<br>
&gt; below:<br>
&gt;<br>
</div>&gt; <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584406.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584406.html</a><br>

<div class="im">&gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt;<a href="http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&amp;node=7584357&amp;code=eHJ5c2FmZW5pYS5tYWxsaWFzdG9saWRvdUBnbWFpbC5jb218NzU4NDM1N3wtMzkxNjk0NjEy" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&amp;node=7584357&amp;code=eHJ5c2FmZW5pYS5tYWxsaWFzdG9saWRvdUBnbWFpbC5jb218NzU4NDM1N3wtMzkxNjk0NjEy</a>&gt;<br>

&gt; .<br>
&gt; NAML&lt;<a href="http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&amp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml</a>&gt;<br>

&gt;<br>
<br>
<br>
<br>
<br>
--<br>
</div>View this message in context: <a href="http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584409.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584409.html</a><br>

<div class=""><div class="h5">Sent from the ITK Insight Users mailing list archive at Nabble.com.<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" 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" 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" 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" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
</div></div></blockquote></div><br></div></div></div></div></div>