<?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: Fun with Autostitch : Panoramic video</title>
	<atom:link href="http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/</link>
	<description>Stewart Greenhill's random thoughts and musing</description>
	<pubDate>Wed, 10 Mar 2010 02:20:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: geoff lillemon</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-4/#comment-9281</link>
		<dc:creator>geoff lillemon</dc:creator>
		<pubDate>Wed, 09 Sep 2009 11:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-9281</guid>
		<description>this is really cool man, just what i was looking for, ive been doing some quadcamera autostitch on the iphone, as seen here, http://www.flickr.com/photos/oculart/3902894187/sizes/l/  and the next step was to bring this to video</description>
		<content:encoded><![CDATA[<p>this is really cool man, just what i was looking for, ive been doing some quadcamera autostitch on the iphone, as seen here, <a href="http://www.flickr.com/photos/oculart/3902894187/sizes/l/" rel="nofollow">http://www.flickr.com/photos/oculart/3902894187/sizes/l/</a>  and the next step was to bring this to video</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stewart</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-1082</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Tue, 22 Jul 2008 14:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-1082</guid>
		<description>Hi Ben,

My code is now on-line. &lt;a href="http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/" rel="nofollow"&gt;Check here&lt;/a&gt; for source and binaries.</description>
		<content:encoded><![CDATA[<p>Hi Ben,</p>
<p>My code is now on-line. <a href="http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/" rel="nofollow">Check here</a> for source and binaries.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-1001</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 17 Jul 2008 18:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-1001</guid>
		<description>thanks, i am going to try to do this, it would be helpful to see your code when you get a chance to post.</description>
		<content:encoded><![CDATA[<p>thanks, i am going to try to do this, it would be helpful to see your code when you get a chance to post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stewart</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-986</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Thu, 17 Jul 2008 09:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-986</guid>
		<description>Hi Ben,

The process is a little tricky, but I automated it as best I could given the constraints. I wrote some code to send a bunch of events to the controls in the AutoStitch GUI. Basically it does the same sequence you do when you operate it manually: File-&#62;Open in the Autostitch window, then insert a bunch of file names into the "Edit" control, then click "Open", then (optionally) wait for Autostitch to open the image and close the resulting window, then rename "pano.jpg" to something useful. So you can do a single stitch from the command line like this:

&lt;code&gt; $ stitch.exe file1.jpg file2.jpg ... fileN.jpg&lt;/code&gt;

Or you can use a batch option which looks like this:

&lt;code&gt; $ stitch.exe "frame%03d.jpg" 0 100 file1.jpg ... fileN.jpg&lt;/code&gt;

Which means: for frames M from 0 to 100, stitch "frameMMM.jpg" against file1.jpg ... fileN.jpg, copying output to "outMMM.jpg". This is basically the process I used to make the panoramic movie.

If you have four cameras shooting the action, then you probably just want to stitch four images per frame which would be a simple mod. Or you can use another program to generate a sequence of single stitch commands. I ran the stitcher from a Java application, but you could use any app capable of launching a WIN32 command.

The main limitation is that all of the images have to be in one directory, and Autostitch has to be first "pointed" to that directory (via a File-&#62;Open dialog).

If you're interested I can dig out the binaries and source code for you. I was intending to post them anyway, but never got around to cleaning them up.</description>
		<content:encoded><![CDATA[<p>Hi Ben,</p>
<p>The process is a little tricky, but I automated it as best I could given the constraints. I wrote some code to send a bunch of events to the controls in the AutoStitch GUI. Basically it does the same sequence you do when you operate it manually: File-&gt;Open in the Autostitch window, then insert a bunch of file names into the &#8220;Edit&#8221; control, then click &#8220;Open&#8221;, then (optionally) wait for Autostitch to open the image and close the resulting window, then rename &#8220;pano.jpg&#8221; to something useful. So you can do a single stitch from the command line like this:</p>
<p><code> $ stitch.exe file1.jpg file2.jpg ... fileN.jpg</code></p>
<p>Or you can use a batch option which looks like this:</p>
<p><code> $ stitch.exe "frame%03d.jpg" 0 100 file1.jpg ... fileN.jpg</code></p>
<p>Which means: for frames M from 0 to 100, stitch &#8220;frameMMM.jpg&#8221; against file1.jpg &#8230; fileN.jpg, copying output to &#8220;outMMM.jpg&#8221;. This is basically the process I used to make the panoramic movie.</p>
<p>If you have four cameras shooting the action, then you probably just want to stitch four images per frame which would be a simple mod. Or you can use another program to generate a sequence of single stitch commands. I ran the stitcher from a Java application, but you could use any app capable of launching a WIN32 command.</p>
<p>The main limitation is that all of the images have to be in one directory, and Autostitch has to be first &#8220;pointed&#8221; to that directory (via a File-&gt;Open dialog).</p>
<p>If you&#8217;re interested I can dig out the binaries and source code for you. I was intending to post them anyway, but never got around to cleaning them up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-982</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 17 Jul 2008 02:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-982</guid>
		<description>wow. nice. i have been trying to get autostitch in batch. i want to do a film shot with four cameras.... can you give anymore info on how you do this? thanks!</description>
		<content:encoded><![CDATA[<p>wow. nice. i have been trying to get autostitch in batch. i want to do a film shot with four cameras&#8230;. can you give anymore info on how you do this? thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stewart</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-28</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Tue, 21 Aug 2007 03:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-28</guid>
		<description>Kathryn, I asked the dinosaur but she wouldn't do it.</description>
		<content:encoded><![CDATA[<p>Kathryn, I asked the dinosaur but she wouldn&#8217;t do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kathryn Greenhill</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/comment-page-1/#comment-27</link>
		<dc:creator>Kathryn Greenhill</dc:creator>
		<pubDate>Mon, 20 Aug 2007 15:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-27</guid>
		<description>What cute children, but why do you let them run all over the furniture like that?</description>
		<content:encoded><![CDATA[<p>What cute children, but why do you let them run all over the furniture like that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
