Newer
Older
function [trackingMethods] = collectTrackingMethods()
%INITIALIZE Summary of this function goes here
% Detailed explanation goes here
global artoaWorkspace;
%% Get default tracking methods
trackingMethods = artoaWorkspace.defaults.trackingMethods;
%% Get plugin methods
if (artoa.data.hasMember(artoaWorkspace, {'plugins', 'tracking', 'functionHandles'}))
leprob001
committed
fnames = fieldnames(artoaWorkspace.plugins.tracking.functionHandles);
trackingMethods = [trackingMethods {fnames{:}}];
end
end