Add ezview

This commit is contained in:
2024-07-29 12:31:26 -04:00
parent 1c0c84f3e6
commit c323eef935
122 changed files with 57619 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
%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',[])