<?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: Chroma key and thresholding in Flash (Pixel Bender), revised</title>
	<atom:link href="http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/</link>
	<description>Blog on haXe, Flash/Flex, web development, design, media art, and my personal life.</description>
	<lastBuildDate>Wed, 21 Jul 2010 05:34:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Juan Herrera</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-273</link>
		<dc:creator>Juan Herrera</dc:creator>
		<pubDate>Tue, 06 Jul 2010 17:30:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-273</guid>
		<description>(reposting;  tags were filtered in previous post)
You mean, like

ChromaKey_hsv_combineChannelShader.data.outputColor0UseInputColor.value[0] = 1;
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[0] = 1.0;
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[1] = 1.0;
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[2] = 1.0;
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[3] = 0.0;

I can’t seem to make it work. I’m trying to make a button show behind the chroma like this:

mx:Canvas blendMode=&quot;layer&quot;
  mx:Button label=&quot;my button&quot;/
  mx:Image source=&quot;@Embed(&#039;colors.png&#039;)&quot; blendMode=&quot;alpha&quot;/
/mx:Canvas

What could be wrong?</description>
		<content:encoded><![CDATA[<p>(reposting;  tags were filtered in previous post)<br />
You mean, like</p>
<p>ChromaKey_hsv_combineChannelShader.data.outputColor0UseInputColor.value[0] = 1;<br />
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[0] = 1.0;<br />
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[1] = 1.0;<br />
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[2] = 1.0;<br />
ChromaKey_hsv_combineChannelShader.data.outputColor1.value[3] = 0.0;</p>
<p>I can’t seem to make it work. I’m trying to make a button show behind the chroma like this:</p>
<p>mx:Canvas blendMode=&#8221;layer&#8221;<br />
  mx:Button label=&#8221;my button&#8221;/<br />
  mx:Image source=&#8221;@Embed(&#8216;colors.png&#8217;)&#8221; blendMode=&#8221;alpha&#8221;/<br />
/mx:Canvas</p>
<p>What could be wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Herrera</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-272</link>
		<dc:creator>Juan Herrera</dc:creator>
		<pubDate>Tue, 06 Jul 2010 17:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-272</guid>
		<description>You mean, like

  ChromaKey_hsv_combineChannelShader.data.outputColor0UseInputColor.value[0] = 1;
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[0] = 1.0;
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[1] = 1.0;
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[2] = 1.0;
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[3] = 0.0;
  
I can&#039;t seem to make it work. I&#039;m trying to make a button show behind the chroma like this:


  
  


What could be wrong? Thanks</description>
		<content:encoded><![CDATA[<p>You mean, like</p>
<p>  ChromaKey_hsv_combineChannelShader.data.outputColor0UseInputColor.value[0] = 1;<br />
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[0] = 1.0;<br />
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[1] = 1.0;<br />
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[2] = 1.0;<br />
  ChromaKey_hsv_combineChannelShader.data.outputColor1.value[3] = 0.0;</p>
<p>I can&#8217;t seem to make it work. I&#8217;m trying to make a button show behind the chroma like this:</p>
<p>What could be wrong? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-264</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 14 Jun 2010 04:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-264</guid>
		<description>@Juan 
If look into the source of the kernel, there are &quot;outputColor0UseInputColor&quot; and &quot;outputColor1UseInputColor&quot; params. 

You can set one of them as true and set the other outputColor as transparent, finally put another image at the bottom of the filtered image.</description>
		<content:encoded><![CDATA[<p>@Juan<br />
If look into the source of the kernel, there are &#8220;outputColor0UseInputColor&#8221; and &#8220;outputColor1UseInputColor&#8221; params. </p>
<p>You can set one of them as true and set the other outputColor as transparent, finally put another image at the bottom of the filtered image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Herrera</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-262</link>
		<dc:creator>Juan Herrera</dc:creator>
		<pubDate>Sun, 13 Jun 2010 18:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-262</guid>
		<description>Got it. For flex 4 must change

tabNav.selectedChild;

to

Container(tabNav.selectedChild);

What should be done to get a color image instead of a b/w mask?</description>
		<content:encoded><![CDATA[<p>Got it. For flex 4 must change</p>
<p>tabNav.selectedChild;</p>
<p>to</p>
<p>Container(tabNav.selectedChild);</p>
<p>What should be done to get a color image instead of a b/w mask?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Herrera</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-261</link>
		<dc:creator>Juan Herrera</dc:creator>
		<pubDate>Sun, 13 Jun 2010 18:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-261</guid>
		<description>When trying to compile I get this error:

public function get colorImage():DisplayObject {
    return tabNav.selectedChild;
}

Implicit coercion of a value of type mx.core:INavigatorContent to an unrelated type flash.display:DisplayObject. What might be wrong?</description>
		<content:encoded><![CDATA[<p>When trying to compile I get this error:</p>
<p>public function get colorImage():DisplayObject {<br />
    return tabNav.selectedChild;<br />
}</p>
<p>Implicit coercion of a value of type mx.core:INavigatorContent to an unrelated type flash.display:DisplayObject. What might be wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FLARtoolkit trick: use a colored marker &#124; Andy Li&#39;s Blog</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-208</link>
		<dc:creator>FLARtoolkit trick: use a colored marker &#124; Andy Li&#39;s Blog</dc:creator>
		<pubDate>Thu, 28 Jan 2010 07:34:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-208</guid>
		<description>[...] Here I have a PB kernel that works with any color. Try it!   [...]</description>
		<content:encoded><![CDATA[<p>[...] Here I have a PB kernel that works with any color. Try it!   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kasper Kamperman</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-203</link>
		<dc:creator>Kasper Kamperman</dc:creator>
		<pubDate>Tue, 19 Jan 2010 21:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-203</guid>
		<description>Make sure if you want to use this filter in Flash to install a new version ( 1.5 ) of PixelBender. 
I tried to export it for Flash with version 1.0.352475 ( included with CS4 ) and the filter gave a strange output ( not in the pixel bender environment itself ). 

With version 1.5 the filter works correctly in Flash as well.</description>
		<content:encoded><![CDATA[<p>Make sure if you want to use this filter in Flash to install a new version ( 1.5 ) of PixelBender.<br />
I tried to export it for Flash with version 1.0.352475 ( included with CS4 ) and the filter gave a strange output ( not in the pixel bender environment itself ). </p>
<p>With version 1.5 the filter works correctly in Flash as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention Chroma key and thresholding in Flash (Pixel Bender), revised &#124; Andy Li's Blog -- Topsy.com</title>
		<link>http://blog.onthewings.net/2009/12/10/chroma-key-and-thresholding-in-flash-pixel-bender-revised/comment-page-1/#comment-182</link>
		<dc:creator>Tweets that mention Chroma key and thresholding in Flash (Pixel Bender), revised &#124; Andy Li's Blog -- Topsy.com</dc:creator>
		<pubDate>Thu, 10 Dec 2009 18:14:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.onthewings.net/?p=635#comment-182</guid>
		<description>[...] This post was mentioned on Twitter by Adobe Pixel Bender, Andy Li. Andy Li said: New blog post: Chroma key and thresholding in Flash (Pixel Bender), revised http://bit.ly/5mu0kC [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Adobe Pixel Bender, Andy Li. Andy Li said: New blog post: Chroma key and thresholding in Flash (Pixel Bender), revised <a href="http://bit.ly/5mu0kC" rel="nofollow">http://bit.ly/5mu0kC</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
