-
Notifications
You must be signed in to change notification settings - Fork 0
/
ROIdelaymBioFormat.m
61 lines (43 loc) · 1.16 KB
/
ROIdelaymBioFormat.m
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
% This program allows the user to draw ROI and calculate delay of that
% sepcific region
clear all
close all
count=4; % numbver of time the whole loop is iterated
generateData=1;
% 1, prompts the user for new data
% 0, run based on last data, this is faster
M=256;
N=256;
P=256;
A=uint16(zeros(M,N,P));
if(generateData==1)
cellData=bfopen %Requires bioformat path to be added
data3D=cellData{1,1}(:,1);%taking the 3d array with decay
for k = 1:256
A(k,:,:) = data3D{k};
end
save A
else
load A
end
num_images=256;
%Draw ROI and create mask
s=squeeze(sum(A,1));
maxS=max(max(s));
while(count>0)
figure,h_im=imshow(uint8(s/maxS*255));%shows the image with intensity
e = imfreehand;%prompts to ask ROI
BW = createMask(e,h_im);
imshow(BW)%shows the ROI mask
for k = 1:num_images
B(k,:,:)= squeeze(A(k,:,:)).*uint16(BW);
end
%sum over x,y pixel and calculate the delay
timebins=sum(sum(B,2),3);
[m delay]=max(timebins);
delay
delayinTime=delay*12.5/256
riseTime=maxmin(timebins);
figure, semilogy((1:num_images)',timebins,'b')
count=count-1;
end