<?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: Fast &amp; Furious face detection with OpenCV</title>
	<atom:link href="http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/</link>
	<description>Rhonda Ltd., computer vision software blog</description>
	<lastBuildDate>Fri, 05 Mar 2010 21:06:21 +1000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alex</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-575</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 28 Feb 2010 13:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-575</guid>
		<description>Hi Anh,

We use another cascade + unique parameters.</description>
		<content:encoded><![CDATA[<p>Hi Anh,</p>
<p>We use another cascade + unique parameters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anh</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-574</link>
		<dc:creator>Anh</dc:creator>
		<pubDate>Sat, 27 Feb 2010 07:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-574</guid>
		<description>Hi Aleksey, can you tell me, how did you get the 99,6% Hit Rate with the cascade(s) given in OpenCV? I&#039;ve made an exprience with 800 images, each of them has 1 (and only one) frontal face, and got a Hit Rate of 30%. Here are the main lines in my programme:
char* cascade_file_name = &quot;c:\\program files\\opencv\\data\\haarcascades\\haarcascade_frontalface_alt_tree.xml&quot;;
CvHaarClassifierCascade* cascade =  (CvHaarClassifierCascade*)cvLoad(cascade_file_name,0,0,0);
...
image = cvLoadImage(image_file_name);
gray = cvCreateImage(cvSize(image-&gt;width,image-&gt;height),8,1);
cvCvtColor(image,gray,CV_BGR2GRAY);
faces = cvHaarDetectObjects(gray,cascade,storage,1.1,2,0,cvSize(30,30));</description>
		<content:encoded><![CDATA[<p>Hi Aleksey, can you tell me, how did you get the 99,6% Hit Rate with the cascade(s) given in OpenCV? I&#8217;ve made an exprience with 800 images, each of them has 1 (and only one) frontal face, and got a Hit Rate of 30%. Here are the main lines in my programme:<br />
char* cascade_file_name = &#8220;c:\\program files\\opencv\\data\\haarcascades\\haarcascade_frontalface_alt_tree.xml&#8221;;<br />
CvHaarClassifierCascade* cascade =  (CvHaarClassifierCascade*)cvLoad(cascade_file_name,0,0,0);<br />
&#8230;<br />
image = cvLoadImage(image_file_name);<br />
gray = cvCreateImage(cvSize(image-&gt;width,image-&gt;height),8,1);<br />
cvCvtColor(image,gray,CV_BGR2GRAY);<br />
faces = cvHaarDetectObjects(gray,cascade,storage,1.1,2,0,cvSize(30,30));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksey Kodubets</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-507</link>
		<dc:creator>Aleksey Kodubets</dc:creator>
		<pubDate>Fri, 25 Dec 2009 01:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-507</guid>
		<description>No, this blog is only one place where we published our results.</description>
		<content:encoded><![CDATA[<p>No, this blog is only one place where we published our results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-505</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Thu, 24 Dec 2009 15:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-505</guid>
		<description>&gt; Unfortunately, our management doesn’t allow to open our technologies, 
&gt; share code and such innovation techniques except result in scientific style

Are these results published anywhere in the scientific periodicals?
Could you provide me with a reference, or, the best, a copy of your paper?

Thanks.</description>
		<content:encoded><![CDATA[<p>&gt; Unfortunately, our management doesn’t allow to open our technologies,<br />
&gt; share code and such innovation techniques except result in scientific style</p>
<p>Are these results published anywhere in the scientific periodicals?<br />
Could you provide me with a reference, or, the best, a copy of your paper?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Computer Vision Software &#187; Blog Archive &#187; FAQ: OpenCV Haartraining</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-451</link>
		<dc:creator>Computer Vision Software &#187; Blog Archive &#187; FAQ: OpenCV Haartraining</dc:creator>
		<pubDate>Fri, 13 Nov 2009 02:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-451</guid>
		<description>[...] We have changed facedetector and get about 15 fps &#8211; which is real time. You can see results  here and [...]</description>
		<content:encoded><![CDATA[<p>[...] We have changed facedetector and get about 15 fps &#8211; which is real time. You can see results  here and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikkey</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-392</link>
		<dc:creator>nikkey</dc:creator>
		<pubDate>Tue, 27 Oct 2009 16:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-392</guid>
		<description>I have to ask one question about your solution program. Basically is your sol is works based on Haar like feature with some other program?</description>
		<content:encoded><![CDATA[<p>I have to ask one question about your solution program. Basically is your sol is works based on Haar like feature with some other program?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksey Kodubets</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-155</link>
		<dc:creator>Aleksey Kodubets</dc:creator>
		<pubDate>Fri, 10 Jul 2009 14:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-155</guid>
		<description>Hi Andrey,

I was wonder with your question but I was not able to repeat it and I did think that something missing... Good that your problem was resolved!

&gt;&gt;no more way increase speed 
&gt;&gt;(for ~same detect quality) without source editing?

[Aleksey] Basically, you are right. But your approach has impacted the quality. I could suggest to don&#039;t change quality i.e. use default opencv parameters for HaarDetect: setting scale to 1.1 and min_neighbors at least to 3 (or more) but it will reduce the speed essentially! 

So, I could only recommend our solution as the best way (sorry for self-marketing but it is true) as described in this article. (if you would like to get our code for this, you could ask our management/marketing ... see &quot;about&quot; page for details).

Let me know if you have any more question.

Aleksey</description>
		<content:encoded><![CDATA[<p>Hi Andrey,</p>
<p>I was wonder with your question but I was not able to repeat it and I did think that something missing&#8230; Good that your problem was resolved!</p>
<p>>>no more way increase speed<br />
>>(for ~same detect quality) without source editing?</p>
<p>[Aleksey] Basically, you are right. But your approach has impacted the quality. I could suggest to don&#8217;t change quality i.e. use default opencv parameters for HaarDetect: setting scale to 1.1 and min_neighbors at least to 3 (or more) but it will reduce the speed essentially! </p>
<p>So, I could only recommend our solution as the best way (sorry for self-marketing but it is true) as described in this article. (if you would like to get our code for this, you could ask our management/marketing &#8230; see &#8220;about&#8221; page for details).</p>
<p>Let me know if you have any more question.</p>
<p>Aleksey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-154</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-154</guid>
		<description>Thanks for reply!
But I guess I made a mistake.. I forgot that face-detecting is very highload operation.

Yes, I get result like your for scale=1.2, min_neighbor=2, flags=0. (AMD 3500 ~ 2.2 GHz)
Now this options is my best for speed and quality.

And if I unterstand correctly, no more way increase speed (for ~same detect quality) without source editing? 
(I now about CV_HAAR_FIND_BIGGEST_OBJECT)</description>
		<content:encoded><![CDATA[<p>Thanks for reply!<br />
But I guess I made a mistake.. I forgot that face-detecting is very highload operation.</p>
<p>Yes, I get result like your for scale=1.2, min_neighbor=2, flags=0. (AMD 3500 ~ 2.2 GHz)<br />
Now this options is my best for speed and quality.</p>
<p>And if I unterstand correctly, no more way increase speed (for ~same detect quality) without source editing?<br />
(I now about CV_HAAR_FIND_BIGGEST_OBJECT)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksey Kodubets</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-148</link>
		<dc:creator>Aleksey Kodubets</dc:creator>
		<pubDate>Tue, 07 Jul 2009 11:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-148</guid>
		<description>I have just compiled facedetect.c with cvsample project from OpenCV 1.1. I just removed code which shows image on screen. My time is 699 ms for three instances. One instance takes 297 ms. So, I didn&#039;t see the same problem on PC (1 core, P4 3.0 GHz).

Please try just use cvsample and facedetect.c without any modifications.

Let me know please your result.

Aleksey</description>
		<content:encoded><![CDATA[<p>I have just compiled facedetect.c with cvsample project from OpenCV 1.1. I just removed code which shows image on screen. My time is 699 ms for three instances. One instance takes 297 ms. So, I didn&#8217;t see the same problem on PC (1 core, P4 3.0 GHz).</p>
<p>Please try just use cvsample and facedetect.c without any modifications.</p>
<p>Let me know please your result.</p>
<p>Aleksey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksey Kodubets</title>
		<link>http://www.computer-vision-software.com/blog/2009/06/fastfurious-face-detection-with-opencv/comment-page-1/#comment-147</link>
		<dc:creator>Aleksey Kodubets</dc:creator>
		<pubDate>Tue, 07 Jul 2009 10:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-vision-software.com/blog/?p=75#comment-147</guid>
		<description>&gt;&gt;Very intresting.. Why did you remove my comment?
&gt;&gt;Hiding real or shame problem?

The comments are being reviewed by admin to avoid spam. Your previous comment is approved. Let me know if you posted other comments and it was removed.

Aleksey</description>
		<content:encoded><![CDATA[<p>>>Very intresting.. Why did you remove my comment?<br />
>>Hiding real or shame problem?</p>
<p>The comments are being reviewed by admin to avoid spam. Your previous comment is approved. Let me know if you posted other comments and it was removed.</p>
<p>Aleksey</p>
]]></content:encoded>
	</item>
</channel>
</rss>
