<?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: HSV.cpp &#8211; hands detection demonstration</title>
	<atom:link href="http://www.andol.info/hci/1116.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andol.info/hci/1116.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: Andol</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-1175</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-1175</guid>
		<description>http://www.andol.info/research/1601.htm</description>
		<content:encoded><![CDATA[<p><a href="http://www.andol.info/research/1601.htm" rel="nofollow">http://www.andol.info/research/1601.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: champie</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-1174</link>
		<dc:creator>champie</dc:creator>
		<pubDate>Tue, 27 Jul 2010 12:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-1174</guid>
		<description>Hi im newbie in OpenCv/image processing, i have a code here using visual c++ and opencv, i need to display the video in a new form in mfc. can anyone please guide me what to do first?. thank you and godbless.</description>
		<content:encoded><![CDATA[<p>Hi im newbie in OpenCv/image processing, i have a code here using visual c++ and opencv, i need to display the video in a new form in mfc. can anyone please guide me what to do first?. thank you and godbless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-1150</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Sat, 17 Jul 2010 12:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-1150</guid>
		<description>try &quot;cvCaptureFromFile()&quot;</description>
		<content:encoded><![CDATA[<p>try &#8220;cvCaptureFromFile()&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priyanka</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-1147</link>
		<dc:creator>priyanka</dc:creator>
		<pubDate>Sat, 17 Jul 2010 11:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-1147</guid>
		<description>here is display video program:

//------------------------------------------------ To display to a video in a Window-------------------------------------------------//
#include
#include &quot;cv.h&quot;
#include &quot;highgui.h&quot;
int main(){
    const char* file=&quot;H:\\seq3.avi&quot;;
    cvNamedWindow(&quot;w&quot;,1);
  //  CvCapture* capture=cvCaptureFromAVI(&quot;video.avi&quot;);
    CvCapture* capture=cvCreateFileCapture(file);
 IplImage* frame=0;
    while(1)
    {
              frame=cvQueryFrame(capture);
            
           /*
        //   either use 
                       frame=cvQueryFrame(capture);
         //   or
                    int i=cvGrabFrame(capture);
                    printf(&quot;cvGrabFrame value is %d \n&quot;,i);
                    frame=cvRetrieveFrame(capture );
          */
          
            if(!frame) 
            {
                       printf(&quot;no input \n&quot;);
            break;
            }
            cvShowImage(&quot;w&quot;,frame);
            char c=cvWaitKey(33);
                   if(c==27) break;  
    }
 cvReleaseCapture( &amp;capture );
 cvDestroyWindow(&quot;w&quot;);
    system(&quot;pause&quot;);
   return 0;
    }</description>
		<content:encoded><![CDATA[<p>here is display video program:</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; To display to a video in a Window&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-//<br />
#include<br />
#include &#8220;cv.h&#8221;<br />
#include &#8220;highgui.h&#8221;<br />
int main(){<br />
    const char* file=&#8221;H:\\seq3.avi&#8221;;<br />
    cvNamedWindow(&#8220;w&#8221;,1);<br />
  //  CvCapture* capture=cvCaptureFromAVI(&#8220;video.avi&#8221;);<br />
    CvCapture* capture=cvCreateFileCapture(file);<br />
 IplImage* frame=0;<br />
    while(1)<br />
    {<br />
              frame=cvQueryFrame(capture);</p>
<p>           /*<br />
        //   either use<br />
                       frame=cvQueryFrame(capture);<br />
         //   or<br />
                    int i=cvGrabFrame(capture);<br />
                    printf(&#8220;cvGrabFrame value is %d \n&#8221;,i);<br />
                    frame=cvRetrieveFrame(capture );<br />
          */</p>
<p>            if(!frame)<br />
            {<br />
                       printf(&#8220;no input \n&#8221;);<br />
            break;<br />
            }<br />
            cvShowImage(&#8220;w&#8221;,frame);<br />
            char c=cvWaitKey(33);<br />
                   if(c==27) break;<br />
    }<br />
 cvReleaseCapture( &amp;capture );<br />
 cvDestroyWindow(&#8220;w&#8221;);<br />
    system(&#8220;pause&#8221;);<br />
   return 0;<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priyanka</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-1146</link>
		<dc:creator>priyanka</dc:creator>
		<pubDate>Sat, 17 Jul 2010 10:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-1146</guid>
		<description>plz sir refer to this link
http://atmaja.tk/
here video 2 run succesfully from opencv display video program but video 1 does not.</description>
		<content:encoded><![CDATA[<p>plz sir refer to this link<br />
<a href="http://atmaja.tk/" rel="nofollow">http://atmaja.tk/</a><br />
here video 2 run succesfully from opencv display video program but video 1 does not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andol</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-912</link>
		<dc:creator>Andol</dc:creator>
		<pubDate>Tue, 09 Mar 2010 09:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-912</guid>
		<description>no sure hsv format images have to be used, but using hsv image is relatively easier to identify color ranges. hope this helps.</description>
		<content:encoded><![CDATA[<p>no sure hsv format images have to be used, but using hsv image is relatively easier to identify color ranges. hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ayush</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-911</link>
		<dc:creator>Ayush</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-911</guid>
		<description>Hi, why are you using BGR values in hsv_min &amp; hsv_max??

CvScalar  hsv_min = cvScalar(0, 30, 80, 0);
CvScalar  hsv_max = cvScalar(20, 150, 255, 0);

moreover, whats the need to convert the image from BGR to HSV ?</description>
		<content:encoded><![CDATA[<p>Hi, why are you using BGR values in hsv_min &amp; hsv_max??</p>
<p>CvScalar  hsv_min = cvScalar(0, 30, 80, 0);<br />
CvScalar  hsv_max = cvScalar(20, 150, 255, 0);</p>
<p>moreover, whats the need to convert the image from BGR to HSV ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quarks</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-866</link>
		<dc:creator>quarks</dc:creator>
		<pubDate>Thu, 21 Jan 2010 08:51:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-866</guid>
		<description>hi 
i would like to detect the gesture of the hand such as (you shown above) during motion to trigger some other input such as (to open a folder).
i had exceuted your code but i dont know, how to make to detect  my gesture and to trigger some other actions (to open folder)
my email id is:infoquarks@gmail.com</description>
		<content:encoded><![CDATA[<p>hi<br />
i would like to detect the gesture of the hand such as (you shown above) during motion to trigger some other input such as (to open a folder).<br />
i had exceuted your code but i dont know, how to make to detect  my gesture and to trigger some other actions (to open folder)<br />
my email id is:infoquarks@gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zoran</title>
		<link>http://www.andol.info/hci/1116.htm/comment-page-1#comment-617</link>
		<dc:creator>Zoran</dc:creator>
		<pubDate>Tue, 28 Jul 2009 22:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.andol.info/?p=1116#comment-617</guid>
		<description>I have already seen it somethere...
 Zoran</description>
		<content:encoded><![CDATA[<p>I have already seen it somethere&#8230;<br />
 Zoran</p>
]]></content:encoded>
	</item>
</channel>
</rss>

