<?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 for CODING BETA</title>
	<atom:link href="http://www.codingbeta.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.codingbeta.com</link>
	<description>Coding tips, tools, and solutions</description>
	<lastBuildDate>Sun, 06 May 2012 15:17:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Drastically Improved Version of Headshot Released! by The Story of Headshot &#124; CODING BETA</title>
		<link>http://www.codingbeta.com/?p=259#comment-1333</link>
		<dc:creator>The Story of Headshot &#124; CODING BETA</dc:creator>
		<pubDate>Sun, 06 May 2012 15:17:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=259#comment-1333</guid>
		<description>[...] releasing an improved version of headshot today (see this post) and in light of this I wanted to tell everybody how Headshot came to be, and what I’ve learned [...]</description>
		<content:encoded><![CDATA[<p>[...] releasing an improved version of headshot today (see this post) and in light of this I wanted to tell everybody how Headshot came to be, and what I’ve learned [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 Pro Tips for Surviving Red Eye Flights by Chloe Fan</title>
		<link>http://www.codingbeta.com/?p=246#comment-1294</link>
		<dc:creator>Chloe Fan</dc:creator>
		<pubDate>Tue, 10 Apr 2012 00:01:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=246#comment-1294</guid>
		<description>Definitely earplugs and eye masks. I haven&#039;t yet found a pillow that worked well and is small enough (only bringing one backpack limits my storage space). Being small helps because then you can curl up in your seat.</description>
		<content:encoded><![CDATA[<p>Definitely earplugs and eye masks. I haven&#8217;t yet found a pillow that worked well and is small enough (only bringing one backpack limits my storage space). Being small helps because then you can curl up in your seat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 Pro Tips for Surviving Red Eye Flights by Ling</title>
		<link>http://www.codingbeta.com/?p=246#comment-1293</link>
		<dc:creator>Ling</dc:creator>
		<pubDate>Mon, 09 Apr 2012 22:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=246#comment-1293</guid>
		<description>I&#039;ve never done red eye, but I did enough intl&#039; flight. I found headphones and proper music helps a lot.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never done red eye, but I did enough intl&#8217; flight. I found headphones and proper music helps a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3 Pro Tips for Surviving Red Eye Flights by Lydia</title>
		<link>http://www.codingbeta.com/?p=246#comment-1292</link>
		<dc:creator>Lydia</dc:creator>
		<pubDate>Mon, 09 Apr 2012 21:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=246#comment-1292</guid>
		<description>I also take an over the counter sleep-aid called Melatonin to help me get to sleep, especially on red-eyes where I never quite feel comfortable enough to fall asleep on my own.  After years and years of insisting that I didn&#039;t want to go the sleep-aid route, I tried this and it dramatically changed my quality of life for the better.</description>
		<content:encoded><![CDATA[<p>I also take an over the counter sleep-aid called Melatonin to help me get to sleep, especially on red-eyes where I never quite feel comfortable enough to fall asleep on my own.  After years and years of insisting that I didn&#8217;t want to go the sleep-aid route, I tried this and it dramatically changed my quality of life for the better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by admin</title>
		<link>http://www.codingbeta.com/?p=204#comment-1286</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 04 Apr 2012 15:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1286</guid>
		<description>Vyacheslav, I&#039;m getting the following (units is ms): 

unoptimzed--1200 on phone, 324 on computer
optimized-- 820 on phone,  186 on computer

I realized that my timing on the sample code was wrong, I was counting also the time it takes to get a new frame which is why latency was high. When calculating only time to detect faces (not pre-processing), detection is  around 100 ms. When calculating pre-processing, detection it was originally 200 ms (!), and then I realized I had super inefficient code (processing data that was not downsampled). After fixing this inefficiency the sample detection time (including downsampling) is down to 100 ms!!!

Thanks for your help, you helped reduce the delay in my sample by 2x :) I still feel like it can be better, feel like detection time should be around 30 ms. Any other ideas.</description>
		<content:encoded><![CDATA[<p>Vyacheslav, I&#8217;m getting the following (units is ms): </p>
<p>unoptimzed&#8211;1200 on phone, 324 on computer<br />
optimized&#8211; 820 on phone,  186 on computer</p>
<p>I realized that my timing on the sample code was wrong, I was counting also the time it takes to get a new frame which is why latency was high. When calculating only time to detect faces (not pre-processing), detection is  around 100 ms. When calculating pre-processing, detection it was originally 200 ms (!), and then I realized I had super inefficient code (processing data that was not downsampled). After fixing this inefficiency the sample detection time (including downsampling) is down to 100 ms!!!</p>
<p>Thanks for your help, you helped reduce the delay in my sample by 2x <img src='http://www.codingbeta.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I still feel like it can be better, feel like detection time should be around 30 ms. Any other ideas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by Vyacheslav</title>
		<link>http://www.codingbeta.com/?p=204#comment-1276</link>
		<dc:creator>Vyacheslav</dc:creator>
		<pubDate>Thu, 29 Mar 2012 03:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1276</guid>
		<description>Shared there:
http://files.mail.ru/9I6L9O

click on &quot;face_detection_toshare.zip&quot;
archive contains two solutions:
1) without optimization (900 msec)
2) with int[][] optimization (450 msec)
CameraMainApp is a startup project. Please let me know about your results.</description>
		<content:encoded><![CDATA[<p>Shared there:<br />
<a href="http://files.mail.ru/9I6L9O" rel="nofollow">http://files.mail.ru/9I6L9O</a></p>
<p>click on &#8220;face_detection_toshare.zip&#8221;<br />
archive contains two solutions:<br />
1) without optimization (900 msec)<br />
2) with int[][] optimization (450 msec)<br />
CameraMainApp is a startup project. Please let me know about your results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by admin</title>
		<link>http://www.codingbeta.com/?p=204#comment-1273</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 28 Mar 2012 14:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1273</guid>
		<description>Oh wow I never had such high latency. My latency is currently at 250ms - 350ms for the sample (after the black and white image rendering is removed). So, perhaps my phone (Samsung Focus) runs faster. Sure, sharing on the web sounds good.</description>
		<content:encoded><![CDATA[<p>Oh wow I never had such high latency. My latency is currently at 250ms &#8211; 350ms for the sample (after the black and white image rendering is removed). So, perhaps my phone (Samsung Focus) runs faster. Sure, sharing on the web sounds good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by Vyacheslav</title>
		<link>http://www.codingbeta.com/?p=204#comment-1272</link>
		<dc:creator>Vyacheslav</dc:creator>
		<pubDate>Wed, 28 Mar 2012 08:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1272</guid>
		<description>Hmmm... I&#039;m using Samsung Omnia W. The program compiled by Visual Studio 2010 Express for Windows Phone in Release configuration.
I&#039;ve implemented few optimizations like
1) change int[,] to int[][]
2) change type of RectFeature.weight from float to int
3) change type of &#039;scale&#039; to int
and I stably see latency down from ~900 msec to ~450 msec with all optimization.
I want to realize why you does not find any latency reduces.
Because I does not know your email, I can&#039;t send all solutions (without\with optimization) to you. But I able to share it on web. This makes sense, do you think?</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; I&#8217;m using Samsung Omnia W. The program compiled by Visual Studio 2010 Express for Windows Phone in Release configuration.<br />
I&#8217;ve implemented few optimizations like<br />
1) change int[,] to int[][]<br />
2) change type of RectFeature.weight from float to int<br />
3) change type of &#8216;scale&#8217; to int<br />
and I stably see latency down from ~900 msec to ~450 msec with all optimization.<br />
I want to realize why you does not find any latency reduces.<br />
Because I does not know your email, I can&#8217;t send all solutions (without\with optimization) to you. But I able to share it on web. This makes sense, do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by admin</title>
		<link>http://www.codingbeta.com/?p=204#comment-1271</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 28 Mar 2012 03:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1271</guid>
		<description>Hi Elisa,
Just wanted to let you know I fixed the bug that was causing those parse errors and have comitted the code and made a new beta release. Hope this helps you!</description>
		<content:encoded><![CDATA[<p>Hi Elisa,<br />
Just wanted to let you know I fixed the bug that was causing those parse errors and have comitted the code and made a new beta release. Hope this helps you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally, Face Detection for Windows Phone! by admin</title>
		<link>http://www.codingbeta.com/?p=204#comment-1270</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 28 Mar 2012 03:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingbeta.com/?p=204#comment-1270</guid>
		<description>Clive, yes the issue was due to localization, and I have finally fixed this (after way too much debugging, can&#039;t believe I missed this post!). The issue should be fixed and you should be able to use the phone in Finnish regardless I think.</description>
		<content:encoded><![CDATA[<p>Clive, yes the issue was due to localization, and I have finally fixed this (after way too much debugging, can&#8217;t believe I missed this post!). The issue should be fixed and you should be able to use the phone in Finnish regardless I think.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

