(Lowe 2004) talks about breaking up each octave (doubling of sigma) into a number of scales, convolving those with Gaussians, then taking the difference in adjacent gaussians. Then they downsample and repeat. It seems that they are doing something similar to what is explained in the slides [i.e. D(x,y,sigma) = (G(x,y,k*sigma) - G(x,y,sigma)) * I(x,y)], but with k = 2^(1/s).
My questions are 1) Can we simply make s = 1 (or should we make this a parameter)? and 2) How many octaves should we be spanning (or should we make this too a parameter)? and most importantly 3) How do we do this in a way that we don't need to make num_octaves*s copies of the image?(!)
Thanks,