<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>REDBLIND</title>
	<atom:link href="http://redblind.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://redblind.com/blog</link>
	<description>Blog of Jonathan Cipriano</description>
	<lastBuildDate>Fri, 19 Feb 2010 00:03:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DON&#8217;T GZIP F4V&#8217;S</title>
		<link>http://redblind.com/blog/2010/02/12/dont-gzip-f4vs/</link>
		<comments>http://redblind.com/blog/2010/02/12/dont-gzip-f4vs/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 20:29:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[f4v]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=307</guid>
		<description><![CDATA[SYMPTOMS
The other day we deployed a new site to the production servers only to find our video player was bugging out. Specifically in Firefox, it seemed that the file size and video length was not being interpreted correctly. Load complete events and video play complete events were being fired prematurely, if not instantaneously. It other [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SYMPTOMS</strong></p>
<p>The other day we deployed a new site to the production servers only to find our video player was bugging out. Specifically in Firefox, it seemed that the file size and video length was not being interpreted correctly. Load complete events and video play complete events were being fired prematurely, if not instantaneously. It other browsers the bytes loaded of the net stream never updated, but the video played fine. It worked perfectly in our dev environment and had passed QA, but for some reason broke when deployed to production. This lead us to believe that it was environmental and  differences between the server configurations were at fault.</p>
<p><strong>CAUSE</strong></p>
<p>I&#8217;ve seen this type of thing before and wrote about it <a title="flv mime-types" href="http://redblind.com/blog/2008/07/14/iis-flv-mime-type-pwns-you/">here</a>. Using an HTTP proxy (I use <a title="charles web debugging proxy" href="http://www.charlesproxy.com/" target="_blank">Charles</a>), I looked at the differences in responses to the F4V requests from the two servers. Both were returning a &#8220;plain-text&#8221; mime-type. Not a good thing, but still did not explain the differences in behavior. The only difference was the production server was using <a title="gzip compression" href="http://en.wikipedia.org/wiki/Gzip" target="_blank">gzip compression</a> for F4V files. I did a quick search on the web and found only two documented cases of malfunctioning F4Vs and gzip compression, so I figured it was worth writing about.</p>
<p><strong>SOLUTION</strong></p>
<p>The solution is to exclude F4Vs from gzip compression in your apache configuration. Unfortunately, we don&#8217;t have administration rights to out client&#8217;s servers, so we defaulted to the lower quality and slightly larger file size of FLV, which fixed the issue.</p>
<p><strong>REFERENCES</strong></p>
<ol>
<li><a href="http://www.longtailvideo.com/support/forum/Setup-Problems/21791/MP4-and-Firefox-3-5-7-#msg143431" target="_blank">http://www.longtailvideo.com/support/forum/Setup-Problems/21791/MP4-and-Firefox-3-5-7-#msg143431</a></li>
<li><a href="http://stackoverflow.com/questions/1100888/f4v-player-works-on-every-site-but-one" target="_blank">http://stackoverflow.com/questions/1100888/f4v-player-works-on-every-site-but-one</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2010/02/12/dont-gzip-f4vs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PROCESSING.JS SKETCH</title>
		<link>http://redblind.com/blog/2009/12/02/processing-js-sketch/</link>
		<comments>http://redblind.com/blog/2009/12/02/processing-js-sketch/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 00:05:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=295</guid>
		<description><![CDATA[Got to talking about HTML5 at work the other day and rich experiences on mobile browsers. On devices such as the iPhone you can&#8217;t run Flash (yet). We were thinking of HTML5 as a possible solution and I remembered someone mentioning to me a port of Processing to javascript a while back. It&#8217;s called, simply, [...]]]></description>
			<content:encoded><![CDATA[<p>Got to talking about <a title="html5" href="http://en.wikipedia.org/wiki/HTML5" target="_blank">HTML5</a> at work the other day and rich experiences on mobile browsers. On devices such as the iPhone you can&#8217;t run Flash (yet). We were thinking of HTML5 as a possible solution and I remembered someone mentioning to me a port of Processing to javascript a while back. It&#8217;s called, simply, <a title="processing.js" href="http://processingjs.org/" target="_blank">processing.js</a>. When I first heard about it, I didn&#8217;t think much of it. However, after playing with it some, it&#8217;s actually pretty cool. Click the image below to launch a simple sketch. Since IE doesn&#8217;t support HTML yet, It will only run on Safari, FireFox, and Chrome. Download source <a title="source" href="http://redblind.com/exp/pjsOrb/redblind_pjs.zip">here</a>.</p>
<p><a title="sketch" href="http://redblind.com/exp/pjsOrb/" target="_blank"><img class="alignnone size-full wp-image-296" title="pjsOrb" src="http://redblind.com/blog/wp-content/uploads/2009/12/pjsOrb.jpg" alt="pjsOrb" width="598" height="151" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/12/02/processing-js-sketch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color Tracking Source</title>
		<link>http://redblind.com/blog/2009/11/19/color-tracking-source/</link>
		<comments>http://redblind.com/blog/2009/11/19/color-tracking-source/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:02:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[color isolation]]></category>
		<category><![CDATA[color tracking]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[motion detection]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=261</guid>
		<description><![CDATA[When I was researching color tracking with Flash, there were surprisingly few examples. The examples I did find did not have any source to download. So, I am offering up my source code from  my color tracking experiment. The ColorIsolator class is based on an old AS2 algorithm by Mario Klingemann (Quasimondo) for selective color. I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>When I was researching color tracking with Flash, there were surprisingly few examples. The examples I did find did not have any source to download. So, I am offering up my source code from  <a title="color tracking" href="http://redblind.com/blog/2009/09/09/color-tracking/" target="_self">my color tracking experiment</a>. The ColorIsolator class is based on an old <a title="quasimondo - selective color" href="http://www.quasimondo.com/archives/000614.php" target="_blank">AS2 algorithm by Mario Klingemann</a> (Quasimondo) for selective color. I&#8217;ve translated it here to AS3 and applied it to video from the webcam.</p>
<p>It works like this. Once a color is selected from the video, using a seriess of thresholds, the ColorIsolator drops all pixels that don&#8217;t fall within the defined range of the target color. The remaining pixels are set to the target color and getColorBoundsRect is used to pinpoint the remaining blob of color. It&#8217;s really simple. I had the general idea, but I didn&#8217;t understand how to define a range of  color until I found Klingermann&#8217;s code.</p>
<p>I would consider this just a starting point. It actually works very well, but there are a number of things that can be done to improve it. Here are my recommendations to try out:</p>
<ol>
<li>Try using HSV color values rather than RGB.</li>
<li>Introduce a palleteMap in place of or in addition to the saturation/contrast ColorMatrixFilter.</li>
<li>Add blob detection to ignore anomalies/artifacts of the target color.</li>
</ol>
<p><a title="Color Tracking Source" href="http://redblind.com/codesamples/code/cipriano_colorTracking.zip">Download source here.</a></p>
<p><a title="Color Tracking Source" href="http://redblind.com/codesamples/code/cipriano_colorTracking.zip"></a>All I ask is for constructive criticism and to let me know if and where you use this. A credit to myself and Mario in your source code comments would be nice.</p>
<p>Thanks to <a title="soulwire - justin windle" href="http://blog.soulwire.co.uk/" target="_blank">Justin Windle</a> (soulwire) for a great exchange of ideas for this.</p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/11/19/color-tracking-source/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Gity Up!</title>
		<link>http://redblind.com/blog/2009/11/15/gity-up/</link>
		<comments>http://redblind.com/blog/2009/11/15/gity-up/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 05:09:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[linus torvalds]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=250</guid>
		<description><![CDATA[My friend Aaron Smith has been working on a new Git UI for OSX and it&#8217;s looking pretty good. It&#8217;s called Gity and an alpha build is available for a test drive. Download it here and read more about it in his blog post. For a good Git installer check this out. And, if you have no [...]]]></description>
			<content:encoded><![CDATA[<p>My friend <a title="aaron smith" href="http://codeendeavor.com/" target="_blank">Aaron Smith</a> has been working on a new Git UI for OSX and it&#8217;s looking pretty good. It&#8217;s called <em>Gity</em> and an alpha build is available for a test drive. Download it <a title="gity" href="http://macendeavor.com/gity" target="_blank">here</a> and read more about it in his <a title="gity blog post" href="http://codeendeavor.com/archives/652" target="_blank">blog post</a>. For a good Git installer <a title="git-osx-installer" href="http://code.google.com/p/git-osx-installer/" target="_blank">check this out</a>. And, if you have no idea what Git is, get insulted and <a title="torvald git talk " href="http://www.youtube.com/watch?v=4XpnKHJAok8" rel="shadowbox[post-250];player=swf;width=640;height=385;" target="_blank">watch this</a>.</p>
<p><img class="alignnone size-full wp-image-251" title="gity" src="http://redblind.com/blog/wp-content/uploads/2009/11/gity.jpg" alt="gity" width="598" height="341" /></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/11/15/gity-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EARTH MOVER</title>
		<link>http://redblind.com/blog/2009/10/20/earth-mover/</link>
		<comments>http://redblind.com/blog/2009/10/20/earth-mover/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 18:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[earthquaks]]></category>
		<category><![CDATA[geo location]]></category>
		<category><![CDATA[loma prieta]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[usgs]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=233</guid>
		<description><![CDATA[Inspired by the 20th anniversary of the Loma Prieta earthquake I created this little prototype. I pull down the earthquake RSS feed from the USGS and parse the data for the longitude, latitude, magnitude and date/time of recent earthquakes. I then plot them in sequence on a Papervision3D sphere textured with an image from NASA&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by the 20th anniversary of the <a title="loma prieta" href="http://en.wikipedia.org/wiki/1989_Loma_Prieta_earthquake" target="_blank">Loma Prieta</a> earthquake I created this little prototype. I pull down the earthquake RSS feed from the <a title="usgs" href="http://www.usgs.gov/" target="_blank">USGS</a> and parse the data for the longitude, latitude, magnitude and date/time of recent earthquakes. I then plot them in sequence on a <a title="pv3d" href="http://papervision3d.org/" target="_blank">Papervision3D</a> sphere textured with an image from <a title="visible earth" href="http://visibleearth.nasa.gov/" target="_blank">NASA&#8217;s Visible Earth</a>. The quakes play to scale in time that they occurred. Each quake is assigned a musical note according to the magnitude. The higher the magnitude the lower the note. Currently I am pulling quakes with at least a 2.5M for that last 24 hours.</p>
<p>For plotting points, I used <a title="zupko" href="http://blog.zupko.info/?p=221" target="_blank">this blog post</a> as a reference. The musical notes I exported from Garage Band. Also of note, the USGS does not have a cross domain policy set up for Flash, so I had to proxy the RSS feed with a PHP script. I will probably be adding more features, refining the musicality and adding a UI to this, so check back again sometime.</p>
<p>Click screenshot below to launch it.</p>
<p><em><span style="text-decoration: line-through;">UPDATE: Looks like the USGS not only moved their feed, but changed it a bit. For now, this won&#8217;t work.</span></em></p>
<p><a href="http://redblind.com/earthmover"><img class="alignnone size-full wp-image-234" title="earthmover" src="http://redblind.com/blog/wp-content/uploads/2009/10/earthmover.jpg" alt="earthmover" width="598" height="345" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/10/20/earth-mover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Color Tracking</title>
		<link>http://redblind.com/blog/2009/09/09/color-tracking/</link>
		<comments>http://redblind.com/blog/2009/09/09/color-tracking/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 01:00:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acitionscript 3]]></category>
		<category><![CDATA[color isolation]]></category>
		<category><![CDATA[color tracking]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[motion tracking]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=176</guid>
		<description><![CDATA[Here are the results so far for my color/motion tracking project. Turns out that you don&#8217;t have to use a difference filter when tracking colors. All you basically have to do is isolate a color range using multiple thresholds. Then run getColorBounds to get the coordinates of the color blob. The one thing I do [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the results so far for my color/motion tracking project. Turns out that you don&#8217;t have to use a difference filter when tracking colors. All you basically have to do is isolate a color range using multiple thresholds. Then run getColorBounds to get the coordinates of the color blob. The one thing I do have to add is blob detection, but with vibrant colors I don&#8217;t seem to need it.</p>
<p>Click on the image below to launch the swf. You can use the sliders to adjust the image for your lighting conditions. Click on one of the boxes to assign the colors to the channel. Check out my blog post prior to this one to see where I did most of my research. I&#8217;ll release abstracted code after the project is complete.</p>
<p><em>UPDATE: Source code now available </em><a title="color tracking source" href="http://redblind.com/blog/2009/11/19/color-tracking-source/" target="_self"><em>here</em></a><em>!</em></p>
<p><a href="http://redblind.com/exp/colorTracking/" target="_blank"><img src="http://redblind.com/blog/wp-content/uploads/2009/09/colortracking.jpg" alt="colortracking" width="598" height="345" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/09/09/color-tracking/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>An Intro to Color/Motion tracking</title>
		<link>http://redblind.com/blog/2009/09/09/an-intro-to-colormotion-tracking/</link>
		<comments>http://redblind.com/blog/2009/09/09/an-intro-to-colormotion-tracking/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 00:25:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[bitmapdata]]></category>
		<category><![CDATA[color isolation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[motion tracking]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=205</guid>
		<description><![CDATA[I don&#8217;t usually like to write blog posts about other people&#8217;s blog posts. I try to create original content that people will find useful, but that is very hard to do on the web. I like to sleep, watch TV and play video games, so it&#8217;s hard keep up with all the 24/7 coders out [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t usually like to write blog posts about other people&#8217;s blog posts. I try to create original content that people will find useful, but that is very hard to do on the web. I like to sleep, watch TV and play video games, so it&#8217;s hard keep up with all the 24/7 coders out there.</p>
<p>That said, I&#8217;ve been doing a ton of research and experimentation on motion and color tracking. There is a lot of good stuff out there. A lot of it useless, but along the way I came across a few key blog posts that really got me rolling. if you are trying to get your head wrapped around all of this stuff, check out these helpful blog posts:</p>
<p><strong>Color Isolation</strong><br />
<a href="http://www.quasimondo.com/archives/000614.php" target="_blank"> http://www.quasimondo.com/archives/000614.php</a><br />
Mario Klingemann&#8217;s blog is a gold mine of info relating to bitmap data. This blog post reveals how to pick out a color range and drop the rest of the colors. I had to translate this to AS3 for my uses. I&#8217;ll release that translation soon.</p>
<p><strong>Blob Detection</strong><br />
<a href="http://play.blog2t.net/fast-blob-detection/" target="_blank"> http://play.blog2t.net/fast-blob-detection/</a><br />
Blob detection is key to dropping little pieces of bitmap data that you don&#8217;t want or to track multiple blobs of the same color. Read the post and you&#8217;ll see how it&#8217;s useful.</p>
<p><strong>Motion Tracking</strong><br />
<a title="http://blog.soulwire.co.uk/2008/06/06/webcam-motion-detection-tracking/" href="http://" target="_blank"> </a><a href="http://blog.soulwire.co.uk/2008/06/06/webcam-motion-detection-tracking/" target="_blank">http://blog.soulwire.co.uk/2008/06/06/webcam-motion-detection-tracking/</a><br />
This is motion tracking it it&#8217;s simplest form. This is the post I started on.  Ultimately, you may want to combine some of the above techniques with this one. Justin Windle is a cool guy and he has lots of good info on his blog that can help you with your generative art.</p>
<p><strong>Edge Detection</strong><br />
<a href="http://blog.inspirit.ru/?p=297" target="_blank"> http://blog.inspirit.ru/?p=297</a><br />
I just found this one most recently. Really interesting. I don&#8217;t have a use for this now, but I will be keeping an eye on where this goes. This blog also has a lot of good info and I will be adding this one to my regular reading list.</p>
<p><strong>Automated/Adaptive Threshold<br />
<span style="font-weight: normal;"><a href="http://www.quasimondo.com/archives/000690.php" target="_blank">http://www.quasimondo.com/archives/000690.php</a><br />
<a href="http://blog.inspirit.ru/?p=310" target="_blank"> http://blog.inspirit.ru/?p=310</a><br />
One of the main issues when dealing with bitmap data from a webcam is the lighting conditions the user is in. Adaptive threshold analyzes the bitmap data and applies the appropriate threshold to get the best contrast. I haven&#8217;t yet dived into the code, but this look extremely useful.</span></strong></p>
<p><strong>And there you have it!</strong><br />
The best motion and color tracking blog posts to start with. I hope this help others on the same path as I am. Hopefully I will be taking what I&#8217;ve learned from all of this and releasing it in a nice tidy code package for everyone to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/09/09/an-intro-to-colormotion-tracking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What have I been up to?</title>
		<link>http://redblind.com/blog/2009/09/08/what-have-i-been-up-to/</link>
		<comments>http://redblind.com/blog/2009/09/08/what-have-i-been-up-to/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 03:00:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[guttershark]]></category>
		<category><![CDATA[motion tracking]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[team work]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=174</guid>
		<description><![CDATA[Haven&#8217;t posted in a while. That doesn&#8217;t mean I haven&#8217;t been busy. I just recently got married, so I had better things to think about than programming. We spent a week in Bora Bora for our honeymoon. Check out the video I made in iMovie.
Around the same time, Aaron Smith and I worked on a [...]]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t posted in a while. That doesn&#8217;t mean I haven&#8217;t been busy. I just recently got married, so I had better things to think about than programming. We spent a week in Bora Bora for our honeymoon. Check out the <a title="video" href="http://www.jonandglo.com/2009/08/19/bora-bora-movie/" target="_self">video I made</a> in iMovie.</p>
<p>Around the same time, Aaron Smith and I worked on a project with our NY office. It was a good experience. Aaron wrote a good post on it, <a href="http://codeendeavor.com/archives/468" target="_blank">here</a>. We also added a few new features to Guttershark, we made really good use of Xviews and Aaron added some new stuff to the Service Manager.</p>
<p>Also through our NY office, I will be working on new project involving motion tracking through the webcam. I&#8217;ll be posting some of my findings and experiments here. Expect a new ColorIsolation and possibly a new MotionTracking class to be added to my SVN repo after i finish the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/09/08/what-have-i-been-up-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The One Show AR</title>
		<link>http://redblind.com/blog/2009/05/08/the-one-show-ar/</link>
		<comments>http://redblind.com/blog/2009/05/08/the-one-show-ar/#comments</comments>
		<pubDate>Fri, 08 May 2009 18:27:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[paper]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=161</guid>
		<description><![CDATA[Personally, I think the whole Augmented Reality thing is going to get played out real soon (if it hasn&#8217;t already). Which is why I&#8217;m glad I had the opportunity to build this before the huge wave of AR widgets, apps, and sites hits the masses. This landing page, startwithapencil.com, I built for McCann NY in [...]]]></description>
			<content:encoded><![CDATA[<p>Personally, I think the whole Augmented Reality thing is going to get played out real soon (if it hasn&#8217;t already). Which is why I&#8217;m glad I had the opportunity to build this before the huge wave of AR widgets, apps, and sites hits the masses. This landing page, <a href="http://www.startwithapencil.com" target="_blank">startwithapencil.com</a>, I built for <a href="http://mccannny.com/" target="_blank">McCann NY</a> in support of the <a href="http://www.oneclub.org/" target="_blank">One Show</a>.</p>
<p>I used <a href="http://www.libspark.org/wiki/saqoosha/FLARToolKit/en" target="_blank">FlarToolKit</a> in conjunction with <a href="http://blog.papervision3d.org/" target="_blank">Papervision3D</a>. On top of that, I created the foundation of a FlarToolKit wrapper that introduces stabilization to reduce jitter and access points to retrieve the the orientation of the FlarBaseNode. I also created a new DisplayObject3D class that gave me the ability to render the stream of gold. All of these will get their own blog post in the near future. For now, check out <a href="http://www.startwithapencil.com" target="_blank">the site</a> and you can check out the new code base in progress in <a href="http://redblind.com/blog/redlib-as3/" target="_self">my google code repo</a>.</p>
<p><a href="http://www.startwithapencil.com" target="_blank"><img class="alignnone size-full wp-image-163" title="startwithapencil" src="http://redblind.com/blog/wp-content/uploads/2009/05/startwithapencil.jpg" alt="startwithapencil" width="598" height="448" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/05/08/the-one-show-ar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AR From Across the Pond</title>
		<link>http://redblind.com/blog/2009/03/13/ar-from-across-the-pond/</link>
		<comments>http://redblind.com/blog/2009/03/13/ar-from-across-the-pond/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 17:59:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ARToolKit]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[FlaRToolkit]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://redblind.com/blog/?p=126</guid>
		<description><![CDATA[Looks like my fellow McCannite devs in Belgium beat us too it. If you want to try it out, download the QR code, then hit this page to launch the application. Good job guys.

]]></description>
			<content:encoded><![CDATA[<p>Looks like my fellow <a href="http://blog.mccann.be/" target="_blank">McCannite devs in Belgium</a> beat us too it. If you want to try it out, <a href="http://sqlug.be/go/ar/page" target="_blank">download the QR code</a>, then hit <a href="http://mantis.net7.be/msft_sql_energy_ar/">this page</a> to launch the application. Good job guys.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/yOu45bD2hkg&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/yOu45bD2hkg&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://redblind.com/blog/2009/03/13/ar-from-across-the-pond/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
