Changeset 38 for trunk/src/set_grid.m


Ignore:
Timestamp:
Mar 7, 2010, 6:30:11 PM (14 years ago)
Author:
sommeria
Message:

field transforms put in subdir transform_field. cleaning of obsolete functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/set_grid.m

    r2 r38  
    478478if isempty(imageA) | isequal(imageA,'')
    479479    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')
    481481    else
    482482        imageA=imageB;
     
    518518    testexist=exist(imageB,'file');
    519519    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'])
    521521        return
    522522    end
     
    524524    form=imformats(ext([2:end]));
    525525    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 '])
    527527         return
    528528    end
     
    532532     tsaiB=XmlDataB.GeometryCalib;
    533533    else
    534      warndlg_uvmat('no geometric calibration available for image B','WARNING')
     534     msgbox_uvmat('WARNING','no geometric calibration available for image B')
    535535     tsaiB=[];
    536536 end
Note: See TracChangeset for help on using the changeset viewer.