from
image gallery
by Yonathan Nativ a simple gui to open, view and process a batch of images - now with an axes scrollbar.
processIm(im)
function [im score] = processIm(im)
% Enter your processing function here...
score = std(im(:));
im = cutMiddle(im,512,512);
im = histeq(im);
im = conv2( double(im), gausswin(5),'same');