<?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: Opening by reconstruction</title>
	<atom:link href="http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/</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>Sat, 11 Feb 2012 18:27:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: L. Jégou</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-24257</link>
		<dc:creator>L. Jégou</dc:creator>
		<pubDate>Sun, 05 Jun 2011 07:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-24257</guid>
		<description>Thanks for this example, i&#039;m testing the reconstruction operation in an image segmentation process, inspired by : http://rfv.insa-lyon.fr/~jolion/IP2000/report/node41.html</description>
		<content:encoded><![CDATA[<p>Thanks for this example, i&#8217;m testing the reconstruction operation in an image segmentation process, inspired by : <a href="http://rfv.insa-lyon.fr/~jolion/IP2000/report/node41.html" rel="nofollow">http://rfv.insa-lyon.fr/~jolion/IP2000/report/node41.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uma Ranjan</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-23665</link>
		<dc:creator>Uma Ranjan</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-23665</guid>
		<description>The marker image is the one which has the &quot;seed points&quot;. The mask image is the original image (in this case, bw). You obviously cannot have seed points which are more than the number of image pixels.</description>
		<content:encoded><![CDATA[<p>The marker image is the one which has the &#8220;seed points&#8221;. The mask image is the original image (in this case, bw). You obviously cannot have seed points which are more than the number of image pixels.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raymond</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-23634</link>
		<dc:creator>Raymond</dc:creator>
		<pubDate>Thu, 21 Oct 2010 06:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-23634</guid>
		<description>The function need the same size between marker and mask. BTW,the value of marker should be smaller or equal to the mask.</description>
		<content:encoded><![CDATA[<p>The function need the same size between marker and mask. BTW,the value of marker should be smaller or equal to the mask.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fer</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-22975</link>
		<dc:creator>fer</dc:creator>
		<pubDate>Mon, 12 Apr 2010 15:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-22975</guid>
		<description>I keep on getting this error message when I try to use imreconstruct:

&quot;???MARKER pixels must be &lt;= MASK pixels&quot;

Can anybody help me out?</description>
		<content:encoded><![CDATA[<p>I keep on getting this error message when I try to use imreconstruct:</p>
<p>&#8220;???MARKER pixels must be &lt;= MASK pixels&#8221;</p>
<p>Can anybody help me out?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-20938</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 01 Aug 2008 11:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-20938</guid>
		<description>Shalin&#8212;The Image Processing Toolbox function &lt;tt&gt;imclearborder&lt;/tt&gt; uses the method you describe to remove objects touching the image border.  The function &lt;tt&gt;imreconstruct&lt;/tt&gt; supports gray-scale image reconstruction.</description>
		<content:encoded><![CDATA[<p>Shalin&mdash;The Image Processing Toolbox function <tt>imclearborder</tt> uses the method you describe to remove objects touching the image border.  The function <tt>imreconstruct</tt> supports gray-scale image reconstruction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shalin</title>
		<link>http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-20936</link>
		<dc:creator>Shalin</dc:creator>
		<pubDate>Fri, 01 Aug 2008 04:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/2008/07/14/opening-by-reconstruction/#comment-20936</guid>
		<description>Hi Steve,  there is a neat use of opening by reconstruction in counting cells from segmented light microscope images. When quantifying number of cells from a given image, one usually wants to discard the cells that fall on the edge of the image. Those cells may skew the statistics of the measurements being made as they do not present the &#039;whole&#039; picture. The method works by reconstructing the cells on the edge and then subtracting them from original image. It will be interesting to know if there is an approach to reconstruct gray-scale image? What would we use instead of flood-fill? I first came across this during a talk by Pascal Valloton.</description>
		<content:encoded><![CDATA[<p>Hi Steve,  there is a neat use of opening by reconstruction in counting cells from segmented light microscope images. When quantifying number of cells from a given image, one usually wants to discard the cells that fall on the edge of the image. Those cells may skew the statistics of the measurements being made as they do not present the &#8216;whole&#8217; picture. The method works by reconstructing the cells on the edge and then subtracting them from original image. It will be interesting to know if there is an approach to reconstruct gray-scale image? What would we use instead of flood-fill? I first came across this during a talk by Pascal Valloton.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

