remoteUI client (to manage the params):
https://github.com/armadillu/ofxRemoteUI (open up the workspace file in ofxRemoteUI OSX Client and run the client from there)
i recently needed to load images really really fast and access their pixel data.
so just in case anyone ever needs i'll post it here...
this allows you to load java bufferedimages, not processing's PImage.
most likely this will interrest you if you need to load lots of images and access their pixel data directly.
so far i've tested it on mac and windows with sun jvms, this might break if you use another vendors jvm.
/**
* This is a bit of a hack and might change depending on which jdk you use!
*/
public static BufferedImage loadImageCrazyFast( URL src ){
try{
Image im = Toolkit.getDefaultToolkit().createImage( src );
BufferedImage img = loadImageCrazyFast( new File( "test.jpg" ).toURI().toURL() );
int pixels[] = loadPixelsCrazyFast( img );
img.flush(); // call this or you'll have memory leaks!
should be a good starting point if you ever need fast image loading...