none rect-linear image transforms
I'm working on a project mainly for my faculty where I have developed some image transforms in matlab. I would now like to implement these transforms in java (as an applet)
the problem is that I can't find a way to get the image matrix. i have tried to use the PixelGrabber but after changing the information in the matrix and i paint to the screen (actually, first an offscreenBuffer then screen) the image isn't transformed. somehow the original picture is still painted.
i need a way to get hold of the image matrix, make changes to it, and finally paint it on the screen. if anyone knows a way to do this i would just love to know.
affinetransforms cannot be used since they are limited to rect-linear. JAI and JAVA3D is without question due to their lack of support in browsers.
-Pr

