Squashed initial commit
This commit is contained in:
30
qhtcp-workflow/apps/matlab/ezview/EZvImagesOnly.m
Executable file
30
qhtcp-workflow/apps/matlab/ezview/EZvImagesOnly.m
Executable file
@@ -0,0 +1,30 @@
|
||||
% EZvImagesOnly
|
||||
asd=12
|
||||
dirLst=dir(ExpPath)
|
||||
for i=1:size(dirLst,1)
|
||||
if ~isempty(str2num(dirLst(i).name)) || ~isempty(strfind(dirLst(i).name,'Scan')) % && jpgOut==1
|
||||
scLst=fullfile(ExpPath,dirLst(i).name);
|
||||
for n=1:size(filelst,1)
|
||||
try
|
||||
if ~isempty(strfind(filelst(n).name,'bmp'))||~isempty(strfind(filelst(n).name,'tif'))
|
||||
tptImLst(n)=filelst(n).name;
|
||||
end
|
||||
catch
|
||||
end
|
||||
end
|
||||
tptLength=length(tptImLst);
|
||||
end
|
||||
scLength=length(scLst);
|
||||
end
|
||||
|
||||
I=imread(ExpOutImFile);
|
||||
expAxes=handles.Iaxes1;
|
||||
imshow(I)
|
||||
set(expAxes,'xtick',[],'ytick',[])
|
||||
expAxes=handles.Iaxes2;
|
||||
imshow(I)
|
||||
set(expAxes,'xtick',[],'ytick',[])
|
||||
expAxes=handles.Iaxes3;
|
||||
imshow(I)
|
||||
set(expAxes,'xtick',[],'ytick',[])
|
||||
|
||||
Reference in New Issue
Block a user