Changeset 271
- Timestamp:
- Nov 17, 2011, 3:23:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/uvmat.m
r258 r271 713 713 end 714 714 if isfield(imainfo,'Width') && isfield(imainfo,'Height') 715 set(handles.npx,'String',num2str(imainfo.Width));%fills nbre of pixels x box 716 set(handles.npy,'String',num2str(imainfo.Height));%fills nbre of pixels x box 715 if length(imainfo)>1 716 set(handles.npx,'String',num2str(imainfo(1).Width));%fills nbre of pixels x box 717 set(handles.npy,'String',num2str(imainfo(1).Height));%fills nbre of pixels x box 718 else 719 set(handles.npx,'String',num2str(imainfo.Width));%fills nbre of pixels x box 720 set(handles.npy,'String',num2str(imainfo.Height));%fills nbre of pixels x box 721 end 717 722 else 718 723 set(handles.npx,'String','');%fills nbre of pixels x box
Note: See TracChangeset
for help on using the changeset viewer.