-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlabel_all_pos.m
36 lines (35 loc) · 1.15 KB
/
label_all_pos.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
% This script is a helper script for checking if all the labeling is correct
% This script show all the images with labeled loops on them.
% This script is usually used for debuging.
% usage: check every excel file in the folder
% change the directory name if needed
files = dir('backup_excel/*.xls');
index = 0;
for file = files'
fullname = fullfile('backup_excel',file.name);
[imagenames, positions, XM, YM] = getPos(fullname);
imname = imagenames{1};
img = imread(imname);
trueboxes = cell2mat(positions);
trueImg = insertObjectAnnotation(img,'rectangle',trueboxes, '', 'LineWidth',3);
figure;
imshow(trueImg);
end
%%
% usage: check every txt file in the folder
% change the directory name if needed
files = dir('tight_dataset/*.txt');
% index = 0;
figure;
for file = files'
%%
fullname = fullfile('tight_dataset',file.name);
imagefolder = 'positive';
[imagenames, positions]=readLabel(fullname,imagefolder);
imname = imagenames{1};
img = imread(imname);
trueboxes = cell2mat(positions);
trueImg = insertObjectAnnotation(img,'rectangle',trueboxes, '', 'LineWidth',3);
imshow(trueImg);
pause(2)
end