<div dir="ltr"><span style="font-family:arial,sans-serif;font-size:13px"> </span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">Hi,</span><div style="font-family:arial,sans-serif;font-size:12.800000190734863px">
   I want to use the application of example (<a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper</a>) in example  (<a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CurvedReformation" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CurvedReformation</a>) but when i trying to modifying this, i am getting certain errors. I am writing my modifying code(in curved reformation example), could you please tell me the mistakes which i am doing in that. this code is the modified code of curved reformation example using the code of image slice mapper.</div>
<div style="font-family:arial,sans-serif;font-size:12.800000190734863px"><br></div><div style="font-family:arial,sans-serif;font-size:12.800000190734863px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">
<div><font face="arial, sans-serif"><b>  // Probe the volume with the extruded surface</b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkProbeFilter&gt; sampleVolume =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkProbeFilter&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b> // sampleVolume-&gt;SetInputConnection(1, imageReader-&gt;GetOutputPort());</b></font></div><div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b>#if VTK_MAJOR_VERSION &lt;= 5</b></font></div>
<div><font face="arial, sans-serif"><b>  sampleVolume-&gt;SetInput(0, surface);</b></font></div><div><font face="arial, sans-serif"><b> #else</b></font></div><div><font face="arial, sans-serif"><b>  sampleVolume-&gt;SetInputData(0, surface);</b></font></div>
<div><font face="arial, sans-serif"><b>#endif</b></font></div><div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b>/*</b></font></div><div><font face="arial, sans-serif"><b>  // Compute a simple window/level based on scalar range</b></font></div>
<div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkWindowLevelLookupTable&gt; wlLut =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkWindowLevelLookupTable&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b>  double range = imageReader-&gt;GetOutput()-&gt;GetScalarRange()[1] -</b></font></div><div><font face="arial, sans-serif"><b>                 imageReader-&gt;GetOutput()-&gt;GetScalarRange()[0];</b></font></div>
<div><font face="arial, sans-serif"><b>  double level = (imageReader-&gt;GetOutput()-&gt;GetScalarRange()[1] +</b></font></div><div><font face="arial, sans-serif"><b>                  imageReader-&gt;GetOutput()-&gt;GetScalarRange()[0]) / 2.0;</b></font></div>
<div><font face="arial, sans-serif"><b>  wlLut-&gt;SetWindow(range);</b></font></div><div><font face="arial, sans-serif"><b>  wlLut-&gt;SetLevel(level);</b></font></div><div><font face="arial, sans-serif"><b> */</b></font></div>
<div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b>  //Reslicing </b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkImageResliceMapper&gt; imageResliceMapper = vtkSmartPointer&lt;vtkImageResliceMapper&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b>#if VTK_MAJOR_VERSION &lt;= 5</b></font></div><div><font face="arial, sans-serif"><b>  imageResliceMapper-&gt;SetInputConnection(1, sampleVolume-&gt;GetOutputPort());</b></font></div>
<div><font face="arial, sans-serif"><b>#else</b></font></div><div><font face="arial, sans-serif"><b>  imageResliceMapper-&gt;SetInputData(sampleVolume-&gt;GetOutputPort());</b></font></div><div><font face="arial, sans-serif"><b>#endif</b></font></div>
<div><font face="arial, sans-serif"><b> </b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkImageSlice&gt; imageSlice = vtkSmartPointer&lt;vtkImageSlice&gt;::New();</b></font></div><div><font face="arial, sans-serif"><b>  imageSlice-&gt;SetMapper(imageResliceMapper);</b></font></div>
<div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b>/*  // Create a mapper.</b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkDataSetMapper&gt; mapper =</b></font></div>
<div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkDataSetMapper&gt;::New();</b></font></div><div><font face="arial, sans-serif"><b>  mapper-&gt;SetInputConnection(sampleVolume-&gt;GetOutputPort());</b></font></div>
<div><font face="arial, sans-serif"><b>  mapper-&gt;SetLookupTable(wlLut);</b></font></div><div><font face="arial, sans-serif"><b>  mapper-&gt;SetScalarRange(0, 255);</b></font></div><div><font face="arial, sans-serif"><b> </b></font></div>
<div><font face="arial, sans-serif"><b>  // Create An Actor</b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkActor&gt; actor =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkActor&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b>  actor-&gt;SetMapper(mapper);</b></font></div><div><font face="arial, sans-serif"><b>*/</b></font></div><div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b>  // Create a renderer,</b></font></div>
<div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkRenderer&gt; renderer =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkRenderer&gt;::New();</b></font></div><div><font face="arial, sans-serif"><b><br>
</b></font></div><div><font face="arial, sans-serif"><b>  // Create render window</b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkRenderWindow&gt; renderWindow =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkRenderWindow&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b>  renderWindow-&gt;AddRenderer(renderer);</b></font></div><div><font face="arial, sans-serif"><b><br></b></font></div><div><font face="arial, sans-serif"><b><br></b></font></div><div>
<font face="arial, sans-serif"><b>  //Create an  interactor</b></font></div><div><font face="arial, sans-serif"><b>  vtkSmartPointer&lt;vtkRenderWindowInteractor&gt; renderWindowInteractor =</b></font></div><div><font face="arial, sans-serif"><b>    vtkSmartPointer&lt;vtkRenderWindowInteractor&gt;::New();</b></font></div>
<div><font face="arial, sans-serif"><b>  renderWindowInteractor-&gt;SetRenderWindow(renderWindow);</b></font></div><div><font face="arial, sans-serif"><b> </b></font></div><div><font face="arial, sans-serif"><b>  // Add the actors to the scene</b></font></div>
<div><font face="arial, sans-serif"><b>  renderer-&gt;AddActor(imageSlice);</b></font></div><div><font face="arial, sans-serif"><b>  renderer-&gt;SetBackground(.2, .3, .4);</b></font></div><div><font face="arial, sans-serif"><b> </b></font></div>
<div><font face="arial, sans-serif"><b>  // Set the camera for viewing medical images</b></font></div><div><font face="arial, sans-serif"><b>  renderer-&gt;GetActiveCamera()-&gt;SetViewUp(0,0,1);</b></font></div><div><font face="arial, sans-serif"><b>  renderer-&gt;GetActiveCamera()-&gt;SetPosition(0,0,0);</b></font></div>
<div><font face="arial, sans-serif"><b>  renderer-&gt;GetActiveCamera()-&gt;SetFocalPoint(0,1,0);</b></font></div><div><font face="arial, sans-serif"><b>  renderer-&gt;ResetCamera();</b></font></div><div><font face="arial, sans-serif"><b> </b></font></div>
<div><font face="arial, sans-serif"><b>  // Render and interact</b></font></div><div><font face="arial, sans-serif"><b>  renderWindow-&gt;Render();</b></font></div><div><font face="arial, sans-serif"><b>  renderWindowInteractor-&gt;Start();</b></font></div>
<div><font face="arial, sans-serif"><b> </b></font></div><div><font face="arial, sans-serif"><b>  imageReader-&gt;Delete();</b></font></div><div><font face="arial, sans-serif"><b>  return EXIT_SUCCESS;</b></font></div></div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Jul 6, 2013 at 6:00 PM,  <span dir="ltr">&lt;<a href="mailto:vtkusers-request@vtk.org" target="_blank">vtkusers-request@vtk.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Send vtkusers mailing list submissions to<br>
        <a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:vtkusers-request@vtk.org">vtkusers-request@vtk.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:vtkusers-owner@vtk.org">vtkusers-owner@vtk.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of vtkusers digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: Is it possible to make an image slice of      unstructured<br>
      grid? (Ruff)<br>
   2. Reading a vti file with vtkStreamingDemandDrivenPipeline<br>
      (Brugger, Eric)<br>
   3. Re: Vtk 6.0 dotnet (Serge Lalonde)<br>
   4. Re: Vtk 6.0 dotnet (Serge Lalonde)<br>
   5. Re: Vtk 6.0 dotnet (David Gobbi)<br>
   6. Re: Memory management : pointer on VTK object (Alex Malyushytskyy)<br>
   7. Re: Vtk 6.0 dotnet (Alex Malyushytskyy)<br>
   8. Re: Contouring Irregular Points (yoshiyuki yamamoto)<br>
   9. Re: A Simple Question on vtkContourFilter (Bill Lorensen)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Fri, 5 Jul 2013 09:02:16 -0700 (PDT)<br>
From: Ruff &lt;<a href="mailto:albin.nilsson@gmail.com">albin.nilsson@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Is it possible to make an image slice of<br>
        unstructured grid?<br>
To: <a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373040136371-5721800.post@n5.nabble.com">1373040136371-5721800.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Found something that works in taking my structured points as vtkImageData,<br>
which can be used as input in vtkSmartVolumeMapper.<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Is-it-possible-to-make-an-image-slice-of-unstructured-grid-tp5721777p5721800.html" target="_blank">http://vtk.1045678.n5.nabble.com/Is-it-possible-to-make-an-image-slice-of-unstructured-grid-tp5721777p5721800.html</a><br>

Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Fri, 5 Jul 2013 17:48:09 +0000<br>
From: &quot;Brugger, Eric&quot; &lt;<a href="mailto:brugger1@llnl.gov">brugger1@llnl.gov</a>&gt;<br>
Subject: [vtkusers] Reading a vti file with<br>
        vtkStreamingDemandDrivenPipeline<br>
To: &quot;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&quot; &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CC3D28099A24A34FA98E3F8E2B8944CC5475F2A8@PRDEXMBX-04.the-lab.llnl.gov">CC3D28099A24A34FA98E3F8E2B8944CC5475F2A8@PRDEXMBX-04.the-lab.llnl.gov</a>&gt;<br>
<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
Hi,<br>
<br>
I have a vti file with an image that is a portion of the entire extent (e.g.<br>
<br>
ImageData WholeExtent=&quot;0 532 0 532 0 0&quot;<br>
<br>
and<br>
<br>
Piece Extent=&quot;0 266 0 266 0 0&quot;<br>
<br>
When I read in the image it gives me an array that is 532 x 532 with a piece that is 266 x 266 that is filled in.<br>
<br>
How do I have the reader only return an array that is 266 x 266?<br>
<br>
I tried using the vtkStreamingDemandDrivenPipeline to do this with no luck.<br>
<br>
Thanks,<br>
<br>
Eric<br>
<br>
Here is the code I am using:<br>
<br>
*********************** START CODE FRAGMENT ********************<br>
<br>
vtkXMLImageDataReader *reader = vtkXMLImageDataReader::New();<br>
reader-&gt;SetFileName(&quot;image.vti&quot;);<br>
<br>
vtkInformation *outInfo = reader-&gt;GetExecutive()-&gt;GetOutputInformation(0);<br>
<br>
int ext[6];<br>
ext[0] = 0; ext[1] = 266; ext[2] = 0; ext[3] = 266; ext[4] = 0; ext[5] = 0;<br>
<br>
outInfo-&gt;Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), ext, 6);<br>
outInfo-&gt;Set(vtkStreamingDemandDrivenPipeline::EXACT_EXTENT(), 1);<br>
<br>
reader-&gt;Update();<br>
<br>
dataset = reader-&gt;GetOutput();<br>
<br>
*********************** END CODE FRAGMENT ********************<br>
<br>
Here is the image file without the data:<br>
<br>
&lt;VTKFile type=&quot;ImageData&quot; version=&quot;0.1&quot; byte_order=&quot;LittleEndian&quot;&gt;<br>
  &lt;ImageData WholeExtent=&quot;0 532 0 532 0 0&quot; Origin=&quot;0 0 0&quot; Spacing=&quot;1 1 1&quot;&gt;<br>
    &lt;Piece Extent=&quot;0 266 0 266 0 0&quot;&gt;<br>
      &lt;CellData Scalars=&quot;PNGImage&quot;&gt;<br>
        &lt;DataArray type=&quot;UInt8&quot; Name=&quot;PNGImage&quot; NumberOfComponents=&quot;4&quot;<br>
