Skip to content
Snippets Groups Projects
collectTrackingMethods.m 497 B
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'}))
    fnames = fieldnames(artoaWorkspace.plugins.tracking.functionHandles);
    trackingMethods = [trackingMethods {fnames{:}}];