What is PB similar to? Where can i learn to grasp it?

Hi all,
I am excited about Pixel Bender and id really like to learn more about it but i dont know where to look.
I tried googling for "image processing formula" but that didnt really help much. I have also seen people recommend openGL or GSML or something like that but then i dont know how much use this is to me. Pixel Bender must be entirely primitive compared to the likes of a standard shading language? Then you have the various limitations in Flash.
Im not sure what i want to be looking for. I can google for pixel bender files but short of copy and paste, i have no idea what is going on.
Cheers,
AS3 Developer.

This is a perfectly timed question! Since my intro to Pixel Bender tutorial from MAX 2008 was posted yesterday on the Pixel Bender developer center: http://www.adobe.com/devnet/pixelbender/
Look at the section called "Learning Pixel Bender", in addition to my tutorial, there are videos there from Lee Brimelow and Paul Burnett that walk you through creating Pixel Bender filters and using them in Flash.
There are indeed GLSL and HLSL (Direct X shader) language resources that would also help you with Pixel Bender, but you might be best off starting with the resources above and then just have fun screwing around with the math in your kernels and experimenting. That will get you a basic understanding and then you can go from there based on what interests you. You should also look at the Pixel Bender filters in the Pixel Bender Exchange: http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=26&loc=en_us for reference once you understand Pixel Bender a little better.
Hope that helps!

