<?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: Capturing frames from a webcam on Linux</title>
	<atom:link href="http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/</link>
	<description>The site design looks balanced when this sentence is long</description>
	<pubDate>Wed, 07 Jan 2009 13:23:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-almost-beta-9300</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mir</title>
		<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-2084</link>
		<dc:creator>Mir</dc:creator>
		<pubDate>Mon, 29 Dec 2008 11:16:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-2084</guid>
		<description>doesnt work with me in ubuntu 8.10

Traceback (most recent call last):
  File "web.py", line 30, in 
    im = get_image()
  File "web.py", line 15, in get_image
    tmp = opencv.cvGetMat(im)
  File "/var/lib/python-support/python2.5/opencv/cv.py", line 3826, in cvGetMat
    return _cv.cvGetMat(*args)
RuntimeError:  openCV Error:
        Status=Null pointer
        function name=cvGetMat
        error message=NULL array pointer is passed
        file_name=cxar</description>
		<content:encoded><![CDATA[<p>doesnt work with me in ubuntu 8.10</p>
<p>Traceback (most recent call last):<br />
  File &#8220;web.py&#8221;, line 30, in<br />
    im = get_image()<br />
  File &#8220;web.py&#8221;, line 15, in get_image<br />
    tmp = opencv.cvGetMat(im)<br />
  File &#8220;/var/lib/python-support/python2.5/opencv/cv.py&#8221;, line 3826, in cvGetMat<br />
    return _cv.cvGetMat(*args)<br />
RuntimeError:  openCV Error:<br />
        Status=Null pointer<br />
        function name=cvGetMat<br />
        error message=NULL array pointer is passed<br />
        file_name=cxar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve B</title>
		<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-2079</link>
		<dc:creator>Steve B</dc:creator>
		<pubDate>Mon, 22 Dec 2008 10:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-2079</guid>
		<description>Cool! I will be trying this out very soon, I think you have saved me a bit of work! 
This was the first thing Google brought me, and probably all I need to get started!</description>
		<content:encoded><![CDATA[<p>Cool! I will be trying this out very soon, I think you have saved me a bit of work!<br />
This was the first thing Google brought me, and probably all I need to get started!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Busman</title>
		<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1963</link>
		<dc:creator>Busman</dc:creator>
		<pubDate>Wed, 05 Nov 2008 15:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1963</guid>
		<description>Hey thanks a lot!

Work very nice with my camera, good work!, Busman.</description>
		<content:encoded><![CDATA[<p>Hey thanks a lot!</p>
<p>Work very nice with my camera, good work!, Busman.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kpoman</title>
		<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1916</link>
		<dc:creator>kpoman</dc:creator>
		<pubDate>Wed, 22 Oct 2008 01:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1916</guid>
		<description>Hi,
I had to slightly modify it to run on ubuntu 8.04:

def get_image():
    im = highgui.cvQueryFrame(camera)
    # this one is the new line to make it work
    tmp = opencv.cvGetMat(im)
    #convert Ipl image to PIL image
    return opencv.adaptors.Ipl2PIL(tmp)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I had to slightly modify it to run on ubuntu 8.04:</p>
<p>def get_image():<br />
    im = highgui.cvQueryFrame(camera)<br />
    # this one is the new line to make it work<br />
    tmp = opencv.cvGetMat(im)<br />
    #convert Ipl image to PIL image<br />
    return opencv.adaptors.Ipl2PIL(tmp)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ram-on Agmon</title>
		<link>http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1906</link>
		<dc:creator>Ram-on Agmon</dc:creator>
		<pubDate>Tue, 07 Oct 2008 18:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.jperla.com/blog/2007/09/26/capturing-frames-from-a-webcam-on-linux/#comment-1906</guid>
		<description>Hello Man.

10x, I checked around 5 other examples and this one works like a charm.  

Shalom,
Ram-on.</description>
		<content:encoded><![CDATA[<p>Hello Man.</p>
<p>10x, I checked around 5 other examples and this one works like a charm.  </p>
<p>Shalom,<br />
Ram-on.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
