<?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"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: High-quality interpolation possible in Jitter?</title>
		<atom:link href="http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/feed</link>
		<description></description>
		<pubDate>Tue, 18 Jun 2013 21:44:27 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-24338</guid>
					<title><![CDATA[High-quality interpolation possible in Jitter?]]></title>
					<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-24338</link>
					<pubDate>Thu, 09 Feb 2006 00:04:28 +0000</pubDate>
					<dc:creator>namaste ranch</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m having trouble with getting decent-quality interpolation when downscaling hi-res JPEGs and TIFFs (source is either full or cropped photo from 3000 x 2000 from Nikon D70 or approx. 5800 x 3700 from Nikon slide scanner) to a Jitter output that is arbitrarily smaller, such as 720 x 480 for DVD or 1024 x 768 for computer display. (For the sake of being complete, I&#8217;ll also say that there will also always be subsequent compositing operations with other downscaled photos or portions thereof.) I&#8217;m a Jitter newbie, but in my experiments with jit.matrix so far, turning on the interpolation option (per Jitter Tutorial 14) does little to eliminate the jaggies when scaling the image down to a smaller jit.matrix and subsequent jit.window. I seem to get the same results whether I use a &#8220;read&#8221; or &#8220;importmovie&#8221; command at the front end. I&#8217;ve just started to look into the GPU processing, but am still unclear what provision Jitter has under either CPU or GPU for smooth interpolation when downsizing large images&#8230; hopefully something approximating Photoshop&#8217;s interpolation capabilities (even if there&#8217;s a tradeoff in processing time).</p>
<p>Any thoughts are much appreciated!</p>
<p>Jeff</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70258</guid>
					<title><![CDATA[Re: High-quality interpolation possible in Jitter?]]></title>
					<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70258</link>
					<pubDate>Thu, 09 Feb 2006 00:15:18 +0000</pubDate>
					<dc:creator>Wesley Smith</dc:creator>

					<description>
						<![CDATA[
						<p>Your best bet is to do the downscaling in something like photoshop and<br />
then bring it in to jitter.</p>
<p>wes</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70259</guid>
					<title><![CDATA[Re: High-quality interpolation possible in Jitter?]]></title>
					<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70259</link>
					<pubDate>Thu, 09 Feb 2006 00:24:59 +0000</pubDate>
					<dc:creator>Joshua Kit Clayton</dc:creator>

					<description>
						<![CDATA[
						<p>jit.matrix only exposes linear interpolation which doesn&#8217;t do much  <br />
for significant downsampling. We might expose something like cubic,  <br />
sinc, or mitchell filters in a later release. There are a few ways to  <br />
deal with this.</p>
<p>1. If appropriate, use an averaging downsample like this</p>
<p>#P outlet 49 268 15 0;<br />
#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P newex 49 226 74 196617 jit.op @op avg;<br />
#P newex 49 153 74 196617 jit.op @op avg;<br />
#P newex 49 189 164 196617 jit.demultiplex @demultiplexdim 1;<br />
#P inlet 49 82 15 0;<br />
#P newex 49 114 76 196617 jit.demultiplex;<br />
#P window linecount 2;<br />
#P comment 145 153 100 196617 4x averaging downsample;<br />
#P connect 5 0 6 0;<br />
#P connect 3 1 5 1;<br />
#P connect 3 0 5 0;<br />
#P connect 4 0 3 0;<br />
#P connect 1 1 4 1;<br />
#P connect 1 0 4 0;<br />
#P connect 2 0 1 0;<br />
#P window clipboard copycount 7;</p>
<p>
2. Use the JS Image class for which we use a Mitchell filter for  <br />
scaling when interpolation is on. (note the fromnamedmatrix() and  <br />
tonamedmatrix() methods demonstrated in jsui_matriximage-example.pat)</p>
<p>3. Draw it in jit.lcd, since when downsampling QD uses a lanczos-sinc  <br />
filter.</p>
<p>4. Make clever use of jit.convolve to perform arbitrary filters.</p>
<p>Hope this helps somewhat.</p>
<p>-Joshua</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70260</guid>
					<title><![CDATA[Re: High-quality interpolation possible in Jitter?]]></title>
					<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70260</link>
					<pubDate>Thu, 09 Feb 2006 00:25:57 +0000</pubDate>
					<dc:creator>namaste ranch</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks, Wes, but I&#8217;m hoping for a solution in Jitter&#8230; even if not as good as Photoshop, better than what I&#8217;m seeing so far with the interpolate attribute for jit.matrix. My project needs to randomly pull cropped areas of the hi-res photos and display them at lower res on the fly&#8230; and still look good enough that it doesn&#8217;t appear downsampled or jaggy.</p>
<p>Any other ideas out there?</p>
<p>Thanks!</p>
<p>Jeff</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70261</guid>
					<title><![CDATA[Re: High-quality interpolation possible in Jitter?]]></title>
					<link>http://cycling74.com/forums/topic/high-quality-interpolation-possible-in-jitter/#post-70261</link>
					<pubDate>Thu, 09 Feb 2006 00:56:55 +0000</pubDate>
					<dc:creator>Wesley Smith</dc:creator>

					<description>
						<![CDATA[
						<p>You may also be able to use some JAVA libraries if speed isn&#8217;t too<br />
much of an issue. Other quick solutions might include running command<br />
line image scaling operations that use GD (through PHP) or ImageMagick<br />
which is quite nice for cammand line image processing.</p>
<p>wes</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

