function [varargout] = barumerli2023(varargin)
%BARUMERLI2023 Bayesian spherical sound localization model (multi-feature)
% Usage: [m] = barumerli2023('sofa_obj', sofa_obj);
% [m] = barumerli2023('template', template, 'target', target);
%
% Input parameters:
% sofa_obj : SOFA structure containing listener HRTFs.
% template : Templates from BARUMERLI2023_FEATUREEXTRACTION.
% target : Targets from BARUMERLI2023_FEATUREEXTRACTION.
%
% Output parameters:
% m : Matrix as in LOCALIZATIONERROR with the actual
% and predicted directions. BARUMERLI2023_METRICS can
% be used for further analysis of m.
% doa : Structure with the fields:
%
% - estimations*: Matrix. Size: (*target_num x num_exp x pos*)
% with pos being coordinates in the Cartesian coordinate system.
%
% - posterior*: Posterior distribution. Size: (*target_num x template_num x num_exp*).
%
% coords : coord Object with the actual directions of the binaural sounds.
%
%
% BARUMERLI2023(...) is an ideal-observer model of human sound
% localization, by which we mean a model that performs optimal
% information processing within a Bayesian context. The model considers
% all available spatial information contained within the acoustic
% signals encoded by each ear. Parameters for the optimal Bayesian model
% are determined based on psychoacoustic discrimination experiments on
% interaural time difference and sound intensity.
%
%
%
% Additional input parameters:
% ----------------------------
%
% 'num_exp' Number of repetitions. For each target repeat the experiment num_exp times. Default: 50
%
% 'sigma_itd' Standard deviation associated to noise added to the ITD feature. Default: 0.569
%
% 'sigma_ild' Standard deviation associated to noise added to the ILD feature. Default: 1
%
% 'sigma_spectral' Standard deviation associated to noise added to the spectral features. Default: 1.25
%
% 'sigma_prior' Standard deviation of the prior distribution. If set to empty [], a uniform distribution is considered. Default:11.5
%
% 'sigma_motor' Standard deviation of the motor noise. If set to empty [], motor noise is disabled. Default: 14
%
%
% If no SOFA object is provided then the model requires:
%
% 'template' internal representation specified by a specific feature space. Refer to barumerli2023_featureextraction for its computation.
%
% 'target' preprocessed target struct with the binaural sounds of which the direction has to be estimated. Refer to barumerli2023_featureextraction for its computation.
%
% Further, cache flags (see amt_cache) can be specified.
%
% References:
% R. Barumerli, P. Majdak, M. Geronazzo, D. Meijer, F. Avanzini, and
% R. Baumgartner. A Bayesian model for human directional localization of
% broadband static sound sources. Acta Acust., 7:12, 2023.
%
%
% See also: demo_barumerli2023 barumerli2023_featureextraction
% barumerli2023_metrics exp_barumerli2023
%
% Url: http://amtoolbox.org/amt-1.6.0/doc/models/barumerli2023.php
% #StatusDoc: Good
% #StatusCode: Submitted
% #Verification: Unknown
% #Requirements: MATLAB SOFA M-STATISTICS M-Control M-Signal
% #Author: Roberto Barumerli (2020), Information Engineering Dept., University of Padova, Italy
% #Author: Roberto Barumerli (2023), ÖAW, Austria
% #Author: Michael Mihocic (2024): catching if Octave is used -> returning warning
% This file is licensed unter the GNU General Public License (GPL) either
% version 3 of the license, or any later version as published by the Free Software
% Foundation. Details of the GPLv3 can be found in the AMT directory "licences" and
% at <https://www.gnu.org/licenses/gpl-3.0.html>.
% You can redistribute this file and/or modify it under the terms of the GPLv3.
% This file is distributed without any warranty; without even the implied warranty
% of merchantability or fitness for a particular purpose.
if isoctave
warning('barumerli2023 is not supported by Octave');
return;
end
%% Check input options
definput.keyvals.sofa_obj = struct([]);
definput.keyvals.template = struct([]);
definput.keyvals.target = struct([]);
definput.keyvals.prior = [];
definput.keyvals.num_exp = 50;
definput.keyvals.sigma_itd = 0.569;
definput.keyvals.sigma_ild = 1;
definput.keyvals.sigma_spectral = 1.25;
definput.keyvals.sigma_prior = 11.5;
definput.keyvals.sigma_motor = 14;
definput.flags.estimator = {'MAP', 'PM'}; % Maximum a posteriori or Probability Matching
[flags, kv] = ltfatarghelper({}, ...
definput, varargin);
if ~isempty(kv.sofa_obj)
%% prepare feature space
[template, target] = barumerli2023_featureextraction(kv.sofa_obj);
elseif ~isempty(kv.template) && ~isempty(kv.target)
template = kv.template;
target = kv.target;
else
error(['Please specify a SOFA object or the ', ...
'template and the targets. See barumerli2023_featureextraction.'])
end
template_feat = [template.itd, template.ild, template.monaural];
target_feat = [target.itd, target.ild, target.monaural];
assert(~isempty(template.ild))
if ~isempty(template.monaural)
if numel(kv.sigma_spectral) == 1
polar_len = size(template.monaural, 2);
lateral_bis_len = size(template.ild, 2);
sigma = blkdiag(kv.sigma_itd^2*eye(size(template.itd, 2)), ...
kv.sigma_ild^2*eye(lateral_bis_len), ...
(kv.sigma_spectral)^2*eye(polar_len));
elseif(numel(kv.sigma_spectral) == size(template.monaural,2))
assert(numel(kv.sigma_spectral) == size(template.monaural,2), ...
'problem with dimensions with sigma_spectral and template_polar')
lateral_bis_len = size(template.ild, 2);
sigma = blkdiag(kv.sigma_itd.^2*eye(size(template.itd, 2)), ...
kv.sigma_ild.^2*eye(lateral_bis_len), ...
diag(kv.sigma_spectral));
elseif sqrt(numel(kv.sigma_spectral)) == size(template.monaural,2) % the user specified the covariance matrix for the polar dimension
lateral_bis_len = size(template.ild, 2);
sigma = blkdiag(kv.sigma_itd.^2*eye(size(template.itd, 2)), ...
kv.sigma_ild.^2*eye(lateral_bis_len), ...
kv.sigma_spectral);
else
error('Something went wrong with the definition of the polar uncertainty.')
end
else
sigma = blkdiag(kv.sigma_itd^2*eye(size(template.itd, 2)), ...
(kv.sigma_ild)^2*eye(size(template.ild, 2)));
end
sigma_inv = inv(sigma);
%% prior computation
if ~isempty(kv.prior)
prior = kv.prior;
elseif ~isempty(kv.sigma_prior)
sph = template.coords.return_positions('spherical');
prior = exp(-0.5*(sph(:,2)/kv.sigma_prior).^2);
prior = prior./sum(prior);
else
prior = ones(length(template.coords.pos),1);
end
%% internal belief computation
template_num = size(template_feat, 1);
target_num = size(target_feat, 1);
doa_idx = zeros(target_num, kv.num_exp);
doa_estimations = zeros(target_num, kv.num_exp, 3);
posterior = zeros(target_num, template_num, kv.num_exp);
temp_c = template.coords.return_positions('cartesian');
post = zeros(template_num, 1);
for e = 1:kv.num_exp
for ta = 1:target_num % number of targets
%% AWGN NOISE
x = mvnrnd(target_feat(ta,:),sigma);
%% COMPUTE POSTERIOR
% for te = 1:template_num % number of directions in the template
% u_diff = (x-template_feat(te,:));
% post(te, 1) = (exp(-0.5*u_diff/sigma*transpose(u_diff)))*prior(te);
% end
post = mvnpdf(x, template_feat, sigma).*prior;
% normalize
post = (post./sum(post));
% store posterior
posterior(ta,:,e) = post;
%% decision stage
if flags.do_MAP
[~, doa_idx(ta,e)] = max(post);
elseif flags.do_PM % sample from categorical distribution
cdf = [0; cumsum(post)];
[~, ~,doa_idx(ta,e)] = histcounts(rand, cdf);
else
error('No decistion stage select!')
end
doa_estimations(ta,e,:) = temp_c(doa_idx(ta,e),:);
end
end
%% SENSORIMOTOR SCATTERING
if ~isempty(kv.sigma_motor)
for e = 1:kv.num_exp
doa_estimations(:,e,:) = sensorimotor_scatter_von_mises(squeeze(doa_estimations(:,e,:)), ...
kv.sigma_motor);
end
end
% results
doa.estimations = doa_estimations;
doa.posterior = posterior;
% return m matrix only if target's actual direction is available
if isfield(target, 'coords') && ~isempty(target.coords)
varargout{1} = barumerli2023_metrics(doa, target.coords, 'm');
else
varargout{1} = [];
end
% return cartesian estimations and other stuff
if nargout > 1
varargout{2} = doa;
end
% return cartesian actual directions
if nargout == 3
varargout{3} = target.coords;
end
function dirs_new = sensorimotor_scatter_von_mises(dirs, sigma_m)
% add sensorimotor noise to localization estimations
%
%%
% Input parameters:
% m localization matrix (check localizationerror.m)
% sigma standard deviation in degrees
%
% Output paramenters
% m_new localization matrix with scattered estimations
% dirs directions in cartesian coordinates
%
% AUTHOR: Roberto Barumerli
% Information Engineering Dept., University of Padova, Italy, 2020
assert(size(dirs, 2) == 3 | numel(dirs) == 3)
assert(sigma_m >= 5, 'sensorimotor concentration can lead to complex values')
% handle if size(dirs) = [3,1]
if numel(dirs) == 3
if size(dirs, 1) == 3
dirs = dirs';
end
end
dirs_new = zeros(size(dirs));
kappa = 1/deg2rad(sigma_m)^2;
for i=1:size(dirs,1)
dirs_new(i,:) = randvmf(kappa, dirs(i,:));
end