Changeset 38 for trunk/src/set_grid.m
- Timestamp:
- Mar 7, 2010, 6:30:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/set_grid.m
r2 r38 478 478 if isempty(imageA) | isequal(imageA,'') 479 479 if isempty(imageB) | isequal(imageB,'') 480 warndlg_uvmat('at least one image file name must be introduced','ERROR')480 msgbox_uvmat('ERROR','at least one image file name must be introduced') 481 481 else 482 482 imageA=imageB; … … 518 518 testexist=exist(imageB,'file'); 519 519 if isequal(testexist,0) 520 warndlg_uvmat(['input image file' imageB 'does not exist'],'ERROR')520 msgbox_uvmat('ERROR',['input image file' imageB 'does not exist']) 521 521 return 522 522 end … … 524 524 form=imformats(ext([2:end])); 525 525 if isempty(form)% if the extension corresponds to an image format recognized by Matlab 526 warndlg_uvmat(['error in read_image.m: ' imageB ' is not an image name recognized by Matlab '],'ERROR')526 msgbox_uvmat('ERROR',['error in read_image.m: ' imageB ' is not an image name recognized by Matlab ']) 527 527 return 528 528 end … … 532 532 tsaiB=XmlDataB.GeometryCalib; 533 533 else 534 warndlg_uvmat('no geometric calibration available for image B','WARNING')534 msgbox_uvmat('WARNING','no geometric calibration available for image B') 535 535 tsaiB=[]; 536 536 end
Note: See TracChangeset
for help on using the changeset viewer.