format=&quot;appended&quot; RangeMin=&quot;254&quot; RangeMax=&quot;487.94364429&quot; offset=&quot;0&quot;   /&gt;<br>
      &lt;/CellData&gt;<br>
    &lt;/Piece&gt;<br>
  &lt;/ImageData&gt;<br>
  &lt;AppendedData encoding=&quot;raw&quot;&gt;<br>
      ********** THE IMAGE DATA ********<br>
  &lt;/AppendedData&gt;<br>
&lt;/VTKFile&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130705/99a672b2/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130705/99a672b2/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Fri, 05 Jul 2013 14:27:07 -0400<br>
From: Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
Subject: Re: [vtkusers] Vtk 6.0 dotnet<br>
To: VTK Users &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:51D70FFB.3040104@infolytica.com">51D70FFB.3040104@infolytica.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130705/5b37cc47/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130705/5b37cc47/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Fri, 05 Jul 2013 15:19:30 -0400<br>
From: Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
Subject: Re: [vtkusers] Vtk 6.0 dotnet<br>
To: Domenico Quaranta &lt;<a href="mailto:n40.analysis@gmail.com">n40.analysis@gmail.com</a>&gt;, VTK Users<br>
        &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:51D71C42.9070600@infolytica.com">51D71C42.9070600@infolytica.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130705/2f091135/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130705/2f091135/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Fri, 5 Jul 2013 13:54:21 -0600<br>
