As an interesting note, when I use BinaryDilateImageFilter and BinaryErodeImageFilter in place of DilateObjectMorphologyImageFilter and ErodeObjectMorphologyImageFilter, the images come out exactly as I expect. To me this is looking like a bug with DilateObjectMorphologyImageFilter and ErodeObjectMorphologyImageFilter.<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

</blockquote><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"></blockquote><br clear="all">Rohit<br>
<br><br><div class="gmail_quote">On Tue, Mar 2, 2010 at 11:24 AM, Rohit Saboo <span dir="ltr">&lt;<a href="mailto:rohit@cs.unc.edu">rohit@cs.unc.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hi Alberto,<br><br>I&#39;ll explain what I&#39;m doing in a bit. It may not be best for the purpose intended, however, the problem that I&#39;ve observed still should not be there. The closed structure always contains the original structure. However, if
you look closely at the images I have posted, the closed structure is thinner than the original one.<br>
<br>The structure that I&#39;m working with is a mandible. There are several issues with these images - holes, teeth, etc. The slices that I&#39;ve posted do not have holes, but the error can be seen more easily here. Further, the particular image that I produced is developed by a structuring element of radius 1. I&#39;ll use structuring elements of larger radii if there are larger holes.<br>


<br>The object is long and thin in some areas and blob-like in others. Further the direction in which the object is thin is not constant; so, I feel that using the same long thin structuring element everywhere may make things worse.<br>

<font color="#888888">
<br>Rohit</font><div><div></div><div class="h5"><br>
<br><br><div class="gmail_quote">On Tue, Mar 2, 2010 at 5:15 AM, Gomez, Alberto <span dir="ltr">&lt;<a href="mailto:alberto.gomez@kcl.ac.uk" target="_blank">alberto.gomez@kcl.ac.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">


Hello,<br>
<br>
I don&#39;t know if I had understood what you want to do. The original image you are using is &quot;already closed&quot;, unless you want to link the two white figures. If that is the case, you wont be able to do that; a morphological close will only &quot;fill&quot; blanks or holes which are smaller than the  full figure (and that the structuring element). You are using an structuring element (ball) of size 1, which means that you will not be able to close spaces bigger than 1.<br>



<br>
Apart from that, I think the results you are getting are coherent, although it is difficult to say without knowing the image resolution.<br>
<br>
Please, can you explain in more detail what you expect to get?<br>
<br>
Finally, If you want to close long and thin objects, the ball is probably not the best kernel, try something with the same shape as the object.<br>
<br>
hth<br>
<br>
Alberto<div><div></div><div><br>
<br>
<br>
Rohit Saboo wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello:<br>
<br>
I&#39;m trying to do a morphological close by dilating the input image and then following it with the input image. However, it seems that I&#39;m not using the filters properly because the results don&#39;t look like the result of a close operation. Can someone point out to me what I&#39;m doing wrong.<br>



<br>
Axial slices of the images (at the same position) are at the following locations:<br>
1. original image   -  <a href="http://www.cs.unc.edu/%7Erohit/stuff/original.png" target="_blank">http://www.cs.unc.edu/~rohit/stuff/original.png</a><br>
2. (intermediate) dilated image   -  <a href="http://www.cs.unc.edu/%7Erohit/stuff/dilated.png" target="_blank">http://www.cs.unc.edu/~rohit/stuff/dilated.png</a><br>
3. (final) closed image   -  <a href="http://www.cs.unc.edu/%7Erohit/stuff/closed.png" target="_blank">http://www.cs.unc.edu/~rohit/stuff/closed.png</a><br>
<br>
I&#39;m including the parts of the code related to the close operation. The function below is called with a radius of 1.<br>
<br>
typedef unsigned short Pixel;<br>
typedef Image&lt;Pixel, 3&gt; ImageType;<br>
typedef ImageType::Pointer ImagePointer;<br>
<br>
ImagePointer closeImage( ImagePointer image, const unsigned int radius )<br>
{<br>
    // The ball structuring element:<br>
    typedef BinaryBallStructuringElement&lt;Pixel, 3&gt; Kernel;<br>
    // The dilation filter<br>
    typedef DilateObjectMorphologyImageFilter&lt;ImageType, ImageType, Kernel&gt; DilateFilter;<br>
    // The erosion filter<br>
    typedef ErodeObjectMorphologyImageFilter&lt;ImageType, ImageType, Kernel&gt; ErodeFilter;<br>
<br>
    // Create the structuring element:<br>
    cout &lt;&lt; &quot;Creating structuring element ... &quot; &lt;&lt; flush;<br>
    Kernel ball;<br>
    ball.SetRadius(radius);<br>
    ball.CreateStructuringElement();<br>
    cout &lt;&lt; &quot;done&quot; &lt;&lt; endl;<br>
<br>
    writeImage&lt;ImageType&gt;(image, &quot;original.mhd&quot;);<br>
<br>
    // Now do the close operation<br>
    cout &lt;&lt; &quot;Dilating ... &quot; &lt;&lt; flush;<br>
    DilateFilter::Pointer closeDilate   = DilateFilter::New();<br>
    closeDilate-&gt;SetObjectValue(1);<br>
    closeDilate-&gt;SetKernel(ball);<br>
    closeDilate-&gt;SetInput(image);<br>
    closeDilate-&gt;Update();<br>
    cout &lt;&lt; &quot;done&quot; &lt;&lt; endl;<br>
    writeImage&lt;ImageType&gt;(closeDilate-&gt;GetOutput(), &quot;dilated.mhd&quot;);<br>
<br>
    cout &lt;&lt; &quot;Eroding ... &quot; &lt;&lt; flush;<br>
    ErodeFilter::Pointer closeErode = ErodeFilter::New();<br>
    closeErode-&gt;SetObjectValue(1);<br>
    closeErode-&gt;SetKernel(ball);<br>
    closeErode-&gt;SetInput(closeDilate-&gt;GetOutput());<br>
    closeErode-&gt;Update();<br>
    cout &lt;&lt; &quot;done&quot; &lt;&lt; endl;<br>
    writeImage&lt;ImageType&gt;(closeErode-&gt;GetOutput(), &quot;closed.mhd&quot;);<br>
<br>
    return closeErode-&gt;GetOutput();<br>
}<br>
<br>
<br>
Rohit<br>
<br>
  <br>
</blockquote>
<br>
<br></div></div>
-- <br>
<br>
Alberto Gómez<br>
<br>
/Division of Imaging Sciences<br>
The Rayne Institute<br>
4th Floor, Lambeth Wing<br>
St Thomas&#39; Hospital<br>
London SE1 7EH /<br>
<br>
phone: +44 (0) 20 718 88364<br>
email: <a href="mailto:alberto.gomez@kcl.ac.uk" target="_blank">alberto.gomez@kcl.ac.uk</a> &lt;mailto:<a href="mailto:alberto.gomez@kcl.ac.uk" target="_blank">alberto.gomez@kcl.ac.uk</a>&gt;<br>
<br>
</blockquote></div><br>
</div></div></blockquote></div><br>