Avatar
💡
2 results for Pixelbender
  • Below is another simple Pixel Bender filter that I created last night. This one basically, converts an image to gray scale, using the ITU-R Recommendation BT.709 algorithm described here. Here is the filter: <languageVersion : 1.0;> kernel GrayScale < namespace : "mesh"; vendor : "Mike Chambers"; version : 1; description : "Gray scale filter"; > { input image4 src; output pixel4 dst; void evaluatePixel() { dst = sampleNearest(src,outCoord()); //algorithm from ITU-R Recommendation BT.
    pixelbender Created Thu, 18 Sep 2008 12:13:01 +0000
  • After seeing all of the cool stuff people have been doing with Pixel Bender, I finally decided to spend a little time and start learning how to build them myself. The learning curve isn’t too difficult, although you do have to learn some new concepts, and deal with some limitations (at least when creating filters for Flash). The most difficult part for me thus far, is just understanding color and pixel math and manipulation (something I need to read up on more).
    pixelbender Created Wed, 17 Sep 2008 12:17:01 +0000