From: David Gobbi &lt;<a href="mailto:david.gobbi@gmail.com">david.gobbi@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Vtk 6.0 dotnet<br>
To: VTK Users &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;CANwS1=Fzd0u_-Wj0TNPZf5psguMvz+0rreaU=<a href="mailto:Udrx8BzBQrSGw@mail.gmail.com">Udrx8BzBQrSGw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
I&#39;ll throw in my two cents here, not specifically about ActiViz but<br>
about Kickstarter in general.<br>
<br>
The average pledge amount is $70, with most backers giving $25 and a<br>
few especially generous backers giving much more.  So a $10000 project<br>
should only require around 150 backers.  That&#39;s not a huge number,<br>
considering that the VTK community has well over 10x that many<br>
members.  So the questions are 1) how to reach the community, since<br>
most community members don&#39;t read the vtkusers list on a regular basis,<br>
and 2) what kind of VTK Kickstarter projects would get widespread<br>
participation.<br>
<br>
I suspect that VTK book projects would find a lot of backers, and most<br>
people would be satisfied with a pdf rather than a hardcopy.<br>
<br>
 - David<br>
<br>
On Fri, Jul 5, 2013 at 1:19 PM, Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt; wrote:<br>
&gt; Hi Nico,<br>
&gt;<br>
&gt; Here&#39;s the link:<br>
&gt; <a href="http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510" target="_blank">http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510</a><br>
&gt;<br>
&gt; Note: Please reply to the list, not directly to me, so that others can<br>
&gt; benefit.<br>
&gt;<br>
&gt; On 7/5/2013 2:58 PM, Domenico Quaranta wrote:<br>
&gt;<br>
&gt; Serge,<br>
&gt; please provide the link<br>
&gt; I&#39;m very interested, on behalf of the consultancy company I work for.<br>
&gt; I&#39;m developing the software StructLife, which uses VTK (see<br>
&gt; <a href="http://www.structcode.com" target="_blank">www.structcode.com</a>).and currently I&#39;m using Activiz for the .net wrapper.<br>
&gt;<br>
&gt; Nico<br>
&gt;<br>
&gt;<br>
&gt; 2013/7/5 Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi Nico,<br>
&gt;&gt;<br>
&gt;&gt; I replied to the list for everyone&#39;s benefit.<br>
&gt;&gt;<br>
&gt;&gt; Click on the KickStarter link to get details. Basically people pledge<br>
&gt;&gt; whatever amounts they can. If enough money is pledged, the people who<br>
&gt;&gt; pledged are charged the money they promised (typically on a credit card) and<br>
&gt;&gt; the project gets done. If the funding goal is not met, no one is charged<br>
&gt;&gt; anything and the project is cancelled.<br>
&gt;&gt;<br>
&gt;&gt; BTW, I&#39;m Serge, not Dave. I just pledged for the project. Dave&#39;s contact<br>
&gt;&gt; info is in the KickStarter project page (the &quot;Contact me&quot; link on the<br>
&gt;&gt; right).<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On 7/5/2013 12:48 PM, Domenico Quaranta wrote:<br>
&gt;&gt;<br>
&gt;&gt; Dave,<br>
&gt;&gt; how does this thing work?<br>
&gt;&gt; Is it a free donation? Is it a fixed prize? What would the rules be?<br>
&gt;&gt;<br>
&gt;&gt; Nico<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2013/7/5 Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; David Cole started a KickStarter project to get enough money to fund the<br>
&gt;&gt;&gt; development of the updated .NET wrappers.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; <a href="http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510?ref=email" target="_blank">http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510?ref=email</a><br>

