<?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: Bilinear interpolation article referenced in another language</title>
	<atom:link href="http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/feed/" rel="self" type="application/rss+xml" />
	<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/</link>
	<description>Where entrepreneurship, mathematics and programming meet</description>
	<lastBuildDate>Wed, 28 Mar 2012 04:44:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Will Dwinnell</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5490</link>
		<dc:creator>Will Dwinnell</dc:creator>
		<pubDate>Thu, 26 Mar 2009 12:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5490</guid>
		<description>It sounds like it&#039;s time to build that language classifier!  

Hmm... input: letter frequency, digram frequency output: language

Any takers?

&lt;abbr&gt;&lt;em&gt;&lt;abbr&gt;&lt;em&gt;Will Dwinnells last blog post..&lt;a href=&quot;http://matlabdatamining.blogspot.com/2009/03/status-update-mar-2009.html&quot; rel=&quot;nofollow&quot;&gt;Status Update: Mar-2009&lt;/a&gt;&lt;/em&gt;&lt;/abbr&gt;&lt;/abbr&gt;&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>It sounds like it&#8217;s time to build that language classifier!  </p>
<p>Hmm&#8230; input: letter frequency, digram frequency output: language</p>
<p>Any takers?</p>
<p><abbr><em><abbr><em>Will Dwinnells last blog post..<a href="http://matlabdatamining.blogspot.com/2009/03/status-update-mar-2009.html" rel="nofollow">Status Update: Mar-2009</a></em></abbr></em></abbr></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Tan</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5479</link>
		<dc:creator>Vincent Tan</dc:creator>
		<pubDate>Sun, 22 Mar 2009 03:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5479</guid>
		<description>Hi vottini, I&#039;m glad you found the explanation useful. Thanks for linking it.</description>
		<content:encoded><![CDATA[<p>Hi vottini, I&#8217;m glad you found the explanation useful. Thanks for linking it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vottini</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5477</link>
		<dc:creator>vottini</dc:creator>
		<pubDate>Sat, 21 Mar 2009 16:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5477</guid>
		<description>Hello Vincent!

It was indeed used in a good light! I&#039;m a student very interested on image manipulation and I was confused about the rotation of pixels, the use of sines and cosines and the float coordinates that would naturally arise from those operations. Your article explained it in a very neat way to me and I linked it to dectoplate&#039;s entry, as I had thought on several dark ways to do that but the answer was quite simple.

As I didn&#039;t have done this yet, thank you very much for the explanation! =)</description>
		<content:encoded><![CDATA[<p>Hello Vincent!</p>
<p>It was indeed used in a good light! I&#8217;m a student very interested on image manipulation and I was confused about the rotation of pixels, the use of sines and cosines and the float coordinates that would naturally arise from those operations. Your article explained it in a very neat way to me and I linked it to dectoplate&#8217;s entry, as I had thought on several dark ways to do that but the answer was quite simple.</p>
<p>As I didn&#8217;t have done this yet, thank you very much for the explanation! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Tan</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5476</link>
		<dc:creator>Vincent Tan</dc:creator>
		<pubDate>Sat, 21 Mar 2009 15:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5476</guid>
		<description>Thanks for translating that, Peter. The funny thing is, I could roughly follow the code itself, but I&#039;m totally lost on the comments... *smile* Ahhh, now it makes sense.</description>
		<content:encoded><![CDATA[<p>Thanks for translating that, Peter. The funny thing is, I could roughly follow the code itself, but I&#8217;m totally lost on the comments&#8230; *smile* Ahhh, now it makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter P. Lupo</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5475</link>
		<dc:creator>Peter P. Lupo</dc:creator>
		<pubDate>Sat, 21 Mar 2009 14:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5475</guid>
		<description>Here is the translation:
      # Y to X scale change coeficient:
      cm &lt;- (m&#039;-1)/(m-1) # vertically
      cn &lt;- (n&#039;-1)/(n-1) # horizontally

      from i to 0 step m-1
        from j to 0 step n-1
          # pair (i,j) mapping from Y to (i&#039;,j&#039;) in X
          i&#039; &lt;- round(i*cm) # scale and rounding (from i to i&#039;)
          j&#039; &lt;- round(j*cn) # scale and rounding (from j to j&#039;)
          Y(i,j) &lt;- X(i&#039;,j&#039;)
        end
      end
The post at Velho&#039;s was based on this article:
http://www.cambridgeincolour.com/tutorials/image-interpolation.htm</description>
		<content:encoded><![CDATA[<p>Here is the translation:<br />
      # Y to X scale change coeficient:<br />
      cm &lt;- (m&#8217;-1)/(m-1) # vertically<br />
      cn &lt;- (n&#8217;-1)/(n-1) # horizontally</p>
<p>      from i to 0 step m-1<br />
        from j to 0 step n-1<br />
          # pair (i,j) mapping from Y to (i&#8217;,j&#8217;) in X<br />
          i&#8217; &lt;- round(i*cm) # scale and rounding (from i to i&#8217;)<br />
          j&#8217; &lt;- round(j*cn) # scale and rounding (from j to j&#8217;)<br />
          Y(i,j) &lt;- X(i&#8217;,j&#8217;)<br />
        end<br />
      end<br />
The post at Velho&#8217;s was based on this article:<br />
<a href="http://www.cambridgeincolour.com/tutorials/image-interpolation.htm" rel="nofollow">http://www.cambridgeincolour.com/tutorials/image-interpolation.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Tan</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5474</link>
		<dc:creator>Vincent Tan</dc:creator>
		<pubDate>Sat, 21 Mar 2009 14:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5474</guid>
		<description>Thanks O Velho!</description>
		<content:encoded><![CDATA[<p>Thanks O Velho!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O Velho</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5473</link>
		<dc:creator>O Velho</dc:creator>
		<pubDate>Sat, 21 Mar 2009 13:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5473</guid>
		<description>Updating:

http://www.ovelho.com/content/bilinear-interpolation-language

You are very welcome!

Cheers

&lt;abbr&gt;&lt;em&gt;&lt;abbr&gt;&lt;em&gt;O Velhos last blog post..&lt;a href=&quot;http://www.ovelho.com/content/miss%C3%A3o-sts-119-ao-vivo#comment-25274&quot; rel=&quot;nofollow&quot;&gt;Re: Missão STS-119 ao vivo&lt;/a&gt;&lt;/em&gt;&lt;/abbr&gt;&lt;/abbr&gt;&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Updating:</p>
<p><a href="http://www.ovelho.com/content/bilinear-interpolation-language" rel="nofollow">http://www.ovelho.com/content/bilinear-interpolation-language</a></p>
<p>You are very welcome!</p>
<p>Cheers</p>
<p><abbr><em><abbr><em>O Velhos last blog post..<a href="http://www.ovelho.com/content/miss%C3%A3o-sts-119-ao-vivo#comment-25274" rel="nofollow">Re: Missão STS-119 ao vivo</a></em></abbr></em></abbr></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O Velho</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5472</link>
		<dc:creator>O Velho</dc:creator>
		<pubDate>Sat, 21 Mar 2009 13:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5472</guid>
		<description>Hi Vincent!

I&#039;m the owner of the OVelho.com and I can get you in touch with the author of the post, if you want. Just drop me a message. By the way, the language is Portuguese.

Cheers.

O Velho (means &quot;old man&quot;) :)</description>
		<content:encoded><![CDATA[<p>Hi Vincent!</p>
<p>I&#8217;m the owner of the OVelho.com and I can get you in touch with the author of the post, if you want. Just drop me a message. By the way, the language is Portuguese.</p>
<p>Cheers.</p>
<p>O Velho (means &#8220;old man&#8221;) <img src='http://polymathprogrammer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Tan</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5471</link>
		<dc:creator>Vincent Tan</dc:creator>
		<pubDate>Sat, 21 Mar 2009 05:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5471</guid>
		<description>Hey thanks! I gave up trying to figure out the source language after 20 minutes...</description>
		<content:encoded><![CDATA[<p>Hey thanks! I gave up trying to figure out the source language after 20 minutes&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://polymathprogrammer.com/2009/03/20/bilinear-interpolation-article-referenced-in-another-language/comment-page-1/#comment-5470</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 20 Mar 2009 23:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://polymathprogrammer.com/?p=1145#comment-5470</guid>
		<description>It&#039;s Portuguese, which I don&#039;t speak, but a Google Translated version is here: http://translate.google.co.uk/translate?u=http%3A%2F%2Fwww.ovelho.com%2Fcontent%2Fredimensionamento-simples-de-imagem-e-outras-transforma%25C3%25A7%25C3%25B5es&amp;sl=pt&amp;tl=en&amp;hl=en&amp;ie=UTF-8

(The title is &quot;Simple image resizing and other processing&quot;)</description>
		<content:encoded><![CDATA[<p>It&#8217;s Portuguese, which I don&#8217;t speak, but a Google Translated version is here: <a href="http://translate.google.co.uk/translate?u=http%3A%2F%2Fwww.ovelho.com%2Fcontent%2Fredimensionamento-simples-de-imagem-e-outras-transforma%25C3%25A7%25C3%25B5es&#038;sl=pt&#038;tl=en&#038;hl=en&#038;ie=UTF-8" rel="nofollow">http://translate.google.co.uk/translate?u=http%3A%2F%2Fwww.ovelho.com%2Fcontent%2Fredimensionamento-simples-de-imagem-e-outras-transforma%25C3%25A7%25C3%25B5es&#038;sl=pt&#038;tl=en&#038;hl=en&#038;ie=UTF-8</a></p>
<p>(The title is &#8220;Simple image resizing and other processing&#8221;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

