<div dir="ltr"><div>Hi,</div><div><br></div>I assume that line 40 is &quot;connector-&gt;SetInput(reader-&gt;GetOutput());&quot;.<div><br></div><div>vtkImageData is derived from vtkDataObject, but you may need to downcast. Try calling vtkImageData::SafeDownCast [1] on the object returned by &quot;reader-&gt;GetOutput()&quot;, before passing it to &quot;connector-&gt;SetInput(..)&quot;.</div>
<div><br></div><div>If that doesn&#39;t work, you can try using &quot;reader-&gt;GetOutput()-&gt;Print(std::cout);&quot; to get some information on the object, to help with debugging.</div><div><br></div><div>[1] <a href="http://www.vtk.org/doc/nightly/html/classvtkImageData.html#ae4345f90722e82bec2f70f5d5a5b1f38">http://www.vtk.org/doc/nightly/html/classvtkImageData.html#ae4345f90722e82bec2f70f5d5a5b1f38</a><br>
<div><br></div><div>Enjoy,</div><div>Brian</div><div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Nov 19, 2013 at 5:00 AM, 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-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">thanks for replying!<br>
i tried that but the below code gives me error: error C2664: &#39; cannot<br>
convert parameter 1 from &#39;vtkDataObject *&#39; to &#39;vtkImageData *&#39;<br>
d:\InsightToolkit-4.4.2\Modules\Bridge\VtkGlue\test\itkVTKImageToImageFilterTest.cxx<br>
40<br>
<br>
<br>
int itkVTKImageToImageFilterTest(int, char*[])<br>
{<br>
<div class="im">  typedef itk::Image&lt;double, 2&gt;                 ImageType;<br>
<br>
</div><div class="im">  typedef itk::VTKImageToImageFilter&lt;ImageType&gt; ConnectorType;<br>
<br>
</div>  std::string inputFilename = &quot;C:\\build_test2read\\test3vtk&quot;;<br>
<div class="im"><br>
  // Get all data from the file<br>
  vtkSmartPointer&lt;vtkGenericDataObjectReader&gt; reader =<br>
      vtkSmartPointer&lt;vtkGenericDataObjectReader&gt;::New();<br>
  reader-&gt;SetFileName(inputFilename.c_str());<br>
</div>  reader-&gt;Update();<br>
<div class="im"><br>
<br>
  ConnectorType::Pointer connector = ConnectorType::New();<br>
</div>  connector-&gt;SetInput(reader-&gt;GetOutput());<br>
  connector-&gt;Update();<br>
<br>
  connector-&gt;GetOutput()-&gt;Print(std::cout);<br>
  connector-&gt;GetImporter()-&gt;Print(std::cout);<br>
  connector-&gt;GetExporter()-&gt;Print(std::cout);<br>
<br>
  connector-&gt;Print(std::cout);<br>
<br>
  return EXIT_SUCCESS;<br>
}<br>
<br>
<br>
<br>
<br>
<br>
2013/11/19 Jon Haitz Legarreta Gorroño [via ITK Insight Users] &lt;<br>
<a href="mailto:ml-node%2Bs2283740n7584410h41@n2.nabble.com">ml-node+s2283740n7584410h41@n2.nabble.com</a>&gt;<br>
<div class="im"><br>
&gt; Hi,<br>
&gt; you should replace the vtkImageNoiseSource for a VTK file type reader. The<br>
&gt; following [1] example ilustrates how to proceed.<br>
&gt;<br>
&gt; In the example Matt pointed, the VTK image source is vtkImageNoiseSource,<br>
&gt; which creates an image filled with noise.<br>
&gt;<br>
&gt; So you would connect the output of your reader to the connector:<br>
&gt;<br>
&gt; std::string inputFilename = argv[1];<br>
&gt;  // Get all data from the file<br>
&gt; vtkSmartPointer&lt;vtkGenericDataObjectReader&gt; reader =<br>
&gt;       vtkSmartPointer&lt;vtkGenericDataObjectReader&gt;::New();<br>
&gt; reader-&gt;SetFileName(inputFilename.c_str());<br>
&gt;<br>
&gt; connector-&gt;SetInput(reader-&gt;GetOutput());<br>
&gt;<br>
&gt;<br>
&gt; HTH,<br>
&gt; JON HAITZ<br>
&gt;<br>
&gt;<br>
&gt; [1] <a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/GenericDataObjectReader" target="_blank">www.vtk.org/Wiki/VTK/Examples/Cxx/IO/GenericDataObjectReader</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
</div>&gt; On 19 November 2013 08:48, azmagillian &lt;[hidden email]&lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584410&amp;i=0" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584410&amp;i=0</a>&gt;<br>

