I am having trouble understanding the dense sift documentation in vlfeat shown at http://www.vlfeat.org/matlab/vl_dsift.html. They have mentioned a bin size
parameter for the width of the grid at a pixel and have mentioned a step
parameter for vertical and horizontal displacement.
I test these parameters using the following code
[f, d] = vl_dsift(single(image), 'size', 16 , 'step' , 5 ) ;
where my image is a 50X50 matrix. I expect the keyframes to start from (1,1) move to (1,6) #displacement of 5 horizontally and so on.
But the result that I get has only 1 sift descriptor at (25,25)
point.
Does anyone know what these parameters actually mean and if I am applying them correctly ? Is there any way to apply it in the above mentioned pattern (starting from top left with vertical and horizontal displacement of step size apart from manually getting the locations)