Take a loop at the functions filter2, ordfilt2 and blockproc (this last one is most likely what you will use. It was called blkproc in package versions prior to 2.0.0). I didn't take a good look at what your code is trying to do but I'd be very surprised if those loops really are necessary. You seem to be doing only simple arithmetic at different indexes. Learn how to vectorize your code and you'll see a huge improvement. If you can explain what the code is supposed to be doing, we might be of more help.
Also, you don't need to use sum (sum (x)), you can and should replace these with sum (x(:)). And you also don't need to use sum (x.^2), you can use sumsq (x). So your 4 function call sqrt (sum (sum (curDiff.^2))) of yours could be replaced by sumsq (curDiff(:)).
Compare the following:
octave> x = rand (5000, 5000);
octave> t = cputime (); sqrt (sum (sum (x.^2))); cputime () - t
ans = 0.25202
octave> t = cputime (); sumsq (x(:)); cputime () - t
ans = 0.060004
Not only it's much shorter and easier to read, it's also 4x faster (which in a huge loop like yours will make a huge difference).