&gt;&gt;&gt;<br>
&gt;&gt;&gt; Unfortunately, the funding goal was far from being reached. It&#39;s too bad<br>
&gt;&gt;&gt; since a lot of people ask about it but few were willing to &quot;put their money<br>
&gt;&gt;&gt; where their mouth is&quot; so to speak. Maybe if he tries again, this time more<br>
&gt;&gt;&gt; people will pledge and it will get done. I for one would love to have the<br>
&gt;&gt;&gt; .NET wrappers updated and I&#39;m willing to pay for part of it if necessary.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 7/4/2013 4:00 PM, David E DeMarle wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; 5.8<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_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.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Signature <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a> &lt;http:://<a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a>&gt;<br>
&gt;&gt;&gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt;&gt;&gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a><br>
&gt;&gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt;&gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a><br>
&gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</a><br>
&gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Fri, 5 Jul 2013 15:01:19 -0700<br>
From: Alex Malyushytskyy &lt;<a href="mailto:alexmalvtk@gmail.com">alexmalvtk@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Memory management : pointer on VTK object<br>
To: Malsoaz James &lt;<a href="mailto:jmalsoaz@yahoo.fr">jmalsoaz@yahoo.fr</a>&gt;<br>
Cc: &quot;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&quot; &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAHR9pJ034QNjjQOEgWsokOVT00M%2BQoQLAjf6r7Fres6%2B9y3U3A@mail.gmail.com">CAHR9pJ034QNjjQOEgWsokOVT00M+QoQLAjf6r7Fres6+9y3U3A@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Try to add<br>
SetSource(NULL);<br>
calls after you register polydata<br>
<br>
polydata-&gt;Register(NULL);<br>
polydata-&gt;SetSource(NULL);<br>
.....<br>
output-&gt;Register(NULL);<br>
output-&gt;SetSource(NULL);<br>
<br>
Another source of extra memory usage may be memory granularity,<br>
If you say that DeepCopy helps it means deleting/allocationg memory at the<br>
same and bugger chunks helps to avoid granularity.<br>
In this case nothing you can do.<br>
<br>
<br>
In any case I would suggest to get<br>
<br>
vtkTransformPolyDataFilter * trFilter = vtkTransformPolyDataFilter::New();<br>
<br>
and<br>
   trFilter-&gt;Delete();<br>
out of loop.<br>
<br>
<br>
Regards,<br>
    Alex<br>
<br>
<br>
<br>
On Thu, Jul 4, 2013 at 12:33 AM, Malsoaz James &lt;<a href="mailto:jmalsoaz@yahoo.fr">jmalsoaz@yahoo.fr</a>&gt; wrote:<br>
<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;m experiencing troubles when copying pointers of VTK object.<br>
&gt;<br>
&gt; Let&#39;s say I want to apply transformation to a polydata recursively like<br>
&gt; this:<br>
&gt;<br>
&gt;     //Read STL<br>
&gt;     vtkSTLReader * reader = vtkSTLReader::New();<br>
&gt;     reader-&gt;SetFileName(&quot;1.stl&quot;);<br>
&gt;     reader-&gt;Update();<br>
&gt;<br>
&gt;     vtkPolyData * polydata = reader-&gt;GetOutput();<br>
&gt;     polydata-&gt;Register(NULL);<br>
&gt;     reader-&gt;Delete();<br>
&gt;<br>
&gt;     vtkTransform * tr = vtkTransform::New();<br>
&gt;     tr-&gt;Translate(5, 10, 1);<br>
&gt;     tr-&gt;Update();<br>
&gt;<br>
&gt;     for(int i = 0 ; i &lt; 1000 ; ++i)<br>
&gt;     {<br>
&gt;     std::cout &lt;&lt; i &lt;&lt; std::endl;<br>
&gt;     vtkTransformPolyDataFilter * trFilter =<br>
&gt; vtkTransformPolyDataFilter::New();<br>
&gt; trFilter-&gt;SetInput(polydata);<br>
&gt; trFilter-&gt;SetTransform(tr);<br>
&gt; trFilter-&gt;Update();<br>
&gt;<br>
&gt; vtkPolyData * output = trFilter-&gt;GetOutput();<br>
&gt; output-&gt;Register(NULL);<br>
&gt; trFilter-&gt;Delete();<br>
&gt;<br>
&gt; polydata-&gt;Delete();<br>
&gt; polydata = output;<br>
&gt;     }<br>
&gt;     tr-&gt;Delete();<br>
&gt;     polydata-&gt;Delete();<br>
&gt;<br>
&gt; This is working fine and I have no VTK leaks. Unfortunately, I&#39;m noticing<br>
&gt; that memory for my program increases instead of remaining constant.<br>
&gt; What&#39;s wrong with theses few lines?<br>
&gt;<br>
&gt; By the way, using DeepCopy to save output data is working:<br>
&gt; polydata = vtkPolyData::New();<br>
&gt; polydata-&gt;DeepCopy(output);<br>
&gt; output-&gt;Delete();<br>
&gt; But I would like to avoid to deep copy data when I only need to add a<br>
&gt; reference to the pointer. I also would like to avoid the use of<br>
&gt; vtkSmartPointer.<br>
&gt;<br>
&gt; Thank you for your help<br>
&gt; Best.<br>
&gt;<br>
&gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130705/4107fe77/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130705/4107fe77/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Fri, 5 Jul 2013 15:29:43 -0700<br>
From: Alex Malyushytskyy &lt;<a href="mailto:alexmalvtk@gmail.com">alexmalvtk@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Vtk 6.0 dotnet<br>
To: VTK Users &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAHR9pJ3YCXyPHLhN9zax5LNQUn2-c8Q0NthD0KxYy-Wfszf3jQ@mail.gmail.com">CAHR9pJ3YCXyPHLhN9zax5LNQUn2-c8Q0NthD0KxYy-Wfszf3jQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
I would not write this. if I did not see offense in one of the posts above<br>
targeted people who did not  &quot;put their money where their mouth is&quot; .<br>
You can&#39;t use number of people in vtk community as a total number of people<br>
interested in ActiViz.<br>
For example I do not care about anything beside C++. I know multiple people<br>
who do not care what happens on Windows.<br>
<br>
Also there is a huge difference between liking a feature and agree to<br>
finance the development.<br>
Also as for me I would trust more in the results of free development than<br>
in results of the projects developed using such financing.<br>
Assume you succeeded to collect money, and it was even enough to produce<br>
results you wanted which is not realistic in the area I live.<br>
What is going to happen when new vtk version is released and ActiViz need<br>
support?<br>
The code will need to be supported.<br>
Are you going to ask for a new donations every time?<br>
You have to realize that such questions are too serious  to ignore and<br>
there is no point to offend people who decided not to put their money in<br>
the project you support.<br>
<br>
Regards,<br>
     Alex<br>