Similar Messages

  • I have an iMac (the desktop) I've stupidly left the cable you plug the monitor into the wall with there. What are they called and where can I get a new one?

    I have an iMac (the desktop) I've stupidly left the cable you plug the monitor into the wall with there. What are they called and where can I get a new one?

    Presumably the mains cable, which you can get from an Apple Store.

  • Just purchased Mac Book,   VERY  new to Mac world,   "ouch",,  I am looking to design my own website,,  is there a program built in that will allow this,  if so,, what is it called, and where can I find it???   Thanks,

    Just purchased Mac Book,   VERY  new to Mac world,   "ouch",,  I am looking to design my own website,,  is there a program built in that will allow this,  if so,, what is it called, and where can I find it???   Thanks,

    There are many ways and applications that you can use to build a web site. Which will be best for you will depend on the site you want to build and your level of expertise. Many experienced web developers just use a text editor, often one with specialized features for web programming (BBEdit, for example), but there are programs that can offer additional help, up to and including "drag and drop". Without knowing more about your needs, it's difficult to offer specific advice, but here are some possibilities:
    iWeb - came with your Mac. Easy to build but rather limiting in what you can do.
    RapidWeaver - more flexible and capable than iWeb but harder to use; sort of an "inbetweener" application
    Dreamweaver - powerful but expensive and a steep learning curve
    There are of course a number of other options. If you can provide more detail about what you wish to build and your level of experience, someone can probably make more targeted recommendations.
    Regards.

  • What is Recovery HD and where can I get it?

    What is Recovery HD and where can I get it? Disk utility says my hard drive is corrupt and needs to be repaired using Recovery HD. I downloaded Lion and do not have a CD from which to restart. Please help. My computer barely functions. This just began today, although it has been slower than usual for a few weeks. I removed lots of old Aperture Libraries with no benefit - even worse now.

    The Recovery HD is in lieu of a machine-specific Mac OS X install disk that you received in the past with versions that predate Lion.  With Lion and Mountain Lion you no longer buy a DVD of the Mac OS X nor do you get an install disi with a machine that has the system pre-installed.  The Recovery HD is a means to resinstall/restore the operating system, only.  None of the peripheral software or data you have have accumulated.  For that you still need a backup of the hard drive.
    Likewise you cannot write to the Recovery HD...doesn't even show up in Disk Utility and will not show up on the desktop if you have your hard drive(s) and partitions display on the desktop.
    It will show up if you restart and hold the Opt key, and you can boot from it that way or the Command+R key way that is most often recommended.

  • What are PC cards and where can I browse the choices?

    I see that my PowerBook has a PC slot, but what kinds of cards go in there? What are the options? Where can I browse the choices?

    I would be interested in the answer to this too.

  • Where can I learn about the 'Base Warranty of Depot Service"

    There is a default warranty of one year with new T61 called 'Depot Service' Where can I learn more about it, what it covers and how does it work ?

    auzbee,
    You can start by taking a look at the "Service and Troubleshooting Guide-ThinkPad T61" and "ThinkPad Safety and Warranty Guide" booklets that come with the machine.
    Centex

  • Where can I learn Flash CS5.5 basic + Game development?

    Hey where can I learn Flash CS5.5 basics along with game development with the Adobe Gaming SDK?

    By the way i own the site 02geek.com its an online school for programing and we do focus a lot of our time in flash. if you want a step by step from 0 to geek type of training give my site a try

  • Where can I learn JSP specific to ATG Dynamo?

    I'm new to ATG Dynamo and I see I can use JSP as opposed to JHTML with the droplets. Where can I learn more on this JSP and droplets? Is there a tutorial out there? ATG site doesn't have much.

    Hi Did you find any specific BOOK for ATG Dynamo... If So please send me an email or put the name in this list , Thanks

  • Where can I learn how to setup and use the new features in Mountain Lion?

    Where can I learn how to setup and use the new features in Mountain Lion?

    MacWorld has a Superguide, TidBITS has Take Control books, and probably a flock of other publishers have physical books.

  • Where can I learn working in Forms6i ?

    Hi all.
    Maybe someone can help me? Where can I learn, how to work and develop in Forms ?
    Thanks.

    next step is customizing your query:
    to restrict your query to a specific department:
    build a second form, buod a block based on the DEPT-table, by suere to include the deptno-column in your block, everyting elese the same a you did with you current form.
    create a button in your dept-block, integrate it in the layout and create a WHEN-BUTTON-PRESSED-trigger on it.
    In the trigger we will call your EMP-form, passing the current value of deptno, to restrict the query in the emp-module.
    -- Put the value of DEPTNO into a global
    :GLOBAL.DEPTNO:=:DEPT.DEPTNO;
    -- call the emp-form
    CALL_FORM('EMP', NO_HIDE, DO_REPLACE);In WHEN-NWE-FORM-INStANCE-trigger of EMP-module do:
    -- make sure GLOBAL.DEPTNO exists
    DEFAULT_VALUE(NULL, 'GLOBAL.DEPTNO');
    IF :GLOBAL.DEPTNO IS NOT NULL THEN
      -- restrict the query of the EMP-block
      SET_BLOCK_PROPERTY('EMP', ONETIME_WHERE, 'DEPTNO=' || :GLOBAL.DEPTNO);
      GO_BLOCK('EMP');
      -- automatic query
      EXECUTE_QUERY;
    END;As an addition, we will read the department name for each record and show it besides the deptno, to do so:
    - manually create a new item in your EMP-block, name it DSP_DNAME, put datatype and length to appropiate value of DNAME-column is table DEPT, set "Database Item" to no, integrate item in your layout
    - create a POST-EUQRE-trigger on the EMP-block to read the DNAME for each row.
    DECLARE
      CURSOR crDept IS
        SELECT DNAME
          FROM DEPT
         WHERE DEPTNO=:EMP.DEPTNO;
    BEGIN
      OPEN crDept;
      FETChb crDept INTo E:EMP.DSP_DNAME;
      CLOSE crDept;
    END;thats it for now...
    good luck

  • How or where I can connect photoelectric sensors on 7350 controller or Mid-7604. Also where can I learn about basic wiring connection of sensors Thanks

    How or where I can connect photoelectric sensors on 7350 controller or Mid-7604. Also where can I learn about basic wiring connection  of sensors Thanks

    Hello Hassan,
    Thank you for using National Instruments Discussion Forum.  It looks like this is a duplicate post.  If it isn't I apologize and please repost to clarify.  Otherwise please use THIS thread for the discussion.
    Regards,
    Mark T
    Applications Engineer
    National Instruments

  • Where can I learn Objective-C and Cocoa?

    I want to learn Objective-C and Cocoa to make apps. Can someone tell me please where can I learn these languages

    Hope this  site provides the info.
    http://training.apple.com/locations?q=&c=all&country=IN
    Best.

  • Will any body recommends where can l learn sap bw in ameerpet in hyderabadd

    will any body recommends where can l learn sap bw in ameerpet in hyderabadd

    > Hi Ali,
    >
    > According to my opinion, RR RAO is the best
    >  institute in our Hyderabad.

    >   It helps u more and more.
    >    Have a good life.
    >
    >                       ANJALI
    Hi Anjali,
    Request you not to promote biased training centers, rather you can refer siemens who are authorised training partners.
    Regards,
    Iqbal

  • Have a macbook alu running on osx 10.5.8... but need to upgrade software to run my iphone 5,, what do i need and where can i get it?

    Hi
    I have a Macbook alu running on osx 10.5.8
    I cant get anymore software updates any more ..i guess because its too old?
    However have just got an iphone 5 which it will not work with.
    What software do i need to upgrade to and where can i get it
    Thanks
    Mark

    PloppyPloppy wrote:
    Hi
    I have a Macbook alu running on osx 10.5.8
    Hi Mark,
    You need to Update to OS X 10.6.8 = Snow Leopard so you can Update iTunes to Sync your iPhone.
    Upgrading to Snow Leopard = OS X 10.6.x
    It is Not available as a download... It is a Paid Upgrade.
    Do this first...
    Check that your Mac meets the System Requirements for Snow Leopard...
    Snow Leopard Tech Specs
    http://support.apple.com/kb/SP575
    If so... Purchase a Snow Leopard Install Disc...
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Other countries...
    http://support.apple.com/kb/HE57
    After the Successful Install, run Software Update to get the latest updates for Snow Leopard and iTunes.
    Be sure to make a Backup of your Current System Before Upgrading...

  • HT6208 What is a passcode and where can you get it?

    What is the passcode for ios 7.1.1 and where can you get it?

    There is no passcode until you make one.
    Please get iPad and iPad mini User Guide (For iOS 7 Software)Sep 18, 2013 - 21 MB.
    If you've forgotten yours:
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

Maybe you are looking for