-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetCentroids.m
83 lines (70 loc) · 2.24 KB
/
getCentroids.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
function getCentroids(subDir)
% This function will give the centroids of the tracked cells
%
% Made by Laurent GUERARD
%List all the images in the subdirectory
imgs = dir([subDir filesep '*.tif']);
imgs = {imgs.name}
centroids = cell(numel(imgs),1);
%Loop through the images to find the centroids
for i = 1:numel(imgs)
L = imread([subDir filesep imgs{i}]);
stats = regionprops(L,'Centroid');
%Build list of centroids for this image as regionprops will list
%centroids as [NaN, Nan] for missing objects
cents = NaN(numel(stats),2);
for k = 1:numel(stats)
cents(k,:) = stats(k).Centroid;
end
centroids{i} = cents;
end
%centroids{1}(13,:);
title = '';
nRow = max(cellfun(@length, centroids));
nCol = length(centroids);
col = 0;
content = NaN(nRow,nCol)*2;
for cID = 1:nCol
%cID
col = col +1;
ne = length(centroids{cID});
content(1:ne,col) = centroids{cID}(:,1);
col = col +1;
content(1:ne,col) = centroids{cID}(:,2);
end
maxSize = max(cellfun(@length,centroids));
fcn = @(x) [x nan(1,maxSize-numel(x))];
rmat = cellfun(fcn,centroids,'UniformOutput',false);
rmat = vertcat(rmat{:});
%centroids{1}(1,:)
%
centroidFile = strcat(subDir,filesep,'centroids.txt')
fileID = fopen(centroidFile,'w');
FirstLine = '\tTimePoint1';
SecondLine = 'TrackID\tCoordX\tCoordY\t';
add2 = 'CoordX\tCoordY\t';
for i=2:(size(content,2)/2)
add = strcat('TimePoint',num2str(i));
FirstLine = strcat(FirstLine,'\t\t');
FirstLine = strcat(FirstLine,add);
% FirstLine
SecondLine = strcat(SecondLine,add2);
% SecondLine
end
fprintf(fileID,FirstLine);
fprintf(fileID,'\r\n');
fprintf(fileID,SecondLine);
fprintf(fileID,'\r\n');
printCol = '%f\t';
add3 = printCol;
for i=2:(size(content,2)/2)
printCol = strcat(printCol,add3);
end
for i=1:size(content,1)
%printTrack = ('%u\t',i)
%printTrack = strcat(printTrack,i)
fprintf(fileID,'%u\t',i);
fprintf(fileID,printCol, content(i,:));
fprintf(fileID,'\r\n');
end
end