Ignore:
Timestamp:
Sep 14, 2012, 9:06:04 AM (12 years ago)
Author:
sommeria
Message:

bugs corrected in geometry_calib and zoom management in uvmat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/geometry_calib.m

    r517 r541  
    139139if ~isempty(huvmat)
    140140    handles=guidata(huvmat);
    141     hobject=findobj(handles.axes3,'tag','calib_points');
     141    hobject=findobj(handles.PlotAxes,'tag','calib_points');
    142142    if ~isempty(hobject)
    143143        delete(hobject)
    144144    end
    145     hobject=findobj(handles.axes3,'tag','calib_marker');
     145    hobject=findobj(handles.PlotAxes,'tag','calib_marker');
    146146    if ~isempty(hobject)
    147147        delete(hobject)
     
    287287   
    288288    %display image with new calibration in the currently opened uvmat interface
    289     hhh=findobj(hhuvmat.axes3,'Tag','calib_marker');% delete calib points and markers
     289    hhh=findobj(hhuvmat.PlotAxes,'Tag','calib_marker');% delete calib points and markers
    290290    if ~isempty(hhh)
    291291        delete(hhh);     
    292292    end
    293     hhh=findobj(hhuvmat.axes3,'Tag','calib_points');
     293    hhh=findobj(hhuvmat.PlotAxes,'Tag','calib_points');
    294294    if ~isempty(hhh)
    295295        delete(hhh);
     
    998998    end
    999999end
    1000 %axes(hhuvmat.axes3)
     1000
    10011001set(0,'CurrentFigure',huvmat)
    10021002set(huvmat,'CurrentAxes',hhuvmat.PlotAxes)
Note: See TracChangeset for help on using the changeset viewer.