Hi again<br><br>I have some problems regarding the use of Level Set Methods. I have read the manual and I am now trying to use one of the example files,   LaplacianSegmentationLevelSetImageFilter.cxx.<br><br>With the 2D test image, 
BrainProtonDensitySlice.PNG and VentricleModel.PNG&nbsp;they&nbsp;use&nbsp;in&nbsp;the&nbsp;manual&nbsp;I&nbsp;get&nbsp;the&nbsp;same&nbsp;results&nbsp;as&nbsp;they&nbsp;do.&nbsp;However&nbsp;when&nbsp;I&nbsp;try&nbsp;with&nbsp;a 3D volume it does not go to well. <br>Images and code can be found at <a href="http://www.idi.ntnu.no/~rieck/dipp/">
http://www.idi.ntnu.no/~rieck/dipp/</a><br><br>speed.PNG is the model I give the&nbsp;filter,&nbsp;the&nbsp;initial&nbsp;segmentation&nbsp;for&nbsp;it&nbsp;to&nbsp;enhance.&nbsp;in.PNG&nbsp;is&nbsp;the&nbsp;image&nbsp;I&nbsp;want&nbsp;to&nbsp;segment.&nbsp;Levelset.PNG is the result of the LaplacianSegmentation. From code:
<br>  <br>diffusion-&gt;SetInput( image );<br>  laplacianSegmentation-&gt;SetInput( model );<br>  laplacianSegmentation-&gt;SetFeatureImage( diffusion-&gt;GetOutput() );<br>  thresholder-&gt;SetInput( laplacianSegmentation-&gt;GetOutput() );
<br><br>  //debug<br>  //ImageType::Pointer debug = laplacianSegmentation-&gt;GetOutput();<br>  //debug-&gt;Update();<br>  //return debug;<br><br>debug is here levelset.PNG.<br><br>This is sent trough a thresholding filter to get the final result, seen in 
result.PNG.<br><br><br>I have done the same thing with the 2D test image, and the corresponding laplacianSegmentation-&gt;GetOutput (VentricleLevelSet.png) does not look anything alike levelset.PNG.<br><br>I am doing something fundamentaly wrong? I have tried with a variety of parameters as well, without any luck. The parameters I used for these example images were:&nbsp;file1 file2 5&nbsp;1&nbsp;1&nbsp;-2&nbsp;0. 
<br><br><br>regards,<br>Christian.<br><br>