<div>Greetings all,</div><div><br></div><div>I use vtkVoxelContoursToSurfaceFilter generate mesh from a stack of contours.</div><div>My input contours have the resolution starting from 800x800 .</div><div>Here is a sample image - </div>
<div><br></div><div><a href="http://oi51.tinypic.com/2h7hpp1.jpg">http://oi51.tinypic.com/2h7hpp1.jpg</a></div><div><br></div><div><a href="http://oi53.tinypic.com/29yrsr5.jpg">http://oi53.tinypic.com/29yrsr5.jpg</a></div>
<div><br></div><div>Sometimes vtkVoxelContoursToSurfaceFilter  filter cannot allocate enough memory for the mesh/(or vertices?) because the resolution is too high.</div><div>So,I divide the original 2D coordinates with a constant value as follows:</div>
<div><br></div><div><br></div><div>//Create New PolyData</div><div>vtkSmartPointer&lt;vtkPolyData&gt; polyData = vtkSmartPointer&lt;vtkPolyData&gt;::New();</div><div><br></div><div>vtkSmartPointer&lt;vtkPoints&gt; points = vtkSmartPointer&lt;vtkPoints&gt;::New();</div>
<div>vtkSmartPointer&lt;vtkCellArray&gt; cells = vtkSmartPointer&lt;vtkCellArray&gt;::New();</div><div>points-&gt;SetNumberOfPoints(curve-&gt;getNodeCount() + 1);</div><div>cells-&gt;Allocate(1, curve-&gt;getNodeCount() + 1);</div>
<div>cells-&gt;InsertNextCell(curve-&gt;getNodeCount() + 1);</div><div><br></div><div>//&quot;tmp&quot; is the datastructure holding 2D coordinates of each node.</div><div><br></div><div>int curveNodeCounter = 0;</div><div>
<br></div><div>do {</div><div>  double nx = tmp-&gt;getX() / GLOBALSCALE;     //Divide original coordinate</div><div>  double ny = tmp-&gt;getY() / GLOBALSCALE;     //Divide original coordinate</div><div><br></div><div>  points-&gt;SetPoint(curveNodeCounter, nx, ny, nz);</div>
<div>  cells-&gt;InsertCellPoint(curveNodeCounter);</div><div>  curveNodeCounter++;</div><div>  tmp = tmp-&gt;getNextNode();</div><div><br></div><div>} while (tmp != head);</div><div><br></div><div>polyData-&gt;Initialize();</div>
<div>polyData-&gt;SetPolys(cells);</div><div>polyData-&gt;SetPoints(points);</div><div><br></div><div>At the moment this GLOBALSCALE is set to 5.But when I want to create mesh from the images with higher resolutions like 1000x1000 ,vtk crashing because it cannot alloate enough memory.</div>
<div>Again it works when its set to 15 , but then the meshes generated from smaller resolution  images (500x500) lose details.</div><div><br></div><div>Any tips on adjusting this  GLOBALSCALE depend on the resolution ?</div>
<div><br></div><div>thanks</div><div><br></div>