<br>
<br>
<br>
On Fri, Jul 5, 2013 at 12:54 PM, David Gobbi &lt;<a href="mailto:david.gobbi@gmail.com">david.gobbi@gmail.com</a>&gt; wrote:<br>
<br>
&gt; I&#39;ll throw in my two cents here, not specifically about ActiViz but<br>
&gt; about Kickstarter in general.<br>
&gt;<br>
&gt; The average pledge amount is $70, with most backers giving $25 and a<br>
&gt; few especially generous backers giving much more.  So a $10000 project<br>
&gt; should only require around 150 backers.  That&#39;s not a huge number,<br>
&gt; considering that the VTK community has well over 10x that many<br>
&gt; members.  So the questions are 1) how to reach the community, since<br>
&gt; most community members don&#39;t read the vtkusers list on a regular basis,<br>
&gt; and 2) what kind of VTK Kickstarter projects would get widespread<br>
&gt; participation.<br>
&gt;<br>
&gt; I suspect that VTK book projects would find a lot of backers, and most<br>
&gt; people would be satisfied with a pdf rather than a hardcopy.<br>
&gt;<br>
&gt;  - David<br>
&gt;<br>
&gt; On Fri, Jul 5, 2013 at 1:19 PM, Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &gt; Hi Nico,<br>
&gt; &gt;<br>
&gt; &gt; Here&#39;s the link:<br>
&gt; &gt;<br>
&gt; <a href="http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510" target="_blank">http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510</a><br>
&gt; &gt;<br>
&gt; &gt; Note: Please reply to the list, not directly to me, so that others can<br>
&gt; &gt; benefit.<br>
&gt; &gt;<br>
&gt; &gt; On 7/5/2013 2:58 PM, Domenico Quaranta wrote:<br>
&gt; &gt;<br>
&gt; &gt; Serge,<br>
&gt; &gt; please provide the link<br>
&gt; &gt; I&#39;m very interested, on behalf of the consultancy company I work for.<br>
&gt; &gt; I&#39;m developing the software StructLife, which uses VTK (see<br>
&gt; &gt; <a href="http://www.structcode.com" target="_blank">www.structcode.com</a>).and currently I&#39;m using Activiz for the .net<br>
&gt; wrapper.<br>
&gt; &gt;<br>
&gt; &gt; Nico<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; 2013/7/5 Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Hi Nico,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I replied to the list for everyone&#39;s benefit.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Click on the KickStarter link to get details. Basically people pledge<br>
&gt; &gt;&gt; whatever amounts they can. If enough money is pledged, the people who<br>
&gt; &gt;&gt; pledged are charged the money they promised (typically on a credit<br>
&gt; card) and<br>
&gt; &gt;&gt; the project gets done. If the funding goal is not met, no one is charged<br>
&gt; &gt;&gt; anything and the project is cancelled.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; BTW, I&#39;m Serge, not Dave. I just pledged for the project. Dave&#39;s contact<br>
&gt; &gt;&gt; info is in the KickStarter project page (the &quot;Contact me&quot; link on the<br>
&gt; &gt;&gt; right).<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; On 7/5/2013 12:48 PM, Domenico Quaranta wrote:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Dave,<br>
&gt; &gt;&gt; how does this thing work?<br>
&gt; &gt;&gt; Is it a free donation? Is it a fixed prize? What would the rules be?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Nico<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; 2013/7/5 Serge Lalonde &lt;<a href="mailto:serge@infolytica.com">serge@infolytica.com</a>&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; David Cole started a KickStarter project to get enough money to fund<br>
&gt; the<br>
&gt; &gt;&gt;&gt; development of the updated .NET wrappers.<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; <a href="http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510?ref=email" target="_blank">http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510?ref=email</a><br>

