<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Pad values in dilation and erosion</title>
	<atom:link href="http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/</link>
	<description>Steve Eddins manages the Image &#38; Geospatial development team at The MathWorks and coauthored Digital Image Processing Using MATLAB. He writes here about image processing concepts, algorithm implementations, and MATLAB.</description>
	<lastBuildDate>Fri, 10 Feb 2012 18:55:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-21913</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 25 Jun 2009 11:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-21913</guid>
		<description>Similar to convolution, in dilation the structuring element is reflected through its center (rotated 180 degrees) before the max operation is applied.  This definition of dilation is common but not universal.  I believe it is more common in Europe to define dilation without the reflection.</description>
		<content:encoded><![CDATA[<p>Similar to convolution, in dilation the structuring element is reflected through its center (rotated 180 degrees) before the max operation is applied.  This definition of dilation is common but not universal.  I believe it is more common in Europe to define dilation without the reflection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jogging</title>
		<link>http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-21912</link>
		<dc:creator>Jogging</dc:creator>
		<pubDate>Thu, 25 Jun 2009 03:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-21912</guid>
		<description>Hi, Steve
    I don&#039;t understand the result of imdilate
(f, [1 0 0]).Take 23 of the first row,
the output should be the maximum value of all 
the pixels in the input pixel&#039;s neighborhood 
under the structuring element.The neighbors are
22    23    15, and the structuring element is 
1 0 0.So the neighbor used for compute maximum 
value should only be 22. So the output should be
22.But the matlab gives the output of 15.
I can&#039;t explain it.

Best Regards
Jogging</description>
		<content:encoded><![CDATA[<p>Hi, Steve<br />
    I don&#8217;t understand the result of imdilate<br />
(f, [1 0 0]).Take 23 of the first row,<br />
the output should be the maximum value of all<br />
the pixels in the input pixel&#8217;s neighborhood<br />
under the structuring element.The neighbors are<br />
22    23    15, and the structuring element is<br />
1 0 0.So the neighbor used for compute maximum<br />
value should only be 22. So the output should be<br />
22.But the matlab gives the output of 15.<br />
I can&#8217;t explain it.</p>
<p>Best Regards<br />
Jogging</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-19469</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 29 Jan 2008 01:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-19469</guid>
		<description>Eric&#8212;&quot;Ideal&quot; by what criterion?  Every common structuring element shape has its own valid uses.  &lt;tt&gt;strel(&#039;disk&#039;,...)&lt;/tt&gt; is intended to be used to create a &quot;circular&quot; structuring element.  However, by default it creates a structuring element that is only approximately circular.  It does this in order to make a decomposed structuring element that is much faster to compute.  Use &lt;tt&gt;strel(&#039;disk&#039;,R,0)&lt;/tt&gt; to get a true circular structuring element. Just keep in mind that computing dilations and erosions with it will be slower.  Use &lt;tt&gt;imshow(getnhood(se))&lt;/tt&gt; to display the structuring element neighborhood as an image.</description>
		<content:encoded><![CDATA[<p>Eric&mdash;&#8221;Ideal&#8221; by what criterion?  Every common structuring element shape has its own valid uses.  <tt>strel('disk',...)</tt> is intended to be used to create a &#8220;circular&#8221; structuring element.  However, by default it creates a structuring element that is only approximately circular.  It does this in order to make a decomposed structuring element that is much faster to compute.  Use <tt>strel('disk',R,0)</tt> to get a true circular structuring element. Just keep in mind that computing dilations and erosions with it will be slower.  Use <tt>imshow(getnhood(se))</tt> to display the structuring element neighborhood as an image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-19458</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Mon, 28 Jan 2008 19:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/03/23/pad-values-in-dilation-and-erosion/#comment-19458</guid>
		<description>I am working with medical image segmentation software specifically for calcifications in coronary arteries.  Our simulations use circular calcifications that I&#039;d like to use image segmentation to characterize.  It&#039;s my understanding that the ideal structural element to use for morphology (imopen etc..) is a circular structuring element.  I&#039;ve noticed that MATLAB seems to be missing this feature 2007a (student).

I was wondering about circular structuring elements.  Is there a way to choose settings for the MATLAB disk structuring element to get a circle? 

Also is there a way to imshow(structureing_element) so I could visually verify it&#039;s circular.  The thing is that imshow doesn&#039;t seem to like structuring elements.

Thank you!

-Eric</description>
		<content:encoded><![CDATA[<p>I am working with medical image segmentation software specifically for calcifications in coronary arteries.  Our simulations use circular calcifications that I&#8217;d like to use image segmentation to characterize.  It&#8217;s my understanding that the ideal structural element to use for morphology (imopen etc..) is a circular structuring element.  I&#8217;ve noticed that MATLAB seems to be missing this feature 2007a (student).</p>
<p>I was wondering about circular structuring elements.  Is there a way to choose settings for the MATLAB disk structuring element to get a circle? </p>
<p>Also is there a way to imshow(structureing_element) so I could visually verify it&#8217;s circular.  The thing is that imshow doesn&#8217;t seem to like structuring elements.</p>
<p>Thank you!</p>
<p>-Eric</p>
]]></content:encoded>
	</item>
</channel>
</rss>

