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