Closed mangoocmt closed 6 years ago
To calculate PSR,
mean
std
IDFT(DFT(filter) * DFT(img))
maxval = max(gi(:));
src/mosse.m
PSR is given by:
PSR = (maxval - mean) / (std + eps)
where eps is the same variable used in src/preprocess.m.
eps
src/preprocess.m
To calculate PSR,
mean
) and standard deviation (std
) of the output response (which is basicallyIDFT(DFT(filter) * DFT(img))
).maxval = max(gi(:));
insrc/mosse.m
)).PSR is given by:
PSR = (maxval - mean) / (std + eps)
where
eps
is the same variable used insrc/preprocess.m
.