[1422d3]: / functions / functions_Gabor / computePowerMaps.m

Download this file

7 lines (5 with data), 225 Bytes

1
2
3
4
5
6
function powerMapF = computePowerMaps(resF, gaborBank)
powerMapF(numel(gaborBank)).value = [];
for g = 1 : numel(gaborBank)
powerMapF(g).value = (resF(g).even .^2) + (resF(g).odd .^ 2);
end %for g = 1 : numel(gaborBank)