<div><div class="h5">&gt; &gt; wrote:<br>
&gt;<br>
&gt;&gt; Matt thank you so much! I think that&#39;s what i need but for 3 dimensions<br>
&gt;&gt;<br>
&gt;&gt; so below at the code i should change Image&lt;double,2&gt; to Image&lt;double,3&gt;?<br>
&gt;&gt; and where should i put my file .vtk input ??<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; #include &quot;itkVTKImageToImageFilter.h&quot;<br>
&gt;&gt; 20<br>
&gt;&gt; 21 #include &quot;vtkImageNoiseSource.h&quot;<br>
&gt;&gt; 22 #include &quot;vtkSmartPointer.h&quot;<br>
&gt;&gt; 23<br>
&gt;&gt; 24 int itkVTKImageToImageFilterTest(int, char*[])<br>
&gt;&gt; 25 {<br>
&gt;&gt; 26   typedef itk::Image&lt;double, 2&gt;                 ImageType;<br>
&gt;&gt; 27   typedef vtkSmartPointer&lt;vtkImageNoiseSource&gt;  VTKNoiseType;<br>
&gt;&gt; 28   typedef itk::VTKImageToImageFilter&lt;ImageType&gt; ConnectorType;<br>
&gt;&gt; 29<br>
&gt;&gt; 30   VTKNoiseType noise_source = VTKNoiseType::New();<br>
&gt;&gt; 31   noise_source-&gt;SetWholeExtent(0,20,0,20,0,0);<br>
&gt;&gt; 32   noise_source-&gt;SetMinimum(0.0);<br>
&gt;&gt; 33   noise_source-&gt;SetMaximum(1.0);<br>
&gt;&gt; 34   noise_source-&gt;Update();<br>
&gt;&gt; 35<br>
&gt;&gt; 36   ConnectorType::Pointer connector = ConnectorType::New();<br>
&gt;&gt; 37   connector-&gt;SetInput(noise_source-&gt;GetOutput());<br>
&gt;&gt; 38   connector-&gt;Update();<br>
&gt;&gt; 39<br>
&gt;&gt; 40   connector-&gt;GetOutput()-&gt;Print(std::cout);<br>
&gt;&gt; 41   connector-&gt;GetImporter()-&gt;Print(std::cout);<br>
&gt;&gt; 42   connector-&gt;GetExporter()-&gt;Print(std::cout);<br>
&gt;&gt; 43<br>
&gt;&gt; 44   connector-&gt;Print(std::cout);<br>
&gt;&gt; 45<br>
&gt;&gt; 46   return EXIT_SUCCESS;<br>
&gt;&gt; 47 }<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2013/11/18 Matt McCormick-2 [via ITK Insight Users] &lt;<br>
</div></div>&gt;&gt; [hidden email] &lt;<a href="http://user/SendEmail.jtp?type=node&amp;node=7584410&amp;i=1" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584410&amp;i=1</a>&gt;&gt;<br>
<div><div class="h5">&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &gt; Hi,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Code to convert a VTK ImageData to an ITK Image can be found in the<br>
&gt;&gt; &gt; ITKVtkGlue module [1].<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Hope this helps,<br>
&gt;&gt; &gt; Matt<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; [1]<br>
&gt;&gt; &gt;<br>
&gt;&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;&gt; &gt;<br>
&gt;&gt; &gt; On Mon, Nov 18, 2013 at 5:14 AM, azmagillian<br>
&gt;&gt; &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>
&gt;&gt;<br>
&gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt; Jon you said you made a filter to  &quot;transform your VTK data object to<br>
&gt;&gt; an<br>
&gt;&gt; &gt; &gt; ITK image so that you can use ITK&#39;s segmentation filter.&quot;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; Where can i find it?<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;  Thanks!!!<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; 2013/11/15 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=7584406&amp;i=1" target="_blank">http://user/SendEmail.jtp?type=node&amp;node=7584406&amp;i=1</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt; You should either use the filter Hans mentioned or the one I did to<br>
&gt;&gt; &gt; &gt;&gt; transform your VTK data object to an ITK image so that you can use<br>
&gt;&gt; &gt; ITK&#39;s<br>
&gt;&gt; &gt; &gt;&gt; segmentation filter.<br>
&gt;&gt; &gt; &gt;&gt;<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;<br>
&gt;&gt; &gt; &gt;&gt; On 15 November 2013 10:19, azmagillian &lt;[hidden email]&lt;<br>
&gt;&gt; &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;&gt; &gt; wrote:<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; Thank you all again !<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; As i figured the first step would be to apply the Conncted Threshold<br>
&gt;&gt; &gt; Image<br>
&gt;&gt; &gt; &gt;&gt;&gt; Filter to 3d input<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; what changes should i make to the code?<br>
&gt;&gt; &gt; &gt;&gt;&gt; can i use as an input .vtk file (i converted .obj file to .vtk ) ?<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; 2013/11/14 Jon Haitz Legarreta Gorroño [via ITK Insight Users] &lt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; [hidden email] &lt;<br>
&gt;&gt; <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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; Hi there,<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; you can find ITK&#39;s region growing segmentation filters here:<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;<br>
&gt;&gt; &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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; You will find some guidelines to use them in the ITK SW guide:<br>
&gt;&gt; &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<br>
&gt;&gt; there<br>
&gt;&gt; &gt; is<br>
&gt;&gt; &gt; &gt;&gt;&gt; an<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; ongoing effort to make it again).<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; HTH,<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; JON HAITZ<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 14 November 2013 15:09, azmagillian &lt;[hidden email]&lt;<br>
&gt;&gt; &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;&gt;&gt;<br>
&gt;&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; Hans thanks for replying!<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &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; &gt;&gt;<br>
&gt;&gt; &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; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; also is there code for seeded 3D region growing segmentation ?<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; i didn&#39;t get how to use this code<br>
&gt;&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;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; 2013/11/14 Johnson, Hans J [via ITK Insight Users] &lt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; [hidden email] &lt;<br>
&gt;&gt; &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;&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; &gt; There is some code that can allow conversion.  It is not fully<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; documented,<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; but last time I tried, it worked well.<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; Hans<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &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; &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; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &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; &gt; &gt;<br>
&gt;&gt; &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; &gt; &gt;my thought was to use connectedthreshold but there is not an<br>
&gt;&gt; &gt; example<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; for<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;3d<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;then i tried to use confidenceconnected threshold but i can&#39;t<br>
&gt;&gt; &gt; give<br>
&gt;&gt; &gt; &gt;&gt;&gt; a.<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; obj<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;as<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;input<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;any ideas ?<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;is there a way to convert .obj to a format suitable for itk<br>
&gt;&gt; &gt; filters?<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;--<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;View this message in context:<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&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; &gt; &gt;-tp7584357.html<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Sent from the ITK Insight Users mailing list archive at<br>
&gt;&gt; &gt; Nabble.com.<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;_____________________________________<br>
&gt;&gt; &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; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Visit other Kitware open-source projects at<br>
&gt;&gt; &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; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Kitware offers ITK Training Courses, for more information<br>
&gt;&gt; visit:<br>
&gt;&gt; &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; &gt; &gt;<br>
&gt;&gt; &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; &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; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; &gt;Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; ________________________________<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; Notice: This UI Health Care e-mail (including attachments) is<br>
&gt;&gt; &gt; &gt;&gt;&gt; covered by<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521,<br>
&gt;&gt; &gt; is<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; confidential and may be legally privileged.  If you are not the<br>
&gt;&gt; &gt; &gt;&gt;&gt; intended<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; recipient, you are hereby notified that any retention,<br>
&gt;&gt; &gt; dissemination,<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; distribution, or copying of this communication is strictly<br>
&gt;&gt; &gt; &gt;&gt;&gt; prohibited.<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;  Please reply to the sender that you have received the message<br>
&gt;&gt; in<br>
&gt;&gt; &gt; &gt;&gt;&gt; error,<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; then delete it.  Thank you.<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; ________________________________<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; _____________________________________<br>
&gt;&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; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&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; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; Kitware offers ITK Training Courses, for more information<br>
&gt;&gt; visit:<br>
&gt;&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; &gt;<br>
&gt;&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; &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; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&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; &gt;  If you reply to this email, your message will be added to the<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; discussion<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; below:<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&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;&gt; &gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; .<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; &gt; NAML&lt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&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;&gt; &gt;<br>
&gt;&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;<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;<br>
&gt;&gt; &gt;<br>
&gt;&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; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; Sent from the ITK Insight Users mailing list archive at<br>
&gt;&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;&gt; _______________________________________________<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; Community mailing list<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;&gt; [hidden email] &lt;<br>
&gt;&gt; &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; &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; &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; 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; &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;<br>
&gt;&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;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt; &gt; .<br>
&gt;&gt; &gt; &gt;&gt;&gt; &gt; NAML&lt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&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;<br>
&gt;&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;&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;<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; discussion<br>
&gt;&gt; &gt; &gt;&gt; below:<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&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;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt; .<br>
&gt;&gt; &gt; &gt;&gt; NAML&lt;<br>
&gt;&gt; &gt;<br>
&gt;&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><br>

&gt;&gt; &gt;<br>
&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;<br>
&gt;&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;&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; &gt; Community mailing list<br>
&gt;&gt; &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>
&gt;&gt;<br>
&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; _____________________________________<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;&gt; discussion<br>
&gt;&gt; &gt; below:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&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>

&gt;&gt;<br>
</div></div>&gt;&gt; &gt;  To unsubscribe from 3d SEGMENTATION OF .OBJ FILE, click here&lt; &gt; .<br>
<div class="im">&gt;&gt; &gt; NAML&lt;<br>
&gt;&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><br>

&gt;&gt; &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;&gt; <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>

&gt;&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;<br>
&gt;<br>
</div><div class="im">&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-tp7584357p7584410.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584410.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-tp7584357p7584411.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/3d-SEGMENTATION-OF-OBJ-FILE-tp7584357p7584411.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><br clear="all"><div><br></div>-- <br>Brian Helba<br>Medical Imaging<br>Kitware, Inc.<br>
</div></div></div></div>