forked from hblasins/fiToolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfiToolboxInit.m
More file actions
41 lines (27 loc) · 1 KB
/
fiToolboxInit.m
File metadata and controls
41 lines (27 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
function fiToolboxInit()
% fiToolboxInit()
%
% Initializes the Fluorescence Imaging Toolbox (fiToolbox). Adds sub
% directories to MATLAB path.
%
% Copytight, Henryk Blasinski 2016
close all;
clear all;
clc;
warning off;
addpath(fullfile(fiToolboxRootPath));
addpath(fullfile(fiToolboxRootPath,'camera'));
addpath(fullfile(fiToolboxRootPath,'data'));
addpath(fullfile(fiToolboxRootPath,'results'));
addpath(fullfile(fiToolboxRootPath,'estimation'));
addpath(fullfile(fiToolboxRootPath,'estimation','multistep'));
addpath(fullfile(fiToolboxRootPath,'estimation','nucnorm'));
addpath(fullfile(fiToolboxRootPath,'fluorescence'));
addpath(fullfile(fiToolboxRootPath,'io'));
addpath(fullfile(fiToolboxRootPath,'scripts'));
addpath(fullfile(fiToolboxRootPath,'scripts','validation'));
addpath(fullfile(fiToolboxRootPath,'scripts','simulations'));
addpath(fullfile(fiToolboxRootPath,'scripts','experiments'));
addpath(fullfile(fiToolboxRootPath,'scripts','plots'));
addpath(fullfile(fiToolboxRootPath,'utilities'));
end