-
Notifications
You must be signed in to change notification settings - Fork 0
/
EB3a.m
172 lines (147 loc) · 5.15 KB
/
EB3a.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
function feats = EB3a(debug,coef,sigma,s,k)
% INPUT debug -> if 0 - save all 'cands' files to disk (k should be #images),
% else if 1 - run for the k-th image and plot detection figure
%
% coef = 1; sigma = 4; DoG (scale-space)
% s = 2 if image numbers are XX
% s = 3 if image number are XXX
%
% OUTPUT feats : A list of the features with their centroid x,y
% coordinates, bloc eccentricity, angular orientation & length of major
% axiz
%
% SYNOPSIS
% feats = EB3a(1,1,4,s,numberOfDebugImage) to plot figure and look at results
% feats = EB3a(0,1,4,s,numberOfLastImage) to run thru whole movie and save detection
%
% Alexandre Matov, v1.0 October, 2002
[fileName,dirName] = uigetfile('*.tif','Choose a .tif file');
I = imread([dirName,filesep,fileName]);
if debug == 0
m = 0;
n = k;
elseif debug == 1
m = k;
n = k;
end
for i = m:n %0:le was m:n
strg=sprintf('%%.%dd',s);
indxStr=sprintf(strg,i);
I = imread([dirName,fileName(1:end-(s+4)),indxStr,'.tif']);
I=double(I);
aux = Gauss2D(I,1);%1
I2 = Gauss2D(I,sigma);
I3 = aux - I2;
% I3(find(I3<0))=0; % clipping
[cutoffInd, cutoffV] = cutFirstHistMode(I3,0);
I4 = I3>cutoffV*coef; % REMOVE THE NOISE FEATURES %no 3
X = bwlabel(I4);
% warningState = warning;
% warning off all
% intwarning off
stats = regionprops(X,'all'); % Warning: Out of range value converted to intmin('uint8') or intmax('uint8').
% warning(warningState)
% Initialize 'feats' structure
feats=struct(...
'pos',[0 0],... % Centroid - [y x]
'ecc',0,... % Eccentricity
'ori',0); % Orientation
for j = 1:length(stats)
feats.pos(j,1) = stats(j).Centroid(1);
feats.pos(j,2) = stats(j).Centroid(2);
feats.ecc(j,1) = stats(j).Eccentricity;
feats.ori(j,1) = stats(j).Orientation;
feats.len(j,1) = stats(j).MajorAxisLength;
e1 = [-cos(stats(j).Orientation*pi/180) sin(stats(j).Orientation*pi/180) 0];
e2 = [sin(stats(j).Orientation*pi/180) cos(stats(j).Orientation*pi/180) 0];
e3 = [0 0 1];
Ori = [stats(j).Centroid 0];
v1 = [-10 10];
v2 = [-5 5];
v3 = [0 0];
[xGrid,yGrid]=arbitraryGrid(e1,e2,e3,Ori,v1,v2,v3);
Crop(:,:,j) = interp2(I,xGrid,yGrid);
% Crop(:,:,j) = interp2(I,xGrid,yGrid,'*linear');
e1 = [];e2 = [];e3 = []; Ori = []; v1 = []; v2 = []; xGrid = []; yGrid = [];
end
Cm = nanmean(Crop,3); % MEAN/REPRESENTATIVE EB1 CROP
Crop(isnan(Crop))=0;% border effect - some NaN
Cm1 = bwlabel(Cm);
statsC = regionprops(Cm1,'all');
% sC = size(Crop);
% Cm3d = repmat(Cm,[1,1,size(Crop,3)]);
% dC = Crop - Cm3d;
% sqC = dC.^2;
% ssqC = squeeze(sum(sum(sqC,1),2)); %LIST OF DIFFERENCES AFTER SUBTRACTION
B = Cm(:); % MEAN EB1
A = ones(length(B),2);
for m = 1:size(Crop,3)
CR = Crop(:,:,m);
A(:,2) = CR(:); % INDIVIDUAL EB1
goodRows = find(A(:,2) ~= 0 & isfinite(B));
XX = lscov(A(goodRows,:),B(goodRows));
RES = B(goodRows) - A(goodRows,:)*XX;
OUT(m,:) = [mean(RES(:).^2),XX'];
end
[Ind,V]=cutFirstHistMode(OUT(:,1),0);% switch to 1 to see HIST
goodFeats = find(OUT(:,1)<(V*1)); % SPOTS WHICH FIT WELL WITH THE MEAN EB1 SPOT
featNames = fieldnames(feats);
for field = 1:length(featNames)
feats.(featNames{field}) = feats.(featNames{field})(goodFeats,:);
end
if debug == 1
% find the region of immediate bkgr
% If1 = bwmorph(If,'dilate');
% If2 = bwmorph(If1,'dilate');
% If3 = bwmorph(If2,'dilate');
% If4 = If3 - If;
% figure, imshow(If4);
aaux = 5;
% Ibk = imread('D:\matlab\iPierian\images_not\79363_7007_1.tif');
% Ibk = double(Ibk);
% If=Gauss2D(Ibk,1);
If=Gauss2D(I,1);
figure, imshow(If(1+aaux:end-aaux,1+aaux:end-aaux),[ ]);
title('Scale Space Detection');
hold on
NB_FEAT = length(feats.ori)
for i = 1:length(feats.ori)
h = quiver(feats.pos(i,1)-aaux,feats.pos(i,2)-aaux,-cos(feats.ori(i)*pi/180),sin(feats.ori(i)*pi/180),3,'r');
set(h,'LineWidth',2)
end
% phi = linspace(0,2*pi,50);
% cosphi = cos(phi);
% sinphi = sin(phi);
%
% for k = 1:length(stats) %
% xbar = stats(k).Centroid(1);
% ybar = stats(k).Centroid(2);
% e = stats(k).Eccentricity;
%
% a = stats(k).MajorAxisLength/2;
% b = stats(k).MinorAxisLength/2;
%
% theta = pi*stats(k).Orientation/180;
% R = [ cos(theta) sin(theta)
% -sin(theta) cos(theta)];
%
% xy = [a*cosphi; b*sinphi];
% xy = R*xy;
%
% x = xy(1,:) + xbar;
% y = xy(2,:) + ybar;
%
%
% plot(xbar,ybar,'rx','MarkerSize',5,'LineWidth',2);
%
% plot(x,y,'r','LineWidth',2);
% end
% hold off
elseif debug == 0
save([dirName(1:end-1),filesep,'cands',filesep,'feats',indxStr],'feats')
clear goodFeats
clear OUT
clear V
clear Crop
end
end