<?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: Quick tip: Determining uniqueness of local maximum</title>
	<atom:link href="http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/</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: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-22901</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 23 Mar 2010 21:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-22901</guid>
		<description>Vr&#8212;Try this:

&lt;pre class=&quot;code&quot;&gt;
[r,c] = find(I == max(I(:)));
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Vr&mdash;Try this:</p>
<pre class="code">
[r,c] = find(I == max(I(:)));
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vr</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-22896</link>
		<dc:creator>Vr</dc:creator>
		<pubDate>Tue, 23 Mar 2010 04:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-22896</guid>
		<description>I have an image 128*128.. which has a pixel with max intensity 233. How can i find the coordinates of the pixel..?</description>
		<content:encoded><![CDATA[<p>I have an image 128*128.. which has a pixel with max intensity 233. How can i find the coordinates of the pixel..?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerti</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-22635</link>
		<dc:creator>Gerti</dc:creator>
		<pubDate>Fri, 22 Jan 2010 00:58:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-22635</guid>
		<description>This is in reference to one of Amir&#039;s earlier question, if I understood the question correctly. I found the max(x,y) of a given matrix A by using this method:

[max_val, x_max] = max(max(A)); %gives the column coordinate
[max_val, y_max] = max(max(A&#039;)); %notice the transpose. gives the row coordinate

I know that the same value will be written twice on max_val, but this is another way of obtaining (x_max, y_max) coordinates.</description>
		<content:encoded><![CDATA[<p>This is in reference to one of Amir&#8217;s earlier question, if I understood the question correctly. I found the max(x,y) of a given matrix A by using this method:</p>
<p>[max_val, x_max] = max(max(A)); %gives the column coordinate<br />
[max_val, y_max] = max(max(A&#8217;)); %notice the transpose. gives the row coordinate</p>
<p>I know that the same value will be written twice on max_val, but this is another way of obtaining (x_max, y_max) coordinates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: warith</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21747</link>
		<dc:creator>warith</dc:creator>
		<pubDate>Sat, 09 May 2009 20:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21747</guid>
		<description>sorry for the previous question I did not read the help carefully.

Thank you</description>
		<content:encoded><![CDATA[<p>sorry for the previous question I did not read the help carefully.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: warith</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21746</link>
		<dc:creator>warith</dc:creator>
		<pubDate>Sat, 09 May 2009 20:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21746</guid>
		<description>Hi there,

I have a 3D matrix and I want to find the local extrema of it. I mean the coordinates of points that are bigger/smaller than its 26 neighboors.

Can anybody help me ?

Thanks in advance !</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I have a 3D matrix and I want to find the local extrema of it. I mean the coordinates of points that are bigger/smaller than its 26 neighboors.</p>
<p>Can anybody help me ?</p>
<p>Thanks in advance !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21542</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 04 Mar 2009 13:26:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21542</guid>
		<description>Thank for your advice, Steve. It&#039;s really informative.</description>
		<content:encoded><![CDATA[<p>Thank for your advice, Steve. It&#8217;s really informative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21538</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 04 Mar 2009 12:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21538</guid>
		<description>Kevin&#8212;As you suggest, just use both &lt;tt&gt;imregionalmax&lt;/tt&gt; and &lt;tt&gt;imregionalmin&lt;/tt&gt;.</description>
		<content:encoded><![CDATA[<p>Kevin&mdash;As you suggest, just use both <tt>imregionalmax</tt> and <tt>imregionalmin</tt>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21534</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 04 Mar 2009 02:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21534</guid>
		<description>Hi Steve,
I meant &lt;a href=&quot;http://en.wikipedia.org/wiki/Maxima_and_minima&quot; rel=&quot;nofollow&quot;&gt;&#039;maxima and minima&#039;&lt;/a&gt;. I need to search out both of them. 
The fact that I can apply &#039;imregionalmax&#039; and &#039;imregionalmin&#039;, then union 2 sets. But it&#039;s great if there is any function that can do both of them probably :-).
Thank you for the quick reply.
Kevin</description>
		<content:encoded><![CDATA[<p>Hi Steve,<br />
I meant <a href="http://en.wikipedia.org/wiki/Maxima_and_minima" rel="nofollow">&#8216;maxima and minima&#8217;</a>. I need to search out both of them.<br />
The fact that I can apply &#8216;imregionalmax&#8217; and &#8216;imregionalmin&#8217;, then union 2 sets. But it&#8217;s great if there is any function that can do both of them probably :-).<br />
Thank you for the quick reply.<br />
Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21533</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 03 Mar 2009 15:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21533</guid>
		<description>Kevin&#8212;What is your definition of &quot;extrema&quot; in this context?</description>
		<content:encoded><![CDATA[<p>Kevin&mdash;What is your definition of &#8220;extrema&#8221; in this context?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://blogs.mathworks.com/steve/2006/04/10/quick-tip-determining-uniqueness-of-neighborhood-maximum/#comment-21532</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 03 Mar 2009 15:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=52#comment-21532</guid>
		<description>Hi Steve,
The tutorial&#039;s clear and absolutely useful. Thanks a lot.
I have a minor question, Steve. I wonder if there is any function finding extrema in stead of maxima as &#039;imregionalmax&#039;.

Regards.
Kevin.</description>
		<content:encoded><![CDATA[<p>Hi Steve,<br />
The tutorial&#8217;s clear and absolutely useful. Thanks a lot.<br />
I have a minor question, Steve. I wonder if there is any function finding extrema in stead of maxima as &#8216;imregionalmax&#8217;.</p>
<p>Regards.<br />
Kevin.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

