summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/stitch/src/matlab/readData.m
diff options
context:
space:
mode:
Diffstat (limited to 'SD-VBS/benchmarks/stitch/src/matlab/readData.m')
-rwxr-xr-xSD-VBS/benchmarks/stitch/src/matlab/readData.m9
1 files changed, 0 insertions, 9 deletions
diff --git a/SD-VBS/benchmarks/stitch/src/matlab/readData.m b/SD-VBS/benchmarks/stitch/src/matlab/readData.m
deleted file mode 100755
index 19643bb..0000000
--- a/SD-VBS/benchmarks/stitch/src/matlab/readData.m
+++ /dev/null
@@ -1,9 +0,0 @@
1function retImgs=readData(imgName, dataDir)
2fn=fullfile(dataDir, imgName, '*.jpg');
3filelist=dir(fn);
4
5retImgs=cell(length(filelist),1);
6for i=1:length(filelist)
7 retImgs{i}=imread(fullfile(dataDir, imgName, filelist(i).name));
8end
9