<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>In Traction - Latest Comments in Fun with Python, OpenCV and face detection</title><link>http://intraction.disqus.com/</link><description></description><language>en</language><lastBuildDate>Sat, 30 May 2009 19:15:26 -0000</lastBuildDate><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-10304645</link><description>hi i want to put the window's webcam in other program both under python, but i dont how to do it, the project is a program with bottons and they controll a robot and the robot get the webcam, by the way im using linux mint 6</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gabox</dc:creator><pubDate>Sat, 30 May 2009 19:15:26 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-5001488</link><description>Hello, Sir&lt;br&gt;I'm from Asia. I'm just starting to learn openCV.&lt;br&gt;Is there any opinion or advise from Sir as an expert to me to start learning opencv&lt;br&gt;&lt;br&gt;Thank you very much.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Simon</dc:creator><pubDate>Thu, 08 Jan 2009 21:26:28 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-4890374</link><description>You need to have &lt;a href="http://opencv.willowgarage.com/wiki/" rel="nofollow"&gt;OpenCV&lt;/a&gt; installed. I guess that is the problem. I didn't try it on Windows yet since there's no D-BUS support, but in theory the face detection code should work.&lt;br&gt;&lt;br&gt;I will probably release a first version of the code in the following weeks, so stay tuned!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jozilla</dc:creator><pubDate>Mon, 05 Jan 2009 04:38:15 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-4882562</link><description>When I tried runing the above code in windows xp, encountered the following error. &lt;br&gt;&lt;br&gt;D:\SW\CamFD&amp;gt;python test2.py&lt;br&gt;Traceback (most recent call last):&lt;br&gt;  File "test2.py", line 2, in &amp;lt;module&amp;gt;&lt;br&gt;    from CVtypes import cv&lt;br&gt;  File "D:\SW\CamFD\CVtypes.py", line 42, in &amp;lt;module&amp;gt;&lt;br&gt;    _cxDLL = cdll.cxcore100&lt;br&gt;  File "C:\Python25\lib\ctypes\__init__.py", line 423, in __getattr__&lt;br&gt;    dll = self._dlltype(name)&lt;br&gt;  File "C:\Python25\lib\ctypes\__init__.py", line 348, in __init__&lt;br&gt;    self._handle = _dlopen(self._name, mode)&lt;br&gt;WindowsError: [Error 126] The specified module could not be found&lt;br&gt;&lt;br&gt;Any help regarding this will be great!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Venkat</dc:creator><pubDate>Sun, 04 Jan 2009 15:32:16 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-3127953</link><description>You're welcome, I'm glad it was useful for you.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jozilla</dc:creator><pubDate>Fri, 17 Oct 2008 09:29:44 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-3127901</link><description>this is great stuff! thanks for this...&lt;br&gt;&lt;br&gt;We managed to get up to 4 faces recognized at the same time.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">randomm</dc:creator><pubDate>Fri, 17 Oct 2008 09:26:26 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-3006629</link><description>Ah thanks, that's very helpful!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jozilla</dc:creator><pubDate>Sun, 12 Oct 2008 07:25:30 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-2628971</link><description>I figured it out how to properly use cvWaitKey.&lt;br&gt;&lt;br&gt;In your code you are waiting just 10 ms for a key, and only after the image was processed.&lt;br&gt;So, if you wait a little bit longer(maybe 100ms, but this will slow down a lot the fps) you will be able to catch the keys.&lt;br&gt;&lt;br&gt;However, there is also another problem cvWaitKey returns -1 when no key was pressed, but return a string(char) holding the key pressed, so you need to do the following:&lt;br&gt;if k!=-1 and ord(k) == 0x1b: # ESC&lt;br&gt;            print 'ESC pressed. Exiting ...'&lt;br&gt;            break</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jhon</dc:creator><pubDate>Thu, 25 Sep 2008 14:18:10 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-800940</link><description>Nice script , worked fine for me @30fps</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">daxroc</dc:creator><pubDate>Wed, 02 Jul 2008 16:09:37 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-787303</link><description>You are right, I noticed yesterday that the cascade file was part of OpenCV. Thanks for clarifying!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jozilla</dc:creator><pubDate>Tue, 01 Jul 2008 01:34:30 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-786349</link><description>Just to clarify, the Haar cascade file is one of the sample ones that comes with OpenCV.  The script I wrote was based on the OpenCV face detection sample too, but using gstreamer instead of OpenCV's HighGUI to interface the webcam (HighGUI didn't support the camera in the XO).&lt;br&gt;&lt;br&gt;Its good that you got it working though.  There is some pretty amazing stuff in OpenCV.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nirav Patel</dc:creator><pubDate>Mon, 30 Jun 2008 21:57:52 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-769604</link><description>You're welcome! I'm glad you find it useful.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jozilla</dc:creator><pubDate>Sat, 28 Jun 2008 10:53:20 -0000</pubDate></item><item><title>Re: Fun with Python, OpenCV and face detection</title><link>http://blog.jozilla.net/2008/06/27/fun-with-python-opencv-and-face-detection/#comment-768983</link><description>excellent stuff. Many thanks</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si</dc:creator><pubDate>Sat, 28 Jun 2008 08:09:03 -0000</pubDate></item></channel></rss>