<?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: Connected component labeling &#8211; Part 5</title>
	<atom:link href="http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/</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: max</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-24822</link>
		<dc:creator>max</dc:creator>
		<pubDate>Tue, 31 Jan 2012 20:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-24822</guid>
		<description>Is there any idea to do labeling the non-binary image. 
Thank you in advance. :)</description>
		<content:encoded><![CDATA[<p>Is there any idea to do labeling the non-binary image.<br />
Thank you in advance. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anisa</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-24113</link>
		<dc:creator>Anisa</dc:creator>
		<pubDate>Thu, 21 Apr 2011 12:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-24113</guid>
		<description>&lt;pre&gt;
Hi Steve,

The information u provided is very useful for me.I am finding a connected component in binary image using bwlabel.But I am not getting the proper result.What actually I want to find in face image is nose,eyes,mouth etc.How can I find it?

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<pre>
Hi Steve,

The information u provided is very useful for me.I am finding a connected component in binary image using bwlabel.But I am not getting the proper result.What actually I want to find in face image is nose,eyes,mouth etc.How can I find it?
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23647</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 23 Oct 2010 03:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23647</guid>
		<description>Thanks Steve :) That clears the point.</description>
		<content:encoded><![CDATA[<p>Thanks Steve :) That clears the point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23646</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 22 Oct 2010 12:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23646</guid>
		<description>Mark&#8212;Unfortunately, intuition doesn&#039;t count for much when it comes to algorithm performance on modern memory architectures.  The flood-fill approach isn&#039;t very cache friendly.</description>
		<content:encoded><![CDATA[<p>Mark&mdash;Unfortunately, intuition doesn&#8217;t count for much when it comes to algorithm performance on modern memory architectures.  The flood-fill approach isn&#8217;t very cache friendly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23645</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 22 Oct 2010 09:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23645</guid>
		<description>Hi Steve,

What&#039;s the advantage of 2 passes algorithm over flood-fill? I find the latter pretty intuitive.

The only thing I can think of is that 2 passes algorithm *might* take less memory, but for common 1000x1000 images it wouldn&#039;t be a problem?</description>
		<content:encoded><![CDATA[<p>Hi Steve,</p>
<p>What&#8217;s the advantage of 2 passes algorithm over flood-fill? I find the latter pretty intuitive.</p>
<p>The only thing I can think of is that 2 passes algorithm *might* take less memory, but for common 1000&#215;1000 images it wouldn&#8217;t be a problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23595</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 11 Oct 2010 11:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23595</guid>
		<description>Ariel&#8212;You could label the five grayscale classes separately and then use regionprops to determine which have area under 4000. You&#039;ll need to write some code yourself to do it.</description>
		<content:encoded><![CDATA[<p>Ariel&mdash;You could label the five grayscale classes separately and then use regionprops to determine which have area under 4000. You&#8217;ll need to write some code yourself to do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ariel</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23594</link>
		<dc:creator>ariel</dc:creator>
		<pubDate>Sun, 10 Oct 2010 21:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23594</guid>
		<description>Steve, I want to lable conected components in greyscale image. 
I used kmeans to the image and it&#039;s now in 5 different grayscale classes. I want to lable all components(in diffent grayscale) with an area under 4000 
What can I do?</description>
		<content:encoded><![CDATA[<p>Steve, I want to lable conected components in greyscale image.<br />
I used kmeans to the image and it&#8217;s now in 5 different grayscale classes. I want to lable all components(in diffent grayscale) with an area under 4000<br />
What can I do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeevan</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23584</link>
		<dc:creator>jeevan</dc:creator>
		<pubDate>Fri, 08 Oct 2010 09:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-23584</guid>
		<description>how to do color image labelling</description>
		<content:encoded><![CDATA[<p>how to do color image labelling</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-22487</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 16 Dec 2009 11:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-22487</guid>
		<description>Fauzi&#8212;&lt;tt&gt;regionprops&lt;/tt&gt;</description>
		<content:encoded><![CDATA[<p>Fauzi&mdash;<tt>regionprops</tt></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fauzi</title>
		<link>http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-22485</link>
		<dc:creator>Fauzi</dc:creator>
		<pubDate>Wed, 16 Dec 2009 10:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2007/05/11/connected-component-labeling-part-5/#comment-22485</guid>
		<description>Thx Steve. I&#039;m using this CCL method to filter out small blob of noises from silhouette image. What I do is bwlabel the binary image and subtract the labeled component that has area lower than a threshold using a long loop.

Is there any shortcut or Matlab code that can compute the area of each of the connected component? It really takes time to finish to filter out the blobs.</description>
		<content:encoded><![CDATA[<p>Thx Steve. I&#8217;m using this CCL method to filter out small blob of noises from silhouette image. What I do is bwlabel the binary image and subtract the labeled component that has area lower than a threshold using a long loop.</p>
<p>Is there any shortcut or Matlab code that can compute the area of each of the connected component? It really takes time to finish to filter out the blobs.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

