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