<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Roomba Robot Upgrade</title>
	<link>http://groklab.org/searchandrescuerobot</link>
	<description>Building Robots and Engineers</description>
	<pubDate>Tue, 04 Nov 2008 19:44:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Happy Halloween!</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/31/happy-halloween/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/31/happy-halloween/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 19:38:10 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Laser Rangefinder]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/31/happy-halloween/</guid>
		<description><![CDATA[The rangerfinder algorithm was calibrated. Measurements of pixel from center were taken every five inches from around 2 to eight feet. A power curve was fitted to the data and produced error that was less than 10%. Code should be released sometime next week. 
]]></description>
			<content:encoded><![CDATA[<p>The rangerfinder algorithm was calibrated. Measurements of pixel from center were taken every five inches from around 2 to eight feet. A power curve was fitted to the data and produced error that was less than 10%. Code should be released sometime next week. </p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/31/happy-halloween/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Image Processing Algorithm</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/31/image-processing-algorithm/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/31/image-processing-algorithm/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 06:08:16 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/31/image-processing-algorithm/</guid>
		<description><![CDATA[The image processing algorithm has been written and tested. It does a reasonably good job at finding the brightest pixel from center, but reflections off the metal tool chest still gives it problems. We&#8217;ll try to calibrate the vision system to get some distance measurements off it. Look for the finished code sometime soon.
]]></description>
			<content:encoded><![CDATA[<p>The image processing algorithm has been written and tested. It does a reasonably good job at finding the brightest pixel from center, but reflections off the metal tool chest still gives it problems. We&#8217;ll try to calibrate the vision system to get some distance measurements off it. Look for the finished code sometime soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/31/image-processing-algorithm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Excel Macros</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/29/microsoft-excel-macros/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/29/microsoft-excel-macros/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 08:41:59 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Laser Rangefinder]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/29/microsoft-excel-macros/</guid>
		<description><![CDATA[I never knew that one could write code for Microsoft Excel until last year. The macros are mostly used to automate repetitive tasks and perform complex calculations. (It could also be used to make music videos. Check out http://www.youtube.com/watch?v=h9_YkXHCkgA) 
Since a spreadsheet is made out of individual cells, the spreadsheet itself could be looked upon [...]]]></description>
			<content:encoded><![CDATA[<p>I never knew that one could write code for Microsoft Excel until last year. The macros are mostly used to automate repetitive tasks and perform complex calculations. (It could also be used to make music videos. Check out http://www.youtube.com/watch?v=h9_YkXHCkgA) </p>
<p>Since a spreadsheet is made out of individual cells, the spreadsheet itself could be looked upon as an array. Programming in VBA could be done very quick and dirty. All the good programming practices learned in introductory computer programming courses could be thrown out the window (Sorry to make you cry, Prof. Thomas) Heck, variables besides arrays do not need to be defined. More importantly, numbers could be seen exactly where they go when cells are being manipulated, and the code could be stepped through with ease. Once the algorithm has been developed, then it could be re-written in whatever language that is needed. </p>
<p>-Howard</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/29/microsoft-excel-macros/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Socket Interface</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/27/socket-interface/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/27/socket-interface/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 18:50:27 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Laser Rangefinder]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/27/socket-interface/</guid>
		<description><![CDATA[The java version of the sample code was downloaded and recompiled and works like a charm after some initial compiling issues. Since it is a socket connection, it allows the image to be processed on another computer if needed. Now all that is needed is to modify the program to do what we needed. The [...]]]></description>
			<content:encoded><![CDATA[<p>The java version of the sample code was downloaded and recompiled and works like a charm after some initial compiling issues. Since it is a socket connection, it allows the image to be processed on another computer if needed. Now all that is needed is to modify the program to do what we needed. The image comes as one gigantic one-dimensional array.. i.e. image_array(1st pixel blue, 1st pixel green, first pixel red, 2nd pixel blue, 2nd pixel green, 2nd pixel red,..) so the array might need to be converted into a 2d array to make coding the algorithm less challenging. But adding this addition step might slow down the processing.</p>
<p>-Howard</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/27/socket-interface/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Laser Rangefinder progress</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/26/laser-rangefinder-progress/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/26/laser-rangefinder-progress/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 17:55:31 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Laser Rangefinder]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/26/laser-rangefinder-progress/</guid>
		<description><![CDATA[The plan is to use the webcam and a laser to determine how far an object is from the robot. We wanted to use a horizontal laser line so multiple distance measurements could be made from each frame. The laser line proved to be too faint for the camera to detect it, even when various [...]]]></description>
			<content:encoded><![CDATA[<p>The plan is to use the webcam and a laser to determine how far an object is from the robot. We wanted to use a horizontal laser line so multiple distance measurements could be made from each frame. The laser line proved to be too faint for the camera to detect it, even when various sets of filters are applied. A budget of 30 dollars was given to find a new laser that is bright enough  for our purposes. A quick search proved that there were two options available, 5mW lasers, which is the one being used, or a 200mW laser diode off a DVD burner with no options in between. After further research, a 200mW laser proved to be a little too dangerous for our needs. If you&#8217;re curious on the capabilities of a 200mW laser, check out http://www.instructables.com/id/Laser-Flashlight-Hack!!/</p>
<p>For now, the line generating lens is removed from the laser so initial development of the image processing algorithm could begin. </p>
<p>We currently trying to implement the &#8220;webcam based DIY laser rangefinder&#8221; available at http://www.pages.drexel.edu/~twd25/webcam_laser_ranger.html The algorithm for finding the red dot is to detect the brightest-colored red pixel in the picture. Since there are no filters in Roborealm that fit our needs, a separate filter must to be created. Writing a program for roborealm allows us to focus on image processing and not worry about the webcam interface. </p>
<p>-Howard</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/26/laser-rangefinder-progress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slowly but surely&#8230;</title>
		<link>http://groklab.org/searchandrescuerobot/2008/10/26/slowly-but-surely/</link>
		<comments>http://groklab.org/searchandrescuerobot/2008/10/26/slowly-but-surely/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 17:14:02 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2008/10/26/slowly-but-surely/</guid>
		<description><![CDATA[Realizing that no one seemed to post on the front page of the blog in 10 months, I figured that I should provide a brief upgrade on the robot. 
Roborealm is currently used as the backbone of this project. In addition to providing a substantial list of image processing capabilities, it also has the ability [...]]]></description>
			<content:encoded><![CDATA[<p>Realizing that no one seemed to post on the front page of the blog in 10 months, I figured that I should provide a brief upgrade on the robot. </p>
<p>Roborealm is currently used as the backbone of this project. In addition to providing a substantial list of image processing capabilities, it also has the ability to use custom-made filters and to transfer images over the network. It has capabilities to control the pan/tilt/zoom of the Creative Live! webcam and the iRobot Create robotic platform.  Roborealm itself can also be controlled via a network connection. This is essentially a one-stop shop for everything that we needed. Best of all, its free!</p>
<p>Since the discovery of Roborealm, we have been trying to get individual components to work properly with the software. </p>
<p>Creative Live! Webcam-<br />
          -Zoom can be controlled with precision<br />
          -There are six increments (three from center on each side) that the motor could pan to</p>
<p>iRobot Create-<br />
          -Interface is much cleaner and easier to use than the Roombacomm software package that was used before<br />
          -All the sensor data could be taken with ease since the VB scripting module operates in a polling mode</p>
<p>Laser-<br />
          -Laser is powered directly off the iRobot create and could be turned on and off using the iRobot Create module. </p>
<p>Roborealm Networking Capabilities-<br />
          -Good question!</p>
<p>The goal right now is to get the image processing capabilities to work, the last piece of the puzzle.</p>
<p>-Howard</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2008/10/26/slowly-but-surely/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pictures</title>
		<link>http://groklab.org/searchandrescuerobot/2007/12/19/pictures/</link>
		<comments>http://groklab.org/searchandrescuerobot/2007/12/19/pictures/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 07:24:00 +0000</pubDate>
		<dc:creator>howard chen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2007/12/19/pictures/</guid>
		<description><![CDATA[Well&#8230; this is the completed prototype&#8230; (One can only hope&#8230;)

]]></description>
			<content:encoded><![CDATA[<p>Well&#8230; this is the completed prototype&#8230; (One can only hope&#8230;)</p>
<p><img src="http://groklab.org/searchandrescuerobot/files/2007/12/img_0511.JPG" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2007/12/19/pictures/feed/</wfw:commentRss>
		</item>
		<item>
		<title></title>
		<link>http://groklab.org/searchandrescuerobot/2007/12/18/15/</link>
		<comments>http://groklab.org/searchandrescuerobot/2007/12/18/15/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 00:37:18 +0000</pubDate>
		<dc:creator>mperret</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2007/12/18/15/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href='http://groklab.org/searchandrescuerobot/files/2007/12/laser_holder_assembly.jpg' title='Laser Holding Wand'><img src='http://groklab.org/searchandrescuerobot/files/2007/12/laser_holder_assembly.jpg' alt='Laser Holding Wand' width="600/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2007/12/18/15/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Masthead Image</title>
		<link>http://groklab.org/searchandrescuerobot/2007/10/19/new-masthead-image/</link>
		<comments>http://groklab.org/searchandrescuerobot/2007/10/19/new-masthead-image/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 11:51:01 +0000</pubDate>
		<dc:creator>cdaniels</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://groklab.org/searchandrescuerobot/2007/10/19/new-masthead-image/</guid>
		<description><![CDATA[The new image at the top of the page was taken by the Creative pan and tilt camera stitched together.  Nice work, Mike, for getting that going.  Now if we can just figure out how to get the images and control the pan/tilt with our own code.
]]></description>
			<content:encoded><![CDATA[<p>The new image at the top of the page was taken by the Creative pan and tilt camera stitched together.  Nice work, Mike, for getting that going.  Now if we can just figure out how to get the images and control the pan/tilt with our own code.</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2007/10/19/new-masthead-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://groklab.org/searchandrescuerobot/2007/07/05/hello-world/</link>
		<comments>http://groklab.org/searchandrescuerobot/2007/07/05/hello-world/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 15:00:52 +0000</pubDate>
		<dc:creator>max</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to Groklab.org. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://groklab.org/" >Groklab.org</a>. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://groklab.org/searchandrescuerobot/2007/07/05/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
