Changeset 891 for trunk/src


Ignore:
Timestamp:
Apr 22, 2015, 4:39:29 PM (9 years ago)
Author:
sommeria
Message:

flip added in geometry_calib

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/geometry_calib.m

    r856 r891  
    5252% Edit the above text to modify the response to help geometry_calib
    5353
    54 % Last Modified by GUIDE v2.5 07-Dec-2014 15:50:44
     54% Last Modified by GUIDE v2.5 16-Apr-2015 17:29:02
    5555
    5656% Begin initialization code - DO NOT edit
     
    10181018
    10191019% --------------------------------------------------------------------
     1020function MenuFlip_x_Callback(hObject, eventdata, handles)
     1021Coord=get(handles.ListCoord,'Data');
     1022Coord(:,1)=-Coord(:,1);
     1023set(handles.ListCoord,'Data',Coord)
     1024
     1025% --------------------------------------------------------------------
     1026function MenuFlip_y_Callback(hObject, eventdata, handles)
     1027Coord=get(handles.ListCoord,'Data');
     1028Coord(:,2)=-Coord(:,2);
     1029set(handles.ListCoord,'Data',Coord)
     1030
     1031% --------------------------------------------------------------------
    10201032function MenuImportPoints_Callback(hObject, eventdata, handles)
    10211033fileinput=browse_xml(hObject, eventdata, handles);
     
    13951407    end
    13961408end
     1409
     1410
     1411
Note: See TracChangeset for help on using the changeset viewer.