<?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: Combined objects recognition</title>
	<atom:link href="http://www.andol.info/hci/779.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andol.info/hci/779.htm</link>
	<description>Just value your mind</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:55:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: syed wajahat hussain</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-2637</link>
		<dc:creator>syed wajahat hussain</dc:creator>
		<pubDate>Mon, 02 May 2011 17:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-2637</guid>
		<description>DEAR ANDOL
                      i am doing my project in open cv and i am new here in it.my project is to detect red and blue both colours wearing on fingers of hand and then track their motion and control cursor movement according to that.kindly help me out or email me the regarding codes and especially on red and blue both.thanx</description>
		<content:encoded><![CDATA[<p>DEAR ANDOL<br />
                      i am doing my project in open cv and i am new here in it.my project is to detect red and blue both colours wearing on fingers of hand and then track their motion and control cursor movement according to that.kindly help me out or email me the regarding codes and especially on red and blue both.thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bvhoang</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-1496</link>
		<dc:creator>bvhoang</dc:creator>
		<pubDate>Fri, 10 Dec 2010 17:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-1496</guid>
		<description>thank you so much Andol,
At present, I&#039;m taking a thesis with Image Processing.
And I wonder that if you could help me, Problems make me feel so stress :(
Waiting Andol !!!</description>
		<content:encoded><![CDATA[<p>thank you so much Andol,<br />
At present, I&#8217;m taking a thesis with Image Processing.<br />
And I wonder that if you could help me, Problems make me feel so stress <img src='http://www.andol.info/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Waiting Andol !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-1471</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Thu, 09 Dec 2010 19:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-1471</guid>
		<description>sure it is possible as four points of the rectangle have been gained, theoretically it is possible to calculate any angle between these points.
cheers</description>
		<content:encoded><![CDATA[<p>sure it is possible as four points of the rectangle have been gained, theoretically it is possible to calculate any angle between these points.<br />
cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bvhoang</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-1470</link>
		<dc:creator>bvhoang</dc:creator>
		<pubDate>Thu, 09 Dec 2010 09:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-1470</guid>
		<description>Dear Andol,
Is it the angle of the square?,
how about if I would like to calculating the angle of the triangle, is it possible if i use this identification.
thank you so much Andol.</description>
		<content:encoded><![CDATA[<p>Dear Andol,<br />
Is it the angle of the square?,<br />
how about if I would like to calculating the angle of the triangle, is it possible if i use this identification.<br />
thank you so much Andol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-1466</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Wed, 08 Dec 2010 22:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-1466</guid>
		<description>@bvhoang this is for calculating the angle between the pt0, pt1 and pt2, just one of the angles between these points.</description>
		<content:encoded><![CDATA[<p>@bvhoang this is for calculating the angle between the pt0, pt1 and pt2, just one of the angles between these points.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bvhoang</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-1459</link>
		<dc:creator>bvhoang</dc:creator>
		<pubDate>Wed, 08 Dec 2010 16:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-1459</guid>
		<description>hi Andol, I&#039;ve read your code.
But I don&#039;t really understand the code

double angle( CvPoint* pt1, CvPoint* pt2, CvPoint* pt0 )
{
    double dx1 = pt1-&gt;x - pt0-&gt;x;
    double dy1 = pt1-&gt;y - pt0-&gt;y;
    double dx2 = pt2-&gt;x - pt0-&gt;x;
    double dy2 = pt2-&gt;y - pt0-&gt;y;
    return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
}

what mean does the code for ???
thank you so much.^^</description>
		<content:encoded><![CDATA[<p>hi Andol, I&#8217;ve read your code.<br />
But I don&#8217;t really understand the code</p>
<p>double angle( CvPoint* pt1, CvPoint* pt2, CvPoint* pt0 )<br />
{<br />
    double dx1 = pt1-&gt;x &#8211; pt0-&gt;x;<br />
    double dy1 = pt1-&gt;y &#8211; pt0-&gt;y;<br />
    double dx2 = pt2-&gt;x &#8211; pt0-&gt;x;<br />
    double dy2 = pt2-&gt;y &#8211; pt0-&gt;y;<br />
    return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);<br />
}</p>
<p>what mean does the code for ???<br />
thank you so much.^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-875</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Wed, 27 Jan 2010 15:41:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-875</guid>
		<description>souce code please refer here:
&lt;a href=&quot;http://download.andol.info/CombinedObjectsRecognition.cpp&quot; alt=&#039;Combined objects recognition.cpp&#039;  target=&#039;_blank&#039; style=&quot;color:#DB492C;&quot; rel=&quot;nofollow&quot;&gt;http://download.andol.info/CombinedObjectsRecognition.cpp&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>souce code please refer here:<br />
<a href="http://download.andol.info/CombinedObjectsRecognition.cpp" alt='Combined objects recognition.cpp'  target='_blank' style="color:#DB492C;" rel="nofollow">http://download.andol.info/CombinedObjectsRecognition.cpp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomek</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-874</link>
		<dc:creator>tomek</dc:creator>
		<pubDate>Wed, 27 Jan 2010 13:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-874</guid>
		<description>can you please send me source code?
I have similar problem
e mail: printf@net.hr
thanks</description>
		<content:encoded><![CDATA[<p>can you please send me source code?<br />
I have similar problem<br />
e mail: <a href="mailto:printf@net.hr">printf@net.hr</a><br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-543</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Thu, 25 Jun 2009 07:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-543</guid>
		<description>you can refer the color recognition codes &lt;a href=&#039;http://img.andol.info/2009/02/colorrecg.pdf&#039; target=&#039;_blank&#039; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>you can refer the color recognition codes <a href='http://img.andol.info/2009/02/colorrecg.pdf' target='_blank' rel="nofollow">here</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a.elen</title>
		<link>http://www.andol.info/hci/779.htm/comment-page-1#comment-542</link>
		<dc:creator>a.elen</dc:creator>
		<pubDate>Thu, 25 Jun 2009 03:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=779#comment-542</guid>
		<description>can you please send me the code to detect and track only red color of rectangles in an image from webcam.Thanks.</description>
		<content:encoded><![CDATA[<p>can you please send me the code to detect and track only red color of rectangles in an image from webcam.Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

