rmac icon indicating copy to clipboard operation
rmac copied to clipboard

On the calculation of the Local region of feature Graph in this pape

Open wtskk opened this issue 5 years ago • 0 comments

ovr = 0.4; % desired overlap of neighboring regions steps = [2 3 4 5 6 7]; % possible regions for the long dimension

W = size(X, 2); H = size(X, 1);

w = min([W H]); w2 = floor(w/2 -1);

b = (max(H, W)-w)./(steps-1); [~, idx] = min(abs(((w.^2 - w.*b)./w.^2)-ovr)); % steps(idx) regions for long dimension

First of all, thank the author for sharing this code and article。Excuse me, why does the above code count like this? I donundefinedt understand.

wtskk avatar Sep 14 '19 02:09 wtskk