I want to extract the HOG of every sliding window of size [wH,wW] of an image I.
Currently what I have is:
windows = im2col(I, [wH,wW]);
for i=1:step:size(windows,2)
sub = reshape(windows(:,i), [wH,wW]);
features(i,:) = featuresExtraction(sub);
end
in which the featuresExtraction script will extract the HOG, etc.
I try to run and see that it runs very very slowly. Do you have any suggestion to make it better?
