I want to work with you! April 21, 2009 at 10:13 am
…in my workshop at this years webinale conference.
Last week, the organizers asked me quite suddenly if I´m interested in giving a workshop about filter- and effectprogramming with Flash and Pixel Bender. Well, of course and I shall be delighted to see and work with you for one day in Berlin.
Not sure what we can create within a three hours workshop, but I´m planning to show a very broad range of programming approaches and concepts, from explaining various concepts like Delaunay triangulations, fast Voronoi tesselation, generating spheres and the like with Pixel Bender, Shader-rudiments such as Escherizer and Complex Droste (of wich more next week in Cologne), through to fluid blobsystems and some new stuff I can´t show you yet, due to the fact I will initially release it at this years flashforum conference.
See you.



Wow it seems it will be pretty a lot of interesting stuff. If I could I would gladly visit :)
thx. I really hope that there´s enought time to explain all that stuff, but I think we´ll have a fine day anyway… ;)
Hello, I´m doing proyect with webcam in real time, How I can activate it in Pixel Bender and apply emboss filter?
I do not understand a lot of code, if i could explain step by step…
Thank you very much
if you just need to add emboss-shader to your picture, you can use the pb-shader as filter within Flash.
[Embed(source = “../myEmbossShader.pbj”, mimeType = ‘application/octet-stream’)] private static const ebs:Class;
private var embossFilter :ShaderFilter;
private var embossShader :Shader = new Shader(new ebs());
embossFilter = new ShaderFilter();
embossFilter.shader = embossShader;
//and than, for example some like this yourImg.applyFilter( yourImg, yourImg.rect, new Point, embossFilter );