https://github.com/Tanentzapf-Lab/ActinOrganization_CellMorphology_Haage
Raw File
Tip revision: 9cb24da5652e47684e73fe36b37e88b1956f0a6b authored by Tanentzapf-Lab on 27 July 2021, 19:45:34 UTC
Existing Documentation and Sample Files Uploaded
Tip revision: 9cb24da
actin_batch_analyse.m
clear all;close all
foldername=uigetdir;
folder=dir([foldername '/*frames*']);
nf=length(folder);

for i=1:nf
    tic
    file=fullfile([foldername '/' folder(i).name]);
    actin_extravaganza(file);
    toc
end
back to top