rmac icon indicating copy to clipboard operation
rmac copied to clipboard

MATLAB implementation of the R-MAC descriptor and the intergral-max-pooling localization (ICLR 2016 paper)

Results 5 rmac issues
Sort by recently updated
recently updated
newest added

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 =...

```matlab % apply powerlaw function x = powerlaw (x, a) if a == 1, return; end x = sign (x) .* abs(x) .^ a; ``` Regarding to the powerlaw function...

Hello, I read your paper of RMAC, thank you for sharing your code. It really offers great insights! I am trying to reproducing some of the results from your paper,...

first of all. thanks for your code and paper. I have a stupid question about the aggregation. why do you sum the maxpooling feature? It has any relationship with the...

i have read your paper, i have some question: 1. the rmac or mac is one of code for a image? 2. why you discard all fully connect layer? 3....