summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/MultiNcut/read_data.m
blob: c0929c0b90ae34b48d68f2169c9aebd6b0d5b74b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

%fnames = dir('/home/jshi/Results_DLIB/SegLabl*.mat');

fnames = dir('/data/jshi/DLIB/Results/Results_DLIB/SegLabl*.mat');

for j=1:length(fnames),
	cm = sprintf('load /data/jshi/DLIB/Results/Results_DLIB/%s',fnames(j).name);
        disp(cm);eval(cm);
figure(1);imagesc(I); colormap(gray); axis image;
figure(2); imagesc(SegLabel); axis image;

pause;
end