<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for a different tune</title>
	<link>http://stewartgreenhill.com/blog</link>
	<description>Stewart Greenhill's random thoughts and musing</description>
	<pubDate>Sun, 07 Sep 2008 12:45:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>Comment on A batch controller for Autostitch by Stewart</title>
		<link>http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/#comment-1094</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Wed, 23 Jul 2008 07:37:09 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/#comment-1094</guid>
		<description>Great! I look forward to seeing what you can do with it.</description>
		<content:encoded><![CDATA[<p>Great! I look forward to seeing what you can do with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A batch controller for Autostitch by Ben</title>
		<link>http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/#comment-1092</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 23 Jul 2008 02:42:19 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/07/22/a-batch-controller-for-autostitch/#comment-1092</guid>
		<description>Thanks so much!

I already got it up and running to stitch multiples as i needed. I will be playing and producing this week. i'll post some videos soon!</description>
		<content:encoded><![CDATA[<p>Thanks so much!</p>
<p>I already got it up and running to stitch multiples as i needed. I will be playing and producing this week. i&#8217;ll post some videos soon!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fun with Autostitch : Panoramic video by Stewart</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-1082</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Tue, 22 Jul 2008 14:58:36 +0000</pubDate>
		<guid>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>Comment on Fun with Autostitch : Panoramic video by Ben</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-1001</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 17 Jul 2008 18:26:57 +0000</pubDate>
		<guid>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>Comment on Fun with Autostitch : Panoramic video by Stewart</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-986</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Thu, 17 Jul 2008 09:08:09 +0000</pubDate>
		<guid>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>Comment on Fun with Autostitch : Panoramic video by Ben</title>
		<link>http://stewartgreenhill.com/blog/2006/05/22/fun-with-autostitch-panoramic-video/#comment-982</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 17 Jul 2008 02:47:04 +0000</pubDate>
		<guid>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>Comment on Google&#8217;s new Dr Seuss look by Stewart</title>
		<link>http://stewartgreenhill.com/blog/2008/06/18/googles-new-dr-seuss-look/#comment-527</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Fri, 20 Jun 2008 05:59:25 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/06/18/googles-new-dr-seuss-look/#comment-527</guid>
		<description>If you believe the official statement &lt;a href="http://www.seroundtable.com/archives/017268.html" rel="nofollow"&gt;(reported at Search Engine Roundtable)&lt;/a&gt; they're trying to re-brand themselves to appear more "playful". I guess if you have as much power as they do, it helps for people to see you as "nice guys" rather than a potential threat to civilisation as we know it.

&lt;blockquote&gt;"We recognized there was a need for a Google icon that would better work across multiple applications including web, mobile and client applications. We felt the small 'g' had many of the characteristics that best represent our brand: it's simple, playful, and unique."&lt;/blockquote&gt;

I'm not sure they've achieved "unique" - after all, its just a blue "g". But in time I'm sure the association will come:

"Big G, little g, what begins with G?"

(hint: its not "googoo goggles", apologies to Dr Seuss)</description>
		<content:encoded><![CDATA[<p>If you believe the official statement <a href="http://www.seroundtable.com/archives/017268.html" rel="nofollow">(reported at Search Engine Roundtable)</a> they&#8217;re trying to re-brand themselves to appear more &#8220;playful&#8221;. I guess if you have as much power as they do, it helps for people to see you as &#8220;nice guys&#8221; rather than a potential threat to civilisation as we know it.</p>
<blockquote><p>&#8220;We recognized there was a need for a Google icon that would better work across multiple applications including web, mobile and client applications. We felt the small &#8216;g&#8217; had many of the characteristics that best represent our brand: it&#8217;s simple, playful, and unique.&#8221;</p></blockquote>
<p>I&#8217;m not sure they&#8217;ve achieved &#8220;unique&#8221; - after all, its just a blue &#8220;g&#8221;. But in time I&#8217;m sure the association will come:</p>
<p>&#8220;Big G, little g, what begins with G?&#8221;</p>
<p>(hint: its not &#8220;googoo goggles&#8221;, apologies to Dr Seuss)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google&#8217;s new Dr Seuss look by Myles Eftos</title>
		<link>http://stewartgreenhill.com/blog/2008/06/18/googles-new-dr-seuss-look/#comment-518</link>
		<dc:creator>Myles Eftos</dc:creator>
		<pubDate>Thu, 19 Jun 2008 11:01:25 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/06/18/googles-new-dr-seuss-look/#comment-518</guid>
		<description>I absolutely hate it.

And it dilutes their branding. Maybe I'll get used to it, I don't know - but the old one was much more recognisable to those that don't see it as much is I do.</description>
		<content:encoded><![CDATA[<p>I absolutely hate it.</p>
<p>And it dilutes their branding. Maybe I&#8217;ll get used to it, I don&#8217;t know - but the old one was much more recognisable to those that don&#8217;t see it as much is I do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spooky Men of the West launch new album by Stewart</title>
		<link>http://stewartgreenhill.com/blog/2008/05/24/spooky-men-of-the-west-launch-new-album/#comment-336</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Fri, 30 May 2008 00:39:50 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/05/24/spooky-men-of-the-west-launch-new-album/#comment-336</guid>
		<description>Thanks Ash. Looks like we may have consensus on the hats...</description>
		<content:encoded><![CDATA[<p>Thanks Ash. Looks like we may have consensus on the hats&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spooky Men of the West launch new album by Ash</title>
		<link>http://stewartgreenhill.com/blog/2008/05/24/spooky-men-of-the-west-launch-new-album/#comment-317</link>
		<dc:creator>Ash</dc:creator>
		<pubDate>Wed, 28 May 2008 01:17:45 +0000</pubDate>
		<guid>http://stewartgreenhill.com/blog/2008/05/24/spooky-men-of-the-west-launch-new-album/#comment-317</guid>
		<description>Oarsome vork Stewart!! I must agree with the above hat hanging comments.Cheers Ash :)</description>
		<content:encoded><![CDATA[<p>Oarsome vork Stewart!! I must agree with the above hat hanging comments.Cheers Ash <img src='http://stewartgreenhill.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
