Squashed initial commit

This commit is contained in:
2024-09-10 13:47:29 -04:00
commit 8ebb6ad265
6221 changed files with 2512206 additions and 0 deletions

View 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',[])