Thanks.  Since I&#39;m using vtkJavaGarbageCollector I&#39;m already using vtkGlobalJavaHash.GC();.  The main questions that I currently still need answered are here<div>1.  <span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; ">hould I have to call System.gc(); and System.runFinalization(); frequently with VTK+Java?  It appears the memory is managed better when calling these lines every time </span>vtkGlobalJavaHash.GC() is called, but I don&#39;t know if this is necessary.</div>
<div>2.  Is it ok to reuse Java variables?  Such as</div><div><br></div><div><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; "><div>vtkImageData image = filter.GetOuput();</div>
<div><br></div><div>// Do Stuff</div><div><br></div><div>image = filter2.GetOuput();</div><div><br></div><div>3.   Is it OK to move around java objects without an intermediate reference?  Such as</div><div></div></span><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; "><div>
image1.SetOutputSpacing(image2.GetSpacing());</div><div><br></div><div>Thanks for all your help!</div></span><br><div class="gmail_quote">On Mon, Mar 28, 2011 at 6:54 PM, Sebastien Jourdain <span dir="ltr">&lt;<a href="mailto:sebastien.jourdain@kitware.com">sebastien.jourdain@kitware.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi Jonathan,<br>
<br>
Did I say Java reference count ? I think I was talking about the C++<br>
layer that use reference count to delete unused VTK object. Depending<br>
on the way you are doing things in Java, you can messed up that count<br>
and therefore the vtkObject never get deleted as the C++ layer thinks<br>
that reference is still used somewhere else.<br>
<br>
Regarding some of your questions (please ask them again if I miss some<br>
in a single mail) here are some concept that are behind.<br>
<br>
If you call a method GetXXX() which return an object that has been<br>
defined in the VTK library (in the C++ layer), you must use an<br>
intermediate variable before assigning it to another SetXXX() vtk<br>
object method.<br>
Remarque: Java method name should have there first letter in lower<br>
case which is not the case for the VTK ones. That could help to know<br>
when you should do what.<br>
<br>
Moreover, to clear the VTK object associated to the Java ones, you do<br>
need to call<br>
<br>
vtkGlobalJavaHash.GC();<br>
<br>
Otherwise they never get released. This is to prevent thread crash in<br>
using VTK inside a multi-threaded java application. I mean by that, it<br>
is the responsibility of the developer to call that method at the<br>
right time as VTK is not thread safe.<br>
<br>
Good luck,<br>
<br>
Seb<br>
<div><div></div><div class="h5"><br>
<br>
On Mon, Mar 28, 2011 at 9:24 PM, Jonathan Morra &lt;<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>&gt; wrote:<br>
&gt; Sorry for the barrage of questions, but I am really excited to get this<br>
&gt; working.  Is it OK to move around java objects without an intermediate<br>
&gt; reference?  Such as<br>
&gt; image1.SetOutputSpacing(image2.GetSpacing());<br>
&gt;<br>
&gt; On Mon, Mar 28, 2011 at 6:18 PM, Jonathan Morra &lt;<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Also, is it ok to reuse Java variables?  Such as<br>
&gt;&gt; vtkImageData image = filter.GetOuput();<br>
&gt;&gt; // Do Stuff<br>
&gt;&gt; image = filter2.GetOuput();<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Mar 28, 2011 at 5:19 PM, Jonathan Morra &lt;<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Should I have to call System.gc(); and System.runFinalization();<br>
&gt;&gt;&gt; frequently with VTK+Java?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Mon, Mar 28, 2011 at 5:05 PM, Jonathan Morra &lt;<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; OK, can you explain what you mean by Java reference count?  Here&#39;s some<br>
&gt;&gt;&gt;&gt; example code that doesn&#39;t seem to be working well.  Every time I run it I<br>
&gt;&gt;&gt;&gt; seem to accumulate memory I don&#39;t want.  Also, I&#39;m using<br>
&gt;&gt;&gt;&gt; vtkJavaGarbageCollector<br>
&gt;&gt;&gt;&gt;         vtkLinearExtrusionFilter extruder = new<br>
&gt;&gt;&gt;&gt; vtkLinearExtrusionFilter();<br>
&gt;&gt;&gt;&gt;         extruder.SetInput(data);<br>
&gt;&gt;&gt;&gt;         extruder.Update();<br>
&gt;&gt;&gt;&gt;         vtkPolyData extruderOutput = extruder.GetOutput();<br>
&gt;&gt;&gt;&gt;         vtkPolyDataToImageStencil pol2Stenc = new<br>
&gt;&gt;&gt;&gt; vtkPolyDataToImageStencil();<br>
&gt;&gt;&gt;&gt;         pol2Stenc.SetTolerance(0);<br>
&gt;&gt;&gt;&gt;         pol2Stenc.SetInput(extruderOutput);<br>
&gt;&gt;&gt;&gt;         pol2Stenc.SetInformationInput(binaryOrgan);<br>
&gt;&gt;&gt;&gt;         pol2Stenc.Update();<br>
&gt;&gt;&gt;&gt;         vtkImageStencilData pol2StencOutput = pol2Stenc.GetOutput();<br>
&gt;&gt;&gt;&gt;         vtkImageStencil stencil = new vtkImageStencil();<br>
&gt;&gt;&gt;&gt;         stencil.SetInput(binaryOrgan);<br>
&gt;&gt;&gt;&gt;         stencil.ReverseStencilOn();<br>
&gt;&gt;&gt;&gt;         stencil.SetStencil(pol2StencOutput);<br>
&gt;&gt;&gt;&gt;         stencil.Update();<br>
&gt;&gt;&gt;&gt;         final vtkImageData stencilOutput = stencil.GetOutput();<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;             return stencilOutput;<br>
&gt;&gt;&gt;&gt; On Mon, Mar 28, 2011 at 4:58 PM, Sebastien Jourdain<br>
&gt;&gt;&gt;&gt; &lt;<a href="mailto:sebastien.jourdain@kitware.com">sebastien.jourdain@kitware.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Hi Jonathan,<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; You should start by reading that thread.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://markmail.org/thread/k3u7gvsqwkocwfo5" target="_blank">http://markmail.org/thread/k3u7gvsqwkocwfo5</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Seb<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; On Mon, Mar 28, 2011 at 7:44 PM, Jonathan Morra &lt;<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt; &gt; I&#39;ve been working with Java for a while now and can&#39;t seem to get my<br>
&gt;&gt;&gt;&gt;&gt; &gt; memory<br>
&gt;&gt;&gt;&gt;&gt; &gt; usage under control.  Is there anyone out there who&#39;s an expert in<br>
&gt;&gt;&gt;&gt;&gt; &gt; VTK+Java<br>
&gt;&gt;&gt;&gt;&gt; &gt; or at the very least has dealt with extensive memory usage in Java<br>
&gt;&gt;&gt;&gt;&gt; &gt; with VTK<br>
&gt;&gt;&gt;&gt;&gt; &gt; that could give me some advice or some reading material.<br>
&gt;&gt;&gt;&gt;&gt; &gt; Thanks<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; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&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; &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.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>