1 | %'uvmat': function associated with the GUI 'uvmat.fig' for images and data field visualization |
---|
2 | %------------------------------------------------------------------------ |
---|
3 | % function huvmat=uvmat(input) |
---|
4 | % |
---|
5 | %OUTPUT |
---|
6 | % huvmat=current handles of the GUI uvmat.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 UVMAT. |
---|
18 | % |
---|
19 | % UVMAT 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 | % UVMAT 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 UVMAT/COPYING.txt) for more details. |
---|
28 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
29 | % |
---|
30 | % Information stored on the interface: |
---|
31 | % 'Strings' of all edit boxes and menus: get(handles.Tag,'String') |
---|
32 | % 'Values' of all menus and toggle buttons: get(handles.Tag,'Value') |
---|
33 | % Matlab structure called UvData stored as 'UserData' of the figure uvmat.fig,(can be obtained by right mouse click on the interface). |
---|
34 | % It contains the following fields: |
---|
35 | % - Fixed specifiacation of plotting figures and axes (defined bu uvmat_OpeningFcn) |
---|
36 | % .PosColorbar: [0.8210 0.4710 0.0190 0.4450]; specified position of the colorbar on figures |
---|
37 | % - Information read in the documentation open of a series (activated by RootPath_Callback) : |
---|
38 | % .XmlData, with fields: |
---|
39 | % .Time: matrix of times of the images with index i and j |
---|
40 | % .GeometryCalib: [1x1 struct] |
---|
41 | % - Information defined from the interface: |
---|
42 | % .NewSeries: =1 when the first view of a new field series is displayed, else 0 |
---|
43 | % .filename:(char string) |
---|
44 | % .FieldName: (char string) main field selected('image', 'velocity'...) |
---|
45 | % .CName: (char string)name of the scalar used for vector colors |
---|
46 | % .MovieObject{1}: movie object representing an input movie |
---|
47 | % .MovieObject{2}: idem for a second input series (_1) |
---|
48 | % .filename_1 : last second input file name (to deal with a constant second input without reading again the file) |
---|
49 | % .ZMin, .ZMax: range of the z coordinate |
---|
50 | %..... to complement |
---|
51 | % - Information on projection objects |
---|
52 | % .Object: {[1x1 struct]} |
---|
53 | % .CurrentObjectIndex: index of the projection object .Object currently selected for editing |
---|
54 | % -Information on the current field (Field{i}) |
---|
55 | % .Txt : text information to display (e.g. error message) |
---|
56 | % .NbDim: number of dimensions (=0 by default) |
---|
57 | % .NbCoord: number of vector components |
---|
58 | % .CoordType: expresses the type of coordinate ('px' for image, 'sig' for instruments, or 'phys') |
---|
59 | % .dt: time interval for the corresponding image pair |
---|
60 | % .Mesh: estimated typical distance between vectors |
---|
61 | % .ZMax: |
---|
62 | % .ZMin: |
---|
63 | % .X, .Y, .Z: set of vector coordinates |
---|
64 | % .U,.V,.W: corresponding set of vector components |
---|
65 | % .F: corresponding set of warning flags |
---|
66 | % .FF: corresponding set of false flags, =0 for good vectors |
---|
67 | % .C: corresponding values of the scalar used for vector color |
---|
68 | % (.X, .Y, .Z,.U,.V,.W,.F,.FF,.C are matlab vectors of the same length, |
---|
69 | % equal to the number of vectors stored in the input open) |
---|
70 | % .CName: name of the scalar .C |
---|
71 | % .CType: type of the scalar .C, setting how the scalar is obtained (see 'Scalars' below) |
---|
72 | % .A image or scalar |
---|
73 | % .AX: vector of dimension 2 representing the first and last values |
---|
74 | % of the X coordinates for the image or scalar known on a regular grid, |
---|
75 | % or vector of dimension .A for a scaler defined on irregular grid. |
---|
76 | % .AY: same as .AX along the Y direction |
---|
77 | % .AName: name of the scalar, ='image' for an image |
---|
78 | |
---|
79 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DATA FLOW (for run0_Callback) %%%%%%%%%%%%%%%%%%%%: |
---|
80 | % |
---|
81 | % |
---|
82 | % 1) Input filenames are determined by MenuBrowse (first field), MenuBrowse_1 |
---|
83 | % (second field), or by the stored file names under Browse, or as an input of uvmat. |
---|
84 | % 2) These functions call 'display_file_name.m' which detects the file series, and fills the file index boxes |
---|
85 | % 3) Then 'update_rootinfo.m' Updates information about a new field series (indices to scan, timing, calibration from an xml file) |
---|
86 | % 4) Then fields are opened and visualised by the main sub-function 'refresh_field.m' |
---|
87 | % The function first reads the name of the input file from the edit boxes of the GUI |
---|
88 | % A second input file can be introduced for file comparison |
---|
89 | % It then reads the input file(s) with the appropriate function, read for |
---|
90 | % images, read_civxdata.m for CIVx PIV data, nc2struct for other netcdf |
---|
91 | % files. |
---|
92 | % Main input open second input open(_1) second image (pair animation) |
---|
93 | % | | |
---|
94 | % | | |
---|
95 | % Field{1} Field{2} |
---|
96 | % | |
---|
97 | % coord transform (phys.m) or other user defined fct acting on Field{i} | |
---|
98 | % Field{i} |
---|
99 | % | |
---|
100 | % calc_field.m: calculate scalar or other derived fields (vort, div..). |
---|
101 | % |
---|
102 | % sub_field.m: combine the input Field{i} in a single set of fields (vector + scalar): |
---|
103 | % Field{i=1->3}.X --> UvData.X | |
---|
104 | % | |
---|
105 | % UvData |
---|
106 | % | |
---|
107 | % plot histograms of the whole field |
---|
108 | % proj_field.m: project the set of fields on the current projection objects defined by UvData.Object |
---|
109 | % | | |
---|
110 | % ObjectData |
---|
111 | % | |
---|
112 | % plot_field.m: plot the projected fields and store them as | |
---|
113 | % UvData.axes3 | |
---|
114 | % | |
---|
115 | % AxeData |
---|
116 | % |
---|
117 | %%%%%%%%%%%%%% SCALARS: %%%%%%%%%%%%??%%% |
---|
118 | % scalars are displayed either as an image or countour plot, either as a color of |
---|
119 | % velocity vectors. The scalar values in the first case is represented by |
---|
120 | % UvData.Field.A, and by UvData.Field.C in the second case. The corresponding set of X |
---|
121 | % and Y coordinates are represented by UvData.Field.AX and UvData.Field.AY, and .X and |
---|
122 | % .Y for C (the same as velocity vectors). If A is a nxxny matrix (scalar |
---|
123 | % on a regtular grid), then .AX andf.AY contains only two elements, represneting the |
---|
124 | % coordinates of the four image corners. The scalar name is represented by |
---|
125 | % the strings .AName and/or .CName. |
---|
126 | % If the scalar exists in an input open (image or scalar stored under its |
---|
127 | % name in a netcdf open), it is directly read at the level of Field{1}or Field{2}. |
---|
128 | % Else only its name AName is recorded in Field{i}, and its field is then calculated |
---|
129 | %by the fuction calc_scal after the coordinate transform or after projection on an edit_object |
---|
130 | |
---|
131 | % Properties attached to plotting figures (standard Matlab properties): |
---|
132 | % 'CurrentAxes'= gca or get(gcf,'CurrentAxes'); |
---|
133 | % 'CurrentPoint'=get(gcf,'CurrentPoint'): figure coordinates of the point over which the mouse is positioned |
---|
134 | % 'CurrentCharacter'=get(gcf,'CurrentCharacter'): last character typed over the figure where the mouse is positioned |
---|
135 | % 'WindowButtonMotionFcn': function permanently called by mouse motion over the figure |
---|
136 | % 'KeyPressFcn': function called by pressing a key on the key board |
---|
137 | % 'WindowButtonDownFcn': function called by pressing the mouse over the figure |
---|
138 | % 'WindowButtonUpFcn': function called by releasing the mouse pressure over the figure |
---|
139 | |
---|
140 | % Properties attached to plotting axes: |
---|
141 | % 'CurrentPoint'=get(gca,'CurrentPoint'); (standard Matlab) same as for the figure, but position in plot coordinates. |
---|
142 | % AxeData:=get(gca,'UserData'); |
---|
143 | % AxeData.Drawing = create: create a new object |
---|
144 | % = deform: modify an existing object by moving its defining create |
---|
145 | % = off: no current drawing action |
---|
146 | % = translate: translate an existing object |
---|
147 | % = calibration: move a calibration point |
---|
148 | % = CheckZoom: isolate a subregion for CheckZoom in=1 if an object is being currently drawn, 0 else (set to 0 by releasing mouse button) |
---|
149 | % .CurrentOrigin: Origin of a curently drawn edit_object |
---|
150 | % .CurrentLine: currently drawn menuline (A REVOIR) |
---|
151 | % .CurrentObject: handle of the currently drawn edit_object |
---|
152 | % .CurrentRectZoom: current rectangle used for CheckZoom |
---|
153 | |
---|
154 | % Properties attached to projection objects (create, menuline, menuplane...): |
---|
155 | % 'Tag'='proj_object': for all projection objects |
---|
156 | % ObjectData.Type=...: style of projection object: |
---|
157 | % .ProjMode |
---|
158 | % .Coord: defines the position of the object |
---|
159 | % .XMin,YMin.... |
---|
160 | % .XMax,YMax.... |
---|
161 | % .DX,DY,DZ |
---|
162 | % .Phi, .Theta, .Psi : Euler angles |
---|
163 | % .X,.Y,.U,.V.... : field data projected on the object |
---|
164 | % .IndexObj: index in the list of UvData.Object |
---|
165 | %during plotting |
---|
166 | % .plotaxes: handles of the current axes used to plot the result of field projection on the object |
---|
167 | % .plothandle: vector of handle(s) of the object graphic represnetation in all the opened plotting axes |
---|
168 | % To each projection object #iobj, corresponds an axis |
---|
169 | % Object{iobj}.plotaxes and nbobj representation graphs Object{iobj}.plothandles(:) (where nbobj is the |
---|
170 | % nbre of current objects opened in uvmat. Note that Object{iobj}.plothandles(iobj)=[] : an object is not represented in its own projection field; |
---|
171 | |
---|
172 | %------------------------------------------------------------------------ |
---|
173 | %------------------------------------------------------------------------ |
---|
174 | % I - MAIN FUNCTION uvmat |
---|
175 | %------------------------------------------------------------------------ |
---|
176 | %------------------------------------------------------------------------ |
---|
177 | function varargout = uvmat(varargin) |
---|
178 | |
---|
179 | % Begin initialization code - DO NOT EDIT |
---|
180 | gui_Singleton = 1; |
---|
181 | gui_State = struct('gui_Name', mfilename, ... |
---|
182 | 'gui_Singleton', gui_Singleton, ... |
---|
183 | 'gui_OpeningFcn', @uvmat_OpeningFcn, ... |
---|
184 | 'gui_OutputFcn', @uvmat_OutputFcn, ... |
---|
185 | 'gui_LayoutFcn', [], ... |
---|
186 | 'gui_Callback', []); |
---|
187 | if nargin && ischar(varargin{1})&& ~isempty(regexp(varargin{1},'_Callback','once')) |
---|
188 | gui_State.gui_Callback = str2func(varargin{1}); |
---|
189 | end |
---|
190 | |
---|
191 | if nargout |
---|
192 | varargout{1:nargout} = gui_mainfcn(gui_State, varargin{:}); |
---|
193 | else |
---|
194 | gui_mainfcn(gui_State, varargin{:}); |
---|
195 | end |
---|
196 | % End initialization code - DO NOT EDIT |
---|
197 | |
---|
198 | %------------------------------------------------------------------------ |
---|
199 | % --- Executes just before the GUI uvmat is made visible. |
---|
200 | function uvmat_OpeningFcn(hObject, eventdata, handles, input ) |
---|
201 | %------------------------------------------------------------------------ |
---|
202 | |
---|
203 | %% Choose default command menuline output for uvmat (standard GUI) |
---|
204 | handles.output = hObject; |
---|
205 | |
---|
206 | %% Update handles structure (standard GUI) |
---|
207 | guidata(hObject, handles); |
---|
208 | |
---|
209 | %% check the path and date of modification of all functions in uvmat |
---|
210 | path_to_uvmat=which ('uvmat');% check the path detected for source file uvmat |
---|
211 | [errormsg,date_str,svn_info]=check_files;%check the path of the functions called by uvmat.m |
---|
212 | date_str=['last modification: ' date_str]; |
---|
213 | |
---|
214 | |
---|
215 | %% set the position of colorbar and ancillary GUIs: |
---|
216 | set(hObject,'Units','Normalized') |
---|
217 | movegui(hObject,'center') |
---|
218 | UvData.OpenParam.PosColorbar=[0.805 0.022 0.019 0.445]; |
---|
219 | UvData.OpenParam.SetObjectOrigin=[-0.05 -0.03]; %position for set_object |
---|
220 | UvData.OpenParam.SetObjectSize=[0.3 0.7]; |
---|
221 | UvData.OpenParam.CalOrigin=[0.95 -0.03];%position for geometry_calib (TO IMPROVE) |
---|
222 | UvData.OpenParam.CalSize=[0.28 1]; |
---|
223 | UvData.axes3=[];%initiate the record of plotted field |
---|
224 | UvData.axes2=[]; |
---|
225 | UvData.axes1=[]; |
---|
226 | AxeData.LimEditBox=1; %initialise AxeData |
---|
227 | set(handles.axes3,'UserData',AxeData) |
---|
228 | |
---|
229 | %% set functions for the mouse and keyboard |
---|
230 | set(handles.histo_u,'NextPlot','replacechildren'); |
---|
231 | set(handles.histo_v,'NextPlot','replacechildren'); |
---|
232 | set(hObject,'KeyPressFcn',{'keyboard_callback',handles})%set keyboard action function |
---|
233 | set(hObject,'WindowButtonMotionFcn',{'mouse_motion',handles})%set mouse action functio |
---|
234 | set(hObject,'WindowButtonDownFcn',{'mouse_down'})%set mouse click action function |
---|
235 | set(hObject,'WindowButtonUpFcn',{'mouse_up',handles}) |
---|
236 | set(hObject,'DeleteFcn',{@closefcn})% |
---|
237 | |
---|
238 | %% refresh projection plane |
---|
239 | UvData.Object{1}.ProjMode='projection';%main plotting plane |
---|
240 | set(handles.ListObject_1,'Value',1)% default: empty projection objectproj_field |
---|
241 | set(handles.ListObject_1,'String',{''}) |
---|
242 | set(handles.Fields,'Value',1) |
---|
243 | set(handles.Fields,'string',{''}) |
---|
244 | |
---|
245 | %% TRANSFORM menu: builtin fcts |
---|
246 | menu_str={'';'phys';'px';'phys_polar'}; |
---|
247 | UvData.OpenParam.NbBuiltin=numel(menu_str); %number of functions |
---|
248 | path_uvmat=fileparts(which('uvmat')); |
---|
249 | addpath (path_uvmat) ; %add the path to UVMAT, (useful in case of change of working directory after civ has been s opened in the working directory) |
---|
250 | addpath(fullfile(path_uvmat,'transform_field'))%add the path to transform functions, |
---|
251 | fct_handle{1,1}=[]; |
---|
252 | testexist=zeros(size(menu_str'));%default |
---|
253 | testexist(1)=1; |
---|
254 | for ilist=2:length(menu_str) |
---|
255 | if exist(menu_str{ilist},'file') |
---|
256 | fct_handle{ilist,1}=str2func(menu_str{ilist}); |
---|
257 | testexist(ilist)=1; |
---|
258 | else |
---|
259 | testexist(ilist)=0; |
---|
260 | end |
---|
261 | end |
---|
262 | rmpath(fullfile(path_uvmat,'transform_field')) |
---|
263 | |
---|
264 | %% load the list of previously browsed files in menus Open and Open_1 |
---|
265 | dir_perso=prefdir; % path to the directory .matlab for personal data |
---|
266 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat');% personal data file uvmauvmat_perso.mat' in .matlab |
---|
267 | if exist(profil_perso,'file') |
---|
268 | h=load (profil_perso); |
---|
269 | if isfield(h,'MenuFile') |
---|
270 | for ifile=1:min(length(h.MenuFile),5) |
---|
271 | eval(['set(handles.MenuFile_' num2str(ifile) ',''Label'',h.MenuFile{ifile});']) |
---|
272 | eval(['set(handles.MenuFile_' num2str(ifile) '_1,''Label'',h.MenuFile{ifile});']) |
---|
273 | end |
---|
274 | end |
---|
275 | if isfield(h,'transform_fct') && iscell(h.transform_fct) |
---|
276 | for ilist=1:length(h.transform_fct); |
---|
277 | if exist(h.transform_fct{ilist},'file') |
---|
278 | [path,file]=fileparts(h.transform_fct{ilist}); |
---|
279 | addpath(path) |
---|
280 | h_func=str2func(file); |
---|
281 | rmpath(path) |
---|
282 | testexist=[testexist 1]; |
---|
283 | else |
---|
284 | file=''; |
---|
285 | h_func=[]; |
---|
286 | testexist=[testexist 0]; |
---|
287 | end |
---|
288 | fct_handle=[fct_handle; {h_func}]; %concatene the list of paths |
---|
289 | menu_str=[menu_str; {file}]; |
---|
290 | end |
---|
291 | end |
---|
292 | end |
---|
293 | menu_str=menu_str(testexist==1);%=menu_str(testexist~=0) |
---|
294 | fct_handle=fct_handle(testexist==1); |
---|
295 | menu_str=[menu_str;{'more...'}]; |
---|
296 | set(handles.transform_fct,'String',menu_str) |
---|
297 | set(handles.transform_fct,'UserData',fct_handle)% store the list of path in UserData of ACTION |
---|
298 | |
---|
299 | %% case of an input argument for uvmat |
---|
300 | testinputfield=0; |
---|
301 | inputfile=[]; |
---|
302 | Field=[]; |
---|
303 | if exist('input','var') |
---|
304 | % if ~isempty(errormsg) |
---|
305 | % msgbox_uvmat('WARNING',errormsg) |
---|
306 | % end |
---|
307 | if ishandle(handles.UVMAT_title) |
---|
308 | delete(handles.UVMAT_title) |
---|
309 | end |
---|
310 | if isstruct(input) |
---|
311 | if isfield(input,'InputFile') |
---|
312 | inputfile=input.InputFile; |
---|
313 | end |
---|
314 | if isfield(input,'TimeIndex') |
---|
315 | set(handles.i1,num2str(input.TimeIndex)) |
---|
316 | end |
---|
317 | if isfield(input,'FieldsString') |
---|
318 | UvData.FieldsString=input.FieldsString; |
---|
319 | end |
---|
320 | elseif ischar(input)% file name introduced as input |
---|
321 | inputfile=input; |
---|
322 | elseif isnumeric(input)%simple matrix introduced as input |
---|
323 | sizinput=size(input); |
---|
324 | if sizinput(1)<=1 || sizinput(2)<=1 |
---|
325 | msgbox_uvmat('ERROR','bad input for uvmat: file name, structure or numerical matrix accepted') |
---|
326 | return |
---|
327 | end |
---|
328 | UvData.Field.ListVarName={'A','coord_y','coord_x'}; |
---|
329 | UvData.Field.VarDimName={{'coord_y','coord_x'},'cord_y','coord_x'}; |
---|
330 | UvData.Field.A=input; |
---|
331 | UvData.Field.coord_x=[0.5 size(input,2)-0.5]; |
---|
332 | UvData.Field.coord_y=[size(input,1)-0.5 0.5]; |
---|
333 | testinputfield=1; |
---|
334 | end |
---|
335 | else |
---|
336 | if ishandle(handles.UVMAT_title) |
---|
337 | set(handles.UVMAT_title,'String',... |
---|
338 | [{'Copyright LEGI UMR 5519 /CNRS-UJF-Grenoble INP, 2010'};... |
---|
339 | {'GNU General Public License'};... |
---|
340 | {path_to_uvmat};... |
---|
341 | {date_str};... |
---|
342 | {['SVN revision : ' num2str(svn_info.cur_rev)]};... |
---|
343 | errormsg]); |
---|
344 | end |
---|
345 | end |
---|
346 | set(handles.uvmat,'UserData',UvData) |
---|
347 | if ~isempty(inputfile) |
---|
348 | %%%%% display the input field %%%%%%% |
---|
349 | display_file_name(handles,inputfile) |
---|
350 | %%%%%%% |
---|
351 | testinputfield=1; |
---|
352 | end |
---|
353 | |
---|
354 | %% plot input field if exists |
---|
355 | if testinputfield |
---|
356 | %delete drawn objects |
---|
357 | hother=findobj(handles.axes3,'Tag','proj_object');%find all the proj objects |
---|
358 | for iobj=1:length(hother) |
---|
359 | delete_object(hother(iobj)) |
---|
360 | end |
---|
361 | if isempty(inputfile) |
---|
362 | errormsg=refresh_field(handles,[],[],[],[],[],[],{Field}); |
---|
363 | set(handles.MenuTools,'Enable','on') |
---|
364 | set(handles.OBJECT_txt,'Visible','on') |
---|
365 | set(handles.edit_object,'Visible','on') |
---|
366 | % set(handles.ListObject_1,'Visible','on') |
---|
367 | set(handles.frame_object,'Visible','on') |
---|
368 | if ~isempty(errormsg) |
---|
369 | msgbox_uvmat('ERROR',errormsg) |
---|
370 | end |
---|
371 | end |
---|
372 | end |
---|
373 | |
---|
374 | set_vec_col_bar(handles) %update the display of color code for vectors |
---|
375 | |
---|
376 | %------------------------------------------------------------------------ |
---|
377 | % --- Outputs from this function are returned to the command menuline. |
---|
378 | function varargout = uvmat_OutputFcn(hObject, eventdata, handles) |
---|
379 | varargout{1} = handles.output;% the only output argument is the handle to the GUI figure |
---|
380 | |
---|
381 | %------------------------------------------------------------------------ |
---|
382 | % --- executed when closing uvmat: delete or desactivate the associated figures if exist |
---|
383 | function closefcn(gcbo,eventdata) |
---|
384 | %------------------------------------------------------------------------ |
---|
385 | hh=findobj(allchild(0),'tag','view_field'); |
---|
386 | if ~isempty(hh) |
---|
387 | delete(hh) |
---|
388 | end |
---|
389 | hh=findobj(allchild(0),'tag','geometry_calib'); |
---|
390 | if ~isempty(hh) |
---|
391 | delete(hh) |
---|
392 | end |
---|
393 | hh=findobj(allchild(0),'tag','set_object'); |
---|
394 | if ~isempty(hh) |
---|
395 | hhh=findobj(hh,'tag','PLOT'); |
---|
396 | set(hhh,'enable','off') |
---|
397 | end |
---|
398 | |
---|
399 | %------------------------------------------------------------------------ |
---|
400 | %------------------------------------------------------------------------ |
---|
401 | % II - FUNCTIONS FOR INTRODUCING THE INPUT FILES |
---|
402 | % automatically sets the global properties when the rootfile name is introduced |
---|
403 | % then activate the view-field action if selected |
---|
404 | % it is activated either by clicking on the RootPath window or by the |
---|
405 | % browser |
---|
406 | %------------------------------------------------------------------------ |
---|
407 | %------------------------------------------------------------------------ |
---|
408 | % --- Executes on the menu Open/Browse... |
---|
409 | % search the files, recognize their type according to their name and fill the rootfile input windows |
---|
410 | function MenuBrowse_Callback(hObject, eventdata, handles) |
---|
411 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
412 | oldfile=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
413 | % oldfile=read_file_box,es(handles); |
---|
414 | if isempty(oldfile)||isequal(oldfile,'') %loads the previously stored file name and set it as default in the file_input box |
---|
415 | dir_perso=prefdir; |
---|
416 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
417 | if exist(profil_perso,'file') |
---|
418 | h=load (profil_perso); |
---|
419 | if isfield(h,'MenuFile_1') |
---|
420 | oldfile=h.MenuFile_1; |
---|
421 | end |
---|
422 | end |
---|
423 | end |
---|
424 | [FileName, PathName] = uigetfile( ... |
---|
425 | {'*.xml;*.xls;*.civ;*.png;*.jpg;*.tif;*.avi;*.AVI;*.vol;*.nc;*.cmx;*.fig;*.log;*.dat;*.bat;', ' (*.xml,*.xls,*.civ,*.jpg ,*.png, .tif, *.avi,*.vol,*.nc,*.cmx,*.fig,*.log,*.dat,*.bat)'; |
---|
426 | '*.xml', '.xml files '; ... |
---|
427 | '*.xls', '.xls files '; ... |
---|
428 | '*.civ', '.civ files '; ... |
---|
429 | '*.jpg',' jpeg image files'; ... |
---|
430 | '*.png','.png image files'; ... |
---|
431 | '*.tif','.tif image files'; ... |
---|
432 | '*.avi;*.AVI','.avi movie files'; ... |
---|
433 | '*.vol','.volume images (png)'; ... |
---|
434 | '*.nc','.netcdf files'; ... |
---|
435 | '*.cdf','.netcdf files'; ... |
---|
436 | '*.cmx','.cmx text files ';... |
---|
437 | '*.fig','.fig files (matlab fig)';... |
---|
438 | '*.log','.log text files ';... |
---|
439 | '*.dat','.dat text files ';... |
---|
440 | '*.bat','.bat system command text files';... |
---|
441 | '*.*', 'All Files (*.*)'}, ... |
---|
442 | 'Pick a file',oldfile); |
---|
443 | fileinput=[PathName FileName];%complete file name |
---|
444 | sizf=size(fileinput); |
---|
445 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end |
---|
446 | |
---|
447 | % display the selected field and related information |
---|
448 | display_file_name( handles,fileinput) |
---|
449 | |
---|
450 | % ----------------------------------------------------------------------- |
---|
451 | % --- Open again the file whose name has been recorded in MenuFile_1 |
---|
452 | function MenuFile_1_Callback(hObject, eventdata, handles) |
---|
453 | %------------------------------------------------------------------------ |
---|
454 | fileinput=get(handles.MenuFile_1,'Label'); |
---|
455 | display_file_name( handles,fileinput) |
---|
456 | |
---|
457 | % ----------------------------------------------------------------------- |
---|
458 | % --- Open again the file whose name has been recorded in MenuFile_2 |
---|
459 | function MenuFile_2_Callback(hObject, eventdata, handles) |
---|
460 | %------------------------------------------------------------------------ |
---|
461 | fileinput=get(handles.MenuFile_2,'Label'); |
---|
462 | display_file_name(handles,fileinput) |
---|
463 | |
---|
464 | % ----------------------------------------------------------------------- |
---|
465 | % --- Open again the file whose name has been recorded in MenuFile_3 |
---|
466 | function MenuFile_3_Callback(hObject, eventdata, handles) |
---|
467 | %------------------------------------------------------------------------ |
---|
468 | fileinput=get(handles.MenuFile_3,'Label'); |
---|
469 | display_file_name(handles,fileinput) |
---|
470 | |
---|
471 | % ----------------------------------------------------------------------- |
---|
472 | % --- Open again the file whose name has been recorded in MenuFile_4 |
---|
473 | function MenuFile_4_Callback(hObject, eventdata, handles) |
---|
474 | %------------------------------------------------------------------------ |
---|
475 | fileinput=get(handles.MenuFile_4,'Label'); |
---|
476 | display_file_name(handles,fileinput) |
---|
477 | |
---|
478 | % ----------------------------------------------------------------------- |
---|
479 | % --- Open again the file whose name has been recorded in MenuFile_5 |
---|
480 | function MenuFile_5_Callback(hObject, eventdata, handles) |
---|
481 | %------------------------------------------------------------------------ |
---|
482 | fileinput=get(handles.MenuFile_5,'Label'); |
---|
483 | display_file_name(handles,fileinput) |
---|
484 | |
---|
485 | %------------------------------------------------------------------------ |
---|
486 | % --- Executes on the menu Open/Browse_1 for the second input field, |
---|
487 | % search the files, recognize their type according to their name and fill the rootfile input windows |
---|
488 | function MenuBrowse_1_Callback(hObject, eventdata, handles) |
---|
489 | %------------------------------------------------------------------------ |
---|
490 | % huvmat=get(handles.run0,'parent'); |
---|
491 | UvData=get(handles.uvmat,'UserData'); |
---|
492 | |
---|
493 | RootPath=get(handles.RootPath,'String'); |
---|
494 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
495 | {'*.xml;*.xls;*.civ;*.jpg;*.png;*.avi;*.AVI;*.nc;*.cmx;*.fig;*.log;*.dat', ' (*.xml,*.xls,*.civ, *.jpg,*.png, *.avi,*.nc,*.cmx ,*.fig,*.log,*.dat)'; |
---|
496 | '*.xml', '.xml files '; ... |
---|
497 | '*.xls', '.xls files '; ... |
---|
498 | '*.civ', '.civ files '; ... |
---|
499 | '*.jpg','.jpg image files'; ... |
---|
500 | '*.png','.png image files'; ... |
---|
501 | '*.avi;*.AVI','.avi movie files'; ... |
---|
502 | '*.nc','.netcdf files'; ... |
---|
503 | '*.cdf','.netcdf files'; ... |
---|
504 | '*.cmx','.cmx text files';... |
---|
505 | '*.cmx2','.cmx2 text files';... |
---|
506 | '*.fig','.fig files (matlab fig)';... |
---|
507 | '*.log','.log text files ';... |
---|
508 | '*.dat','.dat text files ';... |
---|
509 | '*.*', 'All Files (*.*)'}, ... |
---|
510 | 'Pick a second file for comparison',RootPath); |
---|
511 | fileinput_1=[PathName FileName];%complete file name |
---|
512 | sizf=size(fileinput_1); |
---|
513 | if (~ischar(fileinput_1)||~isequal(sizf(1),1)),return;end |
---|
514 | |
---|
515 | % refresh the current displayed field |
---|
516 | set(handles.SubField,'Value',1) |
---|
517 | display_file_name(handles,fileinput_1,2) |
---|
518 | |
---|
519 | %update list of recent files in the menubar |
---|
520 | MenuFile_1=fileinput_1; |
---|
521 | MenuFile_2=get(handles.MenuFile_1,'Label'); |
---|
522 | MenuFile_3=get(handles.MenuFile_2,'Label'); |
---|
523 | MenuFile_4=get(handles.MenuFile_3,'Label'); |
---|
524 | MenuFile_5=get(handles.MenuFile_4,'Label'); |
---|
525 | set(handles.MenuFile_1,'Label',MenuFile_1) |
---|
526 | set(handles.MenuFile_2,'Label',MenuFile_2) |
---|
527 | set(handles.MenuFile_3,'Label',MenuFile_3) |
---|
528 | set(handles.MenuFile_4,'Label',MenuFile_4) |
---|
529 | set(handles.MenuFile_5,'Label',MenuFile_5) |
---|
530 | set(handles.MenuFile_1_1,'Label',MenuFile_1) |
---|
531 | set(handles.MenuFile_2_1,'Label',MenuFile_2) |
---|
532 | set(handles.MenuFile_3_1,'Label',MenuFile_3) |
---|
533 | set(handles.MenuFile_4_1,'Label',MenuFile_4) |
---|
534 | set(handles.MenuFile_5_1,'Label',MenuFile_5) |
---|
535 | dir_perso=prefdir; |
---|
536 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
537 | if exist(profil_perso,'file') |
---|
538 | save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-append'); %store the file names for future opening of uvmat |
---|
539 | else |
---|
540 | txt=ver('MATLAB'); |
---|
541 | Release=txt.Release; |
---|
542 | relnumb=str2double(Release(3:4)); |
---|
543 | if relnumb >= 14 |
---|
544 | save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-V6'); %store the file names for future opening of uvmat |
---|
545 | else |
---|
546 | save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5'); %store the file names for future opening of uvmat |
---|
547 | end |
---|
548 | end |
---|
549 | |
---|
550 | % ----------------------------------------------------------------------- |
---|
551 | % --- Open again as second field the file whose name has been recorded in MenuFile_1 |
---|
552 | function MenuFile_1_1_Callback(hObject, eventdata, handles) |
---|
553 | % ----------------------------------------------------------------------- |
---|
554 | fileinput_1=get(handles.MenuFile_1_1,'Label'); |
---|
555 | set(handles.SubField,'Value',1) |
---|
556 | display_file_name(handles,fileinput_1,2) |
---|
557 | |
---|
558 | % ----------------------------------------------------------------------- |
---|
559 | % --- Open again as second field the file whose name has been recorded in MenuFile_2 |
---|
560 | function MenuFile_2_1_Callback(hObject, eventdata, handles) |
---|
561 | % ----------------------------------------------------------------------- |
---|
562 | fileinput_1=get(handles.MenuFile_2_1,'Label'); |
---|
563 | set(handles.SubField,'Value',1) |
---|
564 | display_file_name(handles,fileinput_1,2) |
---|
565 | |
---|
566 | % ----------------------------------------------------------------------- |
---|
567 | % --- Open again as second field the file whose name has been recorded in MenuFile_3 |
---|
568 | function MenuFile_3_1_Callback(hObject, eventdata, handles) |
---|
569 | % ----------------------------------------------------------------------- |
---|
570 | fileinput_1=get(handles.MenuFile_3_1,'Label'); |
---|
571 | set(handles.SubField,'Value',1) |
---|
572 | display_file_name(handles,fileinput_1,2) |
---|
573 | |
---|
574 | % ----------------------------------------------------------------------- |
---|
575 | % --- Open again as second field the file whose name has been recorded in MenuFile_4 |
---|
576 | function MenuFile_4_1_Callback(hObject, eventdata, handles) |
---|
577 | % ----------------------------------------------------------------------- |
---|
578 | fileinput_1=get(handles.MenuFile_4_1,'Label'); |
---|
579 | set(handles.SubField,'Value',1) |
---|
580 | display_file_name(handles,fileinput_1,2) |
---|
581 | |
---|
582 | % ----------------------------------------------------------------------- |
---|
583 | % --- Open again as second field the file whose name has been recorded in MenuFile_5 |
---|
584 | function MenuFile_5_1_Callback(hObject, eventdata, handles) |
---|
585 | % ----------------------------------------------------------------------- |
---|
586 | fileinput_1=get(handles.MenuFile_5_1,'Label'); |
---|
587 | set(handles.SubField,'Value',1) |
---|
588 | display_file_name(handles,fileinput_1,2) |
---|
589 | |
---|
590 | %------------------------------------------------------------------------ |
---|
591 | % --- Called by action in RootPath edit box |
---|
592 | function RootPath_Callback(hObject,eventdata,handles) |
---|
593 | %------------------------------------------------------------------------ |
---|
594 | % read the current input file name: |
---|
595 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
596 | % detect the file type, get the movie object if relevant, and look for the corresponding file series: |
---|
597 | [RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,tild,FileType,MovieObject]=find_file_series(fullfile(RootPath,SubDir),[RootFile FileIndices FileExt]); |
---|
598 | % initiate the input file series and refresh the current field view: |
---|
599 | update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,MovieObject,1); |
---|
600 | |
---|
601 | %----------------------------------------------------------------------- |
---|
602 | % --- Called by action in RootPath_1 edit box |
---|
603 | function RootPath_1_Callback(hObject,eventdata,handles) |
---|
604 | % ----------------------------------------------------------------------- |
---|
605 | % update_rootinfo_1(hObject,eventdata,handles) |
---|
606 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes_1(handles); |
---|
607 | % detect the file type, get the movie object if relevant, and look for the corresponding file series: |
---|
608 | [RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,tild,FileType,MovieObject]=find_file_series(fullfile(RootPath,SubDir),[RootFile FileIndices FileExt]); |
---|
609 | % initiate the input file series and refresh the current field view: |
---|
610 | update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,MovieObject,2); |
---|
611 | |
---|
612 | %------------------------------------------------------------------------ |
---|
613 | % --- Called by action in RootFile edit box |
---|
614 | function SubDir_Callback(hObject, eventdata, handles) |
---|
615 | %------------------------------------------------------------------------ |
---|
616 | %refresh the menu of input fields |
---|
617 | Fields_Callback(hObject, eventdata, handles); |
---|
618 | % refresh the current field view |
---|
619 | run0_Callback(hObject, eventdata, handles); |
---|
620 | |
---|
621 | %------------------------------------------------------------------------ |
---|
622 | % --- Called by action in RootFile edit box |
---|
623 | function RootFile_Callback(hObject, eventdata, handles) |
---|
624 | %------------------------------------------------------------------------ |
---|
625 | RootPath_Callback(hObject,eventdata,handles) |
---|
626 | |
---|
627 | %----------------------------------------------------------------------- |
---|
628 | % --- Called by action in RootFile_1 edit box |
---|
629 | function RootFile_1_Callback(hObject, eventdata, handles) |
---|
630 | % ----------------------------------------------------------------------- |
---|
631 | RootPath_1_Callback(hObject,eventdata,handles) |
---|
632 | |
---|
633 | %------------------------------------------------------------------------ |
---|
634 | % --- Called by action in FileIndex edit box |
---|
635 | function FileIndex_Callback(hObject, eventdata, handles) |
---|
636 | %------------------------------------------------------------------------ |
---|
637 | [tild,tild,tild,i1,i2,j1,j2]=fileparts_uvmat(get(handles.FileIndex,'String')); |
---|
638 | set(handles.i1,'String',num2str(i1)); |
---|
639 | set(handles.i2,'String',num2str(i2)); |
---|
640 | set(handles.j1,'String',num2str(j1)); |
---|
641 | set(handles.j2,'String',num2str(j2)); |
---|
642 | |
---|
643 | % refresh the current field view |
---|
644 | run0_Callback(hObject, eventdata, handles) |
---|
645 | |
---|
646 | %------------------------------------------------------------------------ |
---|
647 | % --- Called by action in FileIndex_1 edit box |
---|
648 | function FileIndex_1_Callback(hObject, eventdata, handles) |
---|
649 | %------------------------------------------------------------------------ |
---|
650 | run0_Callback(hObject, eventdata, handles) |
---|
651 | |
---|
652 | %------------------------------------------------------------------------ |
---|
653 | % --- Called by action in NomType edit box |
---|
654 | function NomType_Callback(hObject, eventdata, handles) |
---|
655 | %------------------------------------------------------------------------ |
---|
656 | i1=str2num(get(handles.i1,'String')); |
---|
657 | i2=str2num(get(handles.i2,'String')); |
---|
658 | j1=str2num(get(handles.j1,'String')); |
---|
659 | j2=str2num(get(handles.j2,'String')); |
---|
660 | FileIndex=fullfile_uvmat('','','','',get(handles.NomType,'String'),i1,i2,j1,j2); |
---|
661 | set(handles.FileIndex,'String',FileIndex) |
---|
662 | % refresh the current settings and refresh the field view |
---|
663 | RootPath_Callback(hObject,eventdata,handles) |
---|
664 | |
---|
665 | %------------------------------------------------------------------------ |
---|
666 | % --- Called by action in NomType edit box |
---|
667 | function NomType_1_Callback(hObject, eventdata, handles) |
---|
668 | %------------------------------------------------------------------------ |
---|
669 | i1=str2num(get(handles.i1,'String')); |
---|
670 | i2=str2num(get(handles.i2,'String')); |
---|
671 | j1=str2num(get(handles.j1,'String')); |
---|
672 | j2=str2num(get(handles.j2,'String')); |
---|
673 | FileIndex=fullfile_uvmat('','','','',get(handles.NomType_1,'String'),i1,i2,j1,j2); |
---|
674 | set(handles.FileIndex_1,'String',FileIndex) |
---|
675 | % refresh the current settings and refresh the field view |
---|
676 | RootPath_1_Callback(hObject,eventdata,handles) |
---|
677 | |
---|
678 | %------------------------------------------------------------------------ |
---|
679 | % --- Fills the edit boxes RootPath, RootFile,NomType...from an input file name 'fileinput' |
---|
680 | function display_file_name(handles,fileinput,index) |
---|
681 | %------------------------------------------------------------------------ |
---|
682 | %% look for the input file existence |
---|
683 | if ~exist(fileinput,'file') |
---|
684 | msgbox_uvmat('ERROR',['input file ' fileinput ' does not exist']) |
---|
685 | return |
---|
686 | end |
---|
687 | |
---|
688 | %% set the mouse pointer to 'watch' |
---|
689 | set(handles.uvmat,'Pointer','watch') |
---|
690 | set(handles.RootPath,'BackgroundColor',[1 1 0]) |
---|
691 | drawnow |
---|
692 | |
---|
693 | %% define the relevant handles for the first field series (index=1) or the second file series (index=2) |
---|
694 | if ~exist('index','var') |
---|
695 | index=1; |
---|
696 | end |
---|
697 | if index==1 |
---|
698 | handles_RootPath=handles.RootPath; |
---|
699 | handles_SubDir=handles.SubDir; |
---|
700 | handles_RootFile=handles.RootFile; |
---|
701 | handles_FileIndex=handles.FileIndex; |
---|
702 | handles_NomType=handles.NomType; |
---|
703 | handles_FileExt=handles.FileExt; |
---|
704 | elseif index==2 |
---|
705 | handles_RootPath=handles.RootPath_1; |
---|
706 | handles_SubDir=handles.SubDir_1; |
---|
707 | handles_RootFile=handles.RootFile_1; |
---|
708 | handles_FileIndex=handles.FileIndex_1; |
---|
709 | handles_NomType=handles.NomType_1; |
---|
710 | handles_FileExt=handles.FileExt_1; |
---|
711 | set(handles.RootPath_1,'Visible','on') |
---|
712 | set(handles.RootFile_1,'Visible','on') |
---|
713 | set(handles.SubDir_1,'Visible','on'); |
---|
714 | set(handles.FileIndex_1,'Visible','on'); |
---|
715 | set(handles.FileExt_1,'Visible','on'); |
---|
716 | set(handles.NomType_1,'Visible','on'); |
---|
717 | end |
---|
718 | |
---|
719 | %% detect root name, nomenclature and indices in the input file name: |
---|
720 | [FilePath,FileName,FileExt]=fileparts(fileinput); |
---|
721 | % detect the file type, get the movie object if relevant, and look for the corresponding file series: |
---|
722 | % the root name and indices may be corrected by including the first index i1 if a corresponding xml file exists |
---|
723 | [RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,NomType,FileType,MovieObject,i1,i2,j1,j2]=find_file_series(FilePath,[FileName FileExt]); |
---|
724 | |
---|
725 | %% open the file or fill the GUI uvmat according to the detected file type |
---|
726 | switch FileType |
---|
727 | case '' |
---|
728 | msgbox_uvmat('ERROR','invalid input file type') |
---|
729 | case 'txt' |
---|
730 | edit(fileinput) |
---|
731 | case 'figure' %display matlab figure |
---|
732 | hfig=open(fileinput); |
---|
733 | set(hfig,'WindowButtonMotionFcn','mouse_motion')%set mouse action functio |
---|
734 | set(hfig,'WindowButtonUpFcn','mouse_up')%set mouse click action function |
---|
735 | set(hfig,'WindowButtonUpFcn','mouse_down')%set mouse click action function |
---|
736 | case {'xml','xls'} % edit xml or Excel files |
---|
737 | editxml(fileinput); |
---|
738 | otherwise |
---|
739 | set(handles_RootPath,'String',RootPath); |
---|
740 | rootname=fullfile(RootPath,SubDir,RootFile); |
---|
741 | set(handles_SubDir,'String',['/' SubDir]); |
---|
742 | set(handles_RootFile,'String',['/' RootFile]); %display the separator |
---|
743 | indices=fileinput(length(rootname)+1:end); |
---|
744 | indices(end-length(FileExt)+1:end)=[]; %remove extension |
---|
745 | set(handles_FileIndex,'String',indices); |
---|
746 | set(handles_NomType,'String',NomType); |
---|
747 | set(handles_FileExt,'String',FileExt); |
---|
748 | if index==1 |
---|
749 | % fill file index counters if the first file series is opened |
---|
750 | set(handles.i1,'String',num2str(i1)); |
---|
751 | set(handles.i2,'String',num2str(i2)); |
---|
752 | set(handles.j1,'String',num2stra(j1,NomType)); |
---|
753 | set(handles.j2,'String',num2stra(j2,NomType)); |
---|
754 | else %read the current field index if the second file series is opened |
---|
755 | i1=str2num(get(handles.i1,'String')); |
---|
756 | i2=str2num(get(handles.i2,'String')); |
---|
757 | j1=stra2num(get(handles.j1,'String')); |
---|
758 | j2=stra2num(get(handles.j2,'String')); |
---|
759 | end |
---|
760 | |
---|
761 | % synchronise indices of the second input file if it exists |
---|
762 | if get(handles.SubField,'Value')==1% if the subfield button is activated, update the field numbers |
---|
763 | Input=read_GUI(handles.InputFile); |
---|
764 | if ~isfield(Input,'RootPath_1')||strcmp(Input.RootPath_1,'"') |
---|
765 | Input.RootPath_1=Input.RootPath; |
---|
766 | end |
---|
767 | if ~isfield(Input,'SubDir_1')||strcmp(Input.SubDir_1,'"') |
---|
768 | Input.SubDir_1=Input.SubDir; |
---|
769 | end |
---|
770 | if ~isfield(Input,'RootFile_1')||strcmp(Input.RootFile_1,'"') |
---|
771 | Input.RootFile_1=Input.RootFile; |
---|
772 | end |
---|
773 | if ~isfield(Input,'FileExt_1')||strcmp(Input.FileExt_1,'"') |
---|
774 | Input.FileExt_1=Input.FileExt; |
---|
775 | end |
---|
776 | if ~isfield(Input,'NomType_1')||strcmp(Input.NomType_1,'"') |
---|
777 | Input.NomType_1=Input.NomType; |
---|
778 | end |
---|
779 | %updtate the indices of the second field series to correspond to the newly opened one |
---|
780 | FileName_1=fullfile_uvmat(Input.RootPath_1,Input.SubDir_1,Input.RootFile_1,Input.FileExt_1,Input.NomType_1,i1,i2,j1,j2); |
---|
781 | if exist(FileName_1,'file') |
---|
782 | FileIndex_1=fullfile_uvmat('','','','',Input.NomType_1,i1,i2,j1,j2); |
---|
783 | set(handles.FileIndex_1,'String',FileIndex_1) |
---|
784 | else |
---|
785 | msgbox_uvmat('WARNING','unable to synchronise the indices of the two series') |
---|
786 | % set(handles.SubField,'Value',0) |
---|
787 | % SubField_Callback([], [], handles) |
---|
788 | end |
---|
789 | end |
---|
790 | |
---|
791 | %enable other menus |
---|
792 | set(handles.MenuOpen_1,'Enable','on') |
---|
793 | set(handles.MenuFile_1_1,'Enable','on') |
---|
794 | set(handles.MenuFile_2_1,'Enable','on') |
---|
795 | set(handles.MenuFile_3_1,'Enable','on') |
---|
796 | set(handles.MenuFile_4_1,'Enable','on') |
---|
797 | set(handles.MenuFile_5_1,'Enable','on') |
---|
798 | set(handles.MenuExport,'Enable','on') |
---|
799 | set(handles.MenuExportFigure,'Enable','on') |
---|
800 | set(handles.MenuExportMovie,'Enable','on') |
---|
801 | set(handles.MenuTools,'Enable','on') |
---|
802 | set(handles.OBJECT_txt,'Visible','on') |
---|
803 | set(handles.edit_object,'Visible','on') |
---|
804 | set(handles.ListObject_1,'Visible','on') |
---|
805 | set(handles.ViewObject_1,'Visible','on') |
---|
806 | set(handles.frame_object,'Visible','on') |
---|
807 | |
---|
808 | % initiate input file series and refresh the current field view: |
---|
809 | update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,MovieObject,index); |
---|
810 | |
---|
811 | end |
---|
812 | |
---|
813 | %% set back the mouse pointer to arrow |
---|
814 | set(handles.uvmat,'Pointer','arrow') |
---|
815 | |
---|
816 | |
---|
817 | %------------------------------------------------------------------------ |
---|
818 | % --- Update information about a new field series (indices to scan, timing, |
---|
819 | % calibration from an xml file, then refresh current plots |
---|
820 | function update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,VideoObject,index) |
---|
821 | %------------------------------------------------------------------------ |
---|
822 | %% define the relevant handles depending on the index (1=first file series, 2= second file series) |
---|
823 | if ~exist('index','var') |
---|
824 | index=1; |
---|
825 | end |
---|
826 | if index==1 |
---|
827 | handles_RootPath=handles.RootPath; |
---|
828 | handles_Fields=handles.Fields; |
---|
829 | elseif index==2 |
---|
830 | handles_RootPath=handles.RootPath_1; |
---|
831 | handles_Fields=handles.Fields_1; |
---|
832 | end |
---|
833 | |
---|
834 | set(handles_RootPath,'BackgroundColor',[1 1 0]) |
---|
835 | drawnow |
---|
836 | set(handles.Fields,'UserData',[])% reinialize data from uvmat opening |
---|
837 | UvData=get(handles.uvmat,'UserData');%huvmat=handles of the uvmat interface |
---|
838 | UvData.NewSeries=1; %flag for run0: begin a new series |
---|
839 | UvData.TestInputFile=1; |
---|
840 | UvData.FileType{index}=FileType; |
---|
841 | UvData.i1_series{index}=i1_series; |
---|
842 | UvData.i2_series{index}=i2_series; |
---|
843 | UvData.j1_series{index}=j1_series; |
---|
844 | UvData.j2_series{index}=j2_series; |
---|
845 | % set(handles.CheckFixPair,'Value',1) % activate by default the comp_input '-'input window |
---|
846 | set(handles.FixVelType,'Value',0); %desactivate fixed veltype |
---|
847 | if index==1 |
---|
848 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
849 | else |
---|
850 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes_1(handles); |
---|
851 | end |
---|
852 | FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
853 | FileBase=fullfile(RootPath,RootFile); |
---|
854 | if ~exist(FileName,'file') |
---|
855 | msgbox_uvmat('ERROR',['input file ' FileName ' not found']); |
---|
856 | return |
---|
857 | end |
---|
858 | nbfield=[];%default |
---|
859 | nbfield_j=[];%default |
---|
860 | |
---|
861 | %% read timing and total frame number from the current file (movie files) !! may be overrid by xml file |
---|
862 | XmlData.Time=[];%default |
---|
863 | XmlData.GeometryCalib=[];%default |
---|
864 | TimeUnit=[];%default |
---|
865 | testima=0; %test for image input |
---|
866 | imainfo=[]; |
---|
867 | ColorType='falsecolor'; %default |
---|
868 | hhh=[]; |
---|
869 | UvData.MovieObject{index}=VideoObject; |
---|
870 | if ~isempty(VideoObject) |
---|
871 | imainfo=get(VideoObject); |
---|
872 | testima=1; |
---|
873 | nbfield_j=1; |
---|
874 | TimeUnit='s'; |
---|
875 | XmlData.Time=(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames-1)/imainfo.FrameRate)'; |
---|
876 | % % nbfield=imainfo.NumberOfFrames; |
---|
877 | set(handles.Dt_txt,'String',['Dt=' num2str(1000/imainfo.FrameRate) 'ms']);%display the elementary time interval in millisec |
---|
878 | ColorType='truecolor'; |
---|
879 | elseif ~isempty(FileExt(2:end))&&(~isempty(imformats(FileExt(2:end))) || isequal(FileExt,'.vol'))%&& isequal(NomType,'*')% multi-frame image |
---|
880 | testima=1; |
---|
881 | if ~isequal(SubDir,'') |
---|
882 | RootFile=get(handles.RootFile,'String'); |
---|
883 | imainfo=imfinfo([fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]); |
---|
884 | else |
---|
885 | imainfo=imfinfo([FileBase FileIndices FileExt]); |
---|
886 | end |
---|
887 | ColorType=imainfo.ColorType;%='truecolor' for color images |
---|
888 | if length(imainfo) >1 %case of image with multiple frames |
---|
889 | nbfield=length(imainfo); |
---|
890 | nbfield_j=1; |
---|
891 | end |
---|
892 | end |
---|
893 | if isfield(imainfo,'Width') && isfield(imainfo,'Height') |
---|
894 | if length(imainfo)>1 |
---|
895 | set(handles.num_Npx,'String',num2str(imainfo(1).Width));%fills nbre of pixels x box |
---|
896 | set(handles.num_Npy,'String',num2str(imainfo(1).Height));%fills nbre of pixels x box |
---|
897 | else |
---|
898 | set(handles.num_Npx,'String',num2str(imainfo.Width));%fills nbre of pixels x box |
---|
899 | set(handles.num_Npy,'String',num2str(imainfo.Height));%fills nbre of pixels x box |
---|
900 | end |
---|
901 | else |
---|
902 | set(handles.num_Npx,'String','');%fills nbre of pixels x box |
---|
903 | set(handles.num_Npy,'String','');%fills nbre of pixels x box |
---|
904 | end |
---|
905 | set(handles.CheckBW,'Value',strcmp(ColorType,'grayscale'))% select handles.CheckBW if grayscale image |
---|
906 | |
---|
907 | %% read parameters (time, geometric calibration..) from a documentation file (.xml advised) |
---|
908 | filexml=[FileBase '.xml']; |
---|
909 | fileciv=[FileBase '.civ']; |
---|
910 | warntext='';%default warning message |
---|
911 | NbSlice=1;%default |
---|
912 | set(handles.RootPath,'BackgroundColor',[1 1 1]) |
---|
913 | if exist(filexml,'file') |
---|
914 | set(handles.view_xml,'Visible','on') |
---|
915 | set(handles.view_xml,'BackgroundColor',[1 1 0]) |
---|
916 | set(handles.view_xml,'String','view .xml') |
---|
917 | drawnow |
---|
918 | [XmlData,warntext]=imadoc2struct(filexml); |
---|
919 | if ~isempty(warntext) |
---|
920 | msgbox_uvmat('WARNING',warntext) |
---|
921 | end |
---|
922 | if isfield(XmlData,'TimeUnit') |
---|
923 | if isfield(XmlData,'TimeUnit')&& ~isempty(XmlData.TimeUnit) |
---|
924 | TimeUnit=XmlData.TimeUnit; |
---|
925 | end |
---|
926 | end |
---|
927 | set(handles.view_xml,'BackgroundColor',[1 1 1]) |
---|
928 | drawnow |
---|
929 | if isfield(XmlData, 'GeometryCalib') && ~isempty(XmlData.GeometryCalib) |
---|
930 | if isfield(XmlData.GeometryCalib,'VolumeScan') && isequal(XmlData.GeometryCalib.VolumeScan,'y') |
---|
931 | set (handles.nb_slice,'String','volume') |
---|
932 | end |
---|
933 | hgeometry_calib=findobj('tag','geometry_calib'); |
---|
934 | if ~isempty(hgeometry_calib) |
---|
935 | GUserData=get(hgeometry_calib,'UserData'); |
---|
936 | if ~(isfield(GUserData,'XmlInputFile') && strcmp(GUserData.XmlInputFile,filexml)) |
---|
937 | answer=msgbox_uvmat('INPUT_Y-N','replace the display of geometry_calib with the new input data?'); |
---|
938 | if strcmp(answer,'Yes') |
---|
939 | geometry_calib(filexml);%diplay the new calibration points and parameters in geometry_calib |
---|
940 | end |
---|
941 | end |
---|
942 | end |
---|
943 | end |
---|
944 | elseif exist(fileciv,'file')% if .civ file found |
---|
945 | [error,XmlData.Time,TimeUnit,mode,npx,npy,pxcmx,pxcmy]=read_imatext([FileBase '.civ']); |
---|
946 | GeometryCalib.R=[pxcmx 0 0; 0 pxcmy 0;0 0 0]; |
---|
947 | GeometryCalib.Tx=0; |
---|
948 | GeometryCalib.Ty=0; |
---|
949 | GeometryCalib.Tz=1; |
---|
950 | GeometryCalib.dpx=1; |
---|
951 | GeometryCalib.dpy=1; |
---|
952 | GeometryCalib.sx=1; |
---|
953 | GeometryCalib.Cx=0; |
---|
954 | GeometryCalib.Cy=0; |
---|
955 | GeometryCalib.f=1; |
---|
956 | GeometryCalib.kappa1=0; |
---|
957 | GeometryCalib.CoordUnit='cm'; |
---|
958 | XmlData.GeometryCalib=GeometryCalib; |
---|
959 | if error==2, warntext=['no file ' FileBase '.civ']; |
---|
960 | elseif error==1, warntext='inconsistent number of fields in the .civ file'; |
---|
961 | end |
---|
962 | set(handles.num_Npx,'String',num2str(npx));%fills nbre of pixels x box |
---|
963 | set(handles.num_Npy,'String',num2str(npy));%fills nbre of pixels y box |
---|
964 | set(handles.pxcm,'String',num2str(pxcmx));%fills scale x (pixel/cm) box |
---|
965 | set(handles.pycm,'String',num2str(pxcmy));%fills scale y (pixel/cm) box |
---|
966 | set(handles.pxcm,'Visible','on');%fills scale x (pixel/cm) box |
---|
967 | set(handles.pycm,'Visible','on');%fills scale y (pixel/cm) box |
---|
968 | set(handles.view_xml,'Visible','on') |
---|
969 | set(handles.view_xml,'String','view .civ') |
---|
970 | else |
---|
971 | set(handles.view_xml,'Visible','off') |
---|
972 | end |
---|
973 | |
---|
974 | %% store last index in handles.lat_i and .last_j |
---|
975 | nbfield=max(max(i2_series)); |
---|
976 | if isempty(nbfield) |
---|
977 | nbfield=max(max(i1_series)); |
---|
978 | end |
---|
979 | nbfield_j=max(max(j2_series)); |
---|
980 | if isempty(nbfield_j) |
---|
981 | nbfield_j=max(max(j1_series)); |
---|
982 | end |
---|
983 | if ~isempty(XmlData.Time) |
---|
984 | % nbfield=size(XmlData.Time,1); |
---|
985 | % nbfield_j=size(XmlData.Time,2); |
---|
986 | %transform .Time to a column vector if it is a line vector the nomenclature uses a single index |
---|
987 | if isequal(nbfield,1) && ~isequal(nbfield_j,1)% .Time is a line vector |
---|
988 | NomType=get(handles.NomType,'String'); |
---|
989 | if numel(NomType)>=2 &&(strcmp(NomType,'_i')||strcmp(NomType(1:2),'%0')||strcmp(NomType(1:2),'_%')) |
---|
990 | XmlData.Time=(XmlData.Time)'; |
---|
991 | % nbfield=nbfield_j; |
---|
992 | % nbfield_j=1; |
---|
993 | end |
---|
994 | end |
---|
995 | end |
---|
996 | last_i_cell=get(handles.last_i,'String'); |
---|
997 | if isempty(nbfield) |
---|
998 | last_i_cell{1}=''; |
---|
999 | else |
---|
1000 | last_i_cell{1}=num2str(nbfield); |
---|
1001 | end |
---|
1002 | set(handles.last_i,'String',last_i_cell) |
---|
1003 | last_j_cell=get(handles.last_j,'String'); |
---|
1004 | if isempty(nbfield_j) |
---|
1005 | last_j_cell{1}=''; |
---|
1006 | else |
---|
1007 | last_j_cell{1}=num2str(nbfield_j); |
---|
1008 | end |
---|
1009 | set(handles.last_j,'String',last_j_cell); |
---|
1010 | |
---|
1011 | %% store geometric calibration in UvData |
---|
1012 | if isfield(XmlData,'GeometryCalib') |
---|
1013 | GeometryCalib=XmlData.GeometryCalib; |
---|
1014 | if isempty(GeometryCalib) |
---|
1015 | set(handles.pxcm,'String','') |
---|
1016 | set(handles.pycm,'String','') |
---|
1017 | set(handles.transform_fct,'Value',1); % no transform by default |
---|
1018 | else |
---|
1019 | if (isfield(GeometryCalib,'R')&& ~isequal(GeometryCalib.R(2,1),0) && ~isequal(GeometryCalib.R(1,2),0)) ||... |
---|
1020 | (isfield(GeometryCalib,'kappa1')&& ~isequal(GeometryCalib.kappa1,0)) |
---|
1021 | set(handles.pxcm,'String','var') |
---|
1022 | set(handles.pycm,'String','var') |
---|
1023 | elseif isfield(GeometryCalib,'fx_fy') |
---|
1024 | pixcmx=GeometryCalib.fx_fy(1);%*GeometryCalib.R(1,1)*GeometryCalib.sx/(GeometryCalib.Tz*GeometryCalib.dpx); |
---|
1025 | pixcmy=GeometryCalib.fx_fy(2);%*GeometryCalib.R(2,2)/(GeometryCalib.Tz*GeometryCalib.dpy); |
---|
1026 | set(handles.pxcm,'String',num2str(pixcmx)) |
---|
1027 | set(handles.pycm,'String',num2str(pixcmy)) |
---|
1028 | end |
---|
1029 | if ~get(handles.CheckFixLimits,'Value') |
---|
1030 | set(handles.transform_fct,'Value',2); % phys transform by default if fixedLimits is off |
---|
1031 | end |
---|
1032 | if isfield(GeometryCalib,'SliceCoord') |
---|
1033 | |
---|
1034 | siz=size(GeometryCalib.SliceCoord); |
---|
1035 | if siz(1)>1 |
---|
1036 | NbSlice=siz(1); |
---|
1037 | set(handles.slices,'Visible','on') |
---|
1038 | set(handles.slices,'Value',1) |
---|
1039 | end |
---|
1040 | if isfield(GeometryCalib,'VolumeScan') && isequal(GeometryCalib.VolumeScan,'y') |
---|
1041 | set(handles.nb_slice,'String','volume') |
---|
1042 | else |
---|
1043 | set(handles.nb_slice,'String',num2str(NbSlice)) |
---|
1044 | end |
---|
1045 | slices_Callback([],[], handles) |
---|
1046 | end |
---|
1047 | end |
---|
1048 | end |
---|
1049 | |
---|
1050 | %% update the data attached to the uvmat interface |
---|
1051 | if ~isempty(TimeUnit) |
---|
1052 | set(handles.time_txt,'String',['time (' TimeUnit ')']) |
---|
1053 | end |
---|
1054 | UvData.TimeUnit=TimeUnit; |
---|
1055 | UvData.XmlData{index}=XmlData; |
---|
1056 | UvData.NewSeries=1; |
---|
1057 | % UvData.MovieObject=MovieObject; |
---|
1058 | |
---|
1059 | %display warning message |
---|
1060 | if ~isequal(warntext,'') |
---|
1061 | msgbox_uvmat('WARNING',warntext); |
---|
1062 | end |
---|
1063 | |
---|
1064 | %% set default options in menu 'Fields' |
---|
1065 | if ~testima |
---|
1066 | testcivx=0; |
---|
1067 | if isfield(UvData,'FieldsString') && isequal(UvData.FieldsString,{'get_field...'})% field menu defined as input (from get_field) |
---|
1068 | set(handles_Fields,'Value',1) |
---|
1069 | set(handles_Fields,'String',{'get_field...'}) |
---|
1070 | UvData=rmfield(UvData,'FieldsString'); |
---|
1071 | else |
---|
1072 | Data=nc2struct(FileName,'ListGlobalAttribute','Conventions','absolut_time_T0','civ'); |
---|
1073 | if strcmp(Data.Conventions,'uvmat/civdata') ||( ~isempty(Data.absolut_time_T0)&& ~isequal(Data.civ,0))%if the new input is Civx |
---|
1074 | FieldList=calc_field; |
---|
1075 | set(handles_Fields,'String',[{'image'};FieldList;{'get_field...'}]);%standard menu for civx data |
---|
1076 | set(handles_Fields,'Value',2) % set menu to 'velocity' |
---|
1077 | col_vec=FieldList; |
---|
1078 | col_vec(1)=[];%remove 'velocity' option for vector color (must be a scalar) |
---|
1079 | testcivx=1; |
---|
1080 | end |
---|
1081 | if ~testcivx |
---|
1082 | set(handles_Fields,'Value',1) % set menu to 'get_field... |
---|
1083 | set(handles_Fields,'String',{'get_field...'}) |
---|
1084 | col_vec={'get_field...'}; |
---|
1085 | end |
---|
1086 | set(handles.ColorScalar,'String',col_vec) |
---|
1087 | end |
---|
1088 | end |
---|
1089 | set(handles.uvmat,'UserData',UvData) |
---|
1090 | |
---|
1091 | %% set index navigation options and refresh plots |
---|
1092 | scan_option='i';%default |
---|
1093 | state_j='off'; %default |
---|
1094 | if index==2 |
---|
1095 | if get(handles.scan_j,'Value') |
---|
1096 | scan_option='j'; %keep the scan option for the second fiel series |
---|
1097 | end |
---|
1098 | if strcmp(get(handles.j1,'Visible'),'on') |
---|
1099 | state_j='on'; |
---|
1100 | end |
---|
1101 | end |
---|
1102 | if ~isempty(j1_series) |
---|
1103 | state_j='on'; |
---|
1104 | if isequal(nbfield,1) &&index==1 |
---|
1105 | scan_option='j'; %scan j index by default if nbfield=1 |
---|
1106 | end |
---|
1107 | end |
---|
1108 | if isequal(scan_option,'i') |
---|
1109 | set(handles.scan_i,'Value',1) |
---|
1110 | scan_i_Callback([],[], handles); |
---|
1111 | else |
---|
1112 | set(handles.scan_j,'Value',1) |
---|
1113 | scan_j_Callback([],[], handles); |
---|
1114 | end |
---|
1115 | set(handles.scan_j,'Visible',state_j) |
---|
1116 | set(handles.j1,'Visible',state_j) |
---|
1117 | set(handles.j2,'Visible',state_j) |
---|
1118 | set(handles.last_j,'Visible',state_j); |
---|
1119 | set(handles.frame_j,'Visible',state_j); |
---|
1120 | set(handles.j_text,'Visible',state_j); |
---|
1121 | if ~isempty(i2_series)||~isempty(j2_series) |
---|
1122 | set(handles.CheckFixPair,'Visible','on') |
---|
1123 | elseif index==1 |
---|
1124 | set(handles.CheckFixPair,'Visible','off') |
---|
1125 | end |
---|
1126 | |
---|
1127 | %% view the field |
---|
1128 | run0_Callback([],[], handles); %view field |
---|
1129 | mask_test=get(handles.CheckMask,'value'); |
---|
1130 | if mask_test |
---|
1131 | MaskData=get(handles.CheckMask,'UserData'); |
---|
1132 | if isfield(MaskData,'maskhandle') && ishandle(MaskData.maskhandle) |
---|
1133 | delete(MaskData.maskhandle) %delete old mask |
---|
1134 | end |
---|
1135 | CheckMask_Callback([],[],handles) |
---|
1136 | end |
---|
1137 | |
---|
1138 | %% update list of recent files in the menubar and save it for future opening |
---|
1139 | MenuFile=[{get(handles.MenuFile_1,'Label')};{get(handles.MenuFile_2,'Label')};... |
---|
1140 | {get(handles.MenuFile_3,'Label')};{get(handles.MenuFile_4,'Label')};{get(handles.MenuFile_5,'Label')}]; |
---|
1141 | str_find=strcmp(FileName,MenuFile); |
---|
1142 | if isempty(find(str_find,1)) |
---|
1143 | MenuFile=[{FileName};MenuFile];%insert the current file if not already in the list |
---|
1144 | end |
---|
1145 | for ifile=1:min(length(MenuFile),5) |
---|
1146 | eval(['set(handles.MenuFile_' num2str(ifile) ',''Label'',MenuFile{ifile});']) |
---|
1147 | eval(['set(handles.MenuFile_' num2str(ifile) '_1,''Label'',MenuFile{ifile});']) |
---|
1148 | end |
---|
1149 | dir_perso=prefdir; |
---|
1150 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
1151 | if exist(profil_perso,'file') |
---|
1152 | save (profil_perso,'MenuFile','-append'); %store the file names for future opening of uvmat |
---|
1153 | else |
---|
1154 | save (profil_perso,'MenuFile','-V6'); %store the file names for future opening of uvmat |
---|
1155 | end |
---|
1156 | |
---|
1157 | |
---|
1158 | %------------------------------------------------------------------------ |
---|
1159 | % --- switch file index scanning options scan_i and scan_j in an exclusive way |
---|
1160 | function scan_i_Callback(hObject, eventdata, handles) |
---|
1161 | %------------------------------------------------------------------------ |
---|
1162 | if get(handles.scan_i,'Value')==1 |
---|
1163 | set(handles.scan_i,'BackgroundColor',[1 1 0]) |
---|
1164 | set(handles.scan_j,'Value',0) |
---|
1165 | else |
---|
1166 | set(handles.scan_i,'BackgroundColor',[0.831 0.816 0.784]) |
---|
1167 | set(handles.scan_j,'Value',1) |
---|
1168 | end |
---|
1169 | scan_j_Callback(hObject, eventdata, handles) |
---|
1170 | |
---|
1171 | %------------------------------------------------------------------------ |
---|
1172 | % --- switch file index scanning options scan_i and scan_j in an exclusive way |
---|
1173 | function scan_j_Callback(hObject, eventdata, handles) |
---|
1174 | %------------------------------------------------------------------------ |
---|
1175 | if get(handles.scan_j,'Value')==1 |
---|
1176 | set(handles.scan_j,'BackgroundColor',[1 1 0]) |
---|
1177 | set(handles.scan_i,'Value',0) |
---|
1178 | set(handles.scan_i,'BackgroundColor',[0.831 0.816 0.784]) |
---|
1179 | % NomType=get(handles.NomType,'String'); |
---|
1180 | % switch NomType |
---|
1181 | % case {'_1_1-2','#_ab','%3dab'},% pair with j index |
---|
1182 | % set(handles.CheckFixPair,'Visible','on')% option fixed pair on/off made visible (choice of avaible pair with buttons + and - if ='off') |
---|
1183 | % otherwise |
---|
1184 | % set(handles.CheckFixPair,'Visible','off') |
---|
1185 | % end |
---|
1186 | else |
---|
1187 | set(handles.scan_j,'BackgroundColor',[0.831 0.816 0.784]) |
---|
1188 | set(handles.scan_i,'Value',1) |
---|
1189 | set(handles.scan_i,'BackgroundColor',[1 1 0]) |
---|
1190 | set(handles.CheckFixPair,'Visible','off') |
---|
1191 | end |
---|
1192 | |
---|
1193 | %------------------------------------------------------------------------ |
---|
1194 | function i1_Callback(hObject, eventdata, handles) |
---|
1195 | %------------------------------------------------------------------------ |
---|
1196 | set(handles.i1,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1197 | NomType=get(handles.NomType,'String'); |
---|
1198 | i1=stra2num(get(handles.i1,'String')); |
---|
1199 | i2=stra2num(get(handles.i2,'String')); |
---|
1200 | j1=stra2num(get(handles.j1,'String')); |
---|
1201 | j2=stra2num(get(handles.j2,'String')); |
---|
1202 | indices=fullfile_uvmat('','','','',NomType,i1,i2,j1,j2); |
---|
1203 | %indices=name_generator('',num1,num_a,'',NomType,1,num2,num_b,''); |
---|
1204 | set(handles.FileIndex,'String',indices) |
---|
1205 | set(handles.FileIndex,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1206 | if get(handles.SubField,'Value')==1 |
---|
1207 | NomType_1=get(handles.NomType_1,'String'); |
---|
1208 | indices=fullfile_uvmat('','','','',NomType,i1,i2,j1,j2); |
---|
1209 | %indices=name_generator('',num1,num_a,'',NomType_1,1,num2,num_b,''); |
---|
1210 | set(handles.FileIndex_1,'String',indices) |
---|
1211 | set(handles.FileIndex_1,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1212 | end |
---|
1213 | |
---|
1214 | %------------------------------------------------------------------------ |
---|
1215 | function i2_Callback(hObject, eventdata, handles) |
---|
1216 | %------------------------------------------------------------------------ |
---|
1217 | set(handles.i2,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1218 | i1_Callback(hObject, eventdata, handles) |
---|
1219 | |
---|
1220 | %------------------------------------------------------------------------ |
---|
1221 | function j1_Callback(hObject, eventdata, handles) |
---|
1222 | %------------------------------------------------------------------------ |
---|
1223 | set(handles.j1,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1224 | i1_Callback(hObject, eventdata, handles) |
---|
1225 | |
---|
1226 | %------------------------------------------------------------------------ |
---|
1227 | function j2_Callback(hObject, eventdata, handles) |
---|
1228 | %------------------------------------------------------------------------ |
---|
1229 | set(handles.j2,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1230 | i1_Callback(hObject, eventdata, handles) |
---|
1231 | |
---|
1232 | %------------------------------------------------------------------------ |
---|
1233 | function slices_Callback(hObject, eventdata, handles) |
---|
1234 | %------------------------------------------------------------------------ |
---|
1235 | if get(handles.slices,'Value')==1 |
---|
1236 | set(handles.slices,'BackgroundColor',[1 1 0]) |
---|
1237 | set(handles.nb_slice,'Visible','on') |
---|
1238 | set(handles.z_text,'Visible','on') |
---|
1239 | set(handles.z_index,'Visible','on') |
---|
1240 | nb_slice_Callback(hObject, eventdata, handles) |
---|
1241 | else |
---|
1242 | set(handles.nb_slice,'Visible','off') |
---|
1243 | set(handles.slices,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1244 | set(handles.z_text,'Visible','off') |
---|
1245 | set(handles.z_index,'Visible','off') |
---|
1246 | set(handles.masklevel,'Value',1) |
---|
1247 | set(handles.masklevel,'String',{'1'}) |
---|
1248 | end |
---|
1249 | |
---|
1250 | %------------------------------------------------------------------------ |
---|
1251 | function nb_slice_Callback(hObject, eventdata, handles) |
---|
1252 | %------------------------------------------------------------------------ |
---|
1253 | nb_slice_str=get(handles.nb_slice,'String'); |
---|
1254 | if isequal(nb_slice_str,'volume') |
---|
1255 | num=stra2num(get(handles.j1,'String')); |
---|
1256 | last_j=get(handles.last_j,'String'); |
---|
1257 | nbslice=str2double(last_j{1}); |
---|
1258 | else |
---|
1259 | num=str2double(get(handles.i1,'String')); |
---|
1260 | nbslice=str2double(get(handles.nb_slice,'String')); |
---|
1261 | end |
---|
1262 | z=mod(num-1,nbslice)+1; |
---|
1263 | set(handles.z_index,'String',num2str(z)) |
---|
1264 | for ilist=1:nbslice |
---|
1265 | list_index{ilist,1}=num2str(ilist); |
---|
1266 | end |
---|
1267 | set(handles.masklevel,'String',list_index) |
---|
1268 | set(handles.masklevel,'Value',z) |
---|
1269 | |
---|
1270 | %------------------------------------------------------------------------ |
---|
1271 | % --- Executes on button press in view_xml. |
---|
1272 | function view_xml_Callback(hObject, eventdata, handles) |
---|
1273 | %------------------------------------------------------------------------ |
---|
1274 | %[FileName,RootPath,FileBase,FileIndices,FileExt]=read_file_boxes(handles); |
---|
1275 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
1276 | FileBase=fullfile(RootPath,RootFile); |
---|
1277 | option=get(handles.view_xml,'String'); |
---|
1278 | if isequal(option,'view .xml') |
---|
1279 | FileXml=[FileBase '.xml']; |
---|
1280 | heditxml=editxml(FileXml); |
---|
1281 | end |
---|
1282 | |
---|
1283 | %------------------------------------------------------------------------ |
---|
1284 | % --- Executes on button press in CheckMask. |
---|
1285 | function CheckMask_Callback(hObject, eventdata, handles) |
---|
1286 | %------------------------------------------------------------------------ |
---|
1287 | %case of view mask selection |
---|
1288 | if isequal(get(handles.CheckMask,'Value'),1) |
---|
1289 | % [FF,RootPath,FileBase]=read_file_boxes(handles); |
---|
1290 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
1291 | FileBase=fullfile(RootPath,RootFile); |
---|
1292 | num_i1=stra2num(get(handles.i1,'String')); |
---|
1293 | num_j1=stra2num(get(handles.j1,'String')); |
---|
1294 | currentdir=pwd; |
---|
1295 | cd(RootPath); |
---|
1296 | maskfiles=dir('*_*mask_*.png');%look for a mask file |
---|
1297 | cd(currentdir);%come back to the working directory |
---|
1298 | mdetect=0; |
---|
1299 | if ~isempty(maskfiles) |
---|
1300 | for ilist=1:length(maskfiles) |
---|
1301 | maskname=maskfiles(ilist).name;% take the first mask file in the list |
---|
1302 | [tild,tild,tild,tild,tild,tild,tild,MaskExt,Mask_NomType{ilist}]=fileparts_uvmat(maskname); |
---|
1303 | % [rr,ff,x1,x2,xa,xb,xext,Mask_NomType{ilist}]=name2display(maskname); |
---|
1304 | [tild,Name]=fileparts(maskname); |
---|
1305 | Namedouble=double(Name); |
---|
1306 | val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters |
---|
1307 | ind_mask=findstr('mask',Name); |
---|
1308 | i=ind_mask-1; |
---|
1309 | while val(i)==0 && i>0 |
---|
1310 | i=i-1; |
---|
1311 | end |
---|
1312 | nbmask_str=str2num(Name(i+1:ind_mask-1)); |
---|
1313 | if ~isempty(nbmask_str) |
---|
1314 | nbslice(ilist)=nbmask_str; % number of different masks (slices) |
---|
1315 | end |
---|
1316 | end |
---|
1317 | if isequal(min(nbslice),max(nbslice)) |
---|
1318 | nbslice=nbslice(1); |
---|
1319 | else |
---|
1320 | msgbox_uvmat('ERROR','several inconsistent mask sets coexist in the current image directory') |
---|
1321 | return |
---|
1322 | end |
---|
1323 | if ~isempty(nbslice) && Name(i)=='_' |
---|
1324 | Mask.Base=[FileBase Name(i:ind_mask+3)]; |
---|
1325 | Mask.NbSlice=nbslice; |
---|
1326 | num_i1=mod(num_i1-1,nbslice)+1; |
---|
1327 | Mask.NomType=regexprep(Mask_NomType{1},'0','');%remove '0' in nom type for masks |
---|
1328 | [RootPath,RootFile]=fileparts(Mask.Base); |
---|
1329 | maskname=fullfile_uvmat(RootPath,'',RootFile,'.png',Mask.NomType,num_i1,[],num_j1); |
---|
1330 | %maskname=name_generator(Mask.Base,num_i1,num_j1,'.png',Mask.NomType);% |
---|
1331 | mdetect=exist(maskname,'file'); |
---|
1332 | if mdetect |
---|
1333 | set(handles.nb_slice,'String',Name(i+1:ind_mask-1)); |
---|
1334 | set(handles.nb_slice,'BackgroundColor',[1 1 0]) |
---|
1335 | set(handles.CheckMask,'UserData',Mask); |
---|
1336 | set(handles.CheckMask,'BackgroundColor',[1 1 0]) |
---|
1337 | if nbslice > 1 |
---|
1338 | set(handles.slices,'value',1) |
---|
1339 | slices_Callback(hObject, eventdata, handles) |
---|
1340 | end |
---|
1341 | end |
---|
1342 | end |
---|
1343 | end |
---|
1344 | errormsg=[];%default |
---|
1345 | if mdetect==0 |
---|
1346 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
1347 | {'*.png', ' (*.png)'; |
---|
1348 | '*.png', '.png files '; ... |
---|
1349 | '*.*', 'All Files (*.*)'}, ... |
---|
1350 | 'Pick a mask file *.png',FileBase); |
---|
1351 | maskname=fullfile(PathName,FileName); |
---|
1352 | if ~exist(maskname,'file') |
---|
1353 | errormsg='no file browsed'; |
---|
1354 | end |
---|
1355 | [RootDir,tild,RootFile,tild,tild,tild,tild,tild,Mask.NomType]=fileparts_uvmat(maskname); |
---|
1356 | % [RootDir,RootFile,x1,x2,xa,xb,xext,Mask.NomType]=name2display(maskname); |
---|
1357 | Mask.Base=fullfile(RootDir,RootFile); |
---|
1358 | Mask.NbSlice=1; |
---|
1359 | set(handles.CheckMask,'UserData',Mask); |
---|
1360 | set(handles.CheckMask,'BackgroundColor',[1 1 0]) |
---|
1361 | end |
---|
1362 | if isempty(errormsg) |
---|
1363 | errormsg=update_mask(handles,num_i1,num_j1); |
---|
1364 | end |
---|
1365 | if ~isempty(errormsg) |
---|
1366 | set(handles.CheckMask,'Value',0) |
---|
1367 | set(handles.CheckMask,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1368 | end |
---|
1369 | else % desactivate mask display |
---|
1370 | MaskData=get(handles.CheckMask,'UserData'); |
---|
1371 | if isfield(MaskData,'maskhandle') && ishandle(MaskData.maskhandle) |
---|
1372 | delete(MaskData.maskhandle) |
---|
1373 | end |
---|
1374 | set(handles.CheckMask,'UserData',[]) |
---|
1375 | UvData=get(handles.uvmat,'UserData'); |
---|
1376 | if isfield(UvData,'MaskName') |
---|
1377 | UvData=rmfield(UvData,'MaskName'); |
---|
1378 | set(handles.uvmat,'UserData',UvData) |
---|
1379 | end |
---|
1380 | set(handles.CheckMask,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1381 | end |
---|
1382 | |
---|
1383 | %------------------------------------------------------------------------ |
---|
1384 | function errormsg=update_mask(handles,num_i1,num_j1) |
---|
1385 | %------------------------------------------------------------------------ |
---|
1386 | errormsg=[];%default |
---|
1387 | MaskData=get(handles.CheckMask,'UserData'); |
---|
1388 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle) |
---|
1389 | uistack(MaskData.maskhandle,'top'); |
---|
1390 | end |
---|
1391 | num_i1_mask=mod(num_i1-1,MaskData.NbSlice)+1; |
---|
1392 | [RootPath,RootFile]=fileparts(MaskData.Base); |
---|
1393 | MaskName=fullfile_uvmat(RootPath,'',RootFile,'.png',MaskData.NomType,num_i1_mask,[],num_j1); |
---|
1394 | %MaskName=name_generator(MaskData.Base,num_i1_mask,num_j1,'.png',MaskData.NomType); |
---|
1395 | % huvmat=get(handles.CheckMask,'parent'); |
---|
1396 | UvData=get(handles.uvmat,'UserData'); |
---|
1397 | %update mask image if the mask is new |
---|
1398 | if ~ (isfield(UvData,'MaskName') && isequal(UvData.MaskName,MaskName)) |
---|
1399 | UvData.MaskName=MaskName; %update the recorded name on UvData |
---|
1400 | set(handles.uvmat,'UserData',UvData); |
---|
1401 | if ~exist(MaskName,'file') |
---|
1402 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle) |
---|
1403 | delete(MaskData.maskhandle) |
---|
1404 | end |
---|
1405 | else |
---|
1406 | %read mask image |
---|
1407 | Mask.AName='image'; |
---|
1408 | Mask.A=imread(MaskName); |
---|
1409 | npxy=size(Mask.A); |
---|
1410 | test_error=0; |
---|
1411 | if length(npxy)>2 |
---|
1412 | errormsg=[MaskName ' is not a grey scale image']; |
---|
1413 | return |
---|
1414 | elseif ~isa(Mask.A,'uint8') |
---|
1415 | errormsg=[MaskName ' is not a 8 bit grey level image']; |
---|
1416 | return |
---|
1417 | end |
---|
1418 | Mask.AX=[0.5 npxy(2)-0.5]; |
---|
1419 | Mask.AY=[npxy(1)-0.5 0.5 ]; |
---|
1420 | Mask.CoordUnit='pixel'; |
---|
1421 | if isequal(get(handles.slices,'Value'),1) |
---|
1422 | NbSlice=str2num(get(handles.nb_slice,'String')); |
---|
1423 | num_i1=str2num(get(handles.i1,'String')); |
---|
1424 | Mask.ZIndex=mod(num_i1-1,NbSlice)+1; |
---|
1425 | end |
---|
1426 | %px to phys or other transform on field |
---|
1427 | menu_transform=get(handles.transform_fct,'String'); |
---|
1428 | choice_value=get(handles.transform_fct,'Value'); |
---|
1429 | transform_name=menu_transform{choice_value};%name of the transform fct given by the menu 'transform_fct' |
---|
1430 | transform_list=get(handles.transform_fct,'UserData'); |
---|
1431 | transform=transform_list{choice_value}; |
---|
1432 | if ~isequal(transform_name,'') && ~isequal(transform_name,'px') |
---|
1433 | if isfield(UvData,'XmlData') && isfield(UvData.XmlData{1},'GeometryCalib')%use geometry calib recorded from the ImaDoc xml file as first priority |
---|
1434 | Calib=UvData.XmlData{1}.GeometryCalib; |
---|
1435 | Mask=transform(Mask,UvData.XmlData{1}); |
---|
1436 | end |
---|
1437 | end |
---|
1438 | flagmask=Mask.A < 200; |
---|
1439 | |
---|
1440 | %make brown color image |
---|
1441 | imflag(:,:,1)=0.9*flagmask; |
---|
1442 | imflag(:,:,2)=0.7*flagmask; |
---|
1443 | imflag(:,:,3)=zeros(size(flagmask)); |
---|
1444 | |
---|
1445 | %update mask image |
---|
1446 | hmask=[]; %default |
---|
1447 | if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle) |
---|
1448 | hmask=MaskData.maskhandle; |
---|
1449 | end |
---|
1450 | if ~isempty(hmask) |
---|
1451 | set(hmask,'CData',imflag) |
---|
1452 | set(hmask,'AlphaData',flagmask*0.6) |
---|
1453 | set(hmask,'XData',Mask.AX); |
---|
1454 | set(hmask,'YData',Mask.AY); |
---|
1455 | % uistack(hmask,'top') |
---|
1456 | else |
---|
1457 | axes(handles.axes3) |
---|
1458 | hold on |
---|
1459 | MaskData.maskhandle=image(Mask.AX,Mask.AY,imflag,'Tag','mask','HitTest','off','AlphaData',0.6*flagmask); |
---|
1460 | % set(MaskData.maskhandle,'AlphaData',0.6*flagmask) |
---|
1461 | set(handles.CheckMask,'UserData',MaskData) |
---|
1462 | end |
---|
1463 | end |
---|
1464 | end |
---|
1465 | |
---|
1466 | %------------------------------------------------------------------------ |
---|
1467 | %------------------------------------------------------------------------ |
---|
1468 | % III - MAIN REFRESH FUNCTIONS : 'FRAME PLOT' |
---|
1469 | %------------------------------------------------------------------------ |
---|
1470 | |
---|
1471 | %------------------------------------------------------------------------ |
---|
1472 | % --- Executes on button press in runplus: make one step forward and call |
---|
1473 | % --- run0. The step forward is along the fields series 1 or 2 depending on |
---|
1474 | % --- the scan_i and scan_j check box (exclusive each other) |
---|
1475 | function runplus_Callback(hObject, eventdata, handles) |
---|
1476 | %------------------------------------------------------------------------ |
---|
1477 | set(handles.runplus,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1478 | drawnow |
---|
1479 | %TODO: introduce the option: increment ='*' to move to the next available view |
---|
1480 | increment=str2num(get(handles.increment_scan,'String')); %get the field increment d |
---|
1481 | % if isnan(increment) |
---|
1482 | % set(handles.increment_scan,'String','1')%default value |
---|
1483 | % increment=1; |
---|
1484 | % end |
---|
1485 | errormsg=runpm(hObject,eventdata,handles,increment); |
---|
1486 | if ~isempty(errormsg) |
---|
1487 | msgbox_uvmat('ERROR',errormsg); |
---|
1488 | end |
---|
1489 | set(handles.runplus,'BackgroundColor',[1 0 0])%paint the command button back to red |
---|
1490 | |
---|
1491 | %------------------------------------------------------------------------ |
---|
1492 | % --- Executes on button press in runmin: make one step backward and call |
---|
1493 | % --- run0. The step backward is along the fields series 1 or 2 depending on |
---|
1494 | % --- the scan_i and scan_j check box (exclusive each other) |
---|
1495 | function runmin_Callback(hObject, eventdata, handles) |
---|
1496 | %------------------------------------------------------------------------ |
---|
1497 | set(handles.runmin,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1498 | drawnow |
---|
1499 | increment=-str2num(get(handles.increment_scan,'String')); %get the field increment d |
---|
1500 | % if isnan(increment) |
---|
1501 | % set(handles.increment_scan,'String','1')%default value |
---|
1502 | % increment=1; |
---|
1503 | % end |
---|
1504 | errormsg=runpm(hObject,eventdata,handles,increment); |
---|
1505 | if ~isempty(errormsg) |
---|
1506 | msgbox_uvmat('ERROR',errormsg); |
---|
1507 | end |
---|
1508 | set(handles.runmin,'BackgroundColor',[1 0 0])%paint the command button back to red |
---|
1509 | |
---|
1510 | %------------------------------------------------------------------------ |
---|
1511 | % -- Executes on button press in Movie: make a series of +> steps |
---|
1512 | function Movie_Callback(hObject, eventdata, handles) |
---|
1513 | %------------------------------------------------------------------------ |
---|
1514 | set(handles.Movie,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1515 | drawnow |
---|
1516 | increment=str2num(get(handles.increment_scan,'String')); %get the field increment d |
---|
1517 | % if isnan(increment) |
---|
1518 | % set(handles.increment_scan,'String','1')%default value |
---|
1519 | % increment=1; |
---|
1520 | % end |
---|
1521 | set(handles.STOP,'Visible','on') |
---|
1522 | set(handles.speed,'Visible','on') |
---|
1523 | set(handles.speed_txt,'Visible','on') |
---|
1524 | set(handles.Movie,'BusyAction','queue') |
---|
1525 | UvData=get(handles.uvmat,'UserData'); |
---|
1526 | |
---|
1527 | while get(handles.speed,'Value')~=0 && isequal(get(handles.Movie,'BusyAction'),'queue') % enable STOP command |
---|
1528 | errormsg=runpm(hObject,eventdata,handles,increment); |
---|
1529 | if ~isempty(errormsg) |
---|
1530 | set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1531 | return |
---|
1532 | end |
---|
1533 | pause(1.02-get(handles.speed,'Value'))% wait for next image |
---|
1534 | end |
---|
1535 | if isfield(UvData,'aviobj') && ~isempty( UvData.aviobj), |
---|
1536 | UvData.aviobj=close(UvData.aviobj); |
---|
1537 | set(handles.uvmat,'UserData',UvData); |
---|
1538 | end |
---|
1539 | set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1540 | |
---|
1541 | %------------------------------------------------------------------------ |
---|
1542 | % -- Executes on button press in Movie: make a series of <- steps |
---|
1543 | function MovieBackward_Callback(hObject, eventdata, handles) |
---|
1544 | %------------------------------------------------------------------------ |
---|
1545 | set(handles.MovieBackward,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1546 | drawnow |
---|
1547 | increment=-str2num(get(handles.increment_scan,'String')); %get the field increment d |
---|
1548 | set(handles.STOP,'Visible','on') |
---|
1549 | set(handles.speed,'Visible','on') |
---|
1550 | set(handles.speed_txt,'Visible','on') |
---|
1551 | set(handles.MovieBackward,'BusyAction','queue') |
---|
1552 | UvData=get(handles.uvmat,'UserData'); |
---|
1553 | |
---|
1554 | while get(handles.speed,'Value')~=0 && isequal(get(handles.MovieBackward,'BusyAction'),'queue') % enable STOP command |
---|
1555 | errormsg=runpm(hObject,eventdata,handles,increment); |
---|
1556 | if ~isempty(errormsg) |
---|
1557 | set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1558 | return |
---|
1559 | end |
---|
1560 | pause(1.02-get(handles.speed,'Value'))% wait for next image |
---|
1561 | end |
---|
1562 | if isfield(UvData,'aviobj') && ~isempty( UvData.aviobj), |
---|
1563 | UvData.aviobj=close(UvData.aviobj); |
---|
1564 | set(handles.uvmat,'UserData',UvData); |
---|
1565 | end |
---|
1566 | set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1567 | |
---|
1568 | %------------------------------------------------------------------------ |
---|
1569 | function STOP_Callback(hObject, eventdata, handles) |
---|
1570 | %------------------------------------------------------------------------ |
---|
1571 | set(handles.movie_pair,'BusyAction','Cancel') |
---|
1572 | set(handles.movie_pair,'value',0) |
---|
1573 | set(handles.Movie,'BusyAction','Cancel') |
---|
1574 | set(handles.MovieBackward,'BusyAction','Cancel') |
---|
1575 | set(handles.MenuExportMovie,'BusyAction','Cancel') |
---|
1576 | set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1577 | set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1578 | set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red |
---|
1579 | |
---|
1580 | %------------------------------------------------------------------------ |
---|
1581 | % --- function activated by runplus and run minus |
---|
1582 | function errormsg=runpm(hObject,eventdata,handles,increment) |
---|
1583 | %------------------------------------------------------------------------ |
---|
1584 | errormsg='';%default |
---|
1585 | %% check for movie pair status |
---|
1586 | movie_status=get(handles.movie_pair,'Value'); |
---|
1587 | if isequal(movie_status,1) |
---|
1588 | STOP_Callback(hObject, eventdata, handles)%interrupt movie pair if active |
---|
1589 | end |
---|
1590 | |
---|
1591 | %% read the current input file name(s) and field indices |
---|
1592 | InputFile=read_GUI(handles.InputFile); |
---|
1593 | InputFile.RootFile=regexprep(InputFile.RootFile,'^[\\/]|[\\/]$','');%suppress possible / or \ separator at the beginning or the end of the string |
---|
1594 | InputFile.SubDir=regexprep(InputFile.SubDir,'^[\\/]|[\\/]$','');%suppress possible / or \ separator at the beginning or the end of the string |
---|
1595 | FileExt=InputFile.FileExt; |
---|
1596 | NomType=get(handles.NomType,'String'); |
---|
1597 | i1=str2num(get(handles.i1,'String'));%read the field indices (for movie, it is not given by the file name) |
---|
1598 | i2=[];%default |
---|
1599 | if strcmp(get(handles.i2,'Visible'),'on') |
---|
1600 | i2=str2num(get(handles.i2,'String')); |
---|
1601 | end |
---|
1602 | j1=[]; |
---|
1603 | if strcmp(get(handles.j1,'Visible'),'on') |
---|
1604 | j1=stra2num(get(handles.j1,'String')); |
---|
1605 | end |
---|
1606 | j2=j1; |
---|
1607 | if strcmp(get(handles.j2,'Visible'),'on') |
---|
1608 | j2=stra2num(get(handles.j2,'String')); |
---|
1609 | end |
---|
1610 | sub_value= get(handles.SubField,'Value'); |
---|
1611 | if sub_value % a second input file has been entered |
---|
1612 | [FileName_1,RootPath_1,filebase_1,FileIndices_1,FileExt_1,SubDir_1]=read_file_boxes_1(handles); |
---|
1613 | [tild,tild,tild,i1_1,i2_1,j1_1,j2_1]=fileparts_uvmat(FileIndices_1); |
---|
1614 | NomType_1=get(handles.NomType_1,'String'); |
---|
1615 | else |
---|
1616 | filename_1=[]; |
---|
1617 | end |
---|
1618 | |
---|
1619 | %% increment (or decrement) the field indices and update the input filename(s) |
---|
1620 | CheckSearch=0; |
---|
1621 | if isempty(increment) |
---|
1622 | CheckSearch=1;% search for the next available file |
---|
1623 | set(handles.CheckFixPair,'Value',0) |
---|
1624 | end |
---|
1625 | CheckFixPair=get(handles.CheckFixPair,'Value')||(isempty(i2)&&isempty(j2)); |
---|
1626 | if CheckFixPair |
---|
1627 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1628 | i1=i1+increment; |
---|
1629 | i2=i2+increment; |
---|
1630 | if sub_value |
---|
1631 | i1_1=i1_1+increment; |
---|
1632 | i2_1=i2_1+increment; |
---|
1633 | end |
---|
1634 | else % case of scanning along index j (burst numbers) |
---|
1635 | j1=j1+increment; |
---|
1636 | j2=j2+increment; |
---|
1637 | if sub_value |
---|
1638 | j1_1=j1_1+increment; |
---|
1639 | j2_1=j2_1+increment; |
---|
1640 | end |
---|
1641 | end |
---|
1642 | else |
---|
1643 | UvData=get(handles.uvmat,'UserData'); |
---|
1644 | ref_i=i1; |
---|
1645 | if ~isempty(i2) |
---|
1646 | ref_i=floor((i1+i2)/2); |
---|
1647 | end |
---|
1648 | ref_j=1; |
---|
1649 | if ~isempty(j1) |
---|
1650 | ref_j=j1; |
---|
1651 | if ~isempty(j2) |
---|
1652 | ref_j=floor((j1+j2)/2); |
---|
1653 | end |
---|
1654 | end |
---|
1655 | if ~isempty(increment) |
---|
1656 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1657 | ref_i=ref_i+increment; |
---|
1658 | else % case of scanning along index j (burst numbers) |
---|
1659 | ref_j=ref_j+increment; |
---|
1660 | end |
---|
1661 | else % free increment |
---|
1662 | if isequal(get(handles.runplus,'BackgroundColor'),[1 1 0])% if runplus is activated |
---|
1663 | step=1; |
---|
1664 | else |
---|
1665 | step=-1; |
---|
1666 | end |
---|
1667 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1668 | ref_i=ref_i+step; |
---|
1669 | while ref_i>=0 && size(UvData.i1_series{1},1)>=ref_i+1 && UvData.i1_series{1}(ref_i+1,ref_j+1,1)==0 |
---|
1670 | ref_i=ref_i+step; |
---|
1671 | end |
---|
1672 | else % case of scanning along index j (burst numbers) |
---|
1673 | ref_j=ref_j+step; |
---|
1674 | while ref_j>=0 && size(UvData.i1_series{1},2)>=ref_j+1 && UvData.i1_series{1}(ref_i+1,ref_j+1,1)==0 |
---|
1675 | ref_j=ref_j+step; |
---|
1676 | end |
---|
1677 | end |
---|
1678 | end |
---|
1679 | if ref_i<0 |
---|
1680 | errormsg='minimum i index reached'; |
---|
1681 | elseif ref_j<0 |
---|
1682 | errormsg='minimum j index reached'; |
---|
1683 | elseif ref_i+1>size(UvData.i1_series{1},1) |
---|
1684 | errormsg='maximum i index reached'; |
---|
1685 | elseif ref_j+1>size(UvData.i1_series{1},2) |
---|
1686 | errormsg='maximum j index reached'; |
---|
1687 | end |
---|
1688 | if ~isempty(errormsg) |
---|
1689 | return |
---|
1690 | end |
---|
1691 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1692 | i1_subseries=UvData.i1_series{1}(ref_i+1,ref_j+1,:); |
---|
1693 | else |
---|
1694 | i1_subseries=UvData.i1_series{1}(ref_i+1,ref_j+1,:); |
---|
1695 | end |
---|
1696 | i1_subseries=i1_subseries(i1_subseries>0); |
---|
1697 | if isempty(i1_subseries) |
---|
1698 | errormsg='no next file'; |
---|
1699 | return |
---|
1700 | end |
---|
1701 | i1=i1_subseries(end); |
---|
1702 | if ~isempty(UvData.i2_series{1}) |
---|
1703 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1704 | i2_subseries=UvData.i2_series{1}(ref_i+1,ref_j+1,:); |
---|
1705 | else |
---|
1706 | i2_subseries=UvData.i2_series{1}(ref_i+1,ref_j+1,:); |
---|
1707 | end |
---|
1708 | i2_subseries=i2_subseries(i2_subseries>0); |
---|
1709 | i2=i2_subseries(end); |
---|
1710 | end |
---|
1711 | if ~isempty(UvData.j1_series{1}) |
---|
1712 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1713 | j1_subseries=UvData.j1_series{1}(ref_i+1,ref_j+1,:); |
---|
1714 | else |
---|
1715 | j1_subseries=UvData.j1_series{1}(ref_i+1,ref_j+1,:); |
---|
1716 | end |
---|
1717 | j1_subseries=j1_subseries(j1_subseries>0); |
---|
1718 | j1=j1_subseries(end); |
---|
1719 | end |
---|
1720 | if ~isempty(UvData.j2_series{1}) |
---|
1721 | if get(handles.scan_i,'Value')==1% case of scanning along index i |
---|
1722 | j2_subseries=UvData.j2_series{1}(ref_i+1,ref_j+1,:); |
---|
1723 | else |
---|
1724 | j2_subseries=UvData.j2_series{1}(ref_i+1,ref_j+1,:); |
---|
1725 | end |
---|
1726 | j2_subseries=j2_subseries(j2_subseries>0); |
---|
1727 | j2=j2_subseries(end); |
---|
1728 | end |
---|
1729 | |
---|
1730 | end |
---|
1731 | filename=fullfile_uvmat(InputFile.RootPath,InputFile.SubDir,InputFile.RootFile,FileExt,NomType,i1,i2,j1,j2); |
---|
1732 | if sub_value |
---|
1733 | filename_1=fullfile_uvmat(InputFile.RootPath_1,InputFile.SubDir_1,InputFile.RootFile_1,FileExt_1,NomType_1,i1_1,i2_1,j1_1,j2_1); |
---|
1734 | end |
---|
1735 | |
---|
1736 | %% refresh plots |
---|
1737 | errormsg=refresh_field(handles,filename,filename_1,i1,i2,j1,j2); |
---|
1738 | |
---|
1739 | %% update the index counters if the index move is successfull |
---|
1740 | if isempty(errormsg) |
---|
1741 | set(handles.i1,'String',num2stra(i1,NomType,1)); |
---|
1742 | if isequal(i2,i1) |
---|
1743 | set(handles.i2,'String',''); |
---|
1744 | else |
---|
1745 | set(handles.i2,'String',num2stra(i2,NomType,1)); |
---|
1746 | end |
---|
1747 | set(handles.j1,'String',num2stra(j1,NomType,2)); |
---|
1748 | if isequal(j2,j1) |
---|
1749 | set(handles.j2,'String',''); |
---|
1750 | else |
---|
1751 | set(handles.j2,'String',num2stra(j2,NomType,2)); |
---|
1752 | end |
---|
1753 | % [indices]=name_generator('',i1,j1,'',NomType,1,i2,j2,''); |
---|
1754 | indices=fullfile_uvmat('','','','',NomType,i1,i2,j1,j2); |
---|
1755 | set(handles.FileIndex,'String',indices); |
---|
1756 | if ~isempty(filename_1) |
---|
1757 | indices_1=fullfile_uvmat('','','','',NomType_1,i1_1,i2_1,j1_1,j2_1); |
---|
1758 | %indices_1=name_generator('',i1_1,j1_1,'',NomType_1,1,i2_1,j2_1,''); |
---|
1759 | set(handles.FileIndex_1,'String',indices_1); |
---|
1760 | end |
---|
1761 | if isequal(movie_status,1) |
---|
1762 | set(handles.movie_pair,'Value',1) |
---|
1763 | movie_pair_Callback(hObject, eventdata, handles); %reactivate moviepair if it was activated |
---|
1764 | end |
---|
1765 | end |
---|
1766 | |
---|
1767 | %------------------------------------------------------------------------ |
---|
1768 | % --- Executes on button press in movie_pair: create an alternating movie with two view |
---|
1769 | function movie_pair_Callback(hObject, eventdata, handles) |
---|
1770 | %------------------------------------------------------------------------ |
---|
1771 | %% stop movie action if the movie_pair button is off |
---|
1772 | if ~get(handles.movie_pair,'value') |
---|
1773 | set(handles.movie_pair,'BusyAction','Cancel')%stop movie pair if button is 'off' |
---|
1774 | set(handles.i2,'String','') |
---|
1775 | set(handles.j2,'String','') |
---|
1776 | return |
---|
1777 | else |
---|
1778 | set(handles.movie_pair,'BusyAction','queue') |
---|
1779 | end |
---|
1780 | |
---|
1781 | %% initialisation |
---|
1782 | set(handles.movie_pair,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1783 | drawnow |
---|
1784 | list_fields=get(handles.Fields,'String');% list menu fields |
---|
1785 | index_fields=get(handles.Fields,'Value');% selected string index |
---|
1786 | FieldName=list_fields{index_fields}; % selected field |
---|
1787 | UvData=get(handles.uvmat,'UserData'); |
---|
1788 | if isequal(FieldName,'image') |
---|
1789 | test_1=0; |
---|
1790 | [RootPath,SubDir,RootFile,FileIndices,Ext]=read_file_boxes(handles); |
---|
1791 | NomType=get(handles.NomType,'String'); |
---|
1792 | else |
---|
1793 | list_fields=get(handles.Fields_1,'String');% list menu fields |
---|
1794 | index_fields=get(handles.Fields_1,'Value');% selected string index |
---|
1795 | FieldName=list_fields{index_fields}; % selected field |
---|
1796 | if isequal(FieldName,'image') |
---|
1797 | test_1=1; |
---|
1798 | [RootPath,tild,RootFile,FileIndex_1,Ext,NomType]=read_file_boxes_1(handles); |
---|
1799 | else |
---|
1800 | msgbox_uvmat('ERROR','an image or movie must be first introduced as input') |
---|
1801 | set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red |
---|
1802 | set(handles.movie_pair,'Value',0) |
---|
1803 | return |
---|
1804 | end |
---|
1805 | end |
---|
1806 | num_i1=str2num(get(handles.i1,'String')); |
---|
1807 | num_j1=stra2num(get(handles.j1,'String')); |
---|
1808 | num_i2=str2num(get(handles.i2,'String')); |
---|
1809 | num_j2=stra2num(get(handles.j2,'String')); |
---|
1810 | if isempty(num_j2) |
---|
1811 | if isempty(num_i2) |
---|
1812 | msgbox_uvmat('ERROR', 'a second image index i2 or j2 is needed to show the pair as a movie') |
---|
1813 | set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red |
---|
1814 | set(handles.movie_pair,'Value',0) |
---|
1815 | return |
---|
1816 | else |
---|
1817 | num_j2=num_j1;%repeat the index i1 by default |
---|
1818 | end |
---|
1819 | end |
---|
1820 | if isempty(num_i2) |
---|
1821 | num_i2=num_i1;%repeat the index i1 by default |
---|
1822 | end |
---|
1823 | % imaname_1=name_generator(filebase,num_i2,num_j2,Ext,NomType); |
---|
1824 | imaname_1=fullfile_uvmat(RootPath,'',RootFile,Ext,NomType,num_i2,[],num_j2); |
---|
1825 | if ~exist(imaname_1,'file') |
---|
1826 | msgbox_uvmat('ERROR',['second input open (-) ' imaname_1 ' not found']); |
---|
1827 | set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red |
---|
1828 | set(handles.movie_pair,'Value',0) |
---|
1829 | return |
---|
1830 | end |
---|
1831 | |
---|
1832 | %% read the second image |
---|
1833 | Field.AName='image'; |
---|
1834 | if test_1 |
---|
1835 | Field_a=UvData.Field_1; |
---|
1836 | else |
---|
1837 | Field_a=UvData.Field; |
---|
1838 | end |
---|
1839 | Field_b.AX=Field_a.AX; |
---|
1840 | Field_b.AY=Field_a.AY; |
---|
1841 | % z index |
---|
1842 | nbslice=str2double(get(handles.nb_slice,'String')); |
---|
1843 | if ~isempty(nbslice) |
---|
1844 | Field_b.ZIndex=mod(num_i2-1,nbslice)+1; |
---|
1845 | end |
---|
1846 | Field_b.CoordUnit='pixel'; |
---|
1847 | |
---|
1848 | %% determine the input file type |
---|
1849 | if (test_1 && isfield(UvData,'MovieObject')&& numel(UvData.MovieObject>=2))||(~test_1 && ~isempty(UvData.MovieObject{1})) |
---|
1850 | FileType='movie'; |
---|
1851 | elseif isequal(lower(Ext),'.avi') |
---|
1852 | FileType='avi'; |
---|
1853 | elseif isequal(lower(Ext),'.vol') |
---|
1854 | FileType='vol'; |
---|
1855 | else |
---|
1856 | form=imformats(Ext(2:end)); |
---|
1857 | if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab |
---|
1858 | if isequal(NomType,'*'); |
---|
1859 | FileType='multimage'; |
---|
1860 | else |
---|
1861 | FileType='image'; |
---|
1862 | end |
---|
1863 | end |
---|
1864 | end |
---|
1865 | switch FileType |
---|
1866 | case 'movie' |
---|
1867 | if test_1 |
---|
1868 | Field_b.A=read(UvData.MovieObject{2},num_i2); |
---|
1869 | else |
---|
1870 | Field_b.A=read(UvData.MovieObject{1},num_i2); |
---|
1871 | end |
---|
1872 | case 'avi' |
---|
1873 | mov=aviread(imaname_1,num_i2); |
---|
1874 | Field_b.A=frame2im(mov(1)); |
---|
1875 | case 'vol' |
---|
1876 | Field_b.A=imread(imaname_1); |
---|
1877 | case 'multimage' |
---|
1878 | Field_b.A=imread(imaname_1,num_i2); |
---|
1879 | case 'image' |
---|
1880 | Field_b.A=imread(imaname_1); |
---|
1881 | end |
---|
1882 | if get(handles.slices,'Value') |
---|
1883 | Field.ZIndex=str2double(get(handles.z_index,'String')); |
---|
1884 | end |
---|
1885 | |
---|
1886 | %px to phys or other transform on field |
---|
1887 | menu_transform=get(handles.transform_fct,'String'); |
---|
1888 | choice_value=get(handles.transform_fct,'Value'); |
---|
1889 | transform_name=menu_transform{choice_value};%name of the transform fct given by the menu 'transform_fct' |
---|
1890 | transform_list=get(handles.transform_fct,'UserData'); |
---|
1891 | transform=transform_list{choice_value}; |
---|
1892 | if ~isequal(transform_name,'') && ~isequal(transform_name,'px') |
---|
1893 | if test_1 && isfield(UvData,'XmlData') && numel(UvData.XmlData)==2 && isfield(UvData.XmlData{2},'GeometryCalib')%use geometry calib recorded from the ImaDoc xml file as first priority |
---|
1894 | Field_a=transform(Field_a,UvData.XmlData{2});%the first field has been stored without transform |
---|
1895 | Field_b=transform(Field_b,UvData.XmlData{2}); |
---|
1896 | elseif ~test_1 && isfield(UvData,'XmlData') && isfield(UvData.XmlData{1},'GeometryCalib')%use geometry calib |
---|
1897 | Field_b=transform(Field_b,UvData.XmlData{1}); |
---|
1898 | end |
---|
1899 | end |
---|
1900 | |
---|
1901 | % make movie until movie speed is set to 0 or STOP is activated |
---|
1902 | hima=findobj(handles.axes3,'Tag','ima');% %handles.axes3 =main plotting window (A GENERALISER) |
---|
1903 | set(handles.STOP,'Visible','on') |
---|
1904 | set(handles.speed,'Visible','on') |
---|
1905 | set(handles.speed_txt,'Visible','on') |
---|
1906 | while get(handles.speed,'Value')~=0 && isequal(get(handles.movie_pair,'BusyAction'),'queue')%isequal(get(handles.run0,'BusyAction'),'queue'); % enable STOP command |
---|
1907 | % read and plot the series of images in non erase mode |
---|
1908 | set(hima,'CData',Field_b.A); |
---|
1909 | pause(1.02-get(handles.speed,'Value'));% wait for next image |
---|
1910 | set(hima,'CData',Field_a.A); |
---|
1911 | pause(1.02-get(handles.speed,'Value'));% wait for next image |
---|
1912 | end |
---|
1913 | set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red |
---|
1914 | set(handles.movie_pair,'Value',0) |
---|
1915 | |
---|
1916 | %------------------------------------------------------------------------ |
---|
1917 | % --- Executes on button press in run0. |
---|
1918 | function run0_Callback(hObject, eventdata, handles) |
---|
1919 | %------------------------------------------------------------------------ |
---|
1920 | set(handles.run0,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
1921 | drawnow |
---|
1922 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
1923 | filename=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
1924 | filename_1=[];%default |
---|
1925 | if get(handles.SubField,'Value') |
---|
1926 | [RootPath_1,SubDir_1,RootFile_1,FileIndices_1,FileExt_1]=read_file_boxes_1(handles); |
---|
1927 | filename_1=[fullfile(RootPath_1,SubDir_1,RootFile_1) FileIndices_1 FileExt_1]; |
---|
1928 | end |
---|
1929 | num_i1=stra2num(get(handles.i1,'String')); |
---|
1930 | num_i2=stra2num(get(handles.i2,'String')); |
---|
1931 | num_j1=stra2num(get(handles.j1,'String')); |
---|
1932 | num_j2=stra2num(get(handles.j2,'String')); |
---|
1933 | |
---|
1934 | errormsg=refresh_field(handles,filename,filename_1,num_i1,num_i2,num_j1,num_j2); |
---|
1935 | |
---|
1936 | if ~isempty(errormsg) |
---|
1937 | msgbox_uvmat('ERROR',errormsg); |
---|
1938 | else |
---|
1939 | set(handles.i1,'BackgroundColor',[1 1 1]) |
---|
1940 | set(handles.i2,'BackgroundColor',[1 1 1]) |
---|
1941 | set(handles.j1,'BackgroundColor',[1 1 1]) |
---|
1942 | set(handles.j2,'BackgroundColor',[1 1 1]) |
---|
1943 | set(handles.FileIndex,'BackgroundColor',[1 1 1]) |
---|
1944 | set(handles.FileIndex_1,'BackgroundColor',[1 1 1]) |
---|
1945 | end |
---|
1946 | set(handles.run0,'BackgroundColor',[1 0 0]) |
---|
1947 | |
---|
1948 | |
---|
1949 | %------------------------------------------------------------------------ |
---|
1950 | % --- read the input files and refresh all the plots, including projection. |
---|
1951 | % OUTPUT: |
---|
1952 | % errormsg: error message char string =[] by default |
---|
1953 | % INPUT: |
---|
1954 | % filename: first input file (=[] in the absence of input file) |
---|
1955 | % filename_1: second input file (=[] in the asbsenc of secodn input file) |
---|
1956 | % num_i1,num_i2,num_j1,num_j2; frame indices |
---|
1957 | % Field: structure describing an optional input field (then replace the input file) |
---|
1958 | |
---|
1959 | function errormsg=refresh_field(handles,filename,filename_1,num_i1,num_i2,num_j1,num_j2,Field) |
---|
1960 | %------------------------------------------------------------------------ |
---|
1961 | |
---|
1962 | %% initialisation |
---|
1963 | abstime=[]; |
---|
1964 | abstime_1=[]; |
---|
1965 | dt=[]; |
---|
1966 | if ~exist('Field','var') |
---|
1967 | Field={}; |
---|
1968 | end |
---|
1969 | UvData=get(handles.uvmat,'UserData'); |
---|
1970 | if ishandle(handles.UVMAT_title) %remove title panel on uvmat |
---|
1971 | delete(handles.UVMAT_title) |
---|
1972 | end |
---|
1973 | |
---|
1974 | %% determine the main input file information for action |
---|
1975 | FileType=[];%default |
---|
1976 | if ~exist(filename,'file') |
---|
1977 | errormsg=['input file ' filename ' does not exist']; |
---|
1978 | return |
---|
1979 | end |
---|
1980 | NomType=get(handles.NomType,'String'); |
---|
1981 | % NomType=get(handles.FileIndex,'UserData'); |
---|
1982 | %update the z position index |
---|
1983 | nbslice_str=get(handles.nb_slice,'String'); |
---|
1984 | if isequal(nbslice_str,'volume')%NOT USED |
---|
1985 | z_index=num_j1; |
---|
1986 | set(handles.z_index,'String',num2str(z_index)) |
---|
1987 | else |
---|
1988 | nbslice=str2num(nbslice_str); |
---|
1989 | z_index=mod(num_i1-1,nbslice)+1; |
---|
1990 | set(handles.z_index,'String',num2str(z_index)) |
---|
1991 | end |
---|
1992 | % refresh menu for save_mask if relevant |
---|
1993 | masknumber=get(handles.masklevel,'String'); |
---|
1994 | if length(masknumber)>=z_index |
---|
1995 | set(handles.masklevel,'Value',z_index) |
---|
1996 | end |
---|
1997 | |
---|
1998 | %% read the first input field if a filename has been introduced |
---|
1999 | if ~isempty(filename) |
---|
2000 | ObjectName=filename; |
---|
2001 | FieldName='';%default |
---|
2002 | VelType='';%default |
---|
2003 | % FileType=UvData.FileType{1}; |
---|
2004 | switch UvData.FileType{1} |
---|
2005 | case {'civx','civdata','netcdf'}; |
---|
2006 | list_fields=get(handles.Fields,'String');% list menu fields |
---|
2007 | % index_fields=get(handles.Fields,'Value');% selected string index |
---|
2008 | FieldName= list_fields{get(handles.Fields,'Value')}; % selected field |
---|
2009 | if ~strcmp(FieldName,'get_field...') |
---|
2010 | if get(handles.FixVelType,'Value') |
---|
2011 | VelTypeList=get(handles.VelType,'String'); |
---|
2012 | VelType=VelTypeList{get(handles.VelType,'Value')}; |
---|
2013 | end |
---|
2014 | end |
---|
2015 | if strcmp(FieldName,'velocity') |
---|
2016 | list_code=get(handles.ColorCode,'String');% list menu fields |
---|
2017 | index_code=get(handles.ColorCode,'Value');% selected string index |
---|
2018 | if ~strcmp(list_code{index_code},'black') && ~strcmp(list_code{index_code},'white') |
---|
2019 | list_code=get(handles.ColorScalar,'String');% list menu fields |
---|
2020 | index_code=get(handles.ColorScalar,'Value');% selected string index |
---|
2021 | ParamIn.ColorVar= list_code{index_code}; % selected field |
---|
2022 | end |
---|
2023 | end |
---|
2024 | case 'video' |
---|
2025 | ObjectName=UvData.MovieObject{1}; |
---|
2026 | case 'vol' %TODO: update |
---|
2027 | if isfield(UvData.XmlData,'Npy') && isfield(UvData.XmlData,'Npx') |
---|
2028 | ParamIn.Npy=UvData.XmlData.Npy; |
---|
2029 | ParamIn.Npx=UvData.XmlData.Npx; |
---|
2030 | else |
---|
2031 | errormsg='Npx and Npy need to be defined in the xml file for volume images .vol'; |
---|
2032 | return |
---|
2033 | end |
---|
2034 | end |
---|
2035 | ParamIn.FieldName=FieldName; |
---|
2036 | ParamIn.VelType=VelType; |
---|
2037 | ParamIn.GUIName='get_field'; |
---|
2038 | [Field{1},ParamOut,errormsg] = read_field(ObjectName,UvData.FileType{1},ParamIn,num_i1); |
---|
2039 | if ~isempty(errormsg) |
---|
2040 | errormsg=['error in reading ' filename ': ' errormsg]; |
---|
2041 | return |
---|
2042 | end |
---|
2043 | if isfield(ParamOut,'Npx')&& isfield(ParamOut,'Npy') |
---|
2044 | set(handles.num_Npx,'String',num2str(ParamOut.Npx));% display image size on the interface |
---|
2045 | set(handles.num_Npy,'String',num2str(ParamOut.Npy)); |
---|
2046 | end |
---|
2047 | if isfield(ParamOut,'TimeIndex') |
---|
2048 | set(handles.i1,'String',num2str(ParamOut.TimeIndex)) |
---|
2049 | end |
---|
2050 | if isfield(ParamOut,'TimeValue') |
---|
2051 | Field{1}.Time=ParamOut.TimeValue; |
---|
2052 | end |
---|
2053 | end |
---|
2054 | |
---|
2055 | %% choose and read a second field filename_1 if defined |
---|
2056 | VelType_1=[];%default |
---|
2057 | FieldName_1=[]; |
---|
2058 | ParamOut_1=[]; |
---|
2059 | if ~isempty(filename_1) |
---|
2060 | if ~exist(filename_1,'file') |
---|
2061 | errormsg=['second file ' filename_1 ' does not exist']; |
---|
2062 | return |
---|
2063 | end |
---|
2064 | Name=filename_1; |
---|
2065 | switch UvData.FileType{2} |
---|
2066 | case {'civx','civdata','netcdf'}; |
---|
2067 | list_fields=get(handles.Fields_1,'String');% list menu fields |
---|
2068 | FieldName_1= list_fields{get(handles.Fields_1,'Value')}; % selected field |
---|
2069 | if ~strcmp(FieldName,'get_field...') |
---|
2070 | if get(handles.FixVelType,'Value') |
---|
2071 | VelTypeList=get(handles.VelType_1,'String'); |
---|
2072 | VelType_1=VelTypeList{get(handles.VelType_1,'Value')};% read the velocity type. |
---|
2073 | end |
---|
2074 | end |
---|
2075 | if strcmp(FieldName_1,'velocity')&& strcmp(get(handles.ColorCode,'Visible'),'on') |
---|
2076 | list_code=get(handles.ColorCode,'String');% list menu fields |
---|
2077 | index_code=get(handles.ColorCode,'Value');% selected string index |
---|
2078 | if ~strcmp(list_code{index_code},'black') && ~strcmp(list_code{index_code},'white') |
---|
2079 | list_code=get(handles.ColorScalar,'String');% list menu fields |
---|
2080 | index_code=get(handles.ColorScalar,'Value');% selected string index |
---|
2081 | ParamIn_1.ColorVar= list_code{index_code}; % selected field for vector color display |
---|
2082 | end |
---|
2083 | end |
---|
2084 | case 'video' |
---|
2085 | Name=UvData.MovieObject{2}; |
---|
2086 | case 'vol' %TODO: update |
---|
2087 | if isfield(UvData.XmlData,'Npy') && isfield(UvData.XmlData,'Npx') |
---|
2088 | ParamIn_1.Npy=UvData.XmlData.Npy; |
---|
2089 | ParamIn_1.Npx=UvData.XmlData.Npx; |
---|
2090 | else |
---|
2091 | errormsg='Npx and Npy need to be defined in the xml file for volume images .vol'; |
---|
2092 | return |
---|
2093 | end |
---|
2094 | end |
---|
2095 | NomType_1=get(handles.NomType_1,'String'); |
---|
2096 | test_keepdata_1=0;% test for keeping the previous stored data if the input files are unchanged |
---|
2097 | if ~isequal(NomType_1,'*')%in case of a series of files (not avi movie) |
---|
2098 | if isfield(UvData,'filename_1')%&& isfield(UvData,'VelType_1') && isfield(UvData,'FieldName_1') |
---|
2099 | test_keepdata_1= strcmp(filename_1,UvData.filename_1) ;%&& strcmp(FieldName_1,UvData.FieldName_1); |
---|
2100 | end |
---|
2101 | end |
---|
2102 | if test_keepdata_1 |
---|
2103 | Field{2}=UvData.Field_1;% keep the stored field |
---|
2104 | else |
---|
2105 | ParamIn_1.FieldName=FieldName_1; |
---|
2106 | ParamIn_1.VelType=VelType_1; |
---|
2107 | ParamIn_1.GUIName='get_field_1'; |
---|
2108 | [Field{2},ParamOut_1,errormsg] = read_field(Name,UvData.FileType{2},ParamIn_1,num_i1); |
---|
2109 | if ~isempty(errormsg) |
---|
2110 | errormsg=['error in reading ' FieldName_1 ' in ' filename_1 ': ' errormsg]; |
---|
2111 | return |
---|
2112 | end |
---|
2113 | % UvData.Field_1=Field{2}; %store the second field for possible use at next RUN |
---|
2114 | end |
---|
2115 | end |
---|
2116 | |
---|
2117 | %% update uvmat interface |
---|
2118 | if isfield(ParamOut,'Npx') |
---|
2119 | set(handles.num_Npx,'String',num2str(ParamOut.Npx));% display image size on the interface |
---|
2120 | set(handles.num_Npy,'String',num2str(ParamOut.Npy)); |
---|
2121 | elseif isfield(ParamOut_1,'Npx') |
---|
2122 | set(handles.num_Npx,'String',num2str(ParamOut_1.Npx));% display image size on the interface |
---|
2123 | set(handles.num_Npy,'String',num2str(ParamOut_1.Npy)); |
---|
2124 | end |
---|
2125 | |
---|
2126 | %% update the display menu for the first velocity type (first menuline) |
---|
2127 | test_veltype=0; |
---|
2128 | % if ~isequal(FileType,'netcdf')|| isequal(FieldName,'get_field...') |
---|
2129 | if (strcmp(UvData.FileType{1},'civx')||strcmp(UvData.FileType{1},'civdata'))&& ~strcmp(FieldName,'get_field...') |
---|
2130 | test_veltype=1; |
---|
2131 | set(handles.VelType,'Visible','on') |
---|
2132 | set(handles.VelType_1,'Visible','on') |
---|
2133 | set(handles.FixVelType,'Visible','on') |
---|
2134 | menu=set_veltype_display(ParamOut.CivStage,UvData.FileType{1}); |
---|
2135 | index_menu=strcmp(ParamOut.VelType,menu);%look for VelType in the menu |
---|
2136 | index_val=find(index_menu,1); |
---|
2137 | if isempty(index_val) |
---|
2138 | index_val=1; |
---|
2139 | end |
---|
2140 | set(handles.VelType,'Value',index_val) |
---|
2141 | if ~get(handles.SubField,'value') |
---|
2142 | set(handles.VelType,'String',menu) |
---|
2143 | set(handles.VelType_1,'Value',1) |
---|
2144 | set(handles.VelType_1,'String',[{''};menu]) |
---|
2145 | end |
---|
2146 | else |
---|
2147 | set(handles.VelType,'Visible','off') |
---|
2148 | end |
---|
2149 | % display the Fields menu from the input file and pick the selected one: |
---|
2150 | field_index=strcmp(ParamOut.FieldName,ParamOut.FieldList); |
---|
2151 | set(handles.Fields,'String',ParamOut.FieldList); %update the field menu |
---|
2152 | set(handles.Fields,'Value',find(field_index,1)) |
---|
2153 | |
---|
2154 | %% update the display menu for the second velocity type (second menuline) |
---|
2155 | |
---|
2156 | test_veltype_1=0; |
---|
2157 | if isempty(filename_1) |
---|
2158 | set(handles.Fields_1,'Value',1); %update the field menu |
---|
2159 | set(handles.Fields_1,'String',[{''};ParamOut.FieldList]); %update the field menu |
---|
2160 | elseif ~test_keepdata_1 |
---|
2161 | if (~strcmp(UvData.FileType{2},'netcdf')&&~strcmp(UvData.FileType{2},'civdata')&&~strcmp(UvData.FileType{2},'civx'))|| isequal(FieldName_1,'get_field...') |
---|
2162 | set(handles.VelType_1,'Visible','off') |
---|
2163 | else |
---|
2164 | test_veltype_1=1; |
---|
2165 | set(handles.VelType_1,'Visible','on') |
---|
2166 | % if ~get(handles.FixVelType,'Value') |
---|
2167 | menu=set_veltype_display(ParamOut_1.CivStage); |
---|
2168 | index_menu=strcmp(ParamOut_1.VelType,menu); |
---|
2169 | set(handles.VelType_1,'Value',1+find(index_menu,1)) |
---|
2170 | set(handles.VelType_1,'String',[{''};menu]) |
---|
2171 | % end |
---|
2172 | end |
---|
2173 | % update the second field menu: the same quantity |
---|
2174 | set(handles.Fields_1,'String',[{''};ParamOut_1.FieldList]); %update the field menu |
---|
2175 | % display the Fields menu from the input file and pick the selected one: |
---|
2176 | field_index=strcmp(ParamOut_1.FieldName,ParamOut_1.FieldList); |
---|
2177 | set(handles.Fields_1,'Value',find(field_index,1)+1) |
---|
2178 | % % synchronise with the first menu if the first selection is not 'velocity' |
---|
2179 | % if ~strcmp(ParamOut.FieldName,'velocity') |
---|
2180 | % field_index=strcmp(ParamOut_1.FieldName,ParamOut_1.FieldList); |
---|
2181 | % set(handles.Fields_1,'Value',field_index); %update the field menu |
---|
2182 | % ParamOut_1.FieldName=ParamOut.FieldName; |
---|
2183 | % set(handles.Fields_1,'String',ParamOut_1.FieldList) |
---|
2184 | % end |
---|
2185 | end |
---|
2186 | if test_veltype||test_veltype_1 |
---|
2187 | set(handles.FixVelType,'Visible','on') |
---|
2188 | else |
---|
2189 | set(handles.FixVelType,'Visible','off') |
---|
2190 | end |
---|
2191 | |
---|
2192 | % field_index=strcmp(ParamOut_1.FieldName,ParamOut_1.FieldList); |
---|
2193 | % set(handles.Fields,'String',ParamOut.FieldList); %update the field menu |
---|
2194 | % set(handles.Fields,'Value',find(field_index,1)) |
---|
2195 | |
---|
2196 | %% introduce w as background image by default for a new series (only for nbdim=2) |
---|
2197 | if ~isfield(UvData,'NewSeries') |
---|
2198 | UvData.NewSeries=1; |
---|
2199 | end |
---|
2200 | %put W as background image by default if NbDim=2: |
---|
2201 | if UvData.NewSeries && isequal(get(handles.SubField,'Value'),0) && isfield(Field{1},'W') && ~isempty(Field{1}.W) && ~isequal(Field{1}.NbDim,3); |
---|
2202 | set(handles.SubField,'Value',1); |
---|
2203 | set(handles.RootPath_1,'String','"') |
---|
2204 | set(handles.RootFile_1,'String','"') |
---|
2205 | set(handles.SubDir_1,'String','"'); |
---|
2206 | indices=fullfile_uvmat('','','','',NomType,num_i1,num_i2,num_j1,num_j2); |
---|
2207 | set(handles.FileIndex_1,'String',indices) |
---|
2208 | set(handles.FileExt_1,'String','"'); |
---|
2209 | set(handles.Fields_1,'Visible','on'); |
---|
2210 | set(handles.Fields_1,'Visible','on'); |
---|
2211 | set(handles.RootPath_1,'Visible','on') |
---|
2212 | set(handles.RootFile_1,'Visible','on') |
---|
2213 | set(handles.SubDir_1,'Visible','on'); |
---|
2214 | set(handles.FileIndex_1,'Visible','on'); |
---|
2215 | set(handles.FileExt_1,'Visible','on'); |
---|
2216 | set(handles.Fields_1,'Visible','on'); |
---|
2217 | Field{1}.AName='w'; |
---|
2218 | end |
---|
2219 | |
---|
2220 | %% store the current open names, fields and vel types in uvmat interface |
---|
2221 | UvData.filename_1=filename_1; |
---|
2222 | |
---|
2223 | %% apply coordinate transform or other user fct |
---|
2224 | XmlData=[];%default |
---|
2225 | XmlData_1=[];%default |
---|
2226 | if isfield(UvData,'XmlData')%use geometry calib recorded from the ImaDoc xml file as first priority |
---|
2227 | XmlData=UvData.XmlData{1}; |
---|
2228 | if numel(UvData.XmlData)==2 |
---|
2229 | XmlData_1=UvData.XmlData{2}; |
---|
2230 | end |
---|
2231 | end |
---|
2232 | choice_value=get(handles.transform_fct,'Value'); |
---|
2233 | transform_list=get(handles.transform_fct,'UserData'); |
---|
2234 | transform=transform_list{choice_value};%selected function handles |
---|
2235 | % z index |
---|
2236 | if ~isempty(filename) |
---|
2237 | Field{1}.ZIndex=z_index; |
---|
2238 | end |
---|
2239 | if ~isempty(transform) |
---|
2240 | if length(Field)>=2 |
---|
2241 | Field{2}.ZIndex=z_index; |
---|
2242 | [Field{1},Field{2}]=transform(Field{1},XmlData,Field{2},XmlData_1); |
---|
2243 | if isempty(Field{2}) |
---|
2244 | Field(2)=[]; |
---|
2245 | end |
---|
2246 | else |
---|
2247 | Field{1}=transform(Field{1},XmlData); |
---|
2248 | end |
---|
2249 | %% update tps in phys coordinates if needed |
---|
2250 | if (strcmp(VelType,'filter1')||strcmp(VelType,'filter2'))&& strcmp(UvData.FileType{1},'civdata')&&isfield(Field{1},'U')&& isfield(Field{1},'V') |
---|
2251 | Field{1}.X=Field{1}.X(Field{1}.FF==0); |
---|
2252 | Field{1}.Y=Field{1}.Y(Field{1}.FF==0); |
---|
2253 | Field{1}.U=Field{1}.U(Field{1}.FF==0); |
---|
2254 | Field{1}.V=Field{1}.V(Field{1}.FF==0); |
---|
2255 | [Field{1}.SubRange,Field{1}.NbSites,Field{1}.Coord_tps,Field{1}.U_tps,Field{1}.V_tps]=filter_tps([Field{1}.X Field{1}.Y],Field{1}.U,Field{1}.V,[],Field{1}.Patch1_SubDomain,0); |
---|
2256 | end |
---|
2257 | if numel(Field)==2 && ~test_keepdata_1 && isequal(UvData.FileType{2}(1:3),'civ') && ~isequal(ParamOut_1.FieldName,'get_field...')%&&~isempty(FieldName_1) |
---|
2258 | %update tps in phys coordinates if needed |
---|
2259 | if (strcmp(VelType_1,'filter1')||strcmp(VelType_1,'filter2'))&& strcmp(UvData.FileType{2},'civdata')&&isfield(Field{2},'U')&& isfield(Field{2},'V') |
---|
2260 | Field{2}.X=Field{2}.X(Field{2}.FF==0); |
---|
2261 | Field{2}.Y=Field{1}.Y(Field{2}.FF==0); |
---|
2262 | Field{2}.U=Field{1}.U(Field{2}.FF==0); |
---|
2263 | Field{2}.V=Field{1}.V(Field{2}.FF==0); |
---|
2264 | [Field{2}.SubRange,Field{2}.NbSites,Field{2}.Coord_tps,Field{2}.U_tps,Field{2}.V_tps]=filter_tps([Field{2}.X Field{2}.Y],Field{2}.U,Field{2}.V,[],1500,0); |
---|
2265 | end |
---|
2266 | end |
---|
2267 | end |
---|
2268 | |
---|
2269 | %% calculate scalar |
---|
2270 | if (strcmp(UvData.FileType{1},'civdata')||strcmp(UvData.FileType{1},'civx'))%&&~strcmp(ParamOut.FieldName,'velocity')&& ~strcmp(ParamOut.FieldName,'get_field...');% ~isequal(ParamOut.CivStage,0)%&&~isempty(FieldName)% |
---|
2271 | Field{1}=calc_field([{ParamOut.FieldName} {ParamOut.ColorVar}],Field{1}); |
---|
2272 | end |
---|
2273 | if numel(Field)==2 && ~test_keepdata_1 && (strcmp(UvData.FileType{2},'civdata')||strcmp(UvData.FileType{2},'civx')) &&~strcmp(ParamOut_1.FieldName,'velocity') && ~strcmp(ParamOut_1.FieldName,'get_field...') |
---|
2274 | Field{2}=calc_field([{ParamOut_1.FieldName} {ParamOut_1.ColorVar}],Field{2}); |
---|
2275 | end |
---|
2276 | |
---|
2277 | %% combine the two input fields (e.g. substract velocity fields) |
---|
2278 | %Field{1}.FieldList=[{ParamOut.FieldName} {ParamOut.ColorVar}]; |
---|
2279 | if numel(Field)==2 |
---|
2280 | % Field{2}.FieldList=[{ParamOut_1.FieldName} {ParamOut_1.ColorVar}]; |
---|
2281 | [UvData.Field,errormsg]=sub_field(Field{1},Field{2}); |
---|
2282 | UvData.Field_1=Field{2}; %store the second field for possible use at next RUN |
---|
2283 | else |
---|
2284 | UvData.Field=Field{1}; |
---|
2285 | end |
---|
2286 | if ~isempty(errormsg) |
---|
2287 | errormsg=['error in uvmat/refresh_field/sub_field:' errormsg]; |
---|
2288 | return |
---|
2289 | end |
---|
2290 | %UvData.Field.FieldList={FieldName}; % TODO: to generalise, used for proj_field with tps interpolation |
---|
2291 | |
---|
2292 | |
---|
2293 | %% get bounds and mesh (needed for mouse action and to open set_object) |
---|
2294 | test_x=0; |
---|
2295 | test_z=0;% test for unstructured z coordinate |
---|
2296 | [errormsg,ListDimName,DimValue,VarDimIndex]=check_field_structure(UvData.Field); |
---|
2297 | if ~isempty(errormsg) |
---|
2298 | errormsg=['error in uvmat/refresh_field/check_field_structure: ' errormsg]; |
---|
2299 | return |
---|
2300 | end |
---|
2301 | [CellVarIndex,NbDim,VarType,errormsg]=find_field_indices(UvData.Field); |
---|
2302 | if ~isempty(errormsg) |
---|
2303 | errormsg=['error in uvmat/refresh_field/find_field_indices: ' errormsg]; |
---|
2304 | return |
---|
2305 | end |
---|
2306 | [NbDim,imax]=max(NbDim); |
---|
2307 | if isfield(UvData.Field,'NbDim') |
---|
2308 | NbDim=UvData.Field.NbDim;% deal with plane fields containing z coordinates |
---|
2309 | end |
---|
2310 | if ~isempty(VarType{imax}.coord_x) && ~isempty(VarType{imax}.coord_y) %unstructured coordinates |
---|
2311 | XName=UvData.Field.ListVarName{VarType{imax}.coord_x}; |
---|
2312 | YName=UvData.Field.ListVarName{VarType{imax}.coord_y}; |
---|
2313 | eval(['nbvec=length(UvData.Field.' XName ');'])%nbre of measurement points (e.g. vectors) |
---|
2314 | test_x=1;%test for unstructured coordinates |
---|
2315 | if ~isempty(VarType{imax}.coord_z) |
---|
2316 | ZName=UvData.Field.ListVarName{VarType{imax}.coord_z}; |
---|
2317 | else |
---|
2318 | NbDim=2; |
---|
2319 | end |
---|
2320 | elseif numel(VarType)>=imax && numel(VarType{imax}.coord)>=NbDim && VarType{imax}.coord(NbDim)>0 %structured coordinate |
---|
2321 | XName=UvData.Field.ListVarName{VarType{imax}.coord(NbDim)}; |
---|
2322 | if NbDim>1 |
---|
2323 | YName=UvData.Field.ListVarName{VarType{imax}.coord(NbDim-1)}; %structured coordinates |
---|
2324 | end |
---|
2325 | end |
---|
2326 | if NbDim==3 |
---|
2327 | if ~test_x |
---|
2328 | ZName=UvData.Field.ListVarName{VarType{imax}.coord(1)};%structured coordinates in 3D |
---|
2329 | end |
---|
2330 | eval(['ZMax=max(UvData.Field.' ZName ');']) |
---|
2331 | eval(['ZMin=min(UvData.Field.' ZName ');']) |
---|
2332 | UvData.Field.ZMax=ZMax; |
---|
2333 | UvData.Field.ZMin=ZMin; |
---|
2334 | test_z=1; |
---|
2335 | if isequal(ZMin,ZMax)%no z dependency |
---|
2336 | NbDim=2; |
---|
2337 | test_z=0; |
---|
2338 | end |
---|
2339 | end |
---|
2340 | if exist('XName','var') |
---|
2341 | eval(['XMax=max(max(UvData.Field.' XName '));']) |
---|
2342 | eval(['XMin=min(min(UvData.Field.' XName '));']) |
---|
2343 | UvData.Field.NbDim=NbDim; |
---|
2344 | UvData.Field.XMax=XMax; |
---|
2345 | UvData.Field.XMin=XMin; |
---|
2346 | if NbDim >1 |
---|
2347 | eval(['YMax=max(max(UvData.Field.' YName '));']) |
---|
2348 | eval(['YMin=min(min(UvData.Field.' YName '));']) |
---|
2349 | UvData.Field.YMax=YMax; |
---|
2350 | UvData.Field.YMin=YMin; |
---|
2351 | end |
---|
2352 | eval(['nbvec=length(UvData.Field.' XName ');']) |
---|
2353 | if test_x %unstructured coordinates |
---|
2354 | if test_z |
---|
2355 | UvData.Field.Mesh=((XMax-XMin)*(YMax-YMin)*(ZMax-ZMin))/nbvec;% volume per vector |
---|
2356 | UvData.Field.Mesh=(UvData.Field.Mesh)^(1/3); |
---|
2357 | else |
---|
2358 | UvData.Field.Mesh=sqrt((XMax-XMin)*(YMax-YMin)/nbvec);%2D |
---|
2359 | end |
---|
2360 | else |
---|
2361 | VarIndex=CellVarIndex{imax}; % list of variable indices |
---|
2362 | DimIndex=VarDimIndex{VarIndex(1)}; %list of dim indices for the variable |
---|
2363 | nbpoints_x=DimValue(DimIndex(NbDim)); |
---|
2364 | DX=(XMax-XMin)/(nbpoints_x-1); |
---|
2365 | if NbDim >1 |
---|
2366 | nbpoints_y=DimValue(DimIndex(NbDim-1)); |
---|
2367 | DY=(YMax-YMin)/(nbpoints_y-1); |
---|
2368 | end |
---|
2369 | if NbDim==3 |
---|
2370 | nbpoints_z=DimValue(DimIndex(1)); |
---|
2371 | DZ=(ZMax-ZMin)/(nbpoints_z-1); |
---|
2372 | UvData.Field.Mesh=(DX*DY*DZ)^(1/3); |
---|
2373 | UvData.Field.ZMax=ZMax; |
---|
2374 | UvData.Field.ZMin=ZMin; |
---|
2375 | else |
---|
2376 | UvData.Field.Mesh=DX;%sqrt(DX*DY); |
---|
2377 | end |
---|
2378 | end |
---|
2379 | % adjust the mesh to a value 1, 2 , 5 *10^n |
---|
2380 | ord=10^(floor(log10(UvData.Field.Mesh)));%order of magnitude |
---|
2381 | if UvData.Field.Mesh/ord>=5 |
---|
2382 | UvData.Field.Mesh=5*ord; |
---|
2383 | elseif UvData.Field.Mesh/ord>=2 |
---|
2384 | UvData.Field.Mesh=2*ord; |
---|
2385 | else |
---|
2386 | UvData.Field.Mesh=ord; |
---|
2387 | end |
---|
2388 | end |
---|
2389 | |
---|
2390 | %% 3D case (menuvolume) |
---|
2391 | if NbDim==3% && UvData.NewSeries |
---|
2392 | test_set_object=1; |
---|
2393 | hset_object=findobj(allchild(0),'tag','set_object');% look for the set_object GUI |
---|
2394 | ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider |
---|
2395 | ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider |
---|
2396 | if ~isempty(hset_object) %if set_object is detected |
---|
2397 | delete(hset_object);% delete the GUI set_object if it does not fit |
---|
2398 | end |
---|
2399 | if test_set_object% reinitiate the GUI set_object |
---|
2400 | delete_object(1);% delete the current projection object in the list UvData.Object, delete its graphic representations and update the list displayed in handles.ListObject and 2 |
---|
2401 | UvData.Object{1}.Type='plane';%main plotting plane |
---|
2402 | UvData.Object{1}.ProjMode='projection';%main plotting plane |
---|
2403 | UvData.Object{1}.DisplayHandle_uvmat=[]; %plane not visible in uvmat |
---|
2404 | UvData.Object{1}.NbDim=NbDim;%test for 3D objects |
---|
2405 | UvData.Object{1}.RangeZ=UvData.Field.Mesh;%main plotting plane |
---|
2406 | UvData.Object{1}.Coord(1,3)=(UvData.Field.ZMin+UvData.Field.ZMax)/2;%section at a middle plane chosen |
---|
2407 | UvData.Object{1}.Angle=[0 0 0]; |
---|
2408 | UvData.Object{1}.HandlesDisplay=plot(0,0,'Tag','proj_object');% A REVOIR |
---|
2409 | UvData.Object{1}.Name='1-PLANE'; |
---|
2410 | UvData.Object{1}.enable_plot=1; |
---|
2411 | set_object(UvData.Object{1},handles,ZBounds); |
---|
2412 | set(handles.ListObject,'Value',1); |
---|
2413 | set(handles.ListObject,'String',{'1-PLANE'}); |
---|
2414 | set(handles.edit_object,'Value',1)% put the plane in edit mode to enable the z cursor |
---|
2415 | edit_object_Callback([],[], handles) |
---|
2416 | end |
---|
2417 | %multilevel case (single menuplane in a 3D space) |
---|
2418 | elseif isfield(UvData,'Z') |
---|
2419 | if isfield(UvData,'CoordType')&& isequal(UvData.CoordType,'phys') && isfield(UvData,'XmlData') |
---|
2420 | XmlData=UvData.XmlData{1}; |
---|
2421 | if isfield(XmlData,'PlanePos') |
---|
2422 | UvData.Object{1}.Coord=XmlData.PlanePos(UvData.ZIndex,:); |
---|
2423 | end |
---|
2424 | if isfield(XmlData,'PlaneAngle') |
---|
2425 | siz=size(XmlData.PlaneAngle); |
---|
2426 | indangle=min(siz(1),UvData.ZIndex);%take first angle if a single angle is defined (translating scanning) |
---|
2427 | UvData.Object{1}.PlaneAngle=XmlData.PlaneAngle(indangle,:); |
---|
2428 | end |
---|
2429 | elseif isfield(UvData,'ZIndex') |
---|
2430 | UvData.Object{1}.ZObject=UvData.ZIndex; |
---|
2431 | end |
---|
2432 | else |
---|
2433 | % % create a default projection |
---|
2434 | % UvData.Object{1}.ProjMode='projection';%main plotting plane |
---|
2435 | % UvData.Object{1}.DisplayHandle_uvmat=[]; %plane not visible in uvmat |
---|
2436 | % set(handles.ListObject,'Value',1); |
---|
2437 | % list_object=get(handles.ListObject,'String'); |
---|
2438 | % if isempty(list_object) |
---|
2439 | % list_object={''}; |
---|
2440 | % elseif ~isempty(list_object{1}) |
---|
2441 | % list_object=[{''};list_object]; |
---|
2442 | % end |
---|
2443 | % set(handles.ListObject,'String',list_object); |
---|
2444 | % % set(handles.list_object_2,'String',list_object); |
---|
2445 | end |
---|
2446 | testnewseries=UvData.NewSeries; |
---|
2447 | UvData.NewSeries=0;% put to 0 the test for a new field series (set by RootPath_callback) |
---|
2448 | set(handles.uvmat,'UserData',UvData) |
---|
2449 | |
---|
2450 | %% reset the min and max of scalar if only the mask is displayed(TODO: check the need) |
---|
2451 | % if isfield(UvData,'Mask')&& ~isfield(UvData,'A') |
---|
2452 | % set(handles.num_MinA,'String','0') |
---|
2453 | % set(handles.num_MaxA,'String','255') |
---|
2454 | % end |
---|
2455 | |
---|
2456 | %% Plot the projections on the selected projection objects |
---|
2457 | % main projection object (uvmat display) |
---|
2458 | list_object=get(handles.ListObject_1,'String'); |
---|
2459 | if isequal(list_object,{''})%refresh list of objects if the menu is empty |
---|
2460 | UvData.Object={[]}; |
---|
2461 | set(handles.ListObject_1,'Value',1) |
---|
2462 | end |
---|
2463 | IndexObj(1)=get(handles.ListObject_1,'Value');%selected projection object for main view |
---|
2464 | if IndexObj(1)> numel(UvData.Object) |
---|
2465 | IndexObj(1)=1;%select the first object if the selected one does not exist |
---|
2466 | set(handles.ListObject_1,'Value',1) |
---|
2467 | end |
---|
2468 | IndexObj(2)=get(handles.ListObject,'Value');%selected projection object for main view |
---|
2469 | if isequal(IndexObj(2),IndexObj(1)) |
---|
2470 | IndexObj(2)=[]; |
---|
2471 | end |
---|
2472 | plot_handles{1}=handles; |
---|
2473 | if isfield(UvData,'plotaxes')%case of movies |
---|
2474 | haxes(1)=UvData.plotaxes; |
---|
2475 | else |
---|
2476 | haxes(1)=handles.axes3; |
---|
2477 | end |
---|
2478 | %PlotParam{1}=read_plot_param(handles);%read plotting parameters on the uvmat interfac |
---|
2479 | PlotParam{1}=read_GUI(handles.uvmat); |
---|
2480 | %default settings if vectors not visible (should not be needed) |
---|
2481 | if ~isfield(PlotParam{1},'Vectors') |
---|
2482 | PlotParam{1}.Vectors.MaxVec=1; |
---|
2483 | PlotParam{1}.Vectors.MinVec=0; |
---|
2484 | PlotParam{1}.Vectors.CheckFixVecColor=1; |
---|
2485 | PlotParam{1}.Vectors.ColCode1=0.33; |
---|
2486 | PlotParam{1}.Vectors.ColCode2=0.66; |
---|
2487 | PlotParam{1}.Vectors.ColorScalar={'ima_cor'}; |
---|
2488 | PlotParam{1}.Vectors.ColorCode= {'rgb'}; |
---|
2489 | end |
---|
2490 | %keeplim(1)=get(handles.CheckFixLimits,'Value');% test for fixed graph limits |
---|
2491 | PosColorbar{1}=UvData.OpenParam.PosColorbar;%prescribe the colorbar position on the uvmat interface |
---|
2492 | |
---|
2493 | % second projection object (view_field display) |
---|
2494 | if length( IndexObj)>=2 |
---|
2495 | view_field_handle=findobj(allchild(0),'tag','view_field');%handles of the view_field GUI |
---|
2496 | if ~isempty(view_field_handle) |
---|
2497 | plot_handles{2}=guidata(view_field_handle); |
---|
2498 | haxes(2)=plot_handles{2}.axes3; |
---|
2499 | PlotParam{2}=read_GUI(handles.uvmat);%read plotting parameters on the uvmat interface |
---|
2500 | PosColorbar{2}='*'; %TODO: deal with colorbar position on view_field |
---|
2501 | end |
---|
2502 | end |
---|
2503 | |
---|
2504 | %% loop on the projection objects: one or two |
---|
2505 | for imap=1:numel(IndexObj) |
---|
2506 | iobj=IndexObj(imap); |
---|
2507 | % if imap==2 || check_proj==0 % field not yet projected) && ~isfield(UvData.Object{iobj},'Type')% case with no projection (only for the first empty object) |
---|
2508 | % % [ObjectData,errormsg]=calc_field(UvData.Field.FieldList,UvData.Field); |
---|
2509 | % % else |
---|
2510 | [ObjectData,errormsg]=proj_field(UvData.Field,UvData.Object{iobj});% project field on the object |
---|
2511 | % end |
---|
2512 | if ~isempty(errormsg) |
---|
2513 | return |
---|
2514 | end |
---|
2515 | % if testnewseries && isfield(ObjectData,'CoordUnit')&& isfield(PlotParam{imap},'Coordinates') |
---|
2516 | % PlotParam{imap}.Coordinates=rmfield(PlotParam{imap}.Coordinates,'CheckFixEqual'); %set FixEqual to depend on the field (=1 if Data.CoordUnit=1 in plot_field) |
---|
2517 | % end |
---|
2518 | if testnewseries && isfield(ObjectData,'CoordUnit') |
---|
2519 | PlotParam{imap}.Coordinates.CheckFixEqual=1; |
---|
2520 | end |
---|
2521 | %use of mask (TODO: check) |
---|
2522 | if isfield(ObjectData,'NbDim') && isequal(ObjectData.NbDim,2) && isfield(ObjectData,'Mask') && isfield(ObjectData,'A') |
---|
2523 | flag_mask=double(ObjectData.Mask>200);%=0 for masked regions |
---|
2524 | AX=ObjectData.AX;%x coordiantes for the scalar field |
---|
2525 | AY=ObjectData.AY;%y coordinates for the scalar field |
---|
2526 | MaskX=ObjectData.MaskX;%x coordiantes for the mask |
---|
2527 | MaskY=ObjectData.MaskY;%y coordiantes for the mask |
---|
2528 | if ~isequal(MaskX,AX)||~isequal(MaskY,AY) |
---|
2529 | nxy=size(flag_mask); |
---|
2530 | sizpx=(ObjectData.MaskX(end)-ObjectData.MaskX(1))/(nxy(2)-1);%size of a mask pixel |
---|
2531 | sizpy=(ObjectData.MaskY(1)-ObjectData.MaskY(end))/(nxy(1)-1); |
---|
2532 | x_mask=ObjectData.MaskX(1):sizpx:ObjectData.MaskX(end); % pixel x coordinates for image display |
---|
2533 | y_mask=ObjectData.MaskY(1):-sizpy:ObjectData.MaskY(end);% pixel x coordinates for image display |
---|
2534 | %project on the positions of the scalar |
---|
2535 | npxy=size(ObjectData.A); |
---|
2536 | dxy(1)=(ObjectData.AY(end)-ObjectData.AY(1))/(npxy(1)-1);%grid mesh in y |
---|
2537 | dxy(2)=(ObjectData.AX(end)-ObjectData.AX(1))/(npxy(2)-1);%grid mesh in x |
---|
2538 | xi=ObjectData.AX(1):dxy(2):ObjectData.AX(end); |
---|
2539 | yi=ObjectData.AY(1):dxy(1):ObjectData.AY(end); |
---|
2540 | [XI,YI]=meshgrid(xi,yi);% creates the matrix of regular coordinates |
---|
2541 | flag_mask = interp2(x_mask,y_mask,flag_mask,XI,YI); |
---|
2542 | end |
---|
2543 | AClass=class(ObjectData.A); |
---|
2544 | ObjectData.A=flag_mask.*double(ObjectData.A); |
---|
2545 | ObjectData.A=feval(AClass,ObjectData.A); |
---|
2546 | ind_off=[]; |
---|
2547 | if isfield(ObjectData,'ListVarName') |
---|
2548 | for ilist=1:length(ObjectData.ListVarName) |
---|
2549 | if isequal(ObjectData.ListVarName{ilist},'Mask')||isequal(ObjectData.ListVarName{ilist},'MaskX')||isequal(ObjectData.ListVarName{ilist},'MaskY') |
---|
2550 | ind_off=[ind_off ilist]; |
---|
2551 | end |
---|
2552 | end |
---|
2553 | ObjectData.ListVarName(ind_off)=[]; |
---|
2554 | VarDimIndex(ind_off)=[]; |
---|
2555 | ind_off=[]; |
---|
2556 | for ilist=1:length(ListDimName) |
---|
2557 | if isequal(ListDimName{ilist},'MaskX') || isequal(ListDimName{ilist},'MaskY') |
---|
2558 | ind_off=[ind_off ilist]; |
---|
2559 | end |
---|
2560 | end |
---|
2561 | ListDimName(ind_off)=[]; |
---|
2562 | DimValue(ind_off)=[]; |
---|
2563 | end |
---|
2564 | end |
---|
2565 | if ~isempty(ObjectData) |
---|
2566 | |
---|
2567 | PlotType='none'; %default |
---|
2568 | if imap==2 && isempty(view_field_handle) |
---|
2569 | view_field(ObjectData) |
---|
2570 | else |
---|
2571 | [PlotType,PlotParamOut]=plot_field(ObjectData,haxes(imap),PlotParam{imap},PosColorbar{imap}); |
---|
2572 | write_plot_param(plot_handles{imap},PlotParamOut) %update the auto plot parameters |
---|
2573 | if isfield(Field,'Mesh')&&~isempty(Field.Mesh) |
---|
2574 | ObjectData.Mesh=Field.Mesh; % gives an estimated mesh size (useful for mouse action on the plot) |
---|
2575 | end |
---|
2576 | end |
---|
2577 | if isequal(PlotType,'none') |
---|
2578 | hget_field=findobj(allchild(0),'name','get_field'); |
---|
2579 | if isempty(hget_field) |
---|
2580 | get_field(filename)% the projected field cannot be automatically plotted: use get_field to specify the variablesdelete(hget_field) |
---|
2581 | end |
---|
2582 | errormsg='The field defined by get_field cannot be plotted'; |
---|
2583 | return |
---|
2584 | end |
---|
2585 | end |
---|
2586 | end |
---|
2587 | |
---|
2588 | %% update the mask |
---|
2589 | if isequal(get(handles.CheckMask,'Value'),1)%if the mask option is on |
---|
2590 | update_mask(handles,num_i1,num_i2); |
---|
2591 | end |
---|
2592 | |
---|
2593 | %% prepare the menus of histograms and plot them (histogram of the whole volume in 3D case) |
---|
2594 | menu_histo=(UvData.Field.ListVarName)';%list of field variables to be displayed for the menu of histogram display |
---|
2595 | ind_bad=[]; |
---|
2596 | nb_histo=1; |
---|
2597 | |
---|
2598 | % suppress coordinates from the histogram menu |
---|
2599 | for ivar=1:numel(menu_histo)%l loop on field variables: |
---|
2600 | if isfield(UvData.Field,'VarAttribute') && numel(UvData.Field.VarAttribute)>=ivar && isfield(UvData.Field.VarAttribute{ivar},'Role') |
---|
2601 | Role=UvData.Field.VarAttribute{ivar}.Role; |
---|
2602 | switch Role |
---|
2603 | case {'coord_x','coord_y','coord_z','dimvar'} |
---|
2604 | ind_bad=[ind_bad ivar]; |
---|
2605 | case {'vector_y'} |
---|
2606 | nb_histo=nb_histo+1; |
---|
2607 | end |
---|
2608 | end |
---|
2609 | DimCell=UvData.Field.VarDimName{ivar}; |
---|
2610 | DimName=''; |
---|
2611 | if ischar(DimCell) |
---|
2612 | DimName=DimCell; |
---|
2613 | elseif iscell(DimCell)&& numel(DimCell)==1 |
---|
2614 | DimName=DimCell{1}; |
---|
2615 | end |
---|
2616 | if strcmp(DimName,menu_histo{ivar}) |
---|
2617 | ind_bad=[ind_bad ivar]; |
---|
2618 | end |
---|
2619 | end |
---|
2620 | menu_histo(ind_bad)=[]; |
---|
2621 | |
---|
2622 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
2623 | % display menus and plot histograms |
---|
2624 | test_v=0; |
---|
2625 | if ~isempty(menu_histo) |
---|
2626 | set(handles.histo1_menu,'Value',1) |
---|
2627 | set(handles.histo1_menu,'String',menu_histo) |
---|
2628 | histo1_menu_Callback(handles.histo1_menu, [], handles)% plot first histogram |
---|
2629 | % case of more than one variables (eg vector components) |
---|
2630 | if nb_histo > 1 |
---|
2631 | test_v=1; |
---|
2632 | set(handles.histo2_menu,'Visible','on') |
---|
2633 | set(handles.histo_v,'Visible','on') |
---|
2634 | set(handles.histo2_menu,'String',menu_histo) |
---|
2635 | set(handles.histo2_menu,'Value',2) |
---|
2636 | histo2_menu_Callback(handles.histo2_menu,[], handles)% plot second histogram |
---|
2637 | end |
---|
2638 | end |
---|
2639 | if ~test_v |
---|
2640 | set(handles.histo2_menu,'Visible','off') |
---|
2641 | set(handles.histo_v,'Visible','off') |
---|
2642 | cla(handles.histo_v) |
---|
2643 | set(handles.histo2_menu,'Value',1) |
---|
2644 | end |
---|
2645 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
2646 | |
---|
2647 | %% display time |
---|
2648 | testimedoc=0; |
---|
2649 | TimeUnit=''; |
---|
2650 | if isfield(UvData.Field,'Time') |
---|
2651 | abstime=UvData.Field.Time;%time read from the netcdf input file |
---|
2652 | end |
---|
2653 | if isfield(UvData,'Field_1') && isfield(UvData.Field_1,'Time') |
---|
2654 | abstime_1=UvData.Field_1.Time;%time read from the netcdf input file |
---|
2655 | end |
---|
2656 | if isfield(UvData.Field,'dt') |
---|
2657 | dt=UvData.Field.dt;%dt read from the netcdf input file |
---|
2658 | if isfield(UvData.Field,'TimeUnit') |
---|
2659 | TimeUnit=UvData.Field.TimeUnit; |
---|
2660 | end |
---|
2661 | elseif isfield(UvData,'Field_1') && isfield(UvData.Field_1,'dt')%dt obtained from the second field if not defined in the first |
---|
2662 | dt=UvData.Field_1.dt;%dt read from the netcdf input file |
---|
2663 | if isfield(UvData.Field_1,'TimeUnit') |
---|
2664 | TimeUnit=UvData.Field_1.TimeUnit; |
---|
2665 | end |
---|
2666 | end |
---|
2667 | % time from xml file overset previous result |
---|
2668 | if isfield(UvData,'XmlData') && isfield(UvData.XmlData{1},'Time') |
---|
2669 | if isempty(num_i2)||isnan(num_i2) |
---|
2670 | num_i2=num_i1; |
---|
2671 | end |
---|
2672 | if isempty(num_j1)||isnan(num_j1) |
---|
2673 | num_j1=1; |
---|
2674 | end |
---|
2675 | if isempty(num_j2)||isnan(num_j2) |
---|
2676 | num_j2=num_j1; |
---|
2677 | end |
---|
2678 | siz=size(UvData.XmlData{1}.Time); |
---|
2679 | if siz(1)>=max(num_i1,num_i2) && siz(2)>=max(num_j1,num_j2) |
---|
2680 | abstime=(UvData.XmlData{1}.Time(num_i1,num_j1)+UvData.XmlData{1}.Time(num_i2,num_j2))/2;%overset the time read from files |
---|
2681 | dt=(UvData.XmlData{1}.Time(num_i2,num_j2)-UvData.XmlData{1}.Time(num_i1,num_j1)); |
---|
2682 | testimedoc=1; |
---|
2683 | if isfield(UvData.XmlData{1},'TimeUnit') |
---|
2684 | TimeUnit=UvData.XmlData{1}.TimeUnit; |
---|
2685 | end |
---|
2686 | end |
---|
2687 | if numel(UvData.XmlData)==2 |
---|
2688 | [tild,tild,tild,num_i1,num_i2,num_j1,num_j2]=fileparts_uvmat(['xx' get(handles.FileIndex_1,'String') get(handles.FileExt_1,'String')]); |
---|
2689 | % [P,F,str1,str2,str_a,str_b,E]=name2display(['xx' get(handles.FileIndex_1,'String') get(handles.FileExt_1,'String')]); |
---|
2690 | if isempty(num_i2) |
---|
2691 | num_i2=num_i1; |
---|
2692 | end |
---|
2693 | if isempty(num_j1) |
---|
2694 | num_j1=1; |
---|
2695 | end |
---|
2696 | if isempty(num_j2) |
---|
2697 | num_j2=num_j1; |
---|
2698 | end |
---|
2699 | siz=size(UvData.XmlData{2}.Time); |
---|
2700 | if ~isempty(num_i1) && siz(1)>=max(num_i1,num_i2) && siz(2)>=max(num_j1,num_j2) |
---|
2701 | abstime_1=(UvData.XmlData{2}.Time(num_i1,num_j1)+UvData.XmlData{2}.Time(num_i2,num_j2))/2;%overset the time read from files |
---|
2702 | end |
---|
2703 | end |
---|
2704 | end |
---|
2705 | |
---|
2706 | if ~isequal(numel(abstime),1) |
---|
2707 | abstime=[]; |
---|
2708 | end |
---|
2709 | if ~isequal(numel(abstime_1),1) |
---|
2710 | abstime_1=[]; |
---|
2711 | end |
---|
2712 | set(handles.abs_time,'String',num2str(abstime,4)) |
---|
2713 | set(handles.abs_time_1,'String',num2str(abstime_1,4)) |
---|
2714 | if testimedoc && isfield(UvData,'dt') |
---|
2715 | dt=UvData.dt; |
---|
2716 | end |
---|
2717 | if isempty(dt)||isequal(dt,0) |
---|
2718 | set(handles.Dt_txt,'String','') |
---|
2719 | else |
---|
2720 | if isempty(TimeUnit) |
---|
2721 | set(handles.Dt_txt,'String',['Dt=' num2str(1000*dt,3) ' 10^(-3)'] ) |
---|
2722 | else |
---|
2723 | set(handles.Dt_txt,'String',['Dt=' num2str(1000*dt,3) ' m' TimeUnit] ) |
---|
2724 | end |
---|
2725 | end |
---|
2726 | |
---|
2727 | |
---|
2728 | %------------------------------------------------------------------- |
---|
2729 | % --- translate coordinate to matrix index |
---|
2730 | %------------------------------------------------------------------- |
---|
2731 | function [indx,indy]=pos2ind(x0,rangx0,nxy) |
---|
2732 | indx=1+round((nxy(2)-1)*(x0-rangx0(1))/(rangx0(2)-rangx0(1)));% index x of pixel |
---|
2733 | indy=1+round((nxy(1)-1)*(y12-rangy0(1))/(rangy0(2)-rangy0(1)));% index y of pixel |
---|
2734 | |
---|
2735 | %------------------------------------------------------------------- |
---|
2736 | % --- Executes on button press in 'CheckFixLimits'. |
---|
2737 | %------------------------------------------------------------------- |
---|
2738 | function CheckFixLimits_Callback(hObject, eventdata, handles) |
---|
2739 | test=get(handles.CheckFixLimits,'Value'); |
---|
2740 | if test |
---|
2741 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
2742 | else |
---|
2743 | set(handles.CheckFixLimits,'BackgroundColor',[0.7 0.7 0.7]) |
---|
2744 | update_plot(handles); |
---|
2745 | end |
---|
2746 | |
---|
2747 | %------------------------------------------------------------------- |
---|
2748 | % --- Executes on button press in CheckFixEqual. |
---|
2749 | function CheckFixEqual_Callback(hObject, eventdata, handles) |
---|
2750 | if get(handles.CheckFixEqual,'Value') |
---|
2751 | set(handles.CheckFixEqual,'BackgroundColor',[1 1 0]) |
---|
2752 | update_plot(handles); |
---|
2753 | else |
---|
2754 | set(handles.CheckFixEqual,'BackgroundColor',[0.7 0.7 0.7]) |
---|
2755 | update_plot(handles); |
---|
2756 | end |
---|
2757 | |
---|
2758 | %------------------------------------------------------------------- |
---|
2759 | |
---|
2760 | %------------------------------------------------------------------- |
---|
2761 | % --- Executes on button press in 'CheckZoom'. |
---|
2762 | %------------------------------------------------------------------- |
---|
2763 | function CheckZoom_Callback(hObject, eventdata, handles) |
---|
2764 | |
---|
2765 | if (get(handles.CheckZoom,'Value') == 1); |
---|
2766 | set(handles.CheckZoom,'BackgroundColor',[1 1 0]) |
---|
2767 | set(handles.CheckFixLimits,'Value',1)% propose by default fixed limits for the plotting axes |
---|
2768 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
2769 | else |
---|
2770 | set(handles.CheckZoom,'BackgroundColor',[0.7 0.7 0.7]) |
---|
2771 | end |
---|
2772 | |
---|
2773 | %------------------------------------------------------------------- |
---|
2774 | %----Executes on button press in 'record': records the current flags of manual correction. |
---|
2775 | %------------------------------------------------------------------- |
---|
2776 | function record_Callback(hObject, eventdata, handles) |
---|
2777 | % [filebase,num_i1,num_j1,num_i2,num_j2,Ext,NomType,SubDir]=read_input_file(handles); |
---|
2778 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
2779 | filename=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
2780 | %filename=read_file_boxes(handles); |
---|
2781 | [erread,message]=fileattrib(filename); |
---|
2782 | if ~isempty(message) && ~isequal(message.UserWrite,1) |
---|
2783 | msgbox_uvmat('ERROR',['no writting access to ' filename]) |
---|
2784 | return |
---|
2785 | end |
---|
2786 | test_civ2=isequal(get(handles.civ2,'BackgroundColor'),[1 1 0]); |
---|
2787 | test_civ1=isequal(get(handles.VelType,'BackgroundColor'),[1 1 0]); |
---|
2788 | if ~test_civ2 && ~test_civ1 |
---|
2789 | msgbox_uvmat('ERROR','manual correction only possible for CIV1 or CIV2 velocity fields') |
---|
2790 | end |
---|
2791 | if test_civ2 |
---|
2792 | nbname='nb_vectors2'; |
---|
2793 | flagname='vec2_FixFlag'; |
---|
2794 | attrname='fix2'; |
---|
2795 | end |
---|
2796 | if test_civ1 |
---|
2797 | nbname='nb_vectors'; |
---|
2798 | flagname='vec_FixFlag'; |
---|
2799 | attrname='fix'; |
---|
2800 | end |
---|
2801 | %write fix flags in the netcdf file |
---|
2802 | UvData=get(handles.uvmat,'UserData'); |
---|
2803 | hhh=which('netcdf.open');% look for built-in matlab netcdf library |
---|
2804 | if ~isequal(hhh,'')% case of new builtin Matlab netcdf library |
---|
2805 | nc=netcdf.open(filename,'NC_WRITE'); |
---|
2806 | netcdf.reDef(nc); |
---|
2807 | netcdf.putAtt(nc,netcdf.getConstant('NC_GLOBAL'),attrname,1); |
---|
2808 | dimid = netcdf.inqDimID(nc,nbname); |
---|
2809 | try |
---|
2810 | varid = netcdf.inqVarID(nc,flagname);% look for already existing fixflag variable |
---|
2811 | catch |
---|
2812 | varid=netcdf.defVar(nc,flagname,'double',dimid);%create fixflag variable if it does not exist |
---|
2813 | end |
---|
2814 | netcdf.endDef(nc); |
---|
2815 | netcdf.putVar(nc,varid,UvData.axes3.FF); |
---|
2816 | netcdf.close(nc); |
---|
2817 | else %old netcdf library |
---|
2818 | netcdf_toolbox(filename,AxeData,attrname,nbname,flagname) |
---|
2819 | end |
---|
2820 | |
---|
2821 | %------------------------------------------------------------------- |
---|
2822 | %----Correct the netcdf file, using toolbox (old versions of Matlab). |
---|
2823 | %------------------------------------------------------------------- |
---|
2824 | function netcdf_toolbox(filename,AxeData,attrname,nbname,flagname) |
---|
2825 | nc=netcdf(filename,'write'); %open netcdf file |
---|
2826 | result=redef(nc); |
---|
2827 | eval(['nc.' attrname '=1;']); |
---|
2828 | theDim=nc(nbname) ;% get the number of velocity vectors |
---|
2829 | nb_vectors=size(theDim); |
---|
2830 | var_FixFlag=ncvar(flagname,nc);% var_FixFlag will be written as the netcdf variable vec_FixFlag |
---|
2831 | var_FixFlag(1:nb_vectors)=AxeData.FF;% |
---|
2832 | fin=close(nc); |
---|
2833 | |
---|
2834 | %--------------------------------------------------- |
---|
2835 | % --- Executes on button press in SubField |
---|
2836 | function SubField_Callback(hObject, eventdata, handles) |
---|
2837 | % huvmat=get(handles.run0,'parent'); |
---|
2838 | UvData=get(handles.uvmat,'UserData'); |
---|
2839 | if get(handles.SubField,'Value')==0% if the subfield button is desactivated |
---|
2840 | set(handles.RootPath_1,'String','') |
---|
2841 | set(handles.RootFile_1,'String','') |
---|
2842 | set(handles.SubDir_1,'String',''); |
---|
2843 | set(handles.FileIndex_1,'String',''); |
---|
2844 | set(handles.FileExt_1,'String',''); |
---|
2845 | set(handles.RootPath_1,'Visible','off') |
---|
2846 | set(handles.RootFile_1,'Visible','off') |
---|
2847 | set(handles.SubDir_1,'Visible','off'); |
---|
2848 | set(handles.NomType_1,'Visible','off'); |
---|
2849 | set(handles.abs_time_1,'Visible','off') |
---|
2850 | set(handles.FileIndex_1,'Visible','off'); |
---|
2851 | set(handles.FileExt_1,'Visible','off'); |
---|
2852 | set(handles.Fields_1,'Value',1);%set to blank state |
---|
2853 | set(handles.VelType_1,'Value',1);%set to blank state |
---|
2854 | if ~strcmp(get(handles.VelType,'Visible'),'on') |
---|
2855 | set(handles.VelType_1,'Visible','off') |
---|
2856 | end |
---|
2857 | if isfield(UvData,'XmlData_1') |
---|
2858 | UvData=rmfield(UvData,'XmlData_1'); |
---|
2859 | end |
---|
2860 | set(handles.uvmat,'UserData',UvData); |
---|
2861 | run0_Callback(hObject, eventdata, handles); %run |
---|
2862 | else |
---|
2863 | MenuBrowse_1_Callback(hObject, eventdata, handles) |
---|
2864 | end |
---|
2865 | |
---|
2866 | %------------------------------------------------------------------------ |
---|
2867 | % --- read the data displayed for the input rootfile windows (new): TODO use read_GUI |
---|
2868 | |
---|
2869 | function [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles) |
---|
2870 | %------------------------------------------------------------------------ |
---|
2871 | InputFile=read_GUI(handles.InputFile); |
---|
2872 | RootPath=InputFile.RootPath; |
---|
2873 | SubDir=regexprep(InputFile.SubDir,'/|\',''); |
---|
2874 | RootFile=regexprep(InputFile.RootFile,'/|\',''); |
---|
2875 | FileIndices=InputFile.FileIndex; |
---|
2876 | FileExt=InputFile.FileExt; |
---|
2877 | |
---|
2878 | |
---|
2879 | %------------------------------------------------------------------------ |
---|
2880 | % ---- read the data displayed for the second input rootfile windows |
---|
2881 | function [RootPath_1,SubDir_1,RootFile_1,FileIndex_1,FileExt_1,NomType_1]=read_file_boxes_1(handles) |
---|
2882 | %------------------------------------------------------------------------ |
---|
2883 | RootPath_1=get(handles.RootPath_1,'String'); % read the data from the file1_input window |
---|
2884 | if isequal(get(handles.RootPath_1,'Visible'),'off') || isequal(RootPath_1,'"') |
---|
2885 | RootPath_1=get(handles.RootPath,'String'); |
---|
2886 | end; |
---|
2887 | SubDir_1=get(handles.SubDir_1,'String'); |
---|
2888 | if isequal(get(handles.SubDir_1,'Visible'),'off')|| isequal(SubDir_1,'"') |
---|
2889 | SubDir_1=get(handles.SubDir,'String'); |
---|
2890 | end |
---|
2891 | SubDir_1=regexprep(SubDir_1,'\<[\\/]|[\\/]\>','');%suppress possible / or \ separator at the beginning or the end of the string |
---|
2892 | RootFile_1=get(handles.RootFile_1,'String'); |
---|
2893 | if isequal(get(handles.RootFile_1,'Visible'),'off') || isequal(RootFile_1,'"') |
---|
2894 | RootFile_1=get(handles.RootFile,'String'); |
---|
2895 | end |
---|
2896 | RootFile_1=regexprep(RootFile_1,'\<[\\/]|[\\/]\>','');%suppress possible / or \ separator at the beginning or the end of the string |
---|
2897 | FileIndex_1=get(handles.FileIndex_1,'String'); |
---|
2898 | if isequal(get(handles.FileIndex_1,'Visible'),'off')|| isequal(FileIndex_1,'"') |
---|
2899 | FileIndex_1=get(handles.FileIndex,'String'); |
---|
2900 | end |
---|
2901 | FileExt_1=get(handles.FileExt_1,'String'); |
---|
2902 | if isequal(get(handles.FileExt_1,'Visible'),'off') || isequal(FileExt_1,'"') |
---|
2903 | FileExt_1=get(handles.FileExt,'String');%read FileExt by default |
---|
2904 | end |
---|
2905 | NomType_1=get(handles.NomType_1,'String'); |
---|
2906 | if isequal(get(handles.NomType_1,'Visible'),'off') || isequal(NomType_1,'"') |
---|
2907 | NomType_1=get(handles.NomType,'String');%read FileExt by default |
---|
2908 | end |
---|
2909 | %------------------------------------------------------------------------ |
---|
2910 | % --- Executes on menu selection Fields |
---|
2911 | function Fields_Callback(hObject, eventdata, handles) |
---|
2912 | %------------------------------------------------------------------------ |
---|
2913 | list_fields=get(handles.Fields,'String');% list menu fields |
---|
2914 | index_fields=get(handles.Fields,'Value');% selected string index |
---|
2915 | field= list_fields{index_fields(1)}; % selected string |
---|
2916 | if isequal(field,'get_field...') |
---|
2917 | set(handles.FixVelType,'visible','off') |
---|
2918 | set(handles.VelType,'visible','off') |
---|
2919 | set(handles.VelType_1,'visible','off') |
---|
2920 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
2921 | filename=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
2922 | %filename=read_file_boxes(handles); |
---|
2923 | hget_field=findobj(allchild(0),'name','get_field'); |
---|
2924 | if ~isempty(hget_field) |
---|
2925 | delete(hget_field) |
---|
2926 | end |
---|
2927 | hget_field=get_field(filename); |
---|
2928 | set(hget_field,'Name','get_field') |
---|
2929 | hhget_field=guidata(hget_field); |
---|
2930 | set(hhget_field.list_fig,'Value',1) |
---|
2931 | set(hhget_field.list_fig,'String',{'uvmat'}) |
---|
2932 | set(handles.transform_fct,'Value',1)% no transform by default |
---|
2933 | set(handles.path_transform,'String','') |
---|
2934 | return %no action |
---|
2935 | end |
---|
2936 | list_fields=get(handles.Fields_1,'String');% list menu fields |
---|
2937 | index_fields=get(handles.Fields_1,'Value');% selected string index |
---|
2938 | field_1= list_fields{index_fields(1)}; % selected string |
---|
2939 | UvData=get(handles.uvmat,'UserData'); |
---|
2940 | |
---|
2941 | %read the rootfile input display |
---|
2942 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
2943 | FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
2944 | [tild,tild,tild,i1,i2,j1,j2,tild,NomType]=fileparts_uvmat(['xxx' get(handles.FileIndex,'String') FileExt]); |
---|
2945 | % NomTypeNew=NomType;%default |
---|
2946 | if isequal(field,'image') |
---|
2947 | % if isequal(NomType,'_1-2_1')||isequal(NomType,'_1_1-2') |
---|
2948 | % NomTypeNew='_1_1'; |
---|
2949 | % elseif isequal(NomType,'#_ab') |
---|
2950 | % NomTypeNew='#a'; |
---|
2951 | % elseif isequal(NomType,'_1-2') |
---|
2952 | % NomTypeNew='_1'; |
---|
2953 | % end |
---|
2954 | imagename=fullfile_uvmat(RootPath,SubDir,RootFile,'.png',NomType,i1,[],j1,[]); |
---|
2955 | if ~exist(imagename,'file') |
---|
2956 | [FileName,PathName] = uigetfile( ... |
---|
2957 | {'*.png;*.jpg;*.tif;*.avi;*.AVI;*.vol', ' (*.png, .tif, *.avi,*.vol)'; |
---|
2958 | '*.jpg',' jpeg image files'; ... |
---|
2959 | '*.png','.png image files'; ... |
---|
2960 | '*.tif','.tif image files'; ... |
---|
2961 | '*.avi;*.AVI','.avi movie files'; ... |
---|
2962 | '*.vol','.volume images (png)'; ... |
---|
2963 | '*.*', 'All Files (*.*)'}, ... |
---|
2964 | 'Pick an image',imagename); |
---|
2965 | imagename=[PathName FileName]; |
---|
2966 | end |
---|
2967 | % display the selected field and related information |
---|
2968 | display_file_name(handles,imagename)%display the image |
---|
2969 | return |
---|
2970 | else |
---|
2971 | ext=get(handles.FileExt,'String'); |
---|
2972 | if ~isequal(ext,'.nc') %find the new NomType if the previous display was not already a netcdf file |
---|
2973 | [FileName,PathName] = uigetfile( ... |
---|
2974 | {'*.nc', ' (*.nc)'; |
---|
2975 | '*.nc',' netcdf files'; ... |
---|
2976 | '*.*', 'All Files (*.*)'}, ... |
---|
2977 | 'Pick a netcdf file',FileBase); |
---|
2978 | filename=[PathName FileName]; |
---|
2979 | % display the selected field and related information |
---|
2980 | display_file_name( handles,filename) |
---|
2981 | return |
---|
2982 | end |
---|
2983 | end |
---|
2984 | indices=fullfile_uvmat('','','','',NomType,i1,i2,j1,j2); |
---|
2985 | set(handles.FileIndex,'String',indices) |
---|
2986 | % set(handles.NomType,'String',NomType) |
---|
2987 | |
---|
2988 | %common to Fields_1_Callback |
---|
2989 | if isequal(field,'image')||isequal(field_1,'image') |
---|
2990 | set(handles.TitleNpx,'Visible','on')% visible npx,pxcm... buttons |
---|
2991 | set(handles.TitleNpy,'Visible','on') |
---|
2992 | set(handles.num_Npx,'Visible','on') |
---|
2993 | set(handles.num_Npy,'Visible','on') |
---|
2994 | else |
---|
2995 | set(handles.TitleNpx,'Visible','off')% visible npx,pxcm... buttons |
---|
2996 | set(handles.TitleNpy,'Visible','off') |
---|
2997 | set(handles.num_Npx,'Visible','off') |
---|
2998 | set(handles.num_Npy,'Visible','off') |
---|
2999 | end |
---|
3000 | if ~(isfield(UvData,'NewSeries')&&isequal(UvData.NewSeries,1)) |
---|
3001 | run0_Callback(hObject, eventdata, handles) |
---|
3002 | end |
---|
3003 | |
---|
3004 | %--------------------------------------------------- |
---|
3005 | % --- Executes on menu selection Fields |
---|
3006 | function Fields_1_Callback(hObject, eventdata, handles) |
---|
3007 | %------------------------------------------------- |
---|
3008 | %% read input data |
---|
3009 | check_new=~get(handles.SubField,'Value'); %check_new=1 if a second field was not previously entered |
---|
3010 | UvData=get(handles.uvmat,'UserData'); |
---|
3011 | if check_new && isfield(UvData,'XmlData') |
---|
3012 | UvData.XmlData{2}=UvData.XmlData{1}; |
---|
3013 | end |
---|
3014 | if isfield(UvData,'Field_1') |
---|
3015 | UvData=rmfield(UvData,'Field_1');% remove the stored second field (a new one needs to be read) |
---|
3016 | end |
---|
3017 | UvData.filename_1='';% desactivate the use of a constant second file |
---|
3018 | list_fields=get(handles.Fields,'String');% list menu fields |
---|
3019 | field= list_fields{get(handles.Fields,'Value')}; % selected string |
---|
3020 | list_fields=get(handles.Fields_1,'String');% list menu fields |
---|
3021 | field_1= list_fields{get(handles.Fields_1,'Value')}; % selected string for the second field |
---|
3022 | if isempty(field_1)%||(numel(UvData.FileType)>=2 && strcmp(UvData.FileType{2},'image')) |
---|
3023 | set(handles.SubField,'Value',0) |
---|
3024 | % check_new=1; |
---|
3025 | SubField_Callback(hObject, eventdata, handles) |
---|
3026 | % if isempty(field_1)%remove second field if 'blank' field is selected |
---|
3027 | return |
---|
3028 | % end |
---|
3029 | else |
---|
3030 | set(handles.SubField,'Value',1)%state that a second field is now entered |
---|
3031 | end |
---|
3032 | |
---|
3033 | %% read the rootfile input display |
---|
3034 | [RootPath_1,SubDir_1,RootFile_1,FileIndex_1,FileExt_1]=read_file_boxes_1(handles); |
---|
3035 | filename_1=[fullfile(RootPath_1,SubDir_1,RootFile_1) FileIndex_1 FileExt_1]; |
---|
3036 | [tild,tild,tild,i1,i2,j1,j2]=fileparts_uvmat(get(handles.FileIndex,'String')); |
---|
3037 | % set(handles.FileIndex_1,'Visible','on') |
---|
3038 | % set(handles.FileExt_1,'Visible','on') |
---|
3039 | switch field_1 |
---|
3040 | case 'get_field...' |
---|
3041 | set_veltype_display(0) % no veltype display |
---|
3042 | hget_field=findobj(allchild(0),'name','get_field_1'); |
---|
3043 | if ~isempty(hget_field) |
---|
3044 | delete(hget_field) |
---|
3045 | end |
---|
3046 | hget_field=get_field(filename_1); |
---|
3047 | set(hget_field,'name','get_field_1') |
---|
3048 | hhget_field=guidata(hget_field); |
---|
3049 | set(hhget_field.list_fig,'Value',1) |
---|
3050 | set(hhget_field.list_fig,'String',{'uvmat'}) |
---|
3051 | set(handles.transform_fct,'Value',1)% no transform by default |
---|
3052 | set(handles.path_transform,'String','') |
---|
3053 | case 'image' |
---|
3054 | % guess the image name corresponding to the current netcdf name (no unique correspondance) |
---|
3055 | imagename=fullfile_uvmat(RootPath_1,'',RootFile_1,'.png',get(handles.NomType,'String'),i1,[],j1); |
---|
3056 | if ~exist(imagename,'file') % browse for images if it is not found |
---|
3057 | [FileName,PathName] = uigetfile( ... |
---|
3058 | {'*.png;*.jpg;*.tif;*.avi;*.AVI;*.vol', ' (*.png, .tif, *.avi,*.vol)'; |
---|
3059 | '*.jpg',' jpeg image files'; ... |
---|
3060 | '*.png','.png image files'; ... |
---|
3061 | '*.tif','.tif image files'; ... |
---|
3062 | '*.avi;*.AVI','.avi movie files'; ... |
---|
3063 | '*.vol','.volume images (png)'; ... |
---|
3064 | '*.*', 'All Files (*.*)'}, ... |
---|
3065 | 'Pick an image',imagename); |
---|
3066 | imagename=[PathName FileName]; |
---|
3067 | end |
---|
3068 | if ~ischar(imagename)% quit if the browser has been closed |
---|
3069 | set(handles.SubField,'Value',0) |
---|
3070 | else %valid browser input: display the selected image |
---|
3071 | set(handles.TitleNpx,'Visible','on')% visible npx,pxcm... buttons |
---|
3072 | set(handles.TitleNpy,'Visible','on') |
---|
3073 | set(handles.num_Npx,'Visible','on') |
---|
3074 | set(handles.num_Npy,'Visible','on') |
---|
3075 | display_file_name(handles,imagename,2)%display the imag |
---|
3076 | end |
---|
3077 | otherwise |
---|
3078 | if check_new |
---|
3079 | UvData.FileType{2}=UvData.FileType{1}; |
---|
3080 | set(handles.FileIndex_1,'String',get(handles.FileIndex,'String')) |
---|
3081 | set(handles.FileExt_1,'String',get(handles.FileExt,'String')) |
---|
3082 | end |
---|
3083 | if ~isequal(field,'image') |
---|
3084 | set(handles.TitleNpx,'Visible','off')% visible npx,pxcm... buttons |
---|
3085 | set(handles.TitleNpy,'Visible','off') |
---|
3086 | set(handles.num_Npx,'Visible','off') |
---|
3087 | set(handles.num_Npy,'Visible','off') |
---|
3088 | end |
---|
3089 | set(handles.uvmat,'UserData',UvData) |
---|
3090 | if ~(isfield(UvData,'NewSeries')&&isequal(UvData.NewSeries,1)) |
---|
3091 | run0_Callback(hObject, eventdata, handles) |
---|
3092 | end |
---|
3093 | end |
---|
3094 | |
---|
3095 | %------------------------------------------------------------------------ |
---|
3096 | % --- set the visibility of relevant velocity type menus: |
---|
3097 | function menu=set_veltype_display(Civ,FileType) |
---|
3098 | %------------------------------------------------------------------------ |
---|
3099 | if ~exist('FileType','var') |
---|
3100 | FileType='civx'; |
---|
3101 | end |
---|
3102 | switch FileType |
---|
3103 | case 'civx' |
---|
3104 | menu={'civ1';'interp1';'filter1';'civ2';'interp2';'filter2'}; |
---|
3105 | if isequal(Civ,0) |
---|
3106 | imax=0; |
---|
3107 | elseif isequal(Civ,1) || isequal(Civ,2) |
---|
3108 | imax=1; |
---|
3109 | elseif isequal(Civ,3) |
---|
3110 | imax=3; |
---|
3111 | elseif isequal(Civ,4) || isequal(Civ,5) |
---|
3112 | imax=4; |
---|
3113 | elseif isequal(Civ,6) %patch2 |
---|
3114 | imax=6; |
---|
3115 | end |
---|
3116 | case 'civdata' |
---|
3117 | menu={'civ1';'filter1';'civ2';'filter2'}; |
---|
3118 | if isequal(Civ,0) |
---|
3119 | imax=0; |
---|
3120 | elseif isequal(Civ,1) || isequal(Civ,2) |
---|
3121 | imax=1; |
---|
3122 | elseif isequal(Civ,3) |
---|
3123 | imax=2; |
---|
3124 | elseif isequal(Civ,4) || isequal(Civ,5) |
---|
3125 | imax=3; |
---|
3126 | elseif isequal(Civ,6) %patch2 |
---|
3127 | imax=4; |
---|
3128 | end |
---|
3129 | end |
---|
3130 | menu=menu(1:imax); |
---|
3131 | |
---|
3132 | %------------------------------------------------------------------------ |
---|
3133 | % --- Executes on button press in FixVelType. |
---|
3134 | function FixVelType_Callback(hObject, eventdata, handles) |
---|
3135 | %------------------------------------------------------------------------ |
---|
3136 | % refresh the current plot if the fixed veltype is unselected |
---|
3137 | if ~get(handles.FixVelType,'Value') |
---|
3138 | run0_Callback(hObject, eventdata, handles) |
---|
3139 | end |
---|
3140 | |
---|
3141 | %------------------------------------------------------------------------ |
---|
3142 | % --- Executes on button press in VelType. |
---|
3143 | function VelType_Callback(hObject, eventdata, handles) |
---|
3144 | %------------------------------------------------------------------------ |
---|
3145 | set(handles.FixVelType,'Value',1) |
---|
3146 | run0_Callback(hObject, eventdata, handles) |
---|
3147 | |
---|
3148 | %------------------------------------------------------------------------ |
---|
3149 | % --- Executes on button press in VelType_1. |
---|
3150 | function VelType_1_Callback(hObject, eventdata, handles) |
---|
3151 | %------------------------------------------------------------------------ |
---|
3152 | set(handles.FixVelType,'Value',1)% the velocity type is now imposed by the GUI (not automatic) |
---|
3153 | UvData=get(handles.uvmat,'UserData'); |
---|
3154 | %refresh field with a second filename=first file name |
---|
3155 | set(handles.run0,'BackgroundColor',[1 1 0])%paint the command button in yellow |
---|
3156 | drawnow |
---|
3157 | InputFile=read_GUI(handles.InputFile); |
---|
3158 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
3159 | filename=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
3160 | |
---|
3161 | if isempty(InputFile.VelType_1) |
---|
3162 | filename_1='';% we plot the current field without the second field |
---|
3163 | set(handles.SubField,'Value',0) |
---|
3164 | SubField_Callback(hObject, eventdata, handles) |
---|
3165 | elseif get(handles.SubField,'Value')% if subfield is already 'on' |
---|
3166 | [RootPath_1,SubDir_1,RootFile_1,FileIndices_1,FileExt_1]=read_file_boxes_1(handles); |
---|
3167 | filename_1=[fullfile(RootPath_1,SubDir_1,RootFile_1) FileIndices_1 FileExt_1]; |
---|
3168 | else |
---|
3169 | filename_1=filename;% we compare two fields in the same file by default |
---|
3170 | UvData.FileType{2}=UvData.FileType{1}; |
---|
3171 | set(handles.SubField,'Value',1) |
---|
3172 | end |
---|
3173 | if isfield(UvData,'Field_1') |
---|
3174 | UvData=rmfield(UvData,'Field_1');% removes the stored second field if it exists |
---|
3175 | end |
---|
3176 | UvData.filename_1='';% desactivate the use of a constant second file |
---|
3177 | set(handles.uvmat,'UserData',UvData) |
---|
3178 | num_i1=stra2num(get(handles.i1,'String')); |
---|
3179 | num_i2=stra2num(get(handles.i2,'String')); |
---|
3180 | num_j1=stra2num(get(handles.j1,'String')); |
---|
3181 | num_j2=stra2num(get(handles.j2,'String')); |
---|
3182 | |
---|
3183 | errormsg=refresh_field(handles,filename,filename_1,num_i1,num_i2,num_j1,num_j2); |
---|
3184 | |
---|
3185 | if ~isempty(errormsg) |
---|
3186 | msgbox_uvmat('ERROR',errormsg); |
---|
3187 | else |
---|
3188 | set(handles.i1,'BackgroundColor',[1 1 1]) |
---|
3189 | set(handles.i2,'BackgroundColor',[1 1 1]) |
---|
3190 | set(handles.j1,'BackgroundColor',[1 1 1]) |
---|
3191 | set(handles.j2,'BackgroundColor',[1 1 1]) |
---|
3192 | set(handles.FileIndex,'BackgroundColor',[1 1 1]) |
---|
3193 | set(handles.FileIndex_1,'BackgroundColor',[1 1 1]) |
---|
3194 | end |
---|
3195 | set(handles.run0,'BackgroundColor',[1 0 0]) |
---|
3196 | |
---|
3197 | %----------------------------------------------- |
---|
3198 | % --- reset civ buttons |
---|
3199 | function reset_vel_type(handles_civ0,handle1) |
---|
3200 | for ibutton=1:length(handles_civ0) |
---|
3201 | set(handles_civ0(ibutton),'BackgroundColor',[0.831 0.816 0.784]) |
---|
3202 | set(handles_civ0(ibutton),'Value',0) |
---|
3203 | end |
---|
3204 | if exist('handle1','var')%handles of selected button |
---|
3205 | set(handle1,'BackgroundColor',[1 1 0]) |
---|
3206 | end |
---|
3207 | |
---|
3208 | %------------------------------------------------------- |
---|
3209 | % --- Executes on button press in MENUVOLUME. |
---|
3210 | %------------------------------------------------------- |
---|
3211 | function VOLUME_Callback(hObject, eventdata, handles) |
---|
3212 | %errordlg('command VOL not implemented yet') |
---|
3213 | if ishandle(handles.UVMAT_title) |
---|
3214 | delete(handles.UVMAT_title) |
---|
3215 | end |
---|
3216 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
3217 | if isequal(get(handles.VOLUME,'Value'),1) |
---|
3218 | set(handles.CheckZoom,'Value',0) |
---|
3219 | set(handles.CheckZoom,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3220 | set(handles.edit_vect,'Value',0) |
---|
3221 | edit_vect_Callback(hObject, eventdata, handles) |
---|
3222 | set(handles.edit_object,'Value',0) |
---|
3223 | set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3224 | % set(handles.cal,'Value',0) |
---|
3225 | % set(handles.cal,'BackgroundColor',[0 1 0]) |
---|
3226 | set(handles.edit_vect,'Value',0) |
---|
3227 | edit_vect_Callback(hObject, eventdata, handles) |
---|
3228 | %initiate set_object GUI |
---|
3229 | data.Name='VOLUME'; |
---|
3230 | if isfield(UvData,'CoordType') |
---|
3231 | data.CoordType=UvData.CoordType; |
---|
3232 | end |
---|
3233 | if isfield(UvData.Field,'Mesh')&~isempty(UvData.Field.Mesh) |
---|
3234 | data.RangeX=[UvData.Field.XMin UvData.Field.XMax]; |
---|
3235 | data.RangeY=[UvData.Field.YMin UvData.Field.YMax]; |
---|
3236 | data.DX=UvData.Field.Mesh; |
---|
3237 | data.DY=UvData.Field.Mesh; |
---|
3238 | elseif isfield(UvData.Field,'AX')&isfield(UvData.Field,'AY')& isfield(UvData.Field,'A')%only image |
---|
3239 | np=size(UvData.Field.A); |
---|
3240 | meshx=(UvData.Field.AX(end)-UvData.Field.AX(1))/np(2); |
---|
3241 | meshy=abs(UvData.Field.AY(end)-UvData.Field.AY(1))/np(1); |
---|
3242 | data.RangeY=max(meshx,meshy); |
---|
3243 | data.RangeX=max(meshx,meshy); |
---|
3244 | data.DX=max(meshx,meshy); |
---|
3245 | end |
---|
3246 | data.ParentButton=handles.VOLUME; |
---|
3247 | PlotHandles=get_plot_handles(handles);%get the handles of the interface elements setting the plotting parameters |
---|
3248 | [hset_object,UvData.sethandles]=set_object(data,PlotHandles);% call the set_object interface with action on haxes, |
---|
3249 | % associate the set_object interface handle to the plotting axes |
---|
3250 | if isfield(UvData.OpenParam,'SetObjectOrigin') |
---|
3251 | pos_uvmat=get(handles.uvmat,'Position'); |
---|
3252 | pos_set_object(1:2)=UvData.OpenParam.SetObjectOrigin + pos_uvmat(1:2); |
---|
3253 | pos_set_object(3:4)=UvData.OpenParam.SetObjectSize .* pos_uvmat(3:4); |
---|
3254 | set(hset_object,'Position',pos_set_object) |
---|
3255 | end |
---|
3256 | UvData.MouseAction='create_object'; |
---|
3257 | else |
---|
3258 | set(handles.VOLUME,'BackgroundColor',[0 1 0]) |
---|
3259 | UvData.MouseAction='none'; |
---|
3260 | end |
---|
3261 | set(handles.uvmat,'UserData',UvData) |
---|
3262 | |
---|
3263 | %------------------------------------------------------- |
---|
3264 | function edit_vect_Callback(hObject, eventdata, handles) |
---|
3265 | %------------------------------------------------------- |
---|
3266 | % |
---|
3267 | % UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
3268 | if isequal(get(handles.edit_vect,'Value'),1) |
---|
3269 | test_civ2=isequal(get(handles.civ2,'BackgroundColor'),[1 1 0]); |
---|
3270 | test_civ1=isequal(get(handles.VelType,'BackgroundColor'),[1 1 0]); |
---|
3271 | if ~test_civ2 && ~test_civ1 |
---|
3272 | msgbox_uvmat('ERROR','manual correction only possible for CIV1 or CIV2 velocity fields') |
---|
3273 | end |
---|
3274 | set(handles.record,'Visible','on') |
---|
3275 | set(handles.edit_vect,'BackgroundColor',[1 1 0]) |
---|
3276 | set(handles.edit_object,'Value',0) |
---|
3277 | set(handles.CheckZoom,'Value',0) |
---|
3278 | set(handles.CheckZoom,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3279 | % set(handles.create,'Value',0) |
---|
3280 | % set(handles.create,'BackgroundColor',[0 1 0]) |
---|
3281 | set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3282 | set(gcf,'Pointer','arrow') |
---|
3283 | % UvData.MouseAction='edit_vect'; |
---|
3284 | else |
---|
3285 | set(handles.record,'Visible','off') |
---|
3286 | set(handles.edit_vect,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3287 | % UvData.MouseAction='none'; |
---|
3288 | end |
---|
3289 | % set(handles.uvmat,'UserData',UvData) |
---|
3290 | |
---|
3291 | %---------------------------------------------- |
---|
3292 | function save_mask_Callback(hObject, eventdata, handles) |
---|
3293 | %----------------------------------------------------------------------- |
---|
3294 | UvData=get(handles.uvmat,'UserData'); |
---|
3295 | |
---|
3296 | flag=1; |
---|
3297 | npx=size(UvData.Field.A,2); |
---|
3298 | npy=size(UvData.Field.A,1); |
---|
3299 | xi=0.5:npx-0.5; |
---|
3300 | yi=0.5:npy-0.5; |
---|
3301 | [Xi,Yi]=meshgrid(xi,yi); |
---|
3302 | if isfield(UvData,'Object') |
---|
3303 | for iobj=1:length(UvData.Object) |
---|
3304 | ObjectData=UvData.Object{iobj}; |
---|
3305 | if isfield(ObjectData,'ProjMode') &&(isequal(ObjectData.ProjMode,'mask_inside')||isequal(ObjectData.ProjMode,'mask_outside')); |
---|
3306 | flagobj=1; |
---|
3307 | testphys=0; %coordinates in pixels by default |
---|
3308 | if isfield(ObjectData,'CoordType') && isequal(ObjectData.CoordType,'phys') |
---|
3309 | if isfield(UvData,'XmlData')&& isfield(UvData.XmlData{1},'GeometryCalib') |
---|
3310 | Calib=UvData.XmlData{1}.GeometryCalib; |
---|
3311 | testphys=1; |
---|
3312 | end |
---|
3313 | end |
---|
3314 | if isfield(ObjectData,'Coord')& isfield(ObjectData,'Style') |
---|
3315 | if isequal(ObjectData.Type,'polygon') |
---|
3316 | X=ObjectData.Coord(:,1); |
---|
3317 | Y=ObjectData.Coord(:,2); |
---|
3318 | if testphys |
---|
3319 | [X,Y]=px_XYZ(Calib,X,Y,0);% to generalise with 3D cases |
---|
3320 | end |
---|
3321 | flagobj=~inpolygon(Xi,Yi,X',Y');%=0 inside the polygon, 1 outside |
---|
3322 | elseif isequal(ObjectData.Type,'ellipse') |
---|
3323 | if testphys |
---|
3324 | %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys |
---|
3325 | end |
---|
3326 | RangeX=max(ObjectData.RangeX); |
---|
3327 | RangeY=max(ObjectData.RangeY); |
---|
3328 | X2Max=RangeX*RangeX; |
---|
3329 | Y2Max=RangeY*RangeY; |
---|
3330 | distX=(Xi-ObjectData.Coord(1,1)); |
---|
3331 | distY=(Yi-ObjectData.Coord(1,2)); |
---|
3332 | flagobj=(distX.*distX/X2Max+distY.*distY/Y2Max)>1; |
---|
3333 | elseif isequal(ObjectData.Type,'rectangle') |
---|
3334 | if testphys |
---|
3335 | %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys |
---|
3336 | end |
---|
3337 | distX=abs(Xi-ObjectData.Coord(1,1)); |
---|
3338 | distY=abs(Yi-ObjectData.Coord(1,2)); |
---|
3339 | flagobj=distX>max(ObjectData.RangeX) | distY>max(ObjectData.RangeY); |
---|
3340 | end |
---|
3341 | if isequal(ObjectData.ProjMode,'mask_outside') |
---|
3342 | flagobj=~flagobj; |
---|
3343 | end |
---|
3344 | flag=flag & flagobj; |
---|
3345 | end |
---|
3346 | end |
---|
3347 | end |
---|
3348 | end |
---|
3349 | % flag=~flag; |
---|
3350 | %mask name |
---|
3351 | RootPath=get(handles.RootPath,'String'); |
---|
3352 | RootFile=get(handles.RootFile,'String'); |
---|
3353 | RootFile=regexprep(RootFile,'\<[\\/]|[\\/]\>','');%suppress possible / or \ separator at the beginning or the end of the string |
---|
3354 | filebase=fullfile(RootPath,RootFile); |
---|
3355 | list=get(handles.masklevel,'String'); |
---|
3356 | masknumber=num2str(length(list)); |
---|
3357 | maskindex=get(handles.masklevel,'Value'); |
---|
3358 | mask_name=fullfile_uvmat(RootPath,SubDir,[RootFile '_' masknumber 'mask'],'.png','_1',maskindex); |
---|
3359 | %mask_name=name_generator([filebase '_' masknumber 'mask'],maskindex,1,'.png','_i'); |
---|
3360 | imflag=uint8(255*(0.392+0.608*flag));% =100 for flag=0 (vectors not computed when 20<imflag<200) |
---|
3361 | imflag=flipdim(imflag,1); |
---|
3362 | % imflag=uint8(255*flag);% =0 for flag=0 (vectors=0 when 20<imflag<200) |
---|
3363 | msgbox_uvmat('CONFIRMATION',[mask_name ' saved']) |
---|
3364 | imwrite(imflag,mask_name,'BitDepth',8); |
---|
3365 | |
---|
3366 | %display the mask |
---|
3367 | figure; |
---|
3368 | vec=linspace(0,1,256);%define a linear greyscale colormap |
---|
3369 | map=[vec' vec' vec']; |
---|
3370 | colormap(map) |
---|
3371 | |
---|
3372 | image(imflag); |
---|
3373 | |
---|
3374 | %------------------------------------------------------------------- |
---|
3375 | %------------------------------------------------------------------- |
---|
3376 | % - FUNCTIONS FOR SETTING PLOTTING PARAMETERS |
---|
3377 | |
---|
3378 | %------------------------------------------------------------------ |
---|
3379 | |
---|
3380 | |
---|
3381 | |
---|
3382 | %------------------------------------------------------------- |
---|
3383 | % --- Executes on selection change in transform_fct. |
---|
3384 | function transform_fct_Callback(hObject, eventdata, handles) |
---|
3385 | %------------------------------------------------------------- |
---|
3386 | UvData=get(handles.uvmat,'UserData'); |
---|
3387 | menu=get(handles.transform_fct,'String'); |
---|
3388 | ind_coord=get(handles.transform_fct,'Value'); |
---|
3389 | coord_option=menu{ind_coord}; |
---|
3390 | list_transform=get(handles.transform_fct,'UserData'); |
---|
3391 | ff=functions(list_transform{end}); |
---|
3392 | if isequal(coord_option,'more...'); |
---|
3393 | coord_fct=''; |
---|
3394 | prompt = {'Enter the name of the transform function'}; |
---|
3395 | dlg_title = 'user defined transform'; |
---|
3396 | num_lines= 1; |
---|
3397 | [FileName, PathName] = uigetfile( ... |
---|
3398 | {'*.m', ' (*.m)'; |
---|
3399 | '*.m', '.m files '; ... |
---|
3400 | '*.*', 'All Files (*.*)'}, ... |
---|
3401 | 'Pick a file', ff.file); |
---|
3402 | if isequal(PathName(end),'/')||isequal(PathName(end),'\') |
---|
3403 | PathName(end)=[]; |
---|
3404 | end |
---|
3405 | transform_selected =fullfile(PathName,FileName); |
---|
3406 | if ~exist(transform_selected,'file') |
---|
3407 | return |
---|
3408 | end |
---|
3409 | [ppp,transform,ext_fct]=fileparts(FileName);% removes extension .m |
---|
3410 | if ~isequal(ext_fct,'.m') |
---|
3411 | msgbox_uvmat('ERROR','a Matlab function .m must be introduced'); |
---|
3412 | return |
---|
3413 | end |
---|
3414 | menu=update_menu(handles.transform_fct,transform);%add the selected fct to the menu |
---|
3415 | ind_coord=get(handles.transform_fct,'Value'); |
---|
3416 | addpath(PathName) |
---|
3417 | list_transform{ind_coord}=str2func(transform);% create the function handle corresponding to the newly seleced function |
---|
3418 | set(handles.transform_fct,'UserData',list_transform) |
---|
3419 | rmpath(PathName) |
---|
3420 | % save the new menu in the personal file 'uvmat_perso.mat' |
---|
3421 | dir_perso=prefdir;%personal Matalb directory |
---|
3422 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
3423 | if exist(profil_perso,'file') |
---|
3424 | nb_builtin=UvData.OpenParam.NbBuiltin; |
---|
3425 | for ilist=nb_builtin+1:numel(list_transform) |
---|
3426 | ff=functions(list_transform{ilist}); |
---|
3427 | transform_fct{ilist-nb_builtin}=ff.file; |
---|
3428 | end |
---|
3429 | save (profil_perso,'transform_fct','-append'); %store the root name for future opening of uvmat |
---|
3430 | end |
---|
3431 | end |
---|
3432 | |
---|
3433 | %check the current path to the selected function |
---|
3434 | if isa(list_transform{ind_coord},'function_handle') |
---|
3435 | func=functions(list_transform{ind_coord}); |
---|
3436 | set(handles.path_transform,'String',fileparts(func.file)); %show the path to the senlected function |
---|
3437 | else |
---|
3438 | set(handles.path_transform,'String','') |
---|
3439 | end |
---|
3440 | |
---|
3441 | set(handles.CheckFixLimits,'Value',0) |
---|
3442 | set(handles.CheckFixLimits,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3443 | |
---|
3444 | %delete drawn objects |
---|
3445 | hother=findobj('Tag','proj_object');%find all the proj objects |
---|
3446 | for iobj=1:length(hother) |
---|
3447 | delete_object(hother(iobj)) |
---|
3448 | end |
---|
3449 | hother=findobj('Tag','DeformPoint');%find all the proj objects |
---|
3450 | for iobj=1:length(hother) |
---|
3451 | delete_object(hother(iobj)) |
---|
3452 | end |
---|
3453 | hh=findobj('Tag','calib_points'); |
---|
3454 | if ~isempty(hh) |
---|
3455 | delete(hh) |
---|
3456 | end |
---|
3457 | hhh=findobj('Tag','calib_marker'); |
---|
3458 | if ~isempty(hhh) |
---|
3459 | delete(hhh) |
---|
3460 | end |
---|
3461 | if isfield(UvData,'Object') |
---|
3462 | UvData.Object=UvData.Object(1); |
---|
3463 | end |
---|
3464 | set(handles.ListObject,'Value',1) |
---|
3465 | set(handles.ListObject,'String',{''}) |
---|
3466 | |
---|
3467 | %delete mask if it is displayed |
---|
3468 | % if isequal(get(handles.CheckMask,'Value'),1)%if the mask option is on |
---|
3469 | % UvData=rmfield(UvData,'MaskName'); %will impose mask refresh |
---|
3470 | % end |
---|
3471 | set(handles.uvmat,'UserData',UvData) |
---|
3472 | run0_Callback(hObject, eventdata, handles) |
---|
3473 | |
---|
3474 | %------------------------------------------------------------------------ |
---|
3475 | function histo1_menu_Callback(hObject, eventdata, handles) |
---|
3476 | %-------------------------------------------- |
---|
3477 | %plot first histo |
---|
3478 | %huvmat=get(handles.histo1_menu,'parent'); |
---|
3479 | histo_menu=get(handles.histo1_menu,'String'); |
---|
3480 | histo_value=get(handles.histo1_menu,'Value'); |
---|
3481 | FieldName=histo_menu{histo_value}; |
---|
3482 | update_histo(handles.histo_u,handles.uvmat,FieldName) |
---|
3483 | |
---|
3484 | %------------------------------------------------------------------------ |
---|
3485 | function histo2_menu_Callback(hObject, eventdata, handles) |
---|
3486 | %------------------------------------------------------------------------ |
---|
3487 | %plot second histo |
---|
3488 | %huvmat=get(handles.histo2_menu,'parent'); |
---|
3489 | histo_menu=get(handles.histo2_menu,'String'); |
---|
3490 | histo_value=get(handles.histo2_menu,'Value'); |
---|
3491 | FieldName=histo_menu{histo_value}; |
---|
3492 | update_histo(handles.histo_v,handles.uvmat,FieldName) |
---|
3493 | |
---|
3494 | %------------------------------------------------------------------------ |
---|
3495 | %read the field .Fieldname stored in UvData and plot its histogram |
---|
3496 | function update_histo(haxes,huvmat,FieldName) |
---|
3497 | %------------------------------------------------------------------------ |
---|
3498 | UvData=get(huvmat,'UserData'); |
---|
3499 | if ~isfield(UvData.Field,FieldName) |
---|
3500 | msgbox_uvmat('ERROR',['no field ' FieldName ' for histogram']) |
---|
3501 | return |
---|
3502 | end |
---|
3503 | Field=UvData.Field; |
---|
3504 | FieldHisto=eval(['Field.' FieldName]); |
---|
3505 | if isfield(Field,'FF') && ~isempty(Field.FF) && isequal(size(Field.FF),size(FieldHisto)) |
---|
3506 | indsel=find(Field.FF==0);%find values marked as false |
---|
3507 | if ~isempty(indsel) |
---|
3508 | FieldHisto=FieldHisto(indsel); |
---|
3509 | end |
---|
3510 | end |
---|
3511 | if isempty(Field) |
---|
3512 | msgbox_uvmat('ERROR',['empty field ' FieldName]) |
---|
3513 | else |
---|
3514 | nxy=size(FieldHisto); |
---|
3515 | Amin=double(min(min(min(FieldHisto))));%min of image |
---|
3516 | Amax=double(max(max(max(FieldHisto))));%max of image |
---|
3517 | if isequal(Amin,Amax) |
---|
3518 | %msgbox_uvmat('WARNING',['uniform field =' num2str(Amin)]); |
---|
3519 | cla(haxes) |
---|
3520 | else |
---|
3521 | Histo.ListVarName={FieldName,'histo'}; |
---|
3522 | if isfield(Field,'NbDim') && isequal(Field.NbDim,3) |
---|
3523 | Histo.VarDimName={FieldName,FieldName}; %dimensions for the histogram |
---|
3524 | else |
---|
3525 | if numel(nxy)==2 |
---|
3526 | Histo.VarDimName={FieldName,FieldName}; %dimensions for the histogram |
---|
3527 | else |
---|
3528 | Histo.VarDimName={FieldName,{FieldName,'rgb'}}; %dimensions for the histogram |
---|
3529 | end |
---|
3530 | end |
---|
3531 | %unit |
---|
3532 | units=[]; %default |
---|
3533 | for ivar=1:numel(Field.ListVarName) |
---|
3534 | if strcmp(Field.ListVarName{ivar},FieldName) |
---|
3535 | if isfield(Field,'VarAttribute') && numel(Field.VarAttribute)>=ivar && isfield(Field.VarAttribute{ivar},'units') |
---|
3536 | units=Field.VarAttribute{ivar}.units; |
---|
3537 | break |
---|
3538 | end |
---|
3539 | end |
---|
3540 | end |
---|
3541 | if ~isempty(units) |
---|
3542 | Histo.VarAttribute{1}.units=units; |
---|
3543 | end |
---|
3544 | eval(['Histo.' FieldName '=linspace(Amin,Amax,50);'])%absissa values for histo |
---|
3545 | if isfield(Field,'NbDim') && isequal(Field.NbDim,3) |
---|
3546 | C=reshape(double(FieldHisto),1,[]);% reshape in a vector |
---|
3547 | eval(['Histo.histo(:,1)=hist(C, Histo.' FieldName ');']); %calculate histogram |
---|
3548 | else |
---|
3549 | for col=1:size(FieldHisto,3) |
---|
3550 | B=FieldHisto(:,:,col); |
---|
3551 | C=reshape(double(B),1,nxy(1)*nxy(2));% reshape in a vector |
---|
3552 | eval(['Histo.histo(:,col)=hist(C, Histo.' FieldName ');']); %calculate histogram |
---|
3553 | end |
---|
3554 | end |
---|
3555 | plot_field(Histo,haxes); |
---|
3556 | end |
---|
3557 | end |
---|
3558 | |
---|
3559 | %------------------------------------------------ |
---|
3560 | %CALLBACKS FOR PLOTTING PARAMETERS |
---|
3561 | %------------------------------------------------- |
---|
3562 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3563 | % Plot coordinates |
---|
3564 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3565 | %------------------------------------------------------------------------ |
---|
3566 | function num_MinX_Callback(hObject, eventdata, handles) |
---|
3567 | %------------------------------------------------------------------------ |
---|
3568 | set(handles.CheckFixLimits,'Value',1) %suppress auto mode |
---|
3569 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
3570 | update_plot(handles); |
---|
3571 | |
---|
3572 | %------------------------------------------------------------------------ |
---|
3573 | function num_MaxX_Callback(hObject, eventdata, handles) |
---|
3574 | %------------------------------------------------------------------------ |
---|
3575 | set(handles.CheckFixLimits,'Value',1) %suppress auto mode |
---|
3576 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
3577 | update_plot(handles); |
---|
3578 | |
---|
3579 | %------------------------------------------------------------------------ |
---|
3580 | function num_MinY_Callback(hObject, eventdata, handles) |
---|
3581 | %------------------------------------------ |
---|
3582 | set(handles.CheckFixLimits,'Value',1) %suppress auto mode |
---|
3583 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
3584 | update_plot(handles); |
---|
3585 | |
---|
3586 | %------------------------------------------------------------------------ |
---|
3587 | function num_MaxY_Callback(hObject, eventdata, handles) |
---|
3588 | %------------------------------------------------------------------------ |
---|
3589 | set(handles.CheckFixLimits,'Value',1) %suppress auto mode |
---|
3590 | set(handles.CheckFixLimits,'BackgroundColor',[1 1 0]) |
---|
3591 | update_plot(handles); |
---|
3592 | |
---|
3593 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3594 | % Scalar or image representation |
---|
3595 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3596 | %------------------------------------------------------------------------ |
---|
3597 | function num_MinA_Callback(hObject, eventdata, handles) |
---|
3598 | %------------------------------------------ |
---|
3599 | set(handles.CheckFixScalar,'Value',1) %suppress auto mode |
---|
3600 | set(handles.CheckFixScalar,'BackgroundColor',[1 1 0]) |
---|
3601 | MinA=str2double(get(handles.num_MinA,'String')); |
---|
3602 | MaxA=str2double(get(handles.num_MaxA,'String')); |
---|
3603 | if MinA>MaxA% switch minA and maxA in case of error |
---|
3604 | MinA_old=MinA; |
---|
3605 | MinA=MaxA; |
---|
3606 | MaxA=MinA_old; |
---|
3607 | set(handles.num_MinA,'String',num2str(MinA,5)); |
---|
3608 | set(handles.num_MaxA,'String',num2str(MaxA,5)); |
---|
3609 | end |
---|
3610 | update_plot(handles); |
---|
3611 | |
---|
3612 | %------------------------------------------------------------------------ |
---|
3613 | function num_MaxA_Callback(hObject, eventdata, handles) |
---|
3614 | %------------------------------------------------------------------------ |
---|
3615 | set(handles.CheckFixScalar,'Value',1) %suppress auto mode |
---|
3616 | set(handles.CheckFixScalar,'BackgroundColor',[1 1 0]) |
---|
3617 | MinA=str2double(get(handles.num_MinA,'String')); |
---|
3618 | MaxA=str2double(get(handles.num_MaxA,'String')); |
---|
3619 | if MinA>MaxA% switch minA and maxA in case of error |
---|
3620 | MinA_old=MinA; |
---|
3621 | MinA=MaxA; |
---|
3622 | MaxA=MinA_old; |
---|
3623 | set(handles.num_MinA,'String',num2str(MinA,5)); |
---|
3624 | set(handles.num_MaxA,'String',num2str(MaxA,5)); |
---|
3625 | end |
---|
3626 | update_plot(handles); |
---|
3627 | |
---|
3628 | %------------------------------------------------------------------------ |
---|
3629 | function CheckFixScalar_Callback(hObject, eventdata, handles) |
---|
3630 | %------------------------------------------------------------------------ |
---|
3631 | test=get(handles.CheckFixScalar,'Value'); |
---|
3632 | if test |
---|
3633 | set(handles.CheckFixScalar,'BackgroundColor',[1 1 0]) |
---|
3634 | else |
---|
3635 | set(handles.CheckFixScalar,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3636 | update_plot(handles); |
---|
3637 | end |
---|
3638 | |
---|
3639 | %------------------------------------------------------------------- |
---|
3640 | function CheckBW_Callback(hObject, eventdata, handles) |
---|
3641 | %------------------------------------------------------------------- |
---|
3642 | update_plot(handles); |
---|
3643 | |
---|
3644 | %------------------------------------------------------------------- |
---|
3645 | function ListContour_Callback(hObject, eventdata, handles) |
---|
3646 | %------------------------------------------------------------------- |
---|
3647 | val=get(handles.ListContour,'Value'); |
---|
3648 | if val==2 |
---|
3649 | set(handles.interval_txt,'Visible','on') |
---|
3650 | set(handles.num_IncrA,'Visible','on') |
---|
3651 | else |
---|
3652 | set(handles.interval_txt,'Visible','off') |
---|
3653 | set(handles.num_IncrA,'Visible','off') |
---|
3654 | end |
---|
3655 | update_plot(handles); |
---|
3656 | |
---|
3657 | %------------------------------------------------------------------- |
---|
3658 | function num_IncrA_Callback(hObject, eventdata, handles) |
---|
3659 | %------------------------------------------------------------------- |
---|
3660 | update_plot(handles); |
---|
3661 | |
---|
3662 | |
---|
3663 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3664 | % Vector representation |
---|
3665 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
3666 | %------------------------------------------------------------------- |
---|
3667 | function CheckHideWarning_Callback(hObject, eventdata, handles) |
---|
3668 | %------------------------------------------------------------------- |
---|
3669 | update_plot(handles); |
---|
3670 | |
---|
3671 | %------------------------------------------------------------------- |
---|
3672 | function CheckHideFalse_Callback(hObject, eventdata, handles) |
---|
3673 | %------------------------------------------------------------------- |
---|
3674 | update_plot(handles); |
---|
3675 | |
---|
3676 | %------------------------------------------------------------------- |
---|
3677 | function num_VecScale_Callback(hObject, eventdata, handles) |
---|
3678 | %------------------------------------------------------------------- |
---|
3679 | set(handles.CheckFixVectors,'Value',1); |
---|
3680 | set(handles.CheckFixVectors,'BackgroundColor',[1 1 0]) |
---|
3681 | update_plot(handles); |
---|
3682 | |
---|
3683 | %------------------------------------------------------------------- |
---|
3684 | function CheckFixVectors_Callback(hObject, eventdata, handles) |
---|
3685 | %------------------------------------------------------------------- |
---|
3686 | test=get(handles.CheckFixVectors,'Value'); |
---|
3687 | if test |
---|
3688 | set(handles.CheckFixVectors,'BackgroundColor',[1 1 0]) |
---|
3689 | else |
---|
3690 | update_plot(handles); |
---|
3691 | %set(handles.num_VecScale,'String',num2str(ScalOut.num_VecScale,3)) |
---|
3692 | set(handles.CheckFixVectors,'BackgroundColor',[0.7 0.7 0.7]) |
---|
3693 | end |
---|
3694 | |
---|
3695 | %------------------------------------------------------------------------ |
---|
3696 | % --- Executes on selection change in CheckDecimate4 (nb_vec/4). |
---|
3697 | function CheckDecimate4_Callback(hObject, eventdata, handles) |
---|
3698 | %------------------------------------------------------------------------ |
---|
3699 | update_plot(handles); |
---|
3700 | |
---|
3701 | %------------------------------------------------------------------------ |
---|
3702 | % --- Executes on selection change in ColorCode menu |
---|
3703 | function ColorCode_Callback(hObject, eventdata, handles) |
---|
3704 | %------------------------------------------------------------------------ |
---|
3705 | % edit the choice for color code |
---|
3706 | update_color_code_boxes(handles); |
---|
3707 | update_plot(handles); |
---|
3708 | |
---|
3709 | %------------------------------------------------------------------------ |
---|
3710 | function update_color_code_boxes(handles) |
---|
3711 | %------------------------------------------------------------------------ |
---|
3712 | list_code=get(handles.ColorCode,'String');% list menu fields |
---|
3713 | colcode= list_code{get(handles.ColorCode,'Value')}; % selected field |
---|
3714 | enable_slider='off';%default |
---|
3715 | enable_bounds='off';%default |
---|
3716 | enable_scalar='off';%default |
---|
3717 | switch colcode |
---|
3718 | case {'rgb','bgr'} |
---|
3719 | enable_slider='on'; |
---|
3720 | enable_bounds='on'; |
---|
3721 | enable_scalar='on'; |
---|
3722 | case '64 colors' |
---|
3723 | enable_bounds='on'; |
---|
3724 | enable_scalar='on'; |
---|
3725 | end |
---|
3726 | set(handles.Slider1,'Visible',enable_slider) |
---|
3727 | set(handles.Slider2,'Visible', enable_slider) |
---|
3728 | set(handles.num_ColCode1,'Visible',enable_slider) |
---|
3729 | set(handles.num_ColCode2,'Visible',enable_slider) |
---|
3730 | set(handles.TitleColCode1,'Visible',enable_slider) |
---|
3731 | set(handles.TitleColCode2,'Visible',enable_slider) |
---|
3732 | set(handles.CheckFixVecColor,'Visible',enable_bounds) |
---|
3733 | set(handles.num_MinVec,'Visible',enable_bounds) |
---|
3734 | set(handles.num_MaxVec,'Visible',enable_bounds) |
---|
3735 | set(handles.ColorScalar,'Visible',enable_scalar) |
---|
3736 | set_vec_col_bar(handles) |
---|
3737 | |
---|
3738 | %------------------------------------------------------------------ |
---|
3739 | % --- Executes on selection change in ColorScalar: choice of the color code. |
---|
3740 | function ColorScalar_Callback(hObject, eventdata, handles) |
---|
3741 | %------------------------------------------------------------------ |
---|
3742 | % edit the choice for color code |
---|
3743 | list_scalar=get(handles.ColorScalar,'String');% list menu fields |
---|
3744 | col_scalar= list_scalar{get(handles.ColorScalar,'Value')}; % selected field |
---|
3745 | if isequal(col_scalar,'ima_cor') |
---|
3746 | set(handles.CheckFixVecColor,'Value',1)%fixed scale by default |
---|
3747 | ColorCode='rgb'; |
---|
3748 | set(handles.num_MinVec,'String','0') |
---|
3749 | set(handles.num_MaxVec,'String','1') |
---|
3750 | set(handles.num_ColCode1,'String','0.333') |
---|
3751 | set(handles.num_ColCode2,'String','0.666') |
---|
3752 | else |
---|
3753 | set(handles.CheckFixVecColor,'Value',0)%auto scale between min,max by default |
---|
3754 | ColorCode='64 colors'; |
---|
3755 | end |
---|
3756 | ColorCodeList=get(handles.ColorCode,'String'); |
---|
3757 | ichoice=find(strcmp(ColorCode,ColorCodeList),1); |
---|
3758 | set(handles.ColorCode,'Value',ichoice)% set color code in the menu |
---|
3759 | |
---|
3760 | update_color_code_boxes(handles); |
---|
3761 | %replot the current graph |
---|
3762 | run0_Callback(hObject, eventdata, handles) |
---|
3763 | |
---|
3764 | %---------------------------------------------------------------- |
---|
3765 | % -- Executes on slider movement to set the color code |
---|
3766 | % |
---|
3767 | function Slider1_Callback(hObject, eventdata, handles) |
---|
3768 | %------------------------------------------------------------------ |
---|
3769 | slider1=get(handles.Slider1,'Value'); |
---|
3770 | min_val=str2num(get(handles.num_MinVec,'String')); |
---|
3771 | max_val=str2num(get(handles.num_MaxVec,'String')); |
---|
3772 | col=min_val+(max_val-min_val)*slider1; |
---|
3773 | set(handles.num_ColCode1,'String',num2str(col)) |
---|
3774 | if(get(handles.Slider2,'Value') < col)%move also the second slider at the same value if needed |
---|
3775 | set(handles.Slider2,'Value',col) |
---|
3776 | set(handles.num_ColCode2,'String',num2str(col)) |
---|
3777 | end |
---|
3778 | set_vec_col_bar(handles) |
---|
3779 | update_plot(handles); |
---|
3780 | |
---|
3781 | %---------------------------------------------------------------- |
---|
3782 | % Executes on slider movement to set the color code |
---|
3783 | %---------------------------------------------------------------- |
---|
3784 | function Slider2_Callback(hObject, eventdata, handles) |
---|
3785 | slider2=get(handles.Slider2,'Value'); |
---|
3786 | min_val=str2num(get(handles.num_MinVec,'String')); |
---|
3787 | max_val=str2num(get(handles.num_MaxVec,'String')); |
---|
3788 | col=min_val+(max_val-min_val)*slider2; |
---|
3789 | set(handles.num_ColCode2,'String',num2str(col)) |
---|
3790 | if(get(handles.Slider1,'Value') > col)%move also the first slider at the same value if needed |
---|
3791 | set(handles.Slider1,'Value',col) |
---|
3792 | set(handles.num_ColCode1,'String',num2str(col)) |
---|
3793 | end |
---|
3794 | set_vec_col_bar(handles) |
---|
3795 | update_plot(handles); |
---|
3796 | |
---|
3797 | %---------------------------------------------------------------- |
---|
3798 | % --- Execute on return carriage on the edit box corresponding to slider 1 |
---|
3799 | %---------------------------------------------------------------- |
---|
3800 | function num_ColCode1_Callback(hObject, eventdata, handles) |
---|
3801 | set_vec_col_bar(handles) |
---|
3802 | update_plot(handles); |
---|
3803 | |
---|
3804 | %---------------------------------------------------------------- |
---|
3805 | % --- Execute on return carriage on the edit box corresponding to slider 2 |
---|
3806 | %---------------------------------------------------------------- |
---|
3807 | function num_ColCode2_Callback(hObject, eventdata, handles) |
---|
3808 | set_vec_col_bar(handles) |
---|
3809 | update_plot(handles); |
---|
3810 | %------------------------------------------------------------------------ |
---|
3811 | %------------------------------------------------------- |
---|
3812 | % --- Executes on button press in CheckFixVecColor. |
---|
3813 | %------------------------------------------------------- |
---|
3814 | function VecColBar_Callback(hObject, eventdata, handles) |
---|
3815 | set_vec_col_bar(handles) |
---|
3816 | |
---|
3817 | %------------------------------------------------------------------------ |
---|
3818 | % --- Executes on button press in CheckFixVecColor. |
---|
3819 | function CheckFixVecColor_Callback(hObject, eventdata, handles) |
---|
3820 | %------------------------------------------------------------------------ |
---|
3821 | if ~get(handles.CheckFixVecColor,'Value') |
---|
3822 | update_plot(handles); |
---|
3823 | end |
---|
3824 | |
---|
3825 | %------------------------------------------------------------------------ |
---|
3826 | % --- Executes on selection change in num_MaxVec. |
---|
3827 | function num_MinVec_Callback(hObject, eventdata, handles) |
---|
3828 | %------------------------------------------------------------------------ |
---|
3829 | max_vec_Callback(hObject, eventdata, handles) |
---|
3830 | |
---|
3831 | %------------------------------------------------------------------------ |
---|
3832 | % --- Executes on selection change in num_MaxVec. |
---|
3833 | function num_MaxVec_Callback(hObject, eventdata, handles) |
---|
3834 | %------------------------------------------------------------------------ |
---|
3835 | set(handles.CheckFixVecColor,'Value',1) |
---|
3836 | CheckFixVecColor_Callback(hObject, eventdata, handles) |
---|
3837 | min_val=str2num(get(handles.num_MinVec,'String')); |
---|
3838 | max_val=str2num(get(handles.num_MaxVec,'String')); |
---|
3839 | slider1=get(handles.Slider1,'Value'); |
---|
3840 | slider2=get(handles.Slider2,'Value'); |
---|
3841 | colcode1=min_val+(max_val-min_val)*slider1; |
---|
3842 | colcode2=min_val+(max_val-min_val)*slider2; |
---|
3843 | set(handles.num_ColCode1,'String',num2str(colcode1)) |
---|
3844 | set(handles.num_ColCode2,'String',num2str(colcode2)) |
---|
3845 | update_plot(handles); |
---|
3846 | |
---|
3847 | %------------------------------------------------------------------------ |
---|
3848 | % --- update the display of color code for vectors (on vecColBar) |
---|
3849 | function set_vec_col_bar(handles) |
---|
3850 | %------------------------------------------------------------------------ |
---|
3851 | %get the image of the color display button 'VecColBar' in pixels |
---|
3852 | set(handles.VecColBar,'Unit','pixel'); |
---|
3853 | pos_vert=get(handles.VecColBar,'Position'); |
---|
3854 | set(handles.VecColBar,'Unit','Normalized'); |
---|
3855 | width=ceil(pos_vert(3)); |
---|
3856 | height=ceil(pos_vert(4)); |
---|
3857 | |
---|
3858 | %get slider indications |
---|
3859 | list=get(handles.ColorCode,'String'); |
---|
3860 | ichoice=get(handles.ColorCode,'Value'); |
---|
3861 | colcode.ColorCode=list{ichoice}; |
---|
3862 | colcode.MinVec=str2num(get(handles.num_MinVec,'String')); |
---|
3863 | colcode.MaxVec=str2num(get(handles.num_MaxVec,'String')); |
---|
3864 | test3color=strcmp(colcode.ColorCode,'rgb') || strcmp(colcode.ColorCode,'bgr'); |
---|
3865 | if test3color |
---|
3866 | colcode.ColCode1=str2num(get(handles.num_ColCode1,'String')); |
---|
3867 | colcode.ColCode2=str2num(get(handles.num_ColCode2,'String')); |
---|
3868 | end |
---|
3869 | vec_C=colcode.MinVec+(colcode.MaxVec-colcode.MinVec)*(0.5:width-0.5)/width;%sample of vec_C values from min to max |
---|
3870 | [colorlist,col_vec]=set_col_vec(colcode,vec_C); |
---|
3871 | oneheight=ones(1,height); |
---|
3872 | A1=colorlist(col_vec,1)*oneheight; |
---|
3873 | A2=colorlist(col_vec,2)*oneheight; |
---|
3874 | A3=colorlist(col_vec,3)*oneheight; |
---|
3875 | A(:,:,1)=A1'; |
---|
3876 | A(:,:,2)=A2'; |
---|
3877 | A(:,:,3)=A3'; |
---|
3878 | set(handles.VecColBar,'Cdata',A) |
---|
3879 | |
---|
3880 | %------------------------------------------------------------------- |
---|
3881 | function update_plot(handles) |
---|
3882 | %------------------------------------------------------------------- |
---|
3883 | UvData=get(handles.uvmat,'UserData'); |
---|
3884 | AxeData=UvData.axes3;% retrieve the current plotted data |
---|
3885 | PlotParam=read_GUI(handles.uvmat); |
---|
3886 | [tild,PlotParamOut]= plot_field(AxeData,handles.axes3,PlotParam); |
---|
3887 | write_plot_param(handles,PlotParamOut); %update the auto plot parameters |
---|
3888 | |
---|
3889 | %------------------------------------------------------------------------ |
---|
3890 | %------------------------------------------------------------------------ |
---|
3891 | % SELECTION AND EDITION OF PROJECTION OBJECTS |
---|
3892 | %------------------------------------------------------------------------ |
---|
3893 | %------------------------------------------------------------------------ |
---|
3894 | |
---|
3895 | % --- Executes on selection change in ListObject_1. |
---|
3896 | function ListObject_1_Callback(hObject, eventdata, handles) |
---|
3897 | list_str=get(handles.ListObject_1,'String'); |
---|
3898 | IndexObj=get(handles.ListObject_1,'Value'); |
---|
3899 | UvData=get(handles.uvmat,'UserData'); |
---|
3900 | ObjectData=UvData.Object{get(handles.ListObject_1,'Value')}; |
---|
3901 | |
---|
3902 | %% update the projection plot on uvmat |
---|
3903 | ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on UvData.Object{IndexObj(1)} |
---|
3904 | plot_field(ProjData,handles.axes3,read_GUI(handles.uvmat));%read plotting parameters on the uvmat interfacPlotHandles); |
---|
3905 | |
---|
3906 | %% display the object parameters if the GUI set_object is already opened |
---|
3907 | hset_object=findobj(allchild(0),'tag','set_object'); |
---|
3908 | if ~isempty(hset_object) |
---|
3909 | % delete(hset_object)% delete to refesh the content |
---|
3910 | ZBounds=0; % default |
---|
3911 | if isfield(UvData.Field,'ZMin') && isfield(UvData.Field,'ZMax') |
---|
3912 | ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider |
---|
3913 | ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider |
---|
3914 | end |
---|
3915 | ObjectData.Name=list_str{IndexObj}; |
---|
3916 | set_object(ObjectData,[],ZBounds); |
---|
3917 | set(handles.ViewObject_1,'Value',1)% show that the selected object in ListObject_1 is currently visualised |
---|
3918 | end |
---|
3919 | % desactivate the edit object mode |
---|
3920 | set(handles.edit_object,'Value',0) |
---|
3921 | set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) |
---|
3922 | |
---|
3923 | %------------------------------------------------------------------------ |
---|
3924 | % --- Executes on selection change in ListObject. |
---|
3925 | |
---|
3926 | function ListObject_Callback(hObject, eventdata, handles) |
---|
3927 | %------------------------------------------------------------------------ |
---|
3928 | list_str=get(handles.ListObject,'String'); |
---|
3929 | IndexObj=get(handles.ListObject,'Value');%present object selection |
---|
3930 | |
---|
3931 | %% The object is displayed in set_object if this GUI is already opened |
---|
3932 | UvData=get(handles.uvmat,'UserData'); |
---|
3933 | ObjectData=UvData.Object{IndexObj}; |
---|
3934 | hset_object=findobj(allchild(0),'tag','set_object'); |
---|
3935 | if ~isempty(hset_object) |
---|
3936 | % delete(hset_object)% delete to refesh the content |
---|
3937 | ZBounds=0; % default |
---|
3938 | if isfield(UvData.Field,'ZMin') && isfield(UvData.Field,'ZMax') |
---|
3939 | ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider |
---|
3940 | ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider |
---|
3941 | end |
---|
3942 | ObjectData.Name=list_str{IndexObj}; |
---|
3943 | set_object(ObjectData,[],ZBounds); |
---|
3944 | set(handles.ViewObject,'Value',1)% show that the selected object in ListObject is currently visualised |
---|
3945 | end |
---|
3946 | % desactivate the edit object mode |
---|
3947 | set(handles.edit_object,'Value',0) |
---|
3948 | set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) |
---|
3949 | |
---|
3950 | %% update the second plot (on view_field) if view_field is already openened |
---|
3951 | axes_view_field=[];%default |
---|
3952 | if length(IndexObj)==2 && (length(IndexObj_old)==1 || ~isequal(IndexObj(2),IndexObj_old(2))) |
---|
3953 | hview_field=findobj(allchild(0),'tag','view_field'); |
---|
3954 | if ~isempty(hview_field) |
---|
3955 | PlotHandles=guidata(hview_field); |
---|
3956 | ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData |
---|
3957 | axes_view_field=PlotHandles.axes3; |
---|
3958 | plot_field(ProjData,axes_view_field,read_GUI(hview_field));%read plotting parameters on the uvmat interfacPlotHandles); |
---|
3959 | end |
---|
3960 | end |
---|
3961 | |
---|
3962 | %% update the color of the graphic object representation: the selected object in magenta, others in blue |
---|
3963 | update_object_color(handles.axes3,axes_view_field,UvData.Object{IndexObj(end)}.DisplayHandle_uvmat) |
---|
3964 | |
---|
3965 | %------------------------------------------------------------------------ |
---|
3966 | %--- update the color representation of objects (indicating the selected ones) |
---|
3967 | function update_object_color(axes_uvmat,axes_view_field,DisplayHandle) |
---|
3968 | %------------------------------------------------------------------------ |
---|
3969 | if isempty(axes_view_field)% case with no view_field plot |
---|
3970 | hother=[findobj(axes_uvmat,'Tag','proj_object');findobj(axes_uvmat,'Tag','DeformPoint')];%find all the proj object and deform point representations |
---|
3971 | else |
---|
3972 | hother=[findobj(axes_uvmat,'Tag','proj_object') ;findobj(axes_view_field,'Tag','proj_object');... %find all the proj object representations |
---|
3973 | findobj(axes_uvmat,'Tag','DeformPoint'); findobj(axes_view_field,'Tag','DeformPoint')];%find all the deform point representations |
---|
3974 | end |
---|
3975 | for iobj=1:length(hother) |
---|
3976 | if isequal(get(hother(iobj),'Type'),'rectangle')||isequal(get(hother(iobj),'Type'),'patch') |
---|
3977 | set(hother(iobj),'EdgeColor','b') |
---|
3978 | if isequal(get(hother(iobj),'FaceColor'),'m') |
---|
3979 | set(hother(iobj),'FaceColor','b') |
---|
3980 | end |
---|
3981 | elseif isequal(get(hother(iobj),'Type'),'image') |
---|
3982 | Acolor=get(hother(iobj),'CData'); |
---|
3983 | Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2)); |
---|
3984 | set(hother(iobj),'CData',Acolor); |
---|
3985 | else |
---|
3986 | set(hother(iobj),'Color','b') |
---|
3987 | end |
---|
3988 | set(hother(iobj),'Selected','off') |
---|
3989 | end |
---|
3990 | if ~isempty(DisplayHandle) |
---|
3991 | linetype=get(DisplayHandle,'Type'); |
---|
3992 | if isequal(linetype,'line') |
---|
3993 | set(DisplayHandle,'Color','m'); %set the selected object to magenta color |
---|
3994 | elseif isequal(linetype,'rectangle') |
---|
3995 | set(DisplayHandle,'EdgeColor','m'); %set the selected object to magenta color |
---|
3996 | elseif isequal(linetype,'patch') |
---|
3997 | set(DisplayHandle,'FaceColor','m'); %set the selected object to magenta color |
---|
3998 | end |
---|
3999 | SubObjectData=get(DisplayHandle,'UserData'); |
---|
4000 | if isfield(SubObjectData,'SubObject') & ishandle(SubObjectData.SubObject) |
---|
4001 | for iobj=1:length(SubObjectData.SubObject) |
---|
4002 | hsub=SubObjectData.SubObject(iobj); |
---|
4003 | if isequal(get(hsub,'Type'),'rectangle') |
---|
4004 | set(hsub,'EdgeColor','m'); %set the selected object to magenta color |
---|
4005 | elseif isequal(get(hsub,'Type'),'image') |
---|
4006 | Acolor=get(hsub,'CData'); |
---|
4007 | Acolor(:,:,1)=Acolor(:,:,3); |
---|
4008 | set(hsub,'CData',Acolor); |
---|
4009 | else |
---|
4010 | set(hsub,'Color','m') |
---|
4011 | end |
---|
4012 | end |
---|
4013 | end |
---|
4014 | if isfield(SubObjectData,'DeformPoint') & ishandle(SubObjectData.DeformPoint) |
---|
4015 | set(SubObjectData.DeformPoint,'Color','m') |
---|
4016 | end |
---|
4017 | end |
---|
4018 | |
---|
4019 | %------------------------------------------------------------------------ |
---|
4020 | % --- Executes on button press in ViewObject_1. |
---|
4021 | function ViewObject_1_Callback(hObject, eventdata, handles) |
---|
4022 | %------------------------------------------------------------------------ |
---|
4023 | check_view=get(handles.ViewObject_1,'Value'); |
---|
4024 | |
---|
4025 | if check_view %activate set_object |
---|
4026 | set(handles.ViewObject,'Value',0)% deselect ViewObject |
---|
4027 | IndexObj=get(handles.ListObject_1,'Value'); |
---|
4028 | list_object=get(handles.ListObject_1,'String'); |
---|
4029 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
4030 | UvData.Object{IndexObj}.Name=list_object{IndexObj}; |
---|
4031 | if numel(UvData.Object)<IndexObj;% error in UvData |
---|
4032 | msgbox_uvmat('ERROR','invalid object list') |
---|
4033 | return |
---|
4034 | end |
---|
4035 | ZBounds=0; % default |
---|
4036 | if isfield(UvData.Field,'ZMin') && isfield(UvData.Field,'ZMax') |
---|
4037 | ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider |
---|
4038 | ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider |
---|
4039 | end |
---|
4040 | set(handles.ListObject_1,'Value',IndexObj);%restore ListObject selection after set_object deletion |
---|
4041 | data=UvData.Object{IndexObj}; |
---|
4042 | if ~isfield(data,'Type')% default plane |
---|
4043 | data.Type='plane'; |
---|
4044 | end |
---|
4045 | if isfield(UvData,'Field') |
---|
4046 | Field=UvData.Field; |
---|
4047 | if isfield(UvData.Field,'Mesh')&&~isempty(UvData.Field.Mesh) |
---|
4048 | data.RangeX=[UvData.Field.XMin UvData.Field.XMax]; |
---|
4049 | if strcmp(data.Type,'line')||strcmp(data.Type,'polyline') |
---|
4050 | data.RangeY=UvData.Field.Mesh; |
---|
4051 | else |
---|
4052 | data.RangeY=[UvData.Field.YMin UvData.Field.YMax]; |
---|
4053 | end |
---|
4054 | data.DX=UvData.Field.Mesh; |
---|
4055 | data.DY=UvData.Field.Mesh; |
---|
4056 | end |
---|
4057 | if isfield(Field,'NbDim')&& isequal(Field.NbDim,3) |
---|
4058 | data.Coord=[0 0 0]; %default |
---|
4059 | end |
---|
4060 | if isfield(Field,'CoordUnit') |
---|
4061 | data.CoordUnit=Field.CoordUnit; |
---|
4062 | end |
---|
4063 | end |
---|
4064 | hset_object=set_object(data,[],ZBounds); |
---|
4065 | hhset_object=guidata(hset_object); |
---|
4066 | if get(handles.edit_object,'Value')% edit mode |
---|
4067 | set(hhset_object.PLOT,'Enable','on') |
---|
4068 | else |
---|
4069 | set(hhset_object.PLOT,'Enable','off') |
---|
4070 | end |
---|
4071 | else |
---|
4072 | hset_object=findobj(allchild(0),'tag','set_object'); |
---|
4073 | if ~isempty(hset_object) |
---|
4074 | delete(hset_object)% delete existing version of set_object |
---|
4075 | end |
---|
4076 | end |
---|
4077 | |
---|
4078 | %------------------------------------------------------------------------ |
---|
4079 | % --- Executes on button press in ViewObject. |
---|
4080 | function ViewObject_Callback(hObject, eventdata, handles) |
---|
4081 | %------------------------------------------------------------------------ |
---|
4082 | check_view=get(handles.ViewObject,'Value'); |
---|
4083 | |
---|
4084 | if check_view |
---|
4085 | set(handles.ViewObject_1,'Value',0)% unselect ViewObject_1 |
---|
4086 | IndexObj=get(handles.ListObject,'Value'); |
---|
4087 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
4088 | if numel(UvData.Object)<IndexObj(end);% error in UvData |
---|
4089 | msgbox_uvmat('ERROR','invalid object list') |
---|
4090 | return |
---|
4091 | end |
---|
4092 | ZBounds=0; % default |
---|
4093 | if isfield(UvData.Field,'ZMin') && isfield(UvData.Field,'ZMax') |
---|
4094 | ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider |
---|
4095 | ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider |
---|
4096 | end |
---|
4097 | set(handles.ListObject,'Value',IndexObj);%restore ListObject selection after set_object deletion |
---|
4098 | if ~isfield(UvData.Object{IndexObj(1)},'Type')% default plane |
---|
4099 | UvData.Object{IndexObj(1)}.Type='plane'; |
---|
4100 | end |
---|
4101 | list_object=get(handles.ListObject,'String'); |
---|
4102 | UvData.Object{IndexObj(end)}.Name=list_object{IndexObj(end)}; |
---|
4103 | hset_object=set_object(UvData.Object{IndexObj(end)},[],ZBounds); |
---|
4104 | hhset_object=guidata(hset_object); |
---|
4105 | if get(handles.edit_object,'Value')% edit mode |
---|
4106 | set(hhset_object.PLOT,'Enable','on') |
---|
4107 | else |
---|
4108 | set(hhset_object.PLOT,'Enable','off') |
---|
4109 | end |
---|
4110 | |
---|
4111 | %% show the second plot (on view_field) |
---|
4112 | ProjData= proj_field(UvData.Field,UvData.Object{IndexObj});%project the current field on ObjectData |
---|
4113 | hview_field=findobj(allchild(0),'tag','view_field'); |
---|
4114 | if isempty(hview_field) |
---|
4115 | hview_field=view_field; |
---|
4116 | end |
---|
4117 | PlotHandles=guidata(hview_field); |
---|
4118 | plot_field(ProjData,PlotHandles.axes3,read_GUI(hview_field));%read plotting parameters on the uvmat interfacPlotHandles); |
---|
4119 | else |
---|
4120 | hset_object=findobj(allchild(0),'tag','set_object'); |
---|
4121 | if ~isempty(hset_object) |
---|
4122 | delete(hset_object)% delete existing version of set_object |
---|
4123 | end |
---|
4124 | end |
---|
4125 | %------------------------------------------------------------------- |
---|
4126 | % --- Executes on selection change in edit_object. |
---|
4127 | function edit_object_Callback(hObject, eventdata, handles) |
---|
4128 | %------------------------------------------------------------------- |
---|
4129 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
4130 | if get(handles.edit_object,'Value') |
---|
4131 | set(handles.edit_object,'BackgroundColor',[1,1,0]) |
---|
4132 | %suppress the other options |
---|
4133 | set(handles.CheckZoom,'Value',0) |
---|
4134 | CheckZoom_Callback(hObject, eventdata, handles) |
---|
4135 | hgeometry_calib=findobj(allchild(0),'tag','geometry_calib'); |
---|
4136 | if ishandle(hgeometry_calib) |
---|
4137 | hhgeometry_calib=guidata(hgeometry_calib); |
---|
4138 | set(hhgeometry_calib.edit_append,'Value',0)% desactivate mouse action in geometry_calib |
---|
4139 | set(hhgeometry_calib.edit_append,'BackgroundColor',[0.7 0.7 0.7]) |
---|
4140 | end |
---|
4141 | hset_object=findobj(allchild(0),'Tag','set_object'); |
---|
4142 | if isempty(hset_object)% open the GUI set_object with data of the currently selected object |
---|
4143 | ViewObject_Callback(hObject, eventdata, handles) |
---|
4144 | hset_object=findobj(allchild(0),'Tag','set_object'); |
---|
4145 | end |
---|
4146 | hhset_object=guidata(hset_object); |
---|
4147 | set(hhset_object.PLOT,'enable','on'); |
---|
4148 | else |
---|
4149 | set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) |
---|
4150 | hset_object=findobj(allchild(0),'Tag','set_object'); |
---|
4151 | if ~isempty(hset_object)% open the |
---|
4152 | hhset_object=guidata(hset_object); |
---|
4153 | set(hhset_object.PLOT,'enable','off'); |
---|
4154 | end |
---|
4155 | end |
---|
4156 | |
---|
4157 | %------------------------------------------------------------------------ |
---|
4158 | % --- Executes on button press in delete_object. |
---|
4159 | function delete_object_Callback(hObject, eventdata, handles) |
---|
4160 | %------------------------------------------------------------------------ |
---|
4161 | IndexObj=get(handles.ListObject,'Value'); |
---|
4162 | IndexObj_1=get(handles.ListObject_1,'Value'); |
---|
4163 | |
---|
4164 | if IndexObj>1 && ~isequal(IndexObj,IndexObj_1) |
---|
4165 | delete_object(IndexObj) |
---|
4166 | end |
---|
4167 | |
---|
4168 | %------------------------------------------------------------------------ |
---|
4169 | %------------------------------------------------------------------------ |
---|
4170 | % II - TOOLS FROM THE UPPER MENU BAR |
---|
4171 | %------------------------------------------------------------------------ |
---|
4172 | %------------------------------------------------------------------------ |
---|
4173 | |
---|
4174 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4175 | % Export Menu Callbacks |
---|
4176 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4177 | %------------------------------------------------------------------------ |
---|
4178 | % --- Executes on button press in Menu/Export/field in workspace. |
---|
4179 | function MenuExportField_Callback(hObject, eventdata, handles) |
---|
4180 | %------------------------------------------------------------------------ |
---|
4181 | global Data_uvmat |
---|
4182 | Data_uvmat=get(handles.uvmat,'UserData'); |
---|
4183 | evalin('base','global Data_uvmat')%make CurData global in the workspace |
---|
4184 | display('current field :') |
---|
4185 | evalin('base','Data_uvmat') %display CurData in the workspace |
---|
4186 | commandwindow; %brings the Matlab command window to the front |
---|
4187 | |
---|
4188 | %------------------------------------------------------------------------ |
---|
4189 | % --- Executes on button press in Menu/Export/extract figure. |
---|
4190 | function MenuExportFigure_Callback(hObject, eventdata, handles) |
---|
4191 | %------------------------------------------------------------------------ |
---|
4192 | % huvmat=get(handles.MenuExport,'parent'); |
---|
4193 | hfig=figure; |
---|
4194 | copyobj(handles.axes3,hfig); |
---|
4195 | map=colormap(handles.axes3); |
---|
4196 | colormap(map);%transmit the current colormap to the zoom fig |
---|
4197 | colorbar |
---|
4198 | |
---|
4199 | % %------------------------------------------------------ |
---|
4200 | % % --- Executes on button press in Menu/Export/extract figure. |
---|
4201 | % %------------------------------------------------------ |
---|
4202 | % function MenuExport_plot_Callback(hObject, eventdata, handles) |
---|
4203 | % huvmat=get(handles.MenuExport_plot,'parent'); |
---|
4204 | % UvData=get(huvmat,'UserData'); |
---|
4205 | % hfig=figure; |
---|
4206 | % newaxes=copyobj(handles.axes3,hfig); |
---|
4207 | % map=colormap(handles.axes3); |
---|
4208 | % colormap(map);%transmit the current colormap to the zoom fig |
---|
4209 | % colorbar |
---|
4210 | |
---|
4211 | % |
---|
4212 | % % -------------------------------------------------------------------- |
---|
4213 | % function Insert_Callback(hObject, eventdata, handles) |
---|
4214 | % |
---|
4215 | |
---|
4216 | %------------------------------------------------------------------------ |
---|
4217 | % -------------------------------------------------------------------- |
---|
4218 | function MenuExportMovie_Callback(hObject, eventdata, handles) |
---|
4219 | % -------------------------------------------------------------------- |
---|
4220 | set(handles.MenuExportMovie,'BusyAction','queue')% activate the button |
---|
4221 | huvmat=get(handles.run0,'parent'); |
---|
4222 | UvData=get(huvmat,'UserData'); |
---|
4223 | %[xx,xx,FileBase]=read_file_boxes(handles); |
---|
4224 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
4225 | FileBase=fullfile(RootPath,RootFile); |
---|
4226 | %read the current input file name |
---|
4227 | prompt = {'movie file name';'frames per second';'frame resolution (*[512x384] pixels)';'axis position relative to the frame';'total frame number (starting from the current uvmat display)'}; |
---|
4228 | dlg_title = 'select properties of the output avi movie'; |
---|
4229 | num_lines= 1; |
---|
4230 | % nbfield_cell=get(handles.last_i,'String'); |
---|
4231 | def = {[FileBase '_out.avi'];'10';'1';'[0.03 0.05 0.95 0.92]';'10'}; |
---|
4232 | answer = inputdlg(prompt,dlg_title,num_lines,def,'on'); |
---|
4233 | aviname=answer{1}; |
---|
4234 | fps=str2double(answer{2}); |
---|
4235 | % check for existing file with output name aviname |
---|
4236 | if exist(aviname,'file') |
---|
4237 | backup=aviname; |
---|
4238 | testexist=2; |
---|
4239 | while testexist==2 |
---|
4240 | backup=[backup '~']; |
---|
4241 | testexist=exist(backup,'file'); |
---|
4242 | end |
---|
4243 | [success,message]=copyfile(aviname,backup);%make backup of the existing file |
---|
4244 | if isequal(success,1) |
---|
4245 | delete(aviname)%delete existing file |
---|
4246 | else |
---|
4247 | msgbox_uvmat('ERROR',message) |
---|
4248 | return |
---|
4249 | end |
---|
4250 | end |
---|
4251 | %create avi open |
---|
4252 | aviobj=avifile(aviname,'Compression','None','fps',fps); |
---|
4253 | |
---|
4254 | %display first view for tests |
---|
4255 | newfig=figure; |
---|
4256 | newaxes=copyobj(handles.axes3,newfig);%new plotting axes in the new figure |
---|
4257 | set(newaxes,'Tag','movieaxes') |
---|
4258 | nbpix=[512 384]*str2double(answer{3}); |
---|
4259 | set(gcf,'Position',[1 1 nbpix])% resolution XVGA |
---|
4260 | set(newaxes,'Position',eval(answer{4})); |
---|
4261 | map=colormap(handles.axes3); |
---|
4262 | colormap(map);%transmit the current colormap to the zoom fig |
---|
4263 | msgbox_uvmat('INPUT_Y-N',{['adjust figure ' num2str(newfig) ' with its matlab edit menu '] ;... |
---|
4264 | ['then press OK to get the avi movie as a copy of figure ' num2str(newfig) ' display']}); |
---|
4265 | UvData.plotaxes=newaxes;% the axis in the new figure becomes the current main plotting axes |
---|
4266 | set(huvmat,'UserData',UvData); |
---|
4267 | increment=str2num(get(handles.increment_scan,'String')); %get the field increment d |
---|
4268 | set(handles.STOP,'Visible','on') |
---|
4269 | set(handles.speed,'Visible','on') |
---|
4270 | set(handles.speed_txt,'Visible','on') |
---|
4271 | set(handles.Movie,'BusyAction','queue') |
---|
4272 | |
---|
4273 | %imin=str2double(get(handles.i1,'String')); |
---|
4274 | imax=str2double(answer{5}); |
---|
4275 | % if isfield(UvData,'Time') |
---|
4276 | htitle=get(newaxes,'Title'); |
---|
4277 | xlim=get(newaxes,'XLim'); |
---|
4278 | ylim=get(newaxes,'YLim'); |
---|
4279 | set(htitle,'Position',[xlim(2)+0.07*(xlim(2)-xlim(1)) ylim(2)-0.05*(ylim(2)-ylim(1)) 0]) |
---|
4280 | time_str=get(handles.abs_time,'String'); |
---|
4281 | set(htitle,'String',['t=' time_str]) |
---|
4282 | set(handles.speed,'Value',1) |
---|
4283 | for i=1:imax |
---|
4284 | if get(handles.speed,'Value')~=0 && isequal(get(handles.MenuExportMovie,'BusyAction'),'queue') % enable STOP command |
---|
4285 | runpm(hObject,eventdata,handles,increment)% run plus |
---|
4286 | drawnow |
---|
4287 | time_str=get(handles.abs_time,'String'); |
---|
4288 | if ishandle(htitle) |
---|
4289 | set(htitle,'String',['t=' time_str]) |
---|
4290 | end |
---|
4291 | mov=getframe(newfig); |
---|
4292 | aviobj=addframe(aviobj,mov); |
---|
4293 | end |
---|
4294 | end |
---|
4295 | aviobj=close(aviobj); |
---|
4296 | UvData=rmfield(UvData,'plotaxes'); |
---|
4297 | %UvData.Object{1}.plotaxes=handles.axes3; |
---|
4298 | set(huvmat,'UserData',UvData); |
---|
4299 | msgbox_uvmat('CONFIRMATION',{['movie ' aviname ' created '];['with ' num2str(imax) ' frames']}) |
---|
4300 | |
---|
4301 | |
---|
4302 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4303 | % Projection Objects Menu Callbacks |
---|
4304 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4305 | |
---|
4306 | % ----------------------------------------------------------------------- |
---|
4307 | function Menupoints_Callback(hObject, eventdata, handles) |
---|
4308 | %------------------------------------------------------------------------ |
---|
4309 | data.Type='points'; |
---|
4310 | data.ProjMode='projection';%default |
---|
4311 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4312 | create_object(data,handles) |
---|
4313 | |
---|
4314 | % ----------------------------------------------------------------------- |
---|
4315 | function Menuline_Callback(hObject, eventdata, handles) |
---|
4316 | %------------------------------------------------------------------------ |
---|
4317 | data.Type='line'; |
---|
4318 | data.ProjMode='projection';%default |
---|
4319 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4320 | create_object(data,handles) |
---|
4321 | |
---|
4322 | %------------------------------------------------------------------------ |
---|
4323 | function Menupolyline_Callback(hObject, eventdata, handles) |
---|
4324 | %------------------------------------------------------------------------ |
---|
4325 | data.Type='polyline'; |
---|
4326 | data.ProjMode='projection';%default |
---|
4327 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4328 | create_object(data,handles) |
---|
4329 | |
---|
4330 | %------------------------------------------------------------------------ |
---|
4331 | function Menupolygon_Callback(hObject, eventdata, handles) |
---|
4332 | %------------------------------------------------------------------------ |
---|
4333 | data.Type='polygon'; |
---|
4334 | data.ProjMode='inside';%default |
---|
4335 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4336 | create_object(data,handles) |
---|
4337 | |
---|
4338 | %------------------------------------------------------------------------ |
---|
4339 | function Menurectangle_Callback(hObject, eventdata, handles) |
---|
4340 | %------------------------------------------------------------------------ |
---|
4341 | data.Type='rectangle'; |
---|
4342 | data.ProjMode='inside';%default |
---|
4343 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4344 | create_object(data,handles) |
---|
4345 | |
---|
4346 | %------------------------------------------------------------------------ |
---|
4347 | function Menuellipse_Callback(hObject, eventdata, handles) |
---|
4348 | %------------------------------------------------------------------------ |
---|
4349 | data.Type='ellipse'; |
---|
4350 | data.ProjMode='inside';%default |
---|
4351 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4352 | create_object(data,handles) |
---|
4353 | |
---|
4354 | %------------------------------------------------------------------------ |
---|
4355 | function MenuMaskObject_Callback(hObject, eventdata, handles) |
---|
4356 | %------------------------------------------------------------------------ |
---|
4357 | data.Type='polygon'; |
---|
4358 | data.TypeMenu={'polygon'}; |
---|
4359 | data.ProjMode='mask_inside';%default |
---|
4360 | data.ProjModeMenu={'mask_inside';'mask_outside'}; |
---|
4361 | create_object(data,handles) |
---|
4362 | |
---|
4363 | %------------------------------------------------------------------------ |
---|
4364 | function Menuplane_Callback(hObject, eventdata, handles) |
---|
4365 | %------------------------------------------------------------------------ |
---|
4366 | data.Type='plane'; |
---|
4367 | data.ProjMode='projection';%default |
---|
4368 | data.ProjModeMenu={};% do not restrict ProjMode menus |
---|
4369 | create_object(data,handles) |
---|
4370 | |
---|
4371 | %------------------------------------------------------------------------ |
---|
4372 | function Menuvolume_Callback(hObject, eventdata, handles) |
---|
4373 | %------------------------------------------------------------------------ |
---|
4374 | data.Type='volume'; |
---|
4375 | data.ProjMode='interp';%default |
---|
4376 | data.ProjModeMenu={}; |
---|
4377 | % set(handles.create,'Visible','on') |
---|
4378 | % set(handles.create,'Value',1) |
---|
4379 | % VOLUME_Callback(hObject,eventdata,handles)data.ProjModeMenu={}; |
---|
4380 | create_object(data,handles) |
---|
4381 | |
---|
4382 | %------------------------------------------------------------------------ |
---|
4383 | % --- generic function used for the creation of a projection object |
---|
4384 | function create_object(data,handles) |
---|
4385 | %------------------------------------------------------------------------ |
---|
4386 | % desactivate geometric calibration if opened |
---|
4387 | hgeometry_calib=findobj(allchild(0),'tag','geometry_calib'); |
---|
4388 | if ishandle(hgeometry_calib) |
---|
4389 | hhgeometry_calib=guidata(hgeometry_calib); |
---|
4390 | set(hhgeometry_calib.edit_append,'Value',0)% desactivate mouse action in geometry_calib |
---|
4391 | set(hhgeometry_calib.edit_append,'BackgroundColor',[0.7 0.7 0.7]) |
---|
4392 | end |
---|
4393 | set(handles.edit_object,'Value',0); %suppress the object edit mode |
---|
4394 | set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) |
---|
4395 | UvData=get(handles.uvmat,'UserData'); |
---|
4396 | data.Name=data.Type;% default name=type |
---|
4397 | data.Coord=[0 0]; %default |
---|
4398 | if isfield(UvData,'Field') |
---|
4399 | Field=UvData.Field; |
---|
4400 | if isfield(UvData.Field,'Mesh')&&~isempty(UvData.Field.Mesh) |
---|
4401 | data.RangeX=[UvData.Field.XMin UvData.Field.XMax]; |
---|
4402 | if strcmp(data.Type,'line')||strcmp(data.Type,'polyline')||strcmp(data.Type,'points') |
---|
4403 | data.RangeY=UvData.Field.Mesh; |
---|
4404 | else |
---|
4405 | data.RangeY=[UvData.Field.YMin UvData.Field.YMax]; |
---|
4406 | end |
---|
4407 | data.DX=UvData.Field.Mesh; |
---|
4408 | data.DY=UvData.Field.Mesh; |
---|
4409 | end |
---|
4410 | if isfield(Field,'NbDim')&& isequal(Field.NbDim,3) |
---|
4411 | data.Coord=[0 0 0]; %default |
---|
4412 | end |
---|
4413 | if isfield(Field,'CoordUnit') |
---|
4414 | data.CoordUnit=Field.CoordUnit; |
---|
4415 | end |
---|
4416 | end |
---|
4417 | if ishandle(handles.UVMAT_title) |
---|
4418 | delete(handles.UVMAT_title)%delete the initial display of uvmat if no field has been entered |
---|
4419 | end |
---|
4420 | set(handles.ListObject,'Visible','on') |
---|
4421 | set(handles.ViewObject,'Visible','on') |
---|
4422 | set(handles.ViewObject,'Value',1) % indicate that the object selected in ListObject (projection oin view_field) is visualised |
---|
4423 | set(handles.ViewObject_1,'Value',0)% then the object selected in ListObject_1 is not visualised |
---|
4424 | hset_object=set_object(data,handles);% call the set_object interface |
---|
4425 | hhset_object=guidata(hset_object); |
---|
4426 | set(hhset_object.PLOT,'enable','on')% activate the refresh button |
---|
4427 | set(handles.MenuObject,'checked','on') |
---|
4428 | set(handles.uvmat,'UserData',UvData) |
---|
4429 | set(handles.CheckZoom,'Value',0) %desactivate the zoom for object creation by the mouse |
---|
4430 | CheckZoom_Callback(handles.uvmat, [], handles) |
---|
4431 | set(handles.delete_object,'Visible','on') |
---|
4432 | |
---|
4433 | |
---|
4434 | %------------------------------------------------------------------------ |
---|
4435 | function MenuBrowseObject_Callback(hObject, eventdata, handles) |
---|
4436 | %------------------------------------------------------------------------ |
---|
4437 | %get the object file |
---|
4438 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
4439 | {'*.xml;*.mat', ' (*.xml,*.mat)'; |
---|
4440 | '*.xml', '.xml files '; ... |
---|
4441 | '*.mat', '.mat matlab files '}, ... |
---|
4442 | 'Pick an xml Object file',get(handles.RootPath,'String')); |
---|
4443 | fileinput=[PathName FileName];%complete file name |
---|
4444 | sizf=size(fileinput); |
---|
4445 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end |
---|
4446 | |
---|
4447 | %read the file |
---|
4448 | data=xml2struct(fileinput); |
---|
4449 | data.enable_plot=1; |
---|
4450 | [tild,data.Name]=fileparts(FileName); |
---|
4451 | hset_object=findobj(allchild(0),'tag','set_object'); |
---|
4452 | if ~isempty(hset_object) |
---|
4453 | delete(hset_object)% delete existing version of set_object |
---|
4454 | end |
---|
4455 | set_object(data);% call the set_object interface |
---|
4456 | set(handles.edit_object,'Value',0); %suppress the object edit mode |
---|
4457 | set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) |
---|
4458 | set(handles.MenuObject,'checked','on') |
---|
4459 | set(handles.delete_object,'Visible','on') |
---|
4460 | |
---|
4461 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4462 | % MenuEdit Callbacks |
---|
4463 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4464 | %------------------------------------------------------------------------ |
---|
4465 | function MenuEditObject_Callback(hObject, eventdata, handles) |
---|
4466 | %------------------------------------------------------------------------ |
---|
4467 | set(handles.edit_object,'Value',1) |
---|
4468 | edit_Callback(hObject, eventdata, handles) |
---|
4469 | |
---|
4470 | % %------------------------------------------------------------------------ |
---|
4471 | % function enable_transform(handles,state) |
---|
4472 | % %------------------------------------------------------------------------ |
---|
4473 | % set(handles.transform_fct,'Visible',state) |
---|
4474 | % set(handles.TRANSFORM_txt,'Visible',state) |
---|
4475 | % set(handles.transform_fct,'Visible',state) |
---|
4476 | % set(handles.path_transform,'Visible',state) |
---|
4477 | % set(handles.pxcmx_txt,'Visible',state) |
---|
4478 | % set(handles.pxcmy_txt,'Visible',state) |
---|
4479 | % set(handles.pxcm,'Visible',state) |
---|
4480 | % set(handles.pycm,'Visible',state) |
---|
4481 | |
---|
4482 | %------------------------------------------------------------------------ |
---|
4483 | function MenuEditVectors_Callback(hObject, eventdata, handles) |
---|
4484 | %------------------------------------------------------------------------ |
---|
4485 | set(handles.edit_vect,'Visible','on') |
---|
4486 | set(handles.edit_vect,'Value',1) |
---|
4487 | edit_vect_Callback(hObject, eventdata, handles) |
---|
4488 | |
---|
4489 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4490 | % MenuTools Callbacks |
---|
4491 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4492 | %------------------------------------------------------------------------ |
---|
4493 | function MenuCalib_Callback(hObject, eventdata, handles) |
---|
4494 | %------------------------------------------------------------------------ |
---|
4495 | |
---|
4496 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
4497 | |
---|
4498 | %suppress competing options |
---|
4499 | set(handles.CheckZoom,'Value',0) |
---|
4500 | set(handles.CheckZoom,'BackgroundColor',[0.7 0.7 0.7]) |
---|
4501 | set(handles.ListObject,'Value',1) |
---|
4502 | % initiate display of GUI geometry_calib |
---|
4503 | data=[]; %default |
---|
4504 | if isfield(UvData,'CoordType') |
---|
4505 | data.CoordType=UvData.CoordType; |
---|
4506 | end |
---|
4507 | pos=get(handles.uvmat,'Position'); |
---|
4508 | pos(1)=pos(1)+pos(3)-0.311+0.04; %0.311= width of the geometry_calib interface (units relative to the srcreen) |
---|
4509 | pos(2)=pos(2)-0.02; |
---|
4510 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
4511 | FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
4512 | set(handles.view_xml,'Backgroundcolor',[1 1 0])%indicate the reading of the current xml file by geometry_calib |
---|
4513 | if isfield(UvData.OpenParam,'CalOrigin') |
---|
4514 | pos_uvmat=get(handles.uvmat,'Position'); |
---|
4515 | pos_cal(1)=pos_uvmat(1)+UvData.OpenParam.CalOrigin(1)*pos_uvmat(3); |
---|
4516 | pos_cal(2)=pos_uvmat(2)+UvData.OpenParam.CalOrigin(2)*pos_uvmat(4); |
---|
4517 | pos_cal(3:4)=UvData.OpenParam.CalSize .* pos_uvmat(3:4); |
---|
4518 | end |
---|
4519 | geometry_calib(FileName,pos_cal);% call the geometry_calib interface |
---|
4520 | set(handles.view_xml,'Backgroundcolor',[1 1 1])%indicate the end of reading of the current xml file by geometry_calib |
---|
4521 | set(handles.MenuCalib,'checked','on')% indicate that MenuCalib is activated, test used by mouse action |
---|
4522 | |
---|
4523 | %------------------------------------------------------------------------ |
---|
4524 | function MenuMask_Callback(hObject, eventdata, handles) |
---|
4525 | %------------------------------------------------------------------------ |
---|
4526 | UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface |
---|
4527 | ListObj=UvData.Object; |
---|
4528 | select=zeros(1,numel(ListObj)); |
---|
4529 | for iobj=1:numel(ListObj); |
---|
4530 | if strcmp(ListObj{iobj}.ProjMode,'mask_inside')||strcmp(ListObj{iobj}.ProjMode,'mask_outside') |
---|
4531 | select(iobj)=1; |
---|
4532 | end |
---|
4533 | end |
---|
4534 | val=find(select); |
---|
4535 | if isempty(val) |
---|
4536 | msgbox_uvmat('ERROR','polygons must be first created by Projection object/mask polygon in the menu bar'); |
---|
4537 | return |
---|
4538 | else |
---|
4539 | % set(handles.ListObject,'Max',2);%allow multiple selection |
---|
4540 | set(handles.ListObject,'Value',val); |
---|
4541 | flag=1; |
---|
4542 | npx=size(UvData.Field.A,2); |
---|
4543 | npy=size(UvData.Field.A,1); |
---|
4544 | xi=0.5:npx-0.5; |
---|
4545 | yi=0.5:npy-0.5; |
---|
4546 | [Xi,Yi]=meshgrid(xi,yi); |
---|
4547 | if isfield(UvData,'Object') |
---|
4548 | for iobj=1:length(UvData.Object) |
---|
4549 | ObjectData=UvData.Object{iobj}; |
---|
4550 | if isfield(ObjectData,'ProjMode') &&(isequal(ObjectData.ProjMode,'mask_inside')||isequal(ObjectData.ProjMode,'mask_outside')); |
---|
4551 | flagobj=1; |
---|
4552 | testphys=0; %coordinates in pixels by default |
---|
4553 | if isfield(ObjectData,'CoordUnit') && ~isequal(ObjectData.CoordUnit,'pixel') |
---|
4554 | if isfield(UvData,'XmlData')&& isfield(UvData.XmlData{1},'GeometryCalib') |
---|
4555 | Calib=UvData.XmlData{1}.GeometryCalib; |
---|
4556 | testphys=1; |
---|
4557 | end |
---|
4558 | end |
---|
4559 | if isfield(ObjectData,'Coord')&& isfield(ObjectData,'Type') |
---|
4560 | if isequal(ObjectData.Type,'polygon') |
---|
4561 | X=ObjectData.Coord(:,1); |
---|
4562 | Y=ObjectData.Coord(:,2); |
---|
4563 | if testphys |
---|
4564 | [X,Y]=px_XYZ(Calib,X,Y,0);% to generalise with 3D cases |
---|
4565 | end |
---|
4566 | flagobj=~inpolygon(Xi,Yi,X',Y');%=0 inside the polygon, 1 outside |
---|
4567 | elseif isequal(ObjectData.Type,'ellipse') |
---|
4568 | if testphys |
---|
4569 | %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys |
---|
4570 | end |
---|
4571 | RangeX=max(ObjectData.RangeX); |
---|
4572 | RangeY=max(ObjectData.RangeY); |
---|
4573 | X2Max=RangeX*RangeX; |
---|
4574 | Y2Max=RangeY*RangeY; |
---|
4575 | distX=(Xi-ObjectData.Coord(1,1)); |
---|
4576 | distY=(Yi-ObjectData.Coord(1,2)); |
---|
4577 | flagobj=(distX.*distX/X2Max+distY.*distY/Y2Max)>1; |
---|
4578 | elseif isequal(ObjectData.Type,'rectangle') |
---|
4579 | if testphys |
---|
4580 | %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys |
---|
4581 | end |
---|
4582 | distX=abs(Xi-ObjectData.Coord(1,1)); |
---|
4583 | distY=abs(Yi-ObjectData.Coord(1,2)); |
---|
4584 | flagobj=distX>max(ObjectData.RangeX) | distY>max(ObjectData.RangeY); |
---|
4585 | end |
---|
4586 | if isequal(ObjectData.ProjMode,'mask_outside') |
---|
4587 | flagobj=~flagobj; |
---|
4588 | end |
---|
4589 | flag=flag & flagobj; |
---|
4590 | end |
---|
4591 | end |
---|
4592 | end |
---|
4593 | end |
---|
4594 | %mask name |
---|
4595 | RootPath=get(handles.RootPath,'String'); |
---|
4596 | RootFile=get(handles.RootFile,'String'); |
---|
4597 | if ~isempty(RootFile)&&(isequal(RootFile(1),'/')|| isequal(RootFile(1),'\')) |
---|
4598 | RootFile(1)=[]; |
---|
4599 | end |
---|
4600 | filebase=fullfile(RootPath,RootFile); |
---|
4601 | list=get(handles.masklevel,'String'); |
---|
4602 | masknumber=num2str(length(list)); |
---|
4603 | maskindex=get(handles.masklevel,'Value'); |
---|
4604 | mask_name=fullfile_uvmat(RootPath,'',[RootFile '_' masknumber 'mask'],'.png','_1',maskindex); |
---|
4605 | %mask_name=name_generator([filebase '_' masknumber 'mask'],maskindex,1,'.png','_i'); |
---|
4606 | imflag=uint8(255*(0.392+0.608*flag));% =100 for flag=0 (vectors not computed when 20<imflag<200) |
---|
4607 | imflag=flipdim(imflag,1); |
---|
4608 | |
---|
4609 | %display the mask |
---|
4610 | hfigmask=figure; |
---|
4611 | set(hfigmask,'Name','mask image') |
---|
4612 | vec=linspace(0,1,256);%define a linear greyscale colormap |
---|
4613 | map=[vec' vec' vec']; |
---|
4614 | colormap(map) |
---|
4615 | image(imflag); |
---|
4616 | answer=msgbox_uvmat('INPUT_TXT','mask file name:', mask_name); |
---|
4617 | if ~strcmp(answer,'Cancel') |
---|
4618 | mask_dir=fileparts(answer); |
---|
4619 | if ~exist(mask_dir,'dir') |
---|
4620 | msgbox_uvmat('ERROR',['directory ' mask_dir ' does not exist']) |
---|
4621 | return |
---|
4622 | end |
---|
4623 | imwrite(imflag,answer,'BitDepth',8); |
---|
4624 | end |
---|
4625 | set(handles.ListObject,'Value',1) |
---|
4626 | % set(handles.ListObject,'Max',1) |
---|
4627 | end |
---|
4628 | |
---|
4629 | %------------------------------------------------------------------------ |
---|
4630 | %-- open the GUI set_grid.fig to create grid |
---|
4631 | function MenuGrid_Callback(hObject, eventdata, handles) |
---|
4632 | %------------------------------------------------------------------------ |
---|
4633 | %suppress the other options if grid is chosen |
---|
4634 | set(handles.edit_vect,'Value',0) |
---|
4635 | edit_vect_Callback(hObject, eventdata, handles) |
---|
4636 | set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7]) |
---|
4637 | set(handles.ListObject,'Value',1) |
---|
4638 | |
---|
4639 | %prepare display of the set_grid GUI |
---|
4640 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
4641 | FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
4642 | CoordList=get(handles.transform_fct,'String'); |
---|
4643 | val=get(handles.transform_fct,'Value'); |
---|
4644 | set_grid(FileName,CoordList{val});% call the set_object interface |
---|
4645 | |
---|
4646 | |
---|
4647 | %------------------------------------------------------------------------ |
---|
4648 | function MenuRuler_Callback(hObject, eventdata, handles) |
---|
4649 | %------------------------------------------------------------------------ |
---|
4650 | set(handles.CheckZoom,'Value',0) |
---|
4651 | CheckZoom_Callback(handles.uvmat, [], handles) |
---|
4652 | set(handles.MenuRuler,'checked','on') |
---|
4653 | UvData=get(handles.uvmat,'UserData'); |
---|
4654 | UvData.MouseAction='ruler'; |
---|
4655 | set(handles.uvmat,'UserData',UvData); |
---|
4656 | |
---|
4657 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4658 | % MenuRun Callbacks |
---|
4659 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
4660 | |
---|
4661 | %------------------------------------------------------------------------ |
---|
4662 | % open the GUI 'series' |
---|
4663 | function MenuSeries_Callback(hObject, eventdata, handles) |
---|
4664 | %------------------------------------------------------------------------ |
---|
4665 | series; %first display of the GUI to fill waiting time |
---|
4666 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
4667 | param.FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
4668 | if isequal(get(handles.SubField,'Value'),1) |
---|
4669 | [RootPath_1,SubDir_1,RootFile_1,FileIndices_1,FileExt_1]=read_file_boxes_1(handles); |
---|
4670 | FileName_1=[fullfile(RootPath_1,SubDir_1,RootFile_1) FileIndices_1 FileExt_1]; |
---|
4671 | if ~isequal(FileName_1,param.FileName) |
---|
4672 | param.FileName_1=FileName_1; |
---|
4673 | end |
---|
4674 | end |
---|
4675 | param.NomType=get(handles.NomType,'String'); |
---|
4676 | param.NomType_1=get(handles.NomType_1,'String'); |
---|
4677 | param.CheckFixPair=get(handles.CheckFixPair,'Value'); |
---|
4678 | huvmat=get(handles.MenuSeries,'parent'); |
---|
4679 | UvData=get(huvmat,'UserData'); |
---|
4680 | if isfield(UvData,'XmlData')&& isfield(UvData.XmlData{1},'Time') |
---|
4681 | param.Time=UvData.XmlData{1}.Time; |
---|
4682 | end |
---|
4683 | if isequal(get(handles.scan_i,'Value'),1) |
---|
4684 | param.incr_i=str2num(get(handles.increment_scan,'String')); |
---|
4685 | elseif isequal(get(handles.scan_j,'Value'),1) |
---|
4686 | param.incr_j=str2num(get(handles.increment_scan,'String')); |
---|
4687 | end |
---|
4688 | param.list_fields=get(handles.Fields,'String');% list menu fields |
---|
4689 | param.list_fields(1)=[]; %suppress 'image' option |
---|
4690 | param.index_fields=get(handles.Fields,'Value');% selected string index |
---|
4691 | if param.index_fields>1 |
---|
4692 | param.index_fields=param.index_fields-1; |
---|
4693 | end |
---|
4694 | param.list_fields_1=get(handles.Fields_1,'String');% list menu fields |
---|
4695 | param.list_fields_1(1)=[]; %suppress 'image' option |
---|
4696 | param.index_fields_1=get(handles.Fields_1,'Value')-1;% selected string index |
---|
4697 | if param.index_fields_1>1 |
---|
4698 | param.index_fields_1=param.index_fields_1-1; |
---|
4699 | end |
---|
4700 | param.menu_coord_str=get(handles.transform_fct,'String'); |
---|
4701 | param.menu_coord_val=get(handles.transform_fct,'Value'); |
---|
4702 | series(param); %run the series interface |
---|
4703 | |
---|
4704 | %------------------------------------------------------------------------ |
---|
4705 | % -- open the GUI civ.fig for PIV |
---|
4706 | function MenuPIV_Callback(hObject, eventdata, handles) |
---|
4707 | %------------------------------------------------------------------------ |
---|
4708 | [RootPath,SubDir,RootFile,FileIndices,FileExt]=read_file_boxes(handles); |
---|
4709 | FileName=[fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]; |
---|
4710 | civ(FileName);% interface de civ(not in the uvmat file) |
---|
4711 | |
---|
4712 | % -------------------------------------------------------------------- |
---|
4713 | function MenuHelp_Callback(hObject, eventdata, handles) |
---|
4714 | % -------------------------------------------------------------------- |
---|
4715 | path_to_uvmat=which ('uvmat');% check the path of uvmat |
---|
4716 | pathelp=fileparts(path_to_uvmat); |
---|
4717 | helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html'); |
---|
4718 | if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package') |
---|
4719 | else |
---|
4720 | addpath (fullfile(pathelp,'uvmat_doc')) |
---|
4721 | web(helpfile); |
---|
4722 | end |
---|