https://github.com/Tanentzapf-Lab/ActinOrganization_CellMorphology_Haage
Revision e031ec0020fe0ef548d9442309e6733593ff0a87 authored by Tanentzapf-Lab on 27 July 2021, 19:42:39 UTC, committed by GitHub on 27 July 2021, 19:42:39 UTC
1 parent 275bb40
Raw File
Tip revision: e031ec0020fe0ef548d9442309e6733593ff0a87 authored by Tanentzapf-Lab on 27 July 2021, 19:42:39 UTC
Script Files Uploaded
Tip revision: e031ec0
actin_batch_analyse_max.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_max(file);
    toc
end
back to top