[198] | 1 | %'view_field': function associated with the GUI 'view_field.fig' for images and data field visualization
|
---|
| 2 | %------------------------------------------------------------------------
|
---|
| 3 | % function huvmat=view_field(input)
|
---|
| 4 | %
|
---|
| 5 | %OUTPUT
|
---|
| 6 | % huvmat=current handles of the GUI view_field.fig
|
---|
| 7 | %%
|
---|
| 8 | %
|
---|
| 9 | %INPUT:
|
---|
| 10 | % input: input file name (if character chain), or input image matrix to
|
---|
| 11 | % visualize, or Matlab structure representing netcdf fields (with fields
|
---|
| 12 | % ListVarName....)
|
---|
| 13 | %
|
---|
| 14 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
---|
| 15 | % Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, joel.sommeria@legi.grenoble-inp.fr.
|
---|
| 16 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
---|
| 17 | % This open is part of the toolbox VIEW_FIELD.
|
---|
| 18 | %
|
---|
| 19 | % VIEW_FIELD is free software; you can redistribute it and/or modify
|
---|
| 20 | % it under the terms of the GNU General Public License as published by
|
---|
| 21 | % the Free Software Foundation; either version 2 of the License, or
|
---|
| 22 | % (at your option) any later version.
|
---|
| 23 | %
|
---|
| 24 | % VIEW_FIELD is distributed in the hope that it will be useful,
|
---|
| 25 | % but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 26 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 27 | % GNU General Public License (open VIEW_FIELD/COPYING.txt) for more details.
|
---|
| 28 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
---|
| 29 |
|
---|
| 30 | %-------------------------------------------------------------------
|
---|
| 31 | % I - MAIN FUNCTION VIEW_FIELD (DO NOT MODIFY)
|
---|
| 32 | %-------------------------------------------------------------------
|
---|
| 33 | %-------------------------------------------------------------------
|
---|
| 34 | function varargout = view_field(varargin)
|
---|
| 35 |
|
---|
| 36 | % Begin initialization code - DO NOT EDIT
|
---|
| 37 | gui_Singleton = 1;
|
---|
| 38 | gui_State = struct('gui_Name', mfilename, ...
|
---|
| 39 | 'gui_Singleton', gui_Singleton, ...
|
---|
| 40 | 'gui_OpeningFcn', @view_field_OpeningFcn, ...
|
---|
| 41 | 'gui_OutputFcn', @view_field_OutputFcn, ...
|
---|
| 42 | 'gui_LayoutFcn', [], ...
|
---|
| 43 | 'gui_Callback', []);
|
---|
| 44 | if nargin && ischar(varargin{1})
|
---|
| 45 | gui_State.gui_Callback = str2func(varargin{1});
|
---|
| 46 | end
|
---|
| 47 |
|
---|
| 48 | if nargout
|
---|
| 49 | varargout{1:nargout} = gui_mainfcn(gui_State, varargin{:});
|
---|
| 50 | else
|
---|
| 51 | gui_mainfcn(gui_State, varargin{:});
|
---|
| 52 | end
|
---|
| 53 | % End initialization code - DO NOT EDIT
|
---|
| 54 |
|
---|
| 55 | %-------------------------------------------------------------------
|
---|
| 56 | % --- Executes just before view_field is made visible.
|
---|
| 57 | function view_field_OpeningFcn(hObject, eventdata, handles, Field )
|
---|
| 58 | %-------------------------------------------------------------------
|
---|
| 59 |
|
---|
| 60 | % Choose default command menuline output for view_field
|
---|
| 61 | handles.output = handles.view_field;
|
---|
| 62 |
|
---|
| 63 | % Update handles structure
|
---|
| 64 | guidata(hObject, handles);
|
---|
| 65 |
|
---|
| 66 | dircur=pwd; %current working directory
|
---|
| 67 | dir_opening=dircur;
|
---|
| 68 |
|
---|
| 69 | % set the position of colorbar and ancillary GUIs:
|
---|
| 70 | set(hObject,'Units','Normalized')
|
---|
| 71 | handles_mouse=handles;
|
---|
| 72 | huvmat=findobj(allchild(0),'Name','uvmat');
|
---|
| 73 | if ~isempty(huvmat)
|
---|
| 74 | hhuvmat=guidata(huvmat);
|
---|
| 75 | set(hhuvmat.list_object_2,'Visible','on')
|
---|
| 76 | set(hhuvmat.view_field_title,'Visible','on')
|
---|
| 77 | % handles_mouse.create=hhuvmat.create;
|
---|
| 78 | handles_mouse.edit=hhuvmat.edit_object;
|
---|
| 79 | pos_uvmat=get(huvmat,'Position');
|
---|
| 80 | pos_view_field(1)=pos_uvmat(1)+pos_uvmat(3)/2;
|
---|
| 81 | pos_view_field(2)=pos_uvmat(2)-pos_uvmat(3)/4;
|
---|
| 82 | pos_view_field(3:4)=pos_uvmat(3:4);
|
---|
| 83 | set(hObject,'Position',pos_view_field)
|
---|
| 84 | end
|
---|
| 85 |
|
---|
| 86 | %functions for the mouse and keyboard
|
---|
| 87 | set(hObject,'KeyPressFcn',{'keyboard_callback',handles_mouse})%set keyboard action function
|
---|
| 88 | set(hObject,'WindowButtonMotionFcn',{'mouse_motion',handles_mouse})%set mouse action functio
|
---|
| 89 | set(hObject,'WindowButtonDownFcn',{'mouse_down'})%set mouse click action function
|
---|
| 90 | set(hObject,'WindowButtonUpFcn',{'mouse_up',handles_mouse})
|
---|
| 91 | set(hObject,'CloseRequestFcn',{@closefcn})%
|
---|
| 92 | ViewFieldData.axes3=[];%initiates the record of the current field (will be updated by plot_field)
|
---|
| 93 | set(handles.view_field,'UserData',ViewFieldData);%store the current field
|
---|
| 94 | AxeData.LimEditBox=1; %initialise AxeData, the parent figure sets plot parameters
|
---|
| 95 | set(handles.axes3,'UserData',AxeData)
|
---|
| 96 | if ~exist('Field','var')
|
---|
| 97 | return
|
---|
| 98 | end
|
---|
| 99 | [PlotType,PlotParamOut]= plot_field(Field,handles.axes3);%,PlotParam,KeepLim,PosColorbar)
|
---|
| 100 |
|
---|
| 101 | if isfield(PlotParamOut,'Vectors')
|
---|
| 102 | set(handles.VECT_title,'Visible','on')
|
---|
| 103 | end
|
---|
| 104 | write_plot_param(handles,PlotParamOut);% update the display of the plotting parameters
|
---|
| 105 |
|
---|
| 106 | %-------------------------------------------------------------------
|
---|
| 107 | % --- Outputs from this function are returned to the command menuline.
|
---|
| 108 | function varargout = view_field_OutputFcn(hObject, eventdata, handles)
|
---|
| 109 | varargout{1} = handles.output;% the only output argument is the handle to the GUI figure
|
---|
| 110 |
|
---|
| 111 |
|
---|
| 112 | %-------------------------------------------------------------------
|
---|
| 113 | %-------------------------------------------------------------------
|
---|
| 114 | % II - FUNCTIONS FOR INTRODUCING THE INPUT FILES
|
---|
| 115 | % automatically sets the global properties when the rootfile name is introduced
|
---|
| 116 | % then activate the view-field action if selected
|
---|
| 117 | % it is activated either by clicking on the RootPath window or by the
|
---|
| 118 | % browser
|
---|
| 119 | %------------------------------------------------------------------
|
---|
| 120 | %------------------------------------------------------------------
|
---|
| 121 |
|
---|
| 122 | %-------------------------------------------------------------------
|
---|
| 123 | function update_mask(handles,num_i1,num_j1)
|
---|
| 124 | %-------------------------------------------------------------------
|
---|
| 125 |
|
---|
| 126 | MaskData=get(handles.mask_test,'UserData');
|
---|
| 127 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
|
---|
| 128 | uistack(MaskData.maskhandle,'top');
|
---|
| 129 | end
|
---|
| 130 | num_i1_mask=mod(num_i1-1,MaskData.NbSlice)+1;
|
---|
| 131 | [MaskName,mdetect]=name_generator(MaskData.Base,num_i1_mask,num_j1,'.png',MaskData.NomType);
|
---|
| 132 | huvmat=get(handles.mask_test,'parent');
|
---|
| 133 | UvData=get(huvmat,'UserData');
|
---|
| 134 |
|
---|
| 135 | %update mask image if the mask is new
|
---|
| 136 | if ~ (isfield(UvData,'MaskName') && isequal(UvData.MaskName,MaskName))
|
---|
| 137 | UvData.MaskName=MaskName; %update the recorded name on UvData
|
---|
| 138 | set(huvmat,'UserData',UvData);
|
---|
| 139 | if mdetect==0
|
---|
| 140 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
|
---|
| 141 | delete(MaskData.maskhandle)
|
---|
| 142 | end
|
---|
| 143 | else
|
---|
| 144 | %read mask image
|
---|
| 145 | Mask.AName='image';
|
---|
| 146 | Mask.A=imread(MaskName);
|
---|
| 147 | npxy=size(Mask.A);
|
---|
| 148 | Mask.AX=[0.5 npxy(2)-0.5];
|
---|
| 149 | Mask.AY=[npxy(1)-0.5 0.5 ];
|
---|
| 150 | Mask.CoordUnit='pixel';
|
---|
| 151 | if isequal(get(handles.slices,'Value'),1)
|
---|
| 152 | NbSlice=str2num(get(handles.nb_slice,'String'));
|
---|
| 153 | num_i1=str2num(get(handles.i1,'String'));
|
---|
| 154 | Mask.ZIndex=mod(num_i1-1,NbSlice)+1;
|
---|
| 155 | end
|
---|
| 156 | %px to phys or other transform on field
|
---|
| 157 | menu_transform=get(handles.transform_fct,'String');
|
---|
| 158 | choice_value=get(handles.transform_fct,'Value');
|
---|
| 159 | transform_name=menu_transform{choice_value};%name of the transform fct given by the menu 'transform_fct'
|
---|
| 160 | transform_list=get(handles.transform_fct,'UserData');
|
---|
| 161 | transform=transform_list{choice_value};
|
---|
| 162 | if ~isequal(transform_name,'') && ~isequal(transform_name,'px')
|
---|
| 163 | if isfield(UvData,'XmlData') && isfield(UvData.XmlData,'GeometryCalib')%use geometry calib recorded from the ImaDoc xml file as first priority
|
---|
| 164 | Calib=UvData.XmlData.GeometryCalib;
|
---|
| 165 | Mask=transform(Mask,UvData.XmlData);
|
---|
| 166 | end
|
---|
| 167 | end
|
---|
| 168 | flagmask=Mask.A < 200;
|
---|
| 169 |
|
---|
| 170 | %make brown color image
|
---|
| 171 | imflag(:,:,1)=0.9*flagmask;
|
---|
| 172 | imflag(:,:,2)=0.7*flagmask;
|
---|
| 173 | imflag(:,:,3)=zeros(size(flagmask));
|
---|
| 174 |
|
---|
| 175 | %update mask image
|
---|
| 176 | hmask=[]; %default
|
---|
| 177 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
|
---|
| 178 | hmask=MaskData.maskhandle;
|
---|
| 179 | end
|
---|
| 180 | if ~isempty(hmask)
|
---|
| 181 | set(hmask,'CData',imflag)
|
---|
| 182 | set(hmask,'AlphaData',flagmask*0.6)
|
---|
| 183 | set(hmask,'XData',Mask.AX);
|
---|
| 184 | set(hmask,'YData',Mask.AY);
|
---|
| 185 | % uistack(hmask,'top')
|
---|
| 186 | else
|
---|
| 187 | axes(handles.axes3)
|
---|
| 188 | hold on
|
---|
| 189 | MaskData.maskhandle=image(Mask.AX,Mask.AY,imflag,'Tag','mask','HitTest','off','AlphaData',0.6*flagmask);
|
---|
| 190 | % set(MaskData.maskhandle,'AlphaData',0.6*flagmask)
|
---|
| 191 | set(handles.mask_test,'UserData',MaskData)
|
---|
| 192 | end
|
---|
| 193 | end
|
---|
| 194 | end
|
---|
| 195 |
|
---|
| 196 |
|
---|
| 197 | %-------------------------------------------------------------------
|
---|
| 198 | function MenuExportFigure_Callback(hObject, eventdata, handles)
|
---|
| 199 | %-------------------------------------------------------------------
|
---|
| 200 | huvmat=get(handles.MenuExport,'parent');
|
---|
| 201 | UvData=get(huvmat,'UserData');
|
---|
| 202 | hfig=figure;
|
---|
| 203 | newaxes=copyobj(handles.axes3,hfig);
|
---|
| 204 | map=colormap(handles.axes3);
|
---|
| 205 | colormap(map);%transmit the current colormap to the zoom fig
|
---|
| 206 | colorbar
|
---|
| 207 |
|
---|
| 208 | %-------------------------------------------------------------------
|
---|
| 209 | %-------------------------------------------------------------------
|
---|
| 210 | % III - MAIN REFRESH FUNCTIONS : 'FRAME PLOT'
|
---|
| 211 | %-------------------------------------------------------------------
|
---|
| 212 | %-------------------------------------------------------------------
|
---|
| 213 |
|
---|
| 214 | %Executes on button press in runplus: make one step forward and call
|
---|
| 215 | %run0. The step forward is along the fields series 1 or 2 depending on
|
---|
| 216 | %the scan_i and scan_j check box (exclusive each other)
|
---|
| 217 | %-------------------------------------------------------------------
|
---|
| 218 | function runplus_Callback(hObject, eventdata, handles)
|
---|
| 219 | increment=str2num(get(handles.increment_scan,'String')); %get the field increment d
|
---|
| 220 | runpm(hObject,eventdata,handles,increment)
|
---|
| 221 |
|
---|
| 222 | %-------------------------------------------------------------------
|
---|
| 223 | %Executes on button press in runmin: make one step backward and call
|
---|
| 224 | %run0. The step backward is along the fields series 1 or 2 depending on
|
---|
| 225 | %the scan_i and scan_j check box (exclusive each other)
|
---|
| 226 | %-------------------------------------------------------------------
|
---|
| 227 | function runmin_Callback(hObject, eventdata, handles)
|
---|
| 228 | increment=-str2num(get(handles.increment_scan,'String')); %get the field increment d
|
---|
| 229 | runpm(hObject,eventdata,handles,increment)
|
---|
| 230 |
|
---|
| 231 | %-------------------------------------------------------------------
|
---|
| 232 | %Executes on button press in runmin: make one step backward and call
|
---|
| 233 | %run0. The step backward is along the fields series 1 or 2 depending on
|
---|
| 234 | %the scan_i and scan_j check box (exclusive each other)
|
---|
| 235 | %-------------------------------------------------------------------
|
---|
| 236 | function RunMovie_Callback(hObject, eventdata, handles)
|
---|
| 237 | %------------------------------------------------------------------
|
---|
| 238 | set(handles.RunMovie,'BackgroundColor',[1 1 0])%paint the command button in yellow
|
---|
| 239 | drawnow
|
---|
| 240 | increment=str2num(get(handles.increment_scan,'String')); %get the field increment d
|
---|
| 241 | set(handles.STOP,'Visible','on')
|
---|
| 242 | set(handles.speed,'Visible','on')
|
---|
| 243 | set(handles.speed_txt,'Visible','on')
|
---|
| 244 | set(handles.RunMovie,'BusyAction','queue')
|
---|
| 245 | testavi=0;
|
---|
| 246 | UvData=get(handles.view_field,'UserData');
|
---|
| 247 |
|
---|
| 248 | while get(handles.speed,'Value')~=0 & isequal(get(handles.RunMovie,'BusyAction'),'queue') % enable STOP command
|
---|
| 249 | runpm(hObject,eventdata,handles,increment)
|
---|
| 250 | pause(1.02-get(handles.speed,'Value'))% wait for next image
|
---|
| 251 | end
|
---|
| 252 | if isfield(UvData,'aviobj') && ~isempty( UvData.aviobj),
|
---|
| 253 | UvData.aviobj=close(UvData.aviobj);
|
---|
| 254 | set(handles.view_field,'UserData',UvData);
|
---|
| 255 | end
|
---|
| 256 | set(handles.RunMovie,'BackgroundColor',[1 0 0])%paint the command buttonback to red
|
---|
| 257 |
|
---|
| 258 |
|
---|
| 259 |
|
---|
| 260 | %-------------------------------------------------------------------
|
---|
| 261 | % --- translate coordinate to matrix index
|
---|
| 262 | %-------------------------------------------------------------------
|
---|
| 263 | function [indx,indy]=pos2ind(x0,rangx0,nxy)
|
---|
| 264 | indx=1+round((nxy(2)-1)*(x0-rangx0(1))/(rangx0(2)-rangx0(1)));% index x of pixel
|
---|
| 265 | indy=1+round((nxy(1)-1)*(y12-rangy0(1))/(rangy0(2)-rangy0(1)));% index y of pixel
|
---|
| 266 |
|
---|
| 267 | %-------------------------------------------------------------------
|
---|
| 268 | % --- Executes on button press in 'FixLimits'.
|
---|
| 269 | %-------------------------------------------------------------------
|
---|
| 270 | function FixLimits_Callback(hObject, eventdata, handles)
|
---|
| 271 | test=get(handles.FixLimits,'Value');
|
---|
| 272 | if test
|
---|
| 273 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 274 | else
|
---|
| 275 | set(handles.FixLimits,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 276 | end
|
---|
| 277 |
|
---|
| 278 | %-------------------------------------------------------------------
|
---|
| 279 | % --- Executes on button press in FixEqual.
|
---|
| 280 | function FixEqual_Callback(hObject, eventdata, handles)
|
---|
| 281 | test=get(handles.FixEqual,'Value');
|
---|
| 282 | if test
|
---|
| 283 | set(handles.FixEqual,'BackgroundColor',[1 1 0])
|
---|
| 284 | cla(handles.axes3)
|
---|
| 285 | update_plot(handles)
|
---|
| 286 | else
|
---|
| 287 | set(handles.FixEqual,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 288 | update_plot(handles)
|
---|
| 289 | end
|
---|
| 290 |
|
---|
| 291 |
|
---|
| 292 | %-------------------------------------------------------------------
|
---|
| 293 |
|
---|
| 294 | %-------------------------------------------------------------------
|
---|
| 295 | % --- Executes on button press in 'zoom'.
|
---|
| 296 | %-------------------------------------------------------------------
|
---|
| 297 | function zoom_Callback(hObject, eventdata, handles)
|
---|
| 298 | if (get(handles.zoom,'Value') == 1);
|
---|
| 299 | set(handles.zoom,'BackgroundColor',[1 1 0])
|
---|
| 300 | set(handles.FixLimits,'Value',1)% propose by default fixed limits for the plotting axes
|
---|
| 301 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 302 | else
|
---|
| 303 | set(handles.zoom,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 304 | end
|
---|
| 305 |
|
---|
| 306 | %-------------------------------------------------------------------
|
---|
| 307 | %----Executes on button press in 'record': records the current flags of manual correction.
|
---|
| 308 | %-------------------------------------------------------------------
|
---|
| 309 | function record_Callback(hObject, eventdata, handles)
|
---|
| 310 | % [filebase,num_i1,num_j1,num_i2,num_j2,Ext,NomType,SubDir]=read_input_file(handles);
|
---|
| 311 | filename=read_file_boxes(handles);
|
---|
| 312 | AxeData=get(gca,'UserData');
|
---|
| 313 | [erread,message]=fileattrib(filename);
|
---|
| 314 | if ~isempty(message) && ~isequal(message.UserWrite,1)
|
---|
| 315 | msgbox_view_field('ERROR',['no writting access to ' filename])
|
---|
| 316 | return
|
---|
| 317 | end
|
---|
| 318 | test_civ2=isequal(get(handles.civ2,'BackgroundColor'),[1 1 0]);
|
---|
| 319 | test_civ1=isequal(get(handles.civ1,'BackgroundColor'),[1 1 0]);
|
---|
| 320 | if ~test_civ2 && ~test_civ1
|
---|
| 321 | msgbox_view_field('ERROR','manual correction only possible for CIV1 or CIV2 velocity fields')
|
---|
| 322 | end
|
---|
| 323 | if test_civ2
|
---|
| 324 | nbname='nb_vectors2';
|
---|
| 325 | flagname='vec2_FixFlag';
|
---|
| 326 | attrname='fix2';
|
---|
| 327 | end
|
---|
| 328 | if test_civ1
|
---|
| 329 | nbname='nb_vectors';
|
---|
| 330 | flagname='vec_FixFlag';
|
---|
| 331 | attrname='fix';
|
---|
| 332 | end
|
---|
| 333 | %write fix flags in the netcdf file
|
---|
| 334 | hhh=which('netcdf.open');% look for built-in matlab netcdf library
|
---|
| 335 | if ~isequal(hhh,'')% case of new builtin Matlab netcdf library
|
---|
| 336 | nc=netcdf.open(filename,'NC_WRITE');
|
---|
| 337 | netcdf.reDef(nc)
|
---|
| 338 | netcdf.putAtt(nc,netcdf.getConstant('NC_GLOBAL'),attrname,1)
|
---|
| 339 | dimid = netcdf.inqDimID(nc,nbname);
|
---|
| 340 | try
|
---|
| 341 | varid = netcdf.inqVarID(nc,flagname);% look for already existing fixflag variable
|
---|
| 342 | catch
|
---|
| 343 | varid=netcdf.defVar(nc,flagname,'double',dimid);%create fixflag variable if it does not exist
|
---|
| 344 | end
|
---|
| 345 | netcdf.endDef(nc)
|
---|
| 346 | netcdf.putVar(nc,varid,AxeData.FF);
|
---|
| 347 | netcdf.close(nc)
|
---|
| 348 | else %old netcdf library
|
---|
| 349 | netcdf_toolbox(filename,AxeData,attrname,nbname,flagname)
|
---|
| 350 | end
|
---|
| 351 |
|
---|
| 352 | function netcdf_toolbox(filename,AxeData,attrname,nbname,flagname)
|
---|
| 353 | nc=netcdf(filename,'write'); %open netcdf file
|
---|
| 354 | result=redef(nc);
|
---|
| 355 | eval(['nc.' attrname '=1;']);
|
---|
| 356 | theDim=nc(nbname) ;% get the number of velocity vectors
|
---|
| 357 | nb_vectors=size(theDim);
|
---|
| 358 | var_FixFlag=ncvar(flagname,nc);% var_FixFlag will be written as the netcdf variable vec_FixFlag
|
---|
| 359 | var_FixFlag(1:nb_vectors)=AxeData.FF;%
|
---|
| 360 | fin=close(nc);
|
---|
| 361 |
|
---|
| 362 |
|
---|
| 363 | %-------------------------------------------------------------------
|
---|
| 364 | %-------------------------------------------------------------------
|
---|
| 365 | % - FUNCTIONS FOR SETTING PLOTTING PARAMETERS
|
---|
| 366 |
|
---|
| 367 | %------------------------------------------------------------------
|
---|
| 368 |
|
---|
| 369 |
|
---|
| 370 | %------------------------------------------------------------------
|
---|
| 371 | % --- Executes on selection change in col_vec: choice of the color code.
|
---|
| 372 | %
|
---|
| 373 | function col_vec_Callback(hObject, eventdata, handles)
|
---|
| 374 | %------------------------------------------------------------------
|
---|
| 375 | % edit the choice for color code
|
---|
| 376 | list_code=get(handles.col_vec,'String');% list menu fields
|
---|
| 377 | index_code=get(handles.col_vec,'Value');% selected string index
|
---|
| 378 | col_code= list_code{index_code(1)}; % selected field
|
---|
| 379 | if isequal(col_code,'black') | isequal(col_code,'white')
|
---|
| 380 | set(handles.slider1,'Visible','off')
|
---|
| 381 | set(handles.slider2,'Visible','off')
|
---|
| 382 | set(handles.colcode1,'Visible','off')
|
---|
| 383 | set(handles.colcode2,'Visible','off')
|
---|
| 384 | set(handles.AutoVecColor,'Visible','off')
|
---|
| 385 | set_vec_col_bar(handles)
|
---|
| 386 | else
|
---|
| 387 | set(handles.slider1,'Visible','on')
|
---|
| 388 | set(handles.slider2,'Visible','on')
|
---|
| 389 | set(handles.colcode1,'Visible','on')
|
---|
| 390 | set(handles.colcode2,'Visible','on')
|
---|
| 391 | set(handles.AutoVecColor,'Visible','on')
|
---|
| 392 | if isequal(col_code,'ima_cor')
|
---|
| 393 | set(handles.AutoVecColor,'Value',0)%fixed scale by default
|
---|
| 394 | set(handles.vec_col_bar,'Value',0)% 3 colors r,g,b by default
|
---|
| 395 | set(handles.slider1,'Min',0);
|
---|
| 396 | set(handles.slider1,'Max',1);
|
---|
| 397 | set(handles.slider2,'Min',0);
|
---|
| 398 | set(handles.slider2,'Max',1);
|
---|
| 399 | % set(handles.min_C_title_vec,'String','0')
|
---|
| 400 | set(handles.max_vec,'String','1')
|
---|
| 401 | set(handles.colcode1,'String','0.333')
|
---|
| 402 | colcode1_Callback(hObject, eventdata, handles)
|
---|
| 403 | set(handles.colcode2,'String','0.666')
|
---|
| 404 | colcode2_Callback(hObject, eventdata, handles)
|
---|
| 405 | else
|
---|
| 406 | set(handles.AutoVecColor,'Value',1)%auto scale between min,max by default
|
---|
| 407 | set(handles.vec_col_bar,'Value',1)% colormap 'jet' by default
|
---|
| 408 | minval=get(handles.slider1,'Min');
|
---|
| 409 | maxval=get(handles.slider1,'Max');
|
---|
| 410 | set(handles.slider1,'Value',minval)
|
---|
| 411 | set(handles.slider2,'Value',maxval)
|
---|
| 412 | set_vec_col_bar(handles)
|
---|
| 413 | end
|
---|
| 414 | % slider_update(handles)
|
---|
| 415 | end
|
---|
| 416 | %replot the current graph
|
---|
| 417 | run0_Callback(hObject, eventdata, handles)
|
---|
| 418 |
|
---|
| 419 |
|
---|
| 420 | %----------------------------------------------------------------
|
---|
| 421 | % -- Executes on slider movement to set the color code
|
---|
| 422 | %
|
---|
| 423 | function slider1_Callback(hObject, eventdata, handles)
|
---|
| 424 | %------------------------------------------------------------------
|
---|
| 425 | slider1=get(handles.slider1,'Value');
|
---|
| 426 | min_val=str2num(get(handles.min_vec,'String'));
|
---|
| 427 | max_val=str2num(get(handles.max_vec,'String'));
|
---|
| 428 | col=min_val+(max_val-min_val)*slider1;
|
---|
| 429 | set(handles.colcode1,'String',num2str(col))
|
---|
| 430 | if(get(handles.slider2,'Value') < col)%move also the second slider at the same value if needed
|
---|
| 431 | set(handles.slider2,'Value',col)
|
---|
| 432 | set(handles.colcode2,'String',num2str(col))
|
---|
| 433 | end
|
---|
| 434 | colcode1_Callback(hObject, eventdata, handles)
|
---|
| 435 |
|
---|
| 436 | %----------------------------------------------------------------
|
---|
| 437 | % Executes on slider movement to set the color code
|
---|
| 438 | %----------------------------------------------------------------
|
---|
| 439 | function slider2_Callback(hObject, eventdata, handles)
|
---|
| 440 | slider2=get(handles.slider2,'Value');
|
---|
| 441 | min_val=str2num(get(handles.min_vec,'String'));
|
---|
| 442 | max_val=str2num(get(handles.max_vec,'String'));
|
---|
| 443 | col=min_val+(max_val-min_val)*slider2;
|
---|
| 444 | set(handles.colcode2,'String',num2str(col))
|
---|
| 445 | if(get(handles.slider1,'Value') > col)%move also the first slider at the same value if needed
|
---|
| 446 | set(handles.slider1,'Value',col)
|
---|
| 447 | set(handles.colcode1,'String',num2str(col))
|
---|
| 448 | end
|
---|
| 449 | colcode2_Callback(hObject, eventdata, handles)
|
---|
| 450 |
|
---|
| 451 | %----------------------------------------------------------------
|
---|
| 452 | %execute on return carriage on the edit box corresponding to slider 1
|
---|
| 453 | %----------------------------------------------------------------
|
---|
| 454 | function colcode1_Callback(hObject, eventdata, handles)
|
---|
| 455 | % col=str2num(get(handles.colcode1,'String'));
|
---|
| 456 | % set(handles.slider1,'Value',col)
|
---|
| 457 | set_vec_col_bar(handles)
|
---|
| 458 | update_plot(handles)
|
---|
| 459 |
|
---|
| 460 | %----------------------------------------------------------------
|
---|
| 461 | %execute on return carriage on the edit box corresponding to slider 2
|
---|
| 462 | %----------------------------------------------------------------
|
---|
| 463 | function colcode2_Callback(hObject, eventdata, handles)
|
---|
| 464 | % col=str2num(get(handles.colcode2,'String'));
|
---|
| 465 | % set(handles.slider2,'Value',col)
|
---|
| 466 | % slider2_Callback(hObject, eventdata, handles)
|
---|
| 467 | set_vec_col_bar(handles)
|
---|
| 468 | update_plot(handles)
|
---|
| 469 | %------------------------------------------------------------
|
---|
| 470 | %update the slider values after displaying vectors
|
---|
| 471 | %--------------------------------------------------------
|
---|
| 472 | % function slider_update(handles,auto,minC,colcode1,colcode2,maxC)
|
---|
| 473 | % set(handles.slider1,'Min',minC)
|
---|
| 474 | % set(handles.slider1,'Max',maxC)
|
---|
| 475 | % set(handles.slider2,'Min',minC)
|
---|
| 476 | % set(handles.slider2,'Max',maxC)
|
---|
| 477 | % set(handles.min_C_title_vec,'String',num2str(minC))
|
---|
| 478 | % set(handles.max_vec,'String',num2str(maxC))
|
---|
| 479 | % if auto
|
---|
| 480 | % set(handles.colcode1,'String',num2str(colcode1,3))%update display
|
---|
| 481 | % set(handles.colcode2,'String',num2str(colcode2,3))
|
---|
| 482 | % end
|
---|
| 483 | % set(handles.slider1,'Value',colcode1)%update slider with constant display
|
---|
| 484 | % set(handles.slider2,'Value',colcode2)
|
---|
| 485 | % set_vec_col_bar(handles)
|
---|
| 486 |
|
---|
| 487 |
|
---|
| 488 | %-------------------------------------------------------
|
---|
| 489 | % --- Executes on button press in AutoVecColor.
|
---|
| 490 | %-------------------------------------------------------
|
---|
| 491 | function vec_col_bar_Callback(hObject, eventdata, handles)
|
---|
| 492 | set_vec_col_bar(handles)
|
---|
| 493 |
|
---|
| 494 | % %--------------------------------------------
|
---|
| 495 | % %update the display of color code for vectors
|
---|
| 496 | % %--------------------------------------------
|
---|
| 497 | % function set_vec_col_bar(handles)
|
---|
| 498 | % %get the image of the color display button 'vec_col_bar' in pixels
|
---|
| 499 | % uni=get(handles.vec_col_bar,'Unit');
|
---|
| 500 | % set(handles.vec_col_bar,'Unit','pixel')
|
---|
| 501 | % pos_vert=get(handles.vec_col_bar,'Position');
|
---|
| 502 | % set(handles.vec_col_bar,'Unit','Normalized')
|
---|
| 503 | % width=ceil(pos_vert(3));
|
---|
| 504 | % height=ceil(pos_vert(4));
|
---|
| 505 | % %get slider indications
|
---|
| 506 | % colcode.min=get(handles.slider1,'Min');
|
---|
| 507 | % colcode.max=get(handles.slider1,'Max');
|
---|
| 508 | % colcode.colcode1=get(handles.slider1,'Value');
|
---|
| 509 | % colcode.colcode2=get(handles.slider2,'Value');
|
---|
| 510 | % colcode.option=get(handles.vec_col_bar,'Value');
|
---|
| 511 | % colcode.auto=1;
|
---|
| 512 | % list_code=get(handles.col_vec,'String');% list menu fields
|
---|
| 513 | % index_code=get(handles.col_vec,'Value');% selected string index
|
---|
| 514 | % colcode.CName= list_code{index_code(1)}; % selected field used for vector color
|
---|
| 515 | % vec_C=colcode.min+(colcode.max-colcode.min)*[0.5:width-0.5]/width;%sample of vec_C values from min to max
|
---|
| 516 | % [colorlist,col_vec]=set_col_vec(colcode,vec_C);
|
---|
| 517 | % oneheight=ones(1,height);
|
---|
| 518 | % A1=colorlist(col_vec,1)*oneheight;
|
---|
| 519 | % A2=colorlist(col_vec,2)*oneheight;
|
---|
| 520 | % A3=colorlist(col_vec,3)*oneheight;
|
---|
| 521 | % A(:,:,1)=A1';
|
---|
| 522 | % A(:,:,2)=A2';
|
---|
| 523 | % A(:,:,3)=A3';
|
---|
| 524 | % set(handles.vec_col_bar,'Cdata',A)
|
---|
| 525 |
|
---|
| 526 |
|
---|
| 527 | %------------------------------------------------
|
---|
| 528 | %CALLBACKS FOR PLOTTING PARAMETERS
|
---|
| 529 | %-------------------------------------------------
|
---|
| 530 |
|
---|
| 531 | %------------------------------------------------------------------------
|
---|
| 532 | function MinX_Callback(hObject, eventdata, handles)
|
---|
| 533 | %------------------------------------------------------------------------
|
---|
| 534 | set(handles.FixLimits,'Value',1) %suppress auto mode
|
---|
| 535 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 536 | update_plot(handles);
|
---|
| 537 |
|
---|
| 538 | %------------------------------------------------------------------------
|
---|
| 539 | function MaxX_Callback(hObject, eventdata, handles)
|
---|
| 540 | %------------------------------------------------------------------------
|
---|
| 541 | set(handles.FixLimits,'Value',1) %suppress auto mode
|
---|
| 542 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 543 | update_plot(handles);
|
---|
| 544 |
|
---|
| 545 | %------------------------------------------------------------------------
|
---|
| 546 | function MinY_Callback(hObject, eventdata, handles)
|
---|
| 547 | %------------------------------------------
|
---|
| 548 | set(handles.FixLimits,'Value',1) %suppress auto mode
|
---|
| 549 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 550 | update_plot(handles);
|
---|
| 551 |
|
---|
| 552 | %------------------------------------------------------------------------
|
---|
| 553 | function MaxY_Callback(hObject, eventdata, handles)
|
---|
| 554 | %------------------------------------------------------------------------
|
---|
| 555 | set(handles.FixLimits,'Value',1) %suppress auto mode
|
---|
| 556 | set(handles.FixLimits,'BackgroundColor',[1 1 0])
|
---|
| 557 | update_plot(handles);
|
---|
| 558 |
|
---|
| 559 | %-----------------------------------------------------------------
|
---|
| 560 | function MinA_Callback(hObject, eventdata, handles)
|
---|
| 561 | %------------------------------------------
|
---|
| 562 | set(handles.FixScal,'Value',1) %suppress auto mode
|
---|
| 563 | set(handles.FixScal,'BackgroundColor',[1 1 0])
|
---|
| 564 | update_plot(handles)
|
---|
| 565 |
|
---|
| 566 | %-----------------------------------------------------------------
|
---|
| 567 | function MaxA_Callback(hObject, eventdata, handles)
|
---|
| 568 | %--------------------------------------------
|
---|
| 569 | set(handles.FixScal,'Value',1) %suppress auto mode
|
---|
| 570 | set(handles.FixScal,'BackgroundColor',[1 1 0])
|
---|
| 571 | update_plot(handles)
|
---|
| 572 |
|
---|
| 573 | %-----------------------------------------------
|
---|
| 574 | function FixScal_Callback(hObject, eventdata, handles)
|
---|
| 575 | %--------------------------------------------
|
---|
| 576 | test=get(handles.FixScal,'Value');
|
---|
| 577 | if test
|
---|
| 578 | set(handles.FixScal,'BackgroundColor',[1 1 0])
|
---|
| 579 | else
|
---|
| 580 | set(handles.FixScal,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 581 | update_plot(handles);
|
---|
| 582 | % set(handles.MinA,'String',num2str(ScalOut.MinA,3))
|
---|
| 583 | % set(handles.MaxA,'String',num2str(ScalOut.MaxA,3))
|
---|
| 584 | end
|
---|
| 585 |
|
---|
| 586 | %-------------------------------------------------------------------
|
---|
| 587 | function BW_Callback(hObject, eventdata, handles)
|
---|
| 588 | %-------------------------------------------------------------------
|
---|
| 589 | update_plot(handles)
|
---|
| 590 |
|
---|
| 591 | %-------------------------------------------------------------------
|
---|
| 592 | function Contours_Callback(hObject, eventdata, handles)
|
---|
| 593 | %-------------------------------------------------------------------
|
---|
| 594 | val=get(handles.Contours,'Value');
|
---|
| 595 | if val==2
|
---|
| 596 | set(handles.interval_txt,'Visible','on')
|
---|
| 597 | set(handles.IncrA,'Visible','on')
|
---|
| 598 | else
|
---|
| 599 | set(handles.interval_txt,'Visible','off')
|
---|
| 600 | set(handles.IncrA,'Visible','off')
|
---|
| 601 | end
|
---|
| 602 | update_plot(handles)
|
---|
| 603 |
|
---|
| 604 | %-------------------------------------------------------------------
|
---|
| 605 | function IncrA_Callback(hObject, eventdata, handles)
|
---|
| 606 | %-------------------------------------------------------------------
|
---|
| 607 | update_plot(handles)
|
---|
| 608 |
|
---|
| 609 | %-------------------------------------------------------------------
|
---|
| 610 | function HideWarning_Callback(hObject, eventdata, handles)
|
---|
| 611 | %-------------------------------------------------------------------
|
---|
| 612 | update_plot(handles)
|
---|
| 613 |
|
---|
| 614 | %-------------------------------------------------------------------
|
---|
| 615 | function HideFalse_Callback(hObject, eventdata, handles)
|
---|
| 616 | %-------------------------------------------------------------------
|
---|
| 617 | update_plot(handles)
|
---|
| 618 |
|
---|
| 619 | %-------------------------------------------------------------------
|
---|
| 620 | function VecScale_Callback(hObject, eventdata, handles)
|
---|
| 621 | %-------------------------------------------------------------------
|
---|
| 622 | set(handles.FixVec,'Value',1);
|
---|
| 623 | set(handles.FixVec,'BackgroundColor',[1 1 0])
|
---|
| 624 | update_plot(handles)
|
---|
| 625 |
|
---|
| 626 | %-------------------------------------------------------------------
|
---|
| 627 | function FixVec_Callback(hObject, eventdata, handles)
|
---|
| 628 | %-------------------------------------------------------------------
|
---|
| 629 | test=get(handles.FixVec,'Value');
|
---|
| 630 | if test
|
---|
| 631 | set(handles.FixVec,'BackgroundColor',[1 1 0])
|
---|
| 632 | else
|
---|
| 633 | update_plot(handles);
|
---|
| 634 | %set(handles.VecScale,'String',num2str(ScalOut.VecScale,3))
|
---|
| 635 | set(handles.FixVec,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 636 | end
|
---|
| 637 |
|
---|
| 638 | %-------------------------------------------------------
|
---|
| 639 | % --- Executes on selection change in decimate4 (nb_vec/4).
|
---|
| 640 | %-------------------------------------------------------
|
---|
| 641 | function decimate4_Callback(hObject, eventdata, handles)
|
---|
| 642 | 'TEST'
|
---|
| 643 | update_plot(handles)
|
---|
| 644 |
|
---|
| 645 |
|
---|
| 646 | %-------------------------------------------------------
|
---|
| 647 | % --- Executes on selection change in color_code menu
|
---|
| 648 | %-------------------------------------------------------
|
---|
| 649 | function color_code_Callback(hObject, eventdata, handles)
|
---|
| 650 | set_vec_col_bar(handles)
|
---|
| 651 | update_plot(handles);
|
---|
| 652 |
|
---|
| 653 | %-------------------------------------------------------
|
---|
| 654 | % --- Executes on button press in AutoVecColor.
|
---|
| 655 | %-------------------------------------------------------
|
---|
| 656 | function AutoVecColor_Callback(hObject, eventdata, handles)
|
---|
| 657 | test=get(handles.AutoVecColor,'Value');
|
---|
| 658 | if test
|
---|
| 659 | set(handles.AutoVecColor,'BackgroundColor',[1 1 0])
|
---|
| 660 | else
|
---|
| 661 | update_plot(handles);
|
---|
| 662 | %set(handles.VecScale,'String',num2str(ScalOut.VecScale,3))
|
---|
| 663 | set(handles.AutoVecColor,'BackgroundColor',[0.7 0.7 0.7])
|
---|
| 664 | end
|
---|
| 665 | %set_vec_col_bar(handles)
|
---|
| 666 |
|
---|
| 667 | %-------------------------------------------------------
|
---|
| 668 | % --- Executes on selection change in max_vec.
|
---|
| 669 | %-------------------------------------------------------
|
---|
| 670 | function min_vec_Callback(hObject, eventdata, handles)
|
---|
| 671 | max_vec_Callback(hObject, eventdata, handles)
|
---|
| 672 |
|
---|
| 673 | % --- Executes on selection change in max_vec.
|
---|
| 674 | function max_vec_Callback(hObject, eventdata, handles)
|
---|
| 675 | set(handles.AutoVecColor,'Value',1)
|
---|
| 676 | AutoVecColor_Callback(hObject, eventdata, handles)
|
---|
| 677 | min_val=str2num(get(handles.min_vec,'String'));
|
---|
| 678 | max_val=str2num(get(handles.max_vec,'String'));
|
---|
| 679 | slider1=get(handles.slider1,'Value');
|
---|
| 680 | slider2=get(handles.slider2,'Value');
|
---|
| 681 | colcode1=min_val+(max_val-min_val)*slider1;
|
---|
| 682 | colcode2=min_val+(max_val-min_val)*slider2;
|
---|
| 683 | set(handles.colcode1,'String',num2str(colcode1))
|
---|
| 684 | set(handles.colcode2,'String',num2str(colcode2))
|
---|
| 685 | update_plot(handles);
|
---|
| 686 |
|
---|
| 687 | %-------------------------------------------------------------------
|
---|
| 688 | %update the display of color code for vectors
|
---|
| 689 | function set_vec_col_bar(handles)
|
---|
| 690 | %-------------------------------------------------------------------
|
---|
| 691 | %get the image of the color display button 'vec_col_bar' in pixels
|
---|
| 692 | set(handles.vec_col_bar,'Unit','pixel');
|
---|
| 693 | pos_vert=get(handles.vec_col_bar,'Position');
|
---|
| 694 | set(handles.vec_col_bar,'Unit','Normalized');
|
---|
| 695 | width=ceil(pos_vert(3));
|
---|
| 696 | height=ceil(pos_vert(4));
|
---|
| 697 |
|
---|
| 698 | %get slider indications
|
---|
| 699 | list=get(handles.color_code,'String');
|
---|
| 700 | ichoice=get(handles.color_code,'Value');
|
---|
| 701 | colcode.ColorCode=list{ichoice};
|
---|
| 702 | colcode.MinC=str2num(get(handles.min_vec,'String'));
|
---|
| 703 | colcode.MaxC=str2num(get(handles.max_vec,'String'));
|
---|
| 704 | test3color=strcmp(colcode.ColorCode,'rgb') || strcmp(colcode.ColorCode,'bgr');
|
---|
| 705 | if test3color
|
---|
| 706 | colcode.colcode1=str2num(get(handles.colcode1,'String'));
|
---|
| 707 | colcode.colcode2=str2num(get(handles.colcode2,'String'));
|
---|
| 708 | end
|
---|
| 709 | % colcode.option=get(handles.vec_col_bar,'Value');
|
---|
| 710 | colcode.FixedCbounds=0;
|
---|
| 711 | % list_code=get(handles.col_vec,'String');% list menu fields
|
---|
| 712 | % index_code=get(handles.col_vec,'Value');% selected string index
|
---|
| 713 | % colcode.CName= list_code{index_code(1)}; % selected field used for vector color
|
---|
| 714 | colcode.FixedCbounds=1;
|
---|
| 715 | vec_C=colcode.MinC+(colcode.MaxC-colcode.MinC)*[0.5:width-0.5]/width;%sample of vec_C values from min to max
|
---|
| 716 | [colorlist,col_vec]=set_col_vec(colcode,vec_C);
|
---|
| 717 | oneheight=ones(1,height);
|
---|
| 718 | A1=colorlist(col_vec,1)*oneheight;
|
---|
| 719 | A2=colorlist(col_vec,2)*oneheight;
|
---|
| 720 | A3=colorlist(col_vec,3)*oneheight;
|
---|
| 721 | A(:,:,1)=A1';
|
---|
| 722 | A(:,:,2)=A2';
|
---|
| 723 | A(:,:,3)=A3';
|
---|
| 724 | set(handles.vec_col_bar,'Cdata',A)
|
---|
| 725 |
|
---|
| 726 | %-------------------------------------------------------------------
|
---|
| 727 | function PlotType=update_plot(handles)
|
---|
| 728 | %-------------------------------------------------------------------
|
---|
| 729 | haxes= handles.axes3;
|
---|
| 730 |
|
---|
| 731 | %ProjField=get(haxes,'UserData');
|
---|
| 732 | ViewFieldData=get(handles.view_field,'UserData');
|
---|
| 733 | ProjField=ViewFieldData.axes3;
|
---|
| 734 | %ProjField=get(haxes,'UserData');
|
---|
| 735 | PlotParam=read_plot_param(handles);
|
---|
| 736 | [PlotType,PlotParamOut]= plot_field(ProjField,haxes,PlotParam,1);
|
---|
| 737 | write_plot_param(handles,PlotParamOut); %update the auto plot parameters
|
---|
| 738 |
|
---|
| 739 | %------------------------------------------------------
|
---|
| 740 | % --- Executes on button press in Menu/Export/field in workspace.
|
---|
| 741 | %------------------------------------------------------
|
---|
| 742 | function MenuExportField_Callback(hObject, eventdata, handles)
|
---|
| 743 |
|
---|
| 744 | global Data_view_field
|
---|
| 745 | % huvmat=findobj(allchild(0),'Name','uvmat');
|
---|
| 746 | Data_view_field=get(handles.view_field,'UserData');
|
---|
| 747 | Data_view_field=Data_view_field.axes3;
|
---|
| 748 | % Data_view_field=UvData.ProjField_2;
|
---|
| 749 | evalin('base','global Data_view_field')%make CurData global in the workspace
|
---|
| 750 | display(['UserData of view_field :'])
|
---|
| 751 | evalin('base','Data_view_field') %display CurData in the workspace
|
---|
| 752 | commandwindow;
|
---|
| 753 |
|
---|
| 754 | %------------------------------------------------------
|
---|
| 755 | % --- Executes on button press in Menu/Export/extract figure.
|
---|
| 756 | %------------------------------------------------------
|
---|
| 757 | function MenuExport_plot_Callback(hObject, eventdata, handles)
|
---|
| 758 | huvmat=get(handles.MenuExport_plot,'parent');
|
---|
| 759 | UvData=get(huvmat,'UserData');
|
---|
| 760 | hfig=figure;
|
---|
| 761 | newaxes=copyobj(handles.axes3,hfig);
|
---|
| 762 | map=colormap(handles.axes3);
|
---|
| 763 | colormap(map);%transmit the current colormap to the zoom fig
|
---|
| 764 | colorbar
|
---|
| 765 |
|
---|
| 766 |
|
---|
| 767 |
|
---|
| 768 | function npx_Callback(hObject, eventdata, handles)
|
---|
| 769 |
|
---|
| 770 | function text_display_CreateFcn(hObject, eventdata, handles)%to suppress
|
---|
| 771 | function MinX_CreateFcn(hObject, eventdata, handles)%to suppress
|
---|
| 772 | function MaxX_CreateFcn(hObject, eventdata, handles)%to suppress
|
---|
| 773 | function MinY_CreateFcn(hObject, eventdata, handles)%to suppress
|
---|
| 774 | function MaxY_CreateFcn(hObject, eventdata, handles)%to suppress
|
---|
| 775 | function npy_Callback(hObject, eventdata, handles)
|
---|
| 776 |
|
---|
| 777 |
|
---|
| 778 | function edit86_Callback(hObject, eventdata, handles)
|
---|
| 779 |
|
---|
| 780 |
|
---|
| 781 | function edit87_Callback(hObject, eventdata, handles)
|
---|
| 782 |
|
---|
| 783 |
|
---|
| 784 | % --- Executes on button press in auto_sclar.
|
---|
| 785 | function auto_sclar_Callback(hObject, eventdata, handles)
|
---|
| 786 | % hObject handle to auto_sclar (see GCBO)
|
---|
| 787 | % eventdata reserved - to be defined in a future version of MATLAB
|
---|
| 788 | % handles structure with handles and user data (see GUIDATA)
|
---|
| 789 |
|
---|
| 790 | % Hint: get(hObject,'Value') returns toggle state of auto_sclar
|
---|
| 791 |
|
---|
| 792 |
|
---|
| 793 |
|
---|
| 794 | % --- Executes on slider movement.
|
---|
| 795 | function slider9_Callback(hObject, eventdata, handles)
|
---|
| 796 |
|
---|
| 797 |
|
---|
| 798 |
|
---|
| 799 | % --- Executes on slider movement.
|
---|
| 800 | function slider10_Callback(hObject, eventdata, handles)
|
---|
| 801 |
|
---|
| 802 |
|
---|
| 803 |
|
---|
| 804 | function closefcn(hObject, eventdata, handles)
|
---|
| 805 | huvmat=findobj(allchild(0),'Name','uvmat');
|
---|
| 806 | if ~isempty(huvmat)
|
---|
| 807 | hhuvmat=guidata(huvmat);
|
---|
| 808 | list_object_2=get(hhuvmat.list_object_2,'String');
|
---|
| 809 | set(hhuvmat.list_object_2,'Value',numel(list_object_2))%select the last value ('...')
|
---|
| 810 | end
|
---|
| 811 | delete(hObject)
|
---|
| 812 |
|
---|
| 813 |
|
---|
| 814 | % --- Executes on selection change in popupmenu18.
|
---|
| 815 | function popupmenu18_Callback(hObject, eventdata, handles)
|
---|
| 816 |
|
---|
| 817 |
|
---|
| 818 |
|
---|
| 819 |
|
---|