<?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: Qt &amp; OpenCV combined for face detecting QWidgets</title>
	<atom:link href="http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/</link>
	<description>On software, code, the internet and more.</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:59:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Bluesman</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-5410</link>
		<dc:creator>Bluesman</dc:creator>
		<pubDate>Mon, 21 Feb 2011 03:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-5410</guid>
		<description>Nice job, very helpful! Quick question:

Couldn&#039;t the the following lines:

if( frame-&gt;origin == IPL_ORIGIN_TL ) 
 cvCopy( frame, m_opencvimg, 0 ); 
else
 cvFlip( frame, m_opencvimg, 0 );   

cvCvtColor(m_opencvimg, m_opencvimg, CV_BGR2RGB); 

Be replaced by:

if( frame-&gt;origin == IPL_ORIGIN_TL ) 
 cvCvtColor( frame, m_opencvimg, CV_BGR2RGB); 
else
{
 cvFlip( frame, m_opencvimg, 0 );   
 cvCvtColor(m_opencvimg,m_opencvimg,CV_BGR2RGB); 
}

to avoid a copy operation in the most common case when a flip is not required? I&#039;ve tried it and it seems to work.</description>
		<content:encoded><![CDATA[<p>Nice job, very helpful! Quick question:</p>
<p>Couldn&#8217;t the the following lines:</p>
<p>if( frame-&gt;origin == IPL_ORIGIN_TL )<br />
 cvCopy( frame, m_opencvimg, 0 );<br />
else<br />
 cvFlip( frame, m_opencvimg, 0 );   </p>
<p>cvCvtColor(m_opencvimg, m_opencvimg, CV_BGR2RGB); </p>
<p>Be replaced by:</p>
<p>if( frame-&gt;origin == IPL_ORIGIN_TL )<br />
 cvCvtColor( frame, m_opencvimg, CV_BGR2RGB);<br />
else<br />
{<br />
 cvFlip( frame, m_opencvimg, 0 );<br />
 cvCvtColor(m_opencvimg,m_opencvimg,CV_BGR2RGB);<br />
}</p>
<p>to avoid a copy operation in the most common case when a flip is not required? I&#8217;ve tried it and it seems to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-814</link>
		<dc:creator>Roy</dc:creator>
		<pubDate>Thu, 29 Jul 2010 23:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-814</guid>
		<description>@Johnson: Sadly, I don&#039;t have the original sources for this project anymore... It must be reconstructed from the sources in the post itself. Sorry.</description>
		<content:encoded><![CDATA[<p>@Johnson: Sadly, I don&#8217;t have the original sources for this project anymore&#8230; It must be reconstructed from the sources in the post itself. Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnson</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-808</link>
		<dc:creator>Johnson</dc:creator>
		<pubDate>Thu, 29 Jul 2010 09:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-808</guid>
		<description>Hello Roy,

I am a beginner in QT, and I like this example a lot.
Can you send me the whole project of this program?
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hello Roy,</p>
<p>I am a beginner in QT, and I like this example a lot.<br />
Can you send me the whole project of this program?<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: irawan</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-760</link>
		<dc:creator>irawan</dc:creator>
		<pubDate>Fri, 23 Jul 2010 15:23:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-760</guid>
		<description>thank for idea, it&#039;s work...</description>
		<content:encoded><![CDATA[<p>thank for idea, it&#8217;s work&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steven</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-486</link>
		<dc:creator>steven</dc:creator>
		<pubDate>Mon, 14 Jun 2010 08:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-486</guid>
		<description>i seem to not be able to load the haar clasifier cascade from my files, can anyone help me?</description>
		<content:encoded><![CDATA[<p>i seem to not be able to load the haar clasifier cascade from my files, can anyone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giuseppe</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-358</link>
		<dc:creator>giuseppe</dc:creator>
		<pubDate>Tue, 18 May 2010 03:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-358</guid>
		<description>Me too. On Windows, I get a run-time seg fault. But I cannot trace it.
G</description>
		<content:encoded><![CDATA[<p>Me too. On Windows, I get a run-time seg fault. But I cannot trace it.<br />
G</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kronen</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-148</link>
		<dc:creator>Kronen</dc:creator>
		<pubDate>Sat, 19 Dec 2009 05:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-148</guid>
		<description>I get a segmentation fault on cvCvtColor(img, gray, CV_RGB2GRAY);

Can anyone help me?</description>
		<content:encoded><![CDATA[<p>I get a segmentation fault on cvCvtColor(img, gray, CV_RGB2GRAY);</p>
<p>Can anyone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sevick</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-135</link>
		<dc:creator>Sevick</dc:creator>
		<pubDate>Fri, 20 Nov 2009 02:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-135</guid>
		<description>Idea is good, but on my PC it is still too slow comparing with OpenCV ShowImage...

[Edit: one link is enough dude..]</description>
		<content:encoded><![CDATA[<p>Idea is good, but on my PC it is still too slow comparing with OpenCV ShowImage&#8230;</p>
<p>[Edit: one link is enough dude..]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azar</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-130</link>
		<dc:creator>Azar</dc:creator>
		<pubDate>Tue, 03 Nov 2009 16:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-130</guid>
		<description>Hi,
thanks for the tutorial. I need to find out if i can convert QImage to IplImage. My requirement is to get the pixel co-ordinates when i click on some location of the image. and then convert it to IplImage and process.

Thank u</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks for the tutorial. I need to find out if i can convert QImage to IplImage. My requirement is to get the pixel co-ordinates when i click on some location of the image. and then convert it to IplImage and process.</p>
<p>Thank u</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spaï</title>
		<link>http://www.morethantechnical.com/2009/03/05/qt-opencv-combined-for-face-detecting-qwidgets/comment-page-1/#comment-49</link>
		<dc:creator>Spaï</dc:creator>
		<pubDate>Mon, 17 Aug 2009 10:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.morethantechnical.com/?p=212#comment-49</guid>
		<description>Hello Roy and all, thank you for your prompt response.

It is really a very good idea this &quot;shared buffer&quot;.
I only saw that on your blog.

I am a composer and I am currently developing software to make music with a webcam: NoizeKam
You can find here: http://blog.oliviergest.net/noizekam/

I am using OpenCV and STK, but now I use only PortAudio and I started to integrate QT for the interface and OpenGL.
I had already tested QT, but it slows down the execution.
I will try your method of shared buffer because I think it should speed up my soft and eat less CPU cycles.

Again thank you for sharing your knowledge (everyone does not, that&#039;s a shame) and your help is so valuable in this area.

PS: translated from French into English by my friend Google</description>
		<content:encoded><![CDATA[<p>Hello Roy and all, thank you for your prompt response.</p>
<p>It is really a very good idea this &#8220;shared buffer&#8221;.<br />
I only saw that on your blog.</p>
<p>I am a composer and I am currently developing software to make music with a webcam: NoizeKam<br />
You can find here: <a href="http://blog.oliviergest.net/noizekam/" rel="nofollow">http://blog.oliviergest.net/noizekam/</a></p>
<p>I am using OpenCV and STK, but now I use only PortAudio and I started to integrate QT for the interface and OpenGL.<br />
I had already tested QT, but it slows down the execution.<br />
I will try your method of shared buffer because I think it should speed up my soft and eat less CPU cycles.</p>
<p>Again thank you for sharing your knowledge (everyone does not, that&#8217;s a shame) and your help is so valuable in this area.</p>
<p>PS: translated from French into English by my friend Google</p>
]]></content:encoded>
	</item>
</channel>
</rss>