&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; Unfortunately, the funding goal was far from being reached. It&#39;s too<br>
&gt; bad<br>
&gt; &gt;&gt;&gt; since a lot of people ask about it but few were willing to &quot;put their<br>
&gt; money<br>
&gt; &gt;&gt;&gt; where their mouth is&quot; so to speak. Maybe if he tries again, this time<br>
&gt; more<br>
&gt; &gt;&gt;&gt; people will pledge and it will get done. I for one would love to have<br>
&gt; the<br>
&gt; &gt;&gt;&gt; .NET wrappers updated and I&#39;m willing to pay for part of it if<br>
&gt; necessary.<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; On 7/4/2013 4:00 PM, David E DeMarle wrote:<br>
&gt; &gt;&gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;&gt; 5.8<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; &gt;&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_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.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt;<br>
&gt; &gt;&gt;&gt; --<br>
&gt; &gt;&gt;&gt; Signature <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a> &lt;http:://<a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a>&gt;<br>
&gt; &gt;&gt;&gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt; &gt;&gt;&gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</a><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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; &gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_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.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; --<br>
&gt; &gt;&gt; <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a><br>
&gt; &gt;&gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt; &gt;&gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</a><br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; <a href="http://www.infolytica.com" target="_blank">www.infolytica.com</a><br>
&gt; &gt; 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3<br>
&gt; &gt; <a href="tel:%28514%29%20849-8752%20x236" value="+15148498752">(514) 849-8752 x236</a>, Fax: <a href="tel:%28514%29%20849-4239" value="+15148494239">(514) 849-4239</a><br>
&gt; &gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; &gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt; &gt;<br>
&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt; &gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt; &gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130705/82e383e6/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130705/82e383e6/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Sat, 6 Jul 2013 11:51:48 +0900<br>
From: yoshiyuki yamamoto &lt;<a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a>&gt;<br>
Subject: Re: [vtkusers] Contouring Irregular Points<br>
To: Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
Cc: VTK Users &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;CABX0_CLH65DaPqGt1zZaGpXfL6J9D=<a href="mailto:pD5SpUkdoRP1sSHM6siQ@mail.gmail.com">pD5SpUkdoRP1sSHM6siQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-2022-jp&quot;<br>
<br>
Thank you Bill.<br>
The error was solved as shown in attached image by your instruction.<br>
<br>
<br>
2013/7/5 Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
<br>
&gt; You are probably building against a VTK5 that has qt enabled. try adding QVTK<br>
&gt; and qt libraries to the CMakeLists.txt line: target_link_libraries(TriangulateTerrainMap<br>
&gt; vtkHybrid)<br>
&gt;<br>
&gt; target_link_libraries(TriangulateTerrainMap vtkHybrid QVTK ${QT_LIBRARIES}<br>
&gt; )<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Jul 4, 2013 at 9:40 PM, yoshiyuki yamamoto &lt;<br>
&gt; <a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Thank you for your information.<br>
&gt;&gt;<br>
&gt;&gt; TriangulateTerrainMap was downloaded from below page you wrote.<br>
&gt;&gt; <a href="http://vtk.org/Wiki/VTK/Examples/Cxx/Filtering/TriangulateTerrainMap" target="_blank">http://vtk.org/Wiki/VTK/Examples/Cxx/Filtering/TriangulateTerrainMap</a><br>
&gt;&gt;<br>
&gt;&gt; But, I got cmake error as shown below.<br>
&gt;&gt; Could you tell me how to solve the error?<br>
&gt;&gt;<br>
&gt;&gt; y2-6:build yamamoto$ cmake ..<br>
&gt;&gt; -- The C compiler identification is GNU 4.2.1<br>
&gt;&gt; -- The CXX compiler identification is Clang 4.2.0<br>
&gt;&gt; -- Checking whether C compiler has -isysroot<br>
&gt;&gt; -- Checking whether C compiler has -isysroot - yes<br>
&gt;&gt; -- Checking whether C compiler supports OSX deployment target flag<br>
&gt;&gt; -- Checking whether C compiler supports OSX deployment target flag - yes<br>
&gt;&gt; -- Check for working C compiler: /usr/bin/gcc<br>
&gt;&gt; -- Check for working C compiler: /usr/bin/gcc -- works<br>
&gt;&gt; -- Detecting C compiler ABI info<br>
&gt;&gt; -- Detecting C compiler ABI info - done<br>
&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++<br>
&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++ -- works<br>
&gt;&gt; -- Detecting CXX compiler ABI info<br>
&gt;&gt;  -- Detecting CXX compiler ABI info - done<br>
&gt;&gt; -- Configuring done<br>
&gt;&gt; -- Generating done<br>
&gt;&gt; -- Build files have been written to:<br>
&gt;&gt; /Users/yamamoto/Downloads/TriangulateTerrainMap/build<br>
&gt;&gt; y2-6:build yamamoto$ make<br>
&gt;&gt; Scanning dependencies of target TriangulateTerrainMap<br>
&gt;&gt; [100%] Building CXX object<br>
&gt;&gt; CMakeFiles/TriangulateTerrainMap.dir/TriangulateTerrainMap.cxx.o<br>
&gt;&gt; In file included from<br>
&gt;&gt; /Users/yamamoto/Downloads/TriangulateTerrainMap/TriangulateTerrainMap.cxx:1:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkVersion.h:29:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkObject.h:41:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkObjectBase.h:43:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkIndent.h:24:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkSystemIncludes.h:40:<br>
&gt;&gt; In file included from /opt/local/include/vtk-5.10/vtkIOStream.h:108:<br>
&gt;&gt; In file included from /usr/include/c++/4.2.1/backward/strstream:51:<br>
&gt;&gt; /usr/include/c++/4.2.1/backward/backward_warning.h:32:2: warning: This<br>
&gt;&gt; file<br>
&gt;&gt;       includes at least one deprecated or antiquated header. Please<br>
&gt;&gt; consider<br>
&gt;&gt;       using one of the 32 headers found in section 17.4.1.2 of the C++<br>
&gt;&gt; standard.<br>
&gt;&gt;       Examples include substituting the &lt;X&gt; header for the &lt;X.h&gt; header<br>
&gt;&gt; for C++<br>
&gt;&gt;       includes, or &lt;iostream&gt; instead of the deprecated header<br>
&gt;&gt; &lt;iostream.h&gt;. To<br>
&gt;&gt;       disable this warning use -Wno-deprecated. [-W#warnings]<br>
&gt;&gt; #warning This file includes at least one deprecated or antiquated header.<br>
&gt;&gt; \<br>
&gt;&gt;  ^<br>
&gt;&gt; 1 warning generated.<br>
&gt;&gt; make[2]: *** No rule to make target `/opt/local/lib/libQtGui.dylib&#39;,<br>
&gt;&gt; needed by `TriangulateTerrainMap.app/Contents/MacOS/TriangulateTerrainMap&#39;.<br>
&gt;&gt;  Stop.<br>
&gt;&gt; make[1]: *** [CMakeFiles/TriangulateTerrainMap.dir/all] Error 2<br>
&gt;&gt; make: *** [all] Error 2<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2013/7/5 Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; Look at this example and substitute your own points:<br>
&gt;&gt;&gt; <a href="http://vtk.org/Wiki/VTK/Examples/Cxx/Filtering/TriangulateTerrainMap" target="_blank">http://vtk.org/Wiki/VTK/Examples/Cxx/Filtering/TriangulateTerrainMap</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Thu, Jul 4, 2013 at 8:06 AM, Michael Jackson &lt;<br>
&gt;&gt;&gt; <a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Can VTK create a contour plot of &quot;irregular&quot; points? What I mean is<br>
&gt;&gt;&gt;&gt; that I have a bunch of X,Y + intensity points but the X,Y points are NOT on<br>
&gt;&gt;&gt;&gt; a regular grid they are just &quot;Point Data&quot;. A collaborator of mine uses IDL<br>
&gt;&gt;&gt;&gt; to produce some plots from this data and I would like to use VTK for my own<br>
&gt;&gt;&gt;&gt; projects.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Thanks for any help.<br>
&gt;&gt;&gt;&gt; ___________________________________________________________<br>
&gt;&gt;&gt;&gt; Mike Jackson                    Principal Software Engineer<br>
&gt;&gt;&gt;&gt; BlueQuartz Software                            Dayton, Ohio<br>
&gt;&gt;&gt;&gt; <a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>              <a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;&gt;&gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_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.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Unpaid intern in BillsBasement at noware dot com<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</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; ????<br>
&gt;&gt; ?470-0392 ????????????1247<br>
&gt;&gt; TEL:(0565)48-8121?????FAX:(0565)48-0030????<br>
&gt;&gt; HP: <a href="http://www.ait.ac.jp/index.html" target="_blank">http://www.ait.ac.jp/index.html</a><br>
&gt;&gt; Mail: <a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a><br>
&gt;&gt;  ------------------------------------------------------------<br>
&gt;&gt; School of Civil Engineering, Department of Urban Environment,<br>
&gt;&gt; Faculty of Engineering,<br>
&gt;&gt; Aichi Institute of Technology.<br>
&gt;&gt; Yoshiyuki Yamamoto<br>
&gt;&gt; 1247 Yachikusa, Yakusa Cho, Toyota, Aichi 470-0392 JAPAN<br>
&gt;&gt; TEL:+81-565-48-8121 FAX:+81-565-48-0030<br>
&gt;&gt; HP: <a href="http://www.ait.ac.jp/index.html" target="_blank">http://www.ait.ac.jp/index.html</a><br>
&gt;&gt; Mail: <a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Unpaid intern in BillsBasement at noware dot com<br>
&gt;<br>
<br>
<br>
<br>
--<br>
 ------------------------------------------------------------<br>
?????????????????????<br>
????<br>
?470-0392 ????????????1247<br>
TEL:(0565)48-8121?????FAX:(0565)48-0030????<br>
HP: <a href="http://www.ait.ac.jp/index.html" target="_blank">http://www.ait.ac.jp/index.html</a><br>
Mail: <a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a><br>
 ------------------------------------------------------------<br>
School of Civil Engineering, Department of Urban Environment,<br>
Faculty of Engineering,<br>
Aichi Institute of Technology.<br>
Yoshiyuki Yamamoto<br>
1247 Yachikusa, Yakusa Cho, Toyota, Aichi 470-0392 JAPAN<br>
TEL:+81-565-48-8121 FAX:+81-565-48-0030<br>
HP: <a href="http://www.ait.ac.jp/index.html" target="_blank">http://www.ait.ac.jp/index.html</a><br>
Mail: <a href="mailto:y_yamamoto@aitech.ac.jp">y_yamamoto@aitech.ac.jp</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130706/e78186a0/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130706/e78186a0/attachment-0001.htm</a>&gt;<br>

-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: ????????? 2013-07-06 11.51.14.png<br>
Type: image/png<br>
Size: 28046 bytes<br>
Desc: not available<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130706/e78186a0/attachment-0001.png" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130706/e78186a0/attachment-0001.png</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 9<br>
Date: Sat, 6 Jul 2013 08:05:55 -0400<br>
From: Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] A Simple Question on vtkContourFilter<br>
To: Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt;<br>
Cc: &quot;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&quot; &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;CADZJ4hPHaEvSiHVfd574-ibgaFZCZLyh=<a href="mailto:9nakJSDSG-9%2BSp9mQ@mail.gmail.com">9nakJSDSG-9+Sp9mQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
What is the range of your scalar data?<br>
<br>
<br>
<br>
On Fri, Jul 5, 2013 at 6:44 PM, Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt; wrote:<br>
<br>
&gt; Hello,<br>
&gt;       I have attached two images: the first one using &quot;skinExtractor<br>
&gt; SetValue 0 127.5&quot; and the second one &quot;skinExtractor SetValue 0  255&quot;. Both<br>
&gt; showing the very similar output. My question as binarization on image is<br>
&gt; performed, how the threshold has been calculated as both values showing the<br>
&gt; similar output.<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; Hayden.<br>
&gt;<br>
&gt;<br>
&gt;   ------------------------------<br>
&gt;  *From:* Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
&gt; *To:* Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt;<br>
&gt; *Cc:* &quot;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&quot; &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
&gt; *Sent:* Thursday, July 4, 2013 6:04 AM<br>
&gt;<br>
&gt; *Subject:* Re: [vtkusers] A Simple Question on vtkContourFilter<br>
&gt;<br>
&gt; If your data is 8 bit data, then the effect is similar to thresholding.<br>
&gt; Set the value to 127.5 and you will see an isosurface that has more<br>
&gt; character.<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Jul 3, 2013 at 4:14 PM, Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt;wrote:<br>
&gt;<br>
&gt; Hello,<br>
&gt;      Thanks for the reply. But I need a little  bit clarification. When I<br>
&gt; use &#39;skinExtractor SetValue 0 255&#39;, it generates one iso-surface. Does it<br>
&gt; threshold the image into a binary image?<br>
&gt;<br>
&gt; Thanks again.<br>
&gt;<br>
&gt; Hayden.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;   ------------------------------<br>
&gt;  *From:* Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
&gt; *To:* Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt;<br>
&gt; *Cc:* &quot;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&quot; &lt;<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>
&gt; *Sent:* Tuesday, July 2, 2013 3:45 PM<br>
&gt; *Subject:* Re: [vtkusers] A Simple Question on vtkContourFilter<br>
&gt;<br>
&gt; skinExtractor GenerateValues 4 0 255 will extract 4 isosurfaces<br>
&gt;      Value 0: 0<br>
&gt;       Value 1: 85<br>
&gt;       Value 2: 170<br>
&gt;       Value 3: 255<br>
&gt;<br>
&gt; where<br>
&gt; skinExtractor SetValue 0 255<br>
&gt; will extract 1 isosurface with value<br>
&gt; 255<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Jul 2, 2013 at 4:17 PM, Hayden Smith &lt;<a href="mailto:s_hayden_28@yahoo.com">s_hayden_28@yahoo.com</a>&gt;wrote:<br>
&gt;<br>
&gt; Hello,<br>
&gt;          I have a simple question on vtkContourFilter. What is the<br>
&gt; difference between  the following two pieces of code:<br>
&gt;<br>
&gt;         vtkContourFilter skinExtractor<br>
&gt;                                     skinExtractor SetInput [v16 GetOutput]<br>
&gt;                                     eval skinExtractor GenerateValues 4 0<br>
&gt; 255<br>
&gt;                                     skinExtractor Update<br>
&gt;<br>
&gt;<br>
&gt;        vtkContourFilter skinExtractor<br>
&gt;                                    skinExtractor SetInput [v16 GetOutput]<br>
&gt;                                    skinExtractor SetValue 0 255<br>
&gt;                                    skinExtractor Update<br>
&gt;<br>
&gt;<br>
&gt; If I use &#39;eval skinExtractor GenerateValues 4 0 255&#39; in vtkContourFilter,<br>
&gt; the reconstructed output is noisy whereas if I use &#39;skinExtractor SetValue<br>
&gt; 0 255&#39;, the output is better and much clear. Could any one clarify me how<br>
&gt; these two commands are making the difference in output?<br>
&gt; Thanks in advance.<br>
&gt;<br>
&gt;<br>
&gt; Hayden<br>
&gt;<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Unpaid intern in BillsBasement at noware dot com<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Unpaid intern in BillsBasement at noware dot com<br>
&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
--<br>
Unpaid intern in BillsBasement at noware dot com<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130706/fc89452b/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130706/fc89452b/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
vtkusers mailing list<br>
<a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br>
<br>
End of vtkusers Digest, Vol 111, Issue 12<br>
*****************************************<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><span style="color:rgb(0,0,255)"><b>Best  Regards<br>Rahul Indoria<br>Mobile No: +49-157-35652212</b></span><br></div>
</div></div>