I have a Brain MRI dataset which I cut into halp using a clipPolyData Class.<br> Since I cut off from the medial plane. THere is a hole where the cut is made and I can look in the interior. I want to fill up this hole with a fake surface.<br> <br> What will be the best method to do that ..<br> <br> Currently I am trying to do this . But I doesnt work for me.<br> <br>    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="Generator" content="Kate, the KDE Advanced Text Editor">  <pre>vtkPolyDataNormals *normals = vtkPolyDataNormals::New();  normals-&gt;SetInput(leftMRI);   vtkClipPolyData *clipData =  vtkClipPolyData::New();  clipData-&gt;SetInput(normals-&gt;GetOutput());  clipData-&gt;SetClipFunction(yzPlane);  clipData-&gt;GenerateClipScalarsOn();  clipData-&gt;GenerateClippedOutputOn();  clipData-&gt;SetValue(<span style="color: rgb(0, 0, 255);">0</span>);  clipData-&gt;Update();   vtkCutter *cut = vtkCutter::New(); 
 cut-&gt;SetInput(normals-&gt;GetOutput());  cut-&gt;SetCutFunction(yzPlane);  cut-&gt;GenerateCutScalarsOn();  cut-&gt;SetValue(<span style="color: rgb(0, 0, 255);">0</span>,<span style="color: rgb(0, 0, 255);">0</span>);   vtkStripper *cutStrips = vtkStripper::New();  cutStrips-&gt;SetInput(cut-&gt;GetOutput());  cutStrips-&gt;Update();       vtkPolyData *cutPoly  = vtkPolyData::New();  cutPoly-&gt;SetPoints(cutStrips-&gt;GetOutput()-&gt;GetPoints());  cutPoly-&gt;SetPolys(cutStrips-&gt;GetOutput()-&gt;GetLines());  cutPoly-&gt;Update();   vtkTriangleFilter *cutTriangle = vtkTriangleFilter::New();  cutTriangle-&gt;SetInput(cutPoly);  <span style="color: rgb(128, 128, 128);"><i>//cutTriangle-&gt;PassLinesOff();</i></span>  <span style="color: rgb(128, 128, 128);"><i>//cutStrips-&gt;Delete();</i></span>  <span style="color: rgb(128, 128, 128);"><i>//cut-&gt;Delete();</i></span>   vtkAppendPolyData *append = vtkAppendPolyData::New();  append-&gt;AddInput(clipData-&gt;GetOutput()); 
 <span style="color: rgb(128, 128, 128);"><i>append-&gt;AddInput(cutTriangle-&gt;GetOutput());</i></span>  append-&gt;Update();  leftMRI-&gt;ShallowCopy(append-&gt;GetOutput());  leftMRI-&gt;Update();  <br><br>Any ideas<br><br>Darshan<br></pre><br> <p>
                <hr size=1>Yahoo! Mail<br>
Bring photos to life! <a href="http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=39174/*http://photomail.mail.yahoo.com">New PhotoMail </a> makes sharing a breeze.