<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Dilation with linear structuring elements</title>
	<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/</link>
	<description>Steve Eddins manages the Image &#38; Geospatial development team at &#60;a href="http://www.mathworks.com/"&#62;The MathWorks&#60;/a&#62; and coauthored &#60;a href="http://www.mathworks.com/support/books/book5291.html?category=-1&#38;language=-1"&#62;Digital Image Processing Using MATLAB&#60;/a&#62;. He writes here about image processing concepts, algorithm implementations, and MATLAB.&#60;br&#62;&#60;br&#62;&#60;img&#62;</description>
	<pubDate>Mon, 23 Nov 2009 01:54:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-22261</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 29 Oct 2009 20:29:39 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-22261</guid>
		<description>Nazish&#8212;The error message suggests that you were trying to use the function erode, which was removed from the toolbox years ago.  Try using imerode instead.</description>
		<content:encoded><![CDATA[<p>Nazish&mdash;The error message suggests that you were trying to use the function erode, which was removed from the toolbox years ago.  Try using imerode instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nazish</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-22260</link>
		<dc:creator>Nazish</dc:creator>
		<pubDate>Thu, 29 Oct 2009 20:22:58 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-22260</guid>
		<description>when i am using imerode function in .m file it give error as under

?? Error using ==&#62; erode at 12
ERODE has been removed.  Use IMERODE instead.</description>
		<content:encoded><![CDATA[<p>when i am using imerode function in .m file it give error as under</p>
<p>?? Error using ==&gt; erode at 12<br />
ERODE has been removed.  Use IMERODE instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21998</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 24 Jul 2009 00:33:45 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21998</guid>
		<description>Sergey&#8212;Try using &lt;tt&gt;bitand&lt;/tt&gt; and &lt;tt&gt;bitor&lt;/tt&gt; instead of &lt;tt&gt;&#038;&lt;/tt&gt; and &lt;tt&gt;&#124;&lt;/tt&gt;.</description>
		<content:encoded><![CDATA[<p>Sergey&mdash;Try using <tt>bitand</tt> and <tt>bitor</tt> instead of <tt>&#038;</tt> and <tt>|</tt>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergey</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21986</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Tue, 21 Jul 2009 10:51:53 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21986</guid>
		<description>Hi Steve,
I use hit-and-miss transform for corner detection. It require a lot of computing time. I want to speed it up by bit packing. How can I do it.
initial code:
&lt;pre&gt;OBJ_ALL=(imerode(A,B1_1)&#38;imerode(~A,C1_1))&#124;(imerode(A,B1_2)&#38;imerode(~A,C1_2))&#124; ...
&lt;/pre&gt;

final code:
&lt;pre&gt;OBJ_ALL=bwunpack(imerode(A_packed,B1_1,'ispacked',A_size),A_size)&#38;bwunpack(imerode(A_packedI,C1_1,'ispacked',A_size),A_size)&#124; ...
&lt;/pre&gt;

Can I execute AND, OR operation without bwunpack and time missing?
Thank You.</description>
		<content:encoded><![CDATA[<p>Hi Steve,<br />
I use hit-and-miss transform for corner detection. It require a lot of computing time. I want to speed it up by bit packing. How can I do it.<br />
initial code:</p>
<pre>OBJ_ALL=(imerode(A,B1_1)&amp;imerode(~A,C1_1))|(imerode(A,B1_2)&amp;imerode(~A,C1_2))| ...
</pre>
<p>final code:</p>
<pre>OBJ_ALL=bwunpack(imerode(A_packed,B1_1,'ispacked',A_size),A_size)&amp;bwunpack(imerode(A_packedI,C1_1,'ispacked',A_size),A_size)| ...
</pre>
<p>Can I execute AND, OR operation without bwunpack and time missing?<br />
Thank You.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21608</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 24 Mar 2009 14:28:12 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21608</guid>
		<description>Thanks Steve!  I was indeed overanalyzing things; you’ve saved my bacon. Hail to you champion!</description>
		<content:encoded><![CDATA[<p>Thanks Steve!  I was indeed overanalyzing things; you’ve saved my bacon. Hail to you champion!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21606</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 24 Mar 2009 12:47:50 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21606</guid>
		<description>Paul&#8212;Maybe you're overanalyzing things?  If you pass a 3-D input image to &lt;tt&gt;imdilate&lt;/tt&gt;, it does 3-D dilation.  For example:

&lt;pre&gt;
bw_out = imdilate(bw, ones(3,3,3));
&lt;/pre&gt;

performs 3-D dilation with a 3-by-3-by-3 structuring element.

The situation is similar for flood filling.  If you want to do 3-D flood filling, just pass a 3-D image to &lt;tt&gt;imfill&lt;/tt&gt;.</description>
		<content:encoded><![CDATA[<p>Paul&mdash;Maybe you&#8217;re overanalyzing things?  If you pass a 3-D input image to <tt>imdilate</tt>, it does 3-D dilation.  For example:</p>
<pre>
bw_out = imdilate(bw, ones(3,3,3));
</pre>
<p>performs 3-D dilation with a 3-by-3-by-3 structuring element.</p>
<p>The situation is similar for flood filling.  If you want to do 3-D flood filling, just pass a 3-D image to <tt>imfill</tt>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21605</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 24 Mar 2009 12:37:51 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21605</guid>
		<description>Hi Steve
Could I please request a blog entry on 3D image (volume) dilation, perhaps as the first steps to a 3D flood filling algorithm? I’ve noticed a number of forum postings asking about 3D dilation and each time you mention that many of the image processing toolbox  morphological functions support nD-images. My Matlab skills appear to be lacking as I am unable to puzzle through the strel and imdilate help files to achieve even a simple binary 3D dilation :(</description>
		<content:encoded><![CDATA[<p>Hi Steve<br />
Could I please request a blog entry on 3D image (volume) dilation, perhaps as the first steps to a 3D flood filling algorithm? I’ve noticed a number of forum postings asking about 3D dilation and each time you mention that many of the image processing toolbox  morphological functions support nD-images. My Matlab skills appear to be lacking as I am unable to puzzle through the strel and imdilate help files to achieve even a simple binary 3D dilation :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21554</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 09 Mar 2009 13:02:15 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21554</guid>
		<description>Sunil&#8212;Sounds like you face some sort of camera calibration problem in order to determine the distance.  Try search for "camera calibration MATLAB".</description>
		<content:encoded><![CDATA[<p>Sunil&mdash;Sounds like you face some sort of camera calibration problem in order to determine the distance.  Try search for &#8220;camera calibration MATLAB&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sunil</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21548</link>
		<dc:creator>sunil</dc:creator>
		<pubDate>Fri, 06 Mar 2009 10:02:55 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21548</guid>
		<description>I want to automate the values used for structuring element.
I am using a structuring element of square. I am using it in motion detection.
My values should be automated based on the distance between the cameraand the object. How can i do it.Please post help to my mail.
Thank You..</description>
		<content:encoded><![CDATA[<p>I want to automate the values used for structuring element.<br />
I am using a structuring element of square. I am using it in motion detection.<br />
My values should be automated based on the distance between the cameraand the object. How can i do it.Please post help to my mail.<br />
Thank You..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21480</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 18 Feb 2009 01:48:02 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2008/12/31/dilation-with-linear-structuring-elements/#comment-21480</guid>
		<description>Rufus&#8212;I don't understand your comment about imopen. If you look in the M-file, you'll see that it does indeed do packing for 2-D binary images.  I'm afraid I don't have any other suggestions for your weather-chart analysis problem.</description>
		<content:encoded><![CDATA[<p>Rufus&mdash;I don&#8217;t understand your comment about imopen. If you look in the M-file, you&#8217;ll see that it does indeed do packing for 2-D binary images.  I&#8217;m afraid I don&#8217;t have any other suggestions for your weather-chart analysis problem.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
