source: trunk/src/uvmat.m @ 221

Last change on this file since 221 was 221, checked in by sommeria, 13 years ago

various bug corrections.

File size: 213.7 KB
Line 
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%           .VelType:(char string) type of velocity field selected
45%           .VelType_1:(char string)  REMPLACER LE CELL ACTUEL
46%           .FieldName: (char string) main field selected('image', 'velocity'...)
47%           .FieldName_1:(char string) second field selected('image', 'velocity'...)
48%           .CName: (char string)name of the scalar used for vector colors
49%          .MovieObject: movie object representing an input movie
50%          .MovieObject_1: idem for a second input series (_1)
51%          .filename_1 : last second input file name (to deal with a constant second input without reading again the file)
52%          .VelType_1: last velocity type (civ1, civ2...) for the second input series
53%          .FieldName_1: last field name(velocity, vorticity...) for the second input series
54%          .ZMin, .ZMax: range of the z coordinate
55%..... to complement
56%     - Information on  projection objects
57%           .Object: {[1x1 struct]}
58%           .CurrentObjectIndex: index of the projection object .Object currently selected for editing
59%     -Information on the current field (Field{i})
60%            .Txt : text information to display (e.g. error message)
61%            .NbDim: number of dimensions (=0 by default)
62%            .NbCoord: number of vector components
63%            .CoordType: expresses the type of coordinate ('px' for image, 'sig' for instruments, or 'phys')
64%            .dt: time interval for the corresponding image pair
65%            .Mesh: estimated typical distance between vectors
66%            .ZMax:
67%            .ZMin:
68%            .X, .Y, .Z: set of vector coordinates
69%            .U,.V,.W: corresponding set of vector components
70%            .F: corresponding set of warning flags
71%            .FF: corresponding set of false flags, =0 for good vectors
72%            .C: corresponding values of the scalar used for vector color
73%             (.X, .Y, .Z,.U,.V,.W,.F,.FF,.C are matlab vectors of the same length,
74%                     equal to the number of vectors stored in the input open)
75%            .CName: name of the scalar .C
76%            .CType: type of the scalar .C, setting how the scalar is obtained (see 'Scalars' below)
77%            .A image or scalar
78%            .AX: vector of dimension 2 representing the first and last values
79%              of the X coordinates for the image or scalar known on a regular grid,
80%              or vector of dimension .A for a scaler defined on irregular grid.
81%            .AY: same as .AX along the Y direction
82%            .AName: name of the scalar, ='image' for an image
83
84% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%   DATA FLOW  (for run0_Callback) %%%%%%%%%%%%%%%%%%%%:
85%
86% fields are opened and visualised by the sub-function refresh_field.m
87% (called by uvmat_opening, RUN0, runp and runm)
88% The function first reads the name of the input file from the edit boxes  of the GUI
89% A second input file can be introduced for filed comparison
90% It then reads the input file(s) with the appropriate function, read for
91% images, read_civxdata.m for CIVx PIV data, nc2struct for other netcdf
92% files.
93%               Main input open   second input open(_1)        second image (pair animation)
94%            |                 |                             
95%            |                 |                                               
96%                     Field{1}         Field{2}               
97%                                                                         |
98% coord transform (phys.m) or other user defined  fct acting on Field{i}  |
99%                                                                   Field{i}
100%                                                                    |
101% calc_field.m: calculate scalar or other derived fields (vort, div..).
102%
103% sub_field.m: combine the input Field{i} in a single set of fields (vector + scalar):
104%              Field{i=1->3}.X --> UvData.X                          |
105%                                                                    |
106%                                                                 UvData
107%                                                                    |
108% plot histograms of the whole  field
109% proj_field.m: project the set of fields on the current projection objects defined by UvData.Object
110%                                                                    |                                                                          |
111%                                                                ObjectData
112%                                                                    |
113% plot_field.m: plot the projected fields and store them as          |
114% UvData.axes3                                        |
115%                                                                    |
116%                                                                AxeData
117%
118%%%%%%%%%%%%%%    SCALARS: %%%%%%%%%%%%??%%%
119% scalars are displayed either as an image or countour plot, either as a color of
120% velocity vectors. The scalar values in the first case is represented by
121% UvData.Field.A, and by UvData.Field.C in the second case. The corresponding set of X
122% and Y coordinates are represented by UvData.Field.AX and UvData.Field.AY, and .X and
123% .Y for C (the same as velocity vectors). If A is a nxxny matrix (scalar
124% on a regtular grid), then .AX andf.AY contains only two elements, represneting the
125% coordinates of the four image corners. The scalar name is represented by
126% the strings .AName and/or .CName.
127% If the scalar exists in an input open (image or scalar stored under its
128% name in a netcdf open), it is directly read at the level of Field{1}or Field{2}.
129% Else only its name AName is recorded in Field{i}, and its field is then calculated
130%by the fuction calc_scal after the coordinate transform or after projection on an edit_object
131     
132% Properties attached to plotting figures (standard Matlab properties):
133%    'CurrentAxes'= gca or get(gcf,'CurrentAxes');
134%    'CurrentPoint'=get(gcf,'CurrentPoint'): figure coordinates of the point over which the mouse is positioned
135%    'CurrentCharacter'=get(gcf,'CurrentCharacter'): last character typed  over the figure where the mouse is positioned
136%    'WindowButtonMotionFcn': function permanently called by mouse motion over the figure
137%    'KeyPressFcn': function called by pressing a key on the key board
138%    'WindowButtonDownFcn':  function called by pressing the mouse over the  figure
139%    'WindowButtonUpFcn': function called by releasing  the mouse pressure over the  figure
140
141% Properties attached to plotting axes:
142%    'CurrentPoint'=get(gca,'CurrentPoint'); (standard Matlab) same as for the figure, but position in plot coordinates.
143%     AxeData:=get(gca,'UserData');
144%     AxeData.Drawing  = create: create a new object
145%                       = deform: modify an existing object by moving its defining create
146%                      = off: no current drawing action
147%                     = translate: translate an existing object
148%                    = calibration: move a calibration point
149%                    = zoom: isolate a subregion for zoom in=1 if an object is being currently drawn, 0 else (set to 0 by releasing mouse button)
150%            .CurrentOrigin: Origin of a curently drawn edit_object
151%            .CurrentLine: currently drawn menuline (A REVOIR)
152%            .CurrentObject: handle of the currently drawn edit_object
153%            .CurrentRectZoom: current rectangle used for zoom
154
155% Properties attached to projection objects (create, menuline, menuplane...):
156%    'Tag'='proj_object': for all projection objects
157%    ObjectData.Style=...: style of projection object:
158%              .ProjMode
159%              .Coord: defines the position of the object
160%              .XMin,YMin....
161%              .XMax,YMax....
162%              .DX,DY,DZ
163%              .Phi, .Theta, .Psi : Euler angles
164%              .X,.Y,.U,.V.... : field data projected on the object
165%              .IndexObj: index in the list of UvData.Object
166           %during plotting
167%               .plotaxes: handles of the current axes used to plot the  result of field projection on the object
168%               .plothandle: vector of handle(s) of the object graphic represnetation in all the opened plotting axes
169% To each projection object #iobj, corresponds an axis
170% Object{iobj}.plotaxes and nbobj representation graphs  Object{iobj}.plothandles(:) (where nbobj is the
171% nbre of current objects opened in uvmat. Note that Object{iobj}.plothandles(iobj)=[] : an object is not represented in its own projection field;
172
173%------------------------------------------------------------------------
174%------------------------------------------------------------------------
175%  I - MAIN FUNCTION UVMAT (DO NOT MODIFY)
176%------------------------------------------------------------------------
177%------------------------------------------------------------------------
178function varargout = uvmat(varargin)
179
180% Begin initialization code - DO NOT EDIT
181gui_Singleton = 1;
182gui_State = struct('gui_Name',          mfilename, ...
183                   'gui_Singleton',     gui_Singleton, ...
184                   'gui_OpeningFcn',    @uvmat_OpeningFcn, ...
185                   'gui_OutputFcn',     @uvmat_OutputFcn, ...
186                   'gui_LayoutFcn',     [], ...
187                   'gui_Callback',      []);
188if nargin && ischar(varargin{1})&& ~isempty(regexp(varargin{1},'_Callback','once'))
189    gui_State.gui_Callback = str2func(varargin{1});
190end
191
192if nargout
193    varargout{1:nargout} = gui_mainfcn(gui_State, varargin{:});
194else
195    gui_mainfcn(gui_State, varargin{:});
196end
197% End initialization code - DO NOT EDIT
198
199%------------------------------------------------------------------------
200% --- Executes just before the GUI uvmat is made visible.
201function uvmat_OpeningFcn(hObject, eventdata, handles, input )
202%------------------------------------------------------------------------
203
204%% Choose default command menuline output for uvmat (standard GUI)
205handles.output = hObject;
206
207%% Update handles structure (standard GUI)
208guidata(hObject, handles);
209
210%% set the position of colorbar and ancillary GUIs:
211set(hObject,'Units','Normalized')
212movegui(hObject,'center')
213UvData.OpenParam.PosColorbar=[0.805 0.022 0.019 0.445];
214UvData.OpenParam.SetObjectOrigin=[-0.05 -0.03]; %position for set_object
215UvData.OpenParam.SetObjectSize=[0.3 0.7];
216UvData.OpenParam.CalOrigin=[0.95 -0.03];%position for geometry_calib (TO IMPROVE)
217UvData.OpenParam.CalSize=[0.28 1];
218UvData.axes3=[];%initiate the record of plotted field
219UvData.axes2=[];
220UvData.axes1=[];
221AxeData.LimEditBox=1; %initialise AxeData
222set(handles.axes3,'UserData',AxeData)
223
224%% set functions for the mouse and keyboard
225set(handles.histo_u,'NextPlot','replacechildren');
226set(handles.histo_v,'NextPlot','replacechildren');
227set(hObject,'KeyPressFcn',{'keyboard_callback',handles})%set keyboard action function
228set(hObject,'WindowButtonMotionFcn',{'mouse_motion',handles})%set mouse action functio
229set(hObject,'WindowButtonDownFcn',{'mouse_down'})%set mouse click action function
230set(hObject,'WindowButtonUpFcn',{'mouse_up',handles})
231set(hObject,'DeleteFcn',{@closefcn})%
232
233%% refresh projection plane
234%UvData.Object{1}.Style='plane';%main plotting plane
235UvData.Object{1}.ProjMode='projection';%main plotting plane
236% if ~isfield(UvData.Object{1},'plotaxes')
237%     UvData.Object{1}.plotaxes=handles.axes3;%default plotting axis
238%     set(handles.list_object_1,'Value',1);
239%    % set(handles.list_object_1,'String',{'1-PLANE'});
240%    set(handles.list_object_1,'String',{''});
241% end
242set(handles.Fields,'Value',1)
243set(handles.Fields,'string',{''})
244
245%% TRANSFORM menu: builtin fcts
246menu_str={'';'phys';'px';'phys_polar'};
247UvData.OpenParam.NbBuiltin=numel(menu_str); %number of functions
248path_uvmat=fileparts(which('uvmat'));
249addpath(fullfile(path_uvmat,'transform_field'))
250fct_handle{1,1}=[];
251testexist=zeros(size(menu_str'));%default
252testexist(1)=1;
253for ilist=2:length(menu_str)
254    if exist(menu_str{ilist},'file')
255        fct_handle{ilist,1}=str2func(menu_str{ilist});
256        testexist(ilist)=1;
257    else
258        testexist(ilist)=0;
259    end
260end
261rmpath(fullfile(path_uvmat,'transform_field'))
262
263%% load the list of previously browsed files in menus Open and Open_1
264 dir_perso=prefdir; % path to the directory .matlab for personal data
265 profil_perso=fullfile(dir_perso,'uvmat_perso.mat');% personal data file uvmauvmat_perso.mat' in .matlab
266 if exist(profil_perso,'file')
267      h=load (profil_perso);
268      if isfield(h,'MenuFile_1')
269          set(handles.MenuFile_1,'Label',h.MenuFile_1);
270          set(handles.MenuFile_1_1,'Label',h.MenuFile_1);
271      end
272      if isfield(h,'MenuFile_2')
273          set(handles.MenuFile_2,'Label',h.MenuFile_2);
274          set(handles.MenuFile_2_1,'Label',h.MenuFile_2);
275      end
276      if isfield(h,'MenuFile_3')
277          set(handles.MenuFile_3,'Label',h.MenuFile_3);
278          set(handles.MenuFile_3_1,'Label',h.MenuFile_3);
279      end
280      if isfield(h,'MenuFile_4')
281          set(handles.MenuFile_4,'Label',h.MenuFile_4);
282          set(handles.MenuFile_4_1,'Label',h.MenuFile_4);
283      end
284      if isfield(h,'MenuFile_5')
285          set(handles.MenuFile_5,'Label',h.MenuFile_5);
286          set(handles.MenuFile_5_1,'Label',h.MenuFile_5);
287      end
288      if isfield(h,'transform_fct') && iscell(h.transform_fct)
289         for ilist=1:length(h.transform_fct);
290             if exist(h.transform_fct{ilist},'file')
291                [path,file]=fileparts(h.transform_fct{ilist});
292                addpath(path)
293                h_func=str2func(file);
294                rmpath(path)
295                testexist=[testexist 1];
296             else
297                file='';
298                h_func=[];
299                testexist=[testexist 0];
300             end
301             fct_handle=[fct_handle; {h_func}]; %concatene the list of paths
302             menu_str=[menu_str; {file}];
303         end
304      end
305 end
306menu_str=menu_str(testexist==1);%=menu_str(testexist~=0)
307fct_handle=fct_handle(testexist==1);
308menu_str=[menu_str;{'more...'}];
309set(handles.transform_fct,'String',menu_str)
310set(handles.transform_fct,'UserData',fct_handle)% store the list of path in UserData of ACTION
311set(handles.uvmat,'UserData',UvData)
312
313%% check the path and date of modification of all functions in uvmat
314path_to_uvmat=which ('uvmat');% check the path detected for source file uvmat
315[errormsg,date_str]=check_functions;%check the path of the functions called by uvmat.m
316date_str=['last modification: ' date_str];
317
318%% case of an input argument for uvmat
319testinputfield=0;
320inputfile=[];
321Field=[];
322if exist('input','var')
323    if ~isempty(errormsg)
324        msgbox_uvmat('WARNING',errormsg)
325    end
326    if ishandle(handles.UVMAT_title)
327        delete(handles.UVMAT_title)
328    end   
329    if isstruct(input)
330        if isfield(input,'InputFile')
331            inputfile=input.InputFile;
332        end
333        Field=input;
334    elseif ischar(input)% file name introduced as input
335           inputfile=input;
336    elseif isnumeric(input)%simple matrix introduced as input
337        sizinput=size(input);
338        if sizinput(1)<=1 || sizinput(2)<=1
339            msgbox_uvmat('ERROR','bad input for uvmat: file name, structure or numerical matrix accepted')
340            return
341        end
342        Field.ListVarName={'A','coord_y','coord_x'};
343        Field.VarDimName={{'coord_y','coord_x'},'cord_y','coord_x'};
344        Field.A=input;
345        Field.coord_x=[0.5 size(input,2)-0.5];
346        Field.coord_y=[size(input,1)-0.5 0.5];
347    end
348    if ~isempty(inputfile)
349        %%%%% display the indput field %%%%%%%
350        display_file_name(hObject, eventdata, handles,inputfile)
351        %%%%%%%
352        testinputfield=1;
353    end
354else
355   if ishandle(handles.UVMAT_title)
356       fid=fopen('revision.log');
357       if fid~=-1
358         a=textscan(fid,'%s%s%s',1,'HeaderLines',1,'Delimiter','|');
359         set(handles.UVMAT_title,'String',[{'Copyright Joel Sommeria, 2008, Coriolis/ LEGI / CNRS-UJF-INPG'};{'GNU General Public License'}; {path_to_uvmat}; ...
360           {['at revision ' a{1}{1}]};a{3}(1);{date_str};errormsg]);
361         fclose(fid);
362       else
363          set(handles.UVMAT_title,'String',[{'Copyright Joel Sommeria, 2008, Coriolis/ LEGI / CNRS-UJF-INPG'};{'GNU General Public License'};{path_to_uvmat};...
364               {date_str};errormsg]);
365       end
366   end
367end
368% set(handles.uvmat,'UserData',UvData)
369
370%% plot input field if exists
371if testinputfield
372    %delete drawn objects
373    hother=findobj(handles.axes3,'Tag','proj_object');%find all the proj objects
374    for iobj=1:length(hother)
375        delete_object(hother(iobj))
376    end 
377    if isempty(inputfile)
378        errormsg=refresh_field(handles,[],[],[],[],[],[],{Field});
379        set(handles.MenuTools,'Enable','on')
380        set(handles.OBJECT_txt,'Visible','on')
381        set(handles.edit_object,'Visible','on')
382        set(handles.list_object_1,'Visible','on')
383        set(handles.frame_object,'Visible','on')
384        if ~isempty(errormsg)
385            msgbox_uvmat('ERROR',errormsg)
386        end
387    end
388end
389set_vec_col_bar(handles) %update the display of color code for vectors
390
391%------------------------------------------------------------------------
392% --- Outputs from this function are returned to the command menuline.
393function varargout = uvmat_OutputFcn(hObject, eventdata, handles)
394varargout{1} = handles.output;% the only output argument is the handle to the GUI figure
395
396%------------------------------------------------------------------------
397%------------------------------------------------------------------------
398%  II - FUNCTIONS FOR INTRODUCING THE INPUT FILES
399% automatically sets the global properties when the rootfile name is introduced
400% then activate the view-field action if selected
401% it is activated either by clicking on the RootPath window or by the
402% browser
403%------------------------------------------------------------------------
404%------------------------------------------------------------------------
405% --- Executes on the menu Open/Browse...
406% search the files, recognize their type according to their name and fill the rootfile input windows
407function MenuBrowse_Callback(hObject, eventdata, handles)
408oldfile=read_file_boxes(handles);
409
410if isempty(oldfile)||isequal(oldfile,'') %loads the previously stored file name and set it as default in the file_input box
411         dir_perso=prefdir;
412         profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
413         if exist(profil_perso,'file')
414              h=load (profil_perso);
415             if isfield(h,'MenuFile_1')
416                  oldfile=h.MenuFile_1;
417             end
418         end
419end
420[FileName, PathName] = uigetfile( ...
421       {'*.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)';
422       '*.xml',  '.xml files '; ...
423        '*.xls',  '.xls files '; ...
424        '*.civ',  '.civ files '; ...
425        '*.jpg',' jpeg image files'; ...
426        '*.png','.png image files'; ...
427        '*.tif','.tif image files'; ...
428        '*.avi;*.AVI','.avi movie files'; ...
429        '*.vol','.volume images (png)'; ...
430        '*.nc','.netcdf files'; ...
431        '*.cdf','.netcdf files'; ...
432        '*.cmx','.cmx text files ';...
433        '*.fig','.fig files (matlab fig)';...
434        '*.log','.log text files ';...
435        '*.dat','.dat text files ';...
436        '*.bat','.bat system command text files';...
437        '*.*',  'All Files (*.*)'}, ...
438        'Pick a file',oldfile);
439%global filebase
440fileinput=[PathName FileName];%complete file name
441% testblank=findstr(fileinput,' ');%look for blanks
442% if ~isempty(testblank)
443%     msgbox_uvmat('ERROR',['The input file name ' fileinput ' contains blank character : This is not allowed. Please change name'])
444%     return
445% end
446sizf=size(fileinput);
447if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end
448
449% display the selected field and related information
450display_file_name(hObject, eventdata, handles,fileinput)
451
452%update list of recent files in the menubar
453MenuFile_1=fileinput;
454MenuFile_2=get(handles.MenuFile_1,'Label');
455MenuFile_3=get(handles.MenuFile_2,'Label');
456MenuFile_4=get(handles.MenuFile_3,'Label');
457MenuFile_5=get(handles.MenuFile_4,'Label');
458set(handles.MenuFile_1,'Label',MenuFile_1)
459set(handles.MenuFile_2,'Label',MenuFile_2)
460set(handles.MenuFile_3,'Label',MenuFile_3)
461set(handles.MenuFile_4,'Label',MenuFile_4)
462set(handles.MenuFile_5,'Label',MenuFile_5)
463set(handles.MenuFile_1_1,'Label',MenuFile_1)
464set(handles.MenuFile_2_1,'Label',MenuFile_2)
465set(handles.MenuFile_3_1,'Label',MenuFile_3)
466set(handles.MenuFile_4_1,'Label',MenuFile_4)
467set(handles.MenuFile_5_1,'Label',MenuFile_5)
468dir_perso=prefdir;
469profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
470if exist(profil_perso,'file')
471    save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-append'); %store the file names for future opening of uvmat
472else
473    txt=ver('MATLAB');
474    Release=txt.Release;
475    relnumb=str2double(Release(3:4));
476    if relnumb >= 14
477        save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-V6'); %store the file names for future opening of uvmat
478    else
479        save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5'); %store the file names for future opening of uvmat
480    end
481end
482
483% -----------------------------------------------------------------------
484% --- Open again the file whose name has been recorded in MenuFile_1
485function MenuFile_1_Callback(hObject, eventdata, handles)
486fileinput=get(handles.MenuFile_1,'Label');
487display_file_name(hObject, eventdata, handles,fileinput)
488
489% -----------------------------------------------------------------------
490% --- Open again the file whose name has been recorded in MenuFile_2
491function MenuFile_2_Callback(hObject, eventdata, handles)
492fileinput=get(handles.MenuFile_2,'Label');
493display_file_name(hObject, eventdata, handles,fileinput)
494
495% -----------------------------------------------------------------------
496% --- Open again the file whose name has been recorded in MenuFile_3
497function MenuFile_3_Callback(hObject, eventdata, handles)
498fileinput=get(handles.MenuFile_3,'Label');
499display_file_name(hObject, eventdata, handles,fileinput)
500
501% -----------------------------------------------------------------------
502% --- Open again the file whose name has been recorded in MenuFile_4
503function MenuFile_4_Callback(hObject, eventdata, handles)
504fileinput=get(handles.MenuFile_4,'Label');
505display_file_name(hObject, eventdata, handles,fileinput)
506
507% -----------------------------------------------------------------------
508% --- Open again the file whose name has been recorded in MenuFile_5
509function MenuFile_5_Callback(hObject, eventdata, handles)
510fileinput=get(handles.MenuFile_5,'Label');
511display_file_name(hObject, eventdata, handles,fileinput)
512
513%------------------------------------------------------------------------
514% --- Fills the edit boxes RootPath, RootFile,NomType...from an input file name 'fileinput'
515function display_file_name(hObject, eventdata, handles,fileinput)
516if ~exist(fileinput,'file')
517    msgbox_uvmat('ERROR',['input file ' fileinput  ' does not exist'])
518    return
519end
520[RootPath,RootFile,i1,i2,str_a,str_b,ext,NomType,SubDir]=name2display(fileinput);
521ext_test=''; %default
522if ~isempty(ext)
523    form=imformats(ext(2:end));%test valid Matlab image formats
524    if ~isempty(form)
525        ext_test='.image';
526        imainfo=imfinfo(fileinput); 
527        if length(imainfo) >1 %case of image with multiple frames
528            i1='1'; % set the frame counter to 1 by default
529            i2='';
530            str_a='';
531            str_b='';
532            NomType='*'; %indicate a set of indexed frames within a single file
533            [RootPath,RootFile]=fileparts(fileinput); %include the indices in the root file
534        end
535    elseif isequal(lower(ext),'.avi')
536        ext_test='.image';
537        i1='1'; % set the frame counter to 1 by default
538        i2='';
539        str_a='';
540        str_b='';
541        NomType='*'; %indicate a set of indexed frames within a single file
542        [RootPath,RootFile]=fileparts(fileinput); %include the indices in the root file
543    else
544        ext_test=lower(ext);
545    end
546end
547switch ext_test
548    case {'.civ','.log','.cmx','.cmx2','.txt','.bat'}  %display text file
549        edit(fileinput) 
550    case '.fig'                           %display matlab figure
551        hfig=open(fileinput);
552        set(hfig,'WindowButtonMotionFcn','mouse_motion')%set mouse action functio
553        set(hfig,'WindowButtonUpFcn','mouse_up')%set mouse click action function
554        set(hfig,'WindowButtonUpFcn','mouse_down')%set mouse click action function
555    case {'.xml','.xls'}                % edit xml or Excel files
556       editxml(fileinput);
557    case {'.avi','.image','.vol','.nc','.cdf'}   
558        set(handles.RootPath,'String',RootPath);
559        if  isequal(SubDir,'')
560            rootname=fullfile(RootPath,RootFile);
561        else
562            rootname=fullfile(RootPath,SubDir,RootFile);
563            SubDir=['/' SubDir]; %display the separator
564        end
565        set(handles.SubDir,'String',SubDir);
566        set(handles.RootFile,'String',['/' RootFile]); %display the separator
567        indices=fileinput(length(rootname)+1:end);
568        indices(end-length(ext)+1:end)=[]; %remove extension
569        set(handles.FileIndex,'String',indices);       
570        set(handles.FileIndex,'UserData',NomType);
571        set(handles.FileExt,'String',ext);
572        % fill file index counters
573        set(handles.i1,'String',i1);   
574        set(handles.i2,'String',i2);
575        set(handles.j1,'String',str_a);
576        set(handles.j2,'String',str_b);
577       
578        % synchronise indices of the second  input file if it exists
579        if get(handles.SubField,'Value')==1% if the subfield button is activated, update the field numbers
580            [ff,rr,FileBase_1,ii,FileExt_1,SubDir_1]=read_file_boxes_1(handles);
581            NomType_1=get(handles.FileIndex_1,'UserData');     
582            FileName_1=name_generator(FileBase_1,str2double(i1),str2double(i2),FileExt_1,NomType_1,1,stra2num(str_a),stra2num(str_b),SubDir_1);
583            if exist(FileName_1,'file')
584                FileIndex_1=name_generator('',str2double(i1),str2double(i2),'',NomType_1,1,stra2num(str_a),stra2num(str_b),'');
585                set(handles.FileIndex_1,'String',FileIndex_1)
586            else
587                set(handles.SubField,'Value',0)
588                SubField_Callback(hObject, eventdata, handles)
589            end
590        end 
591
592        %enable other menus
593        set(handles.MenuOpen_1,'Enable','on')
594        set(handles.MenuFile_1_1,'Enable','on')
595        set(handles.MenuFile_2_1,'Enable','on')
596        set(handles.MenuFile_3_1,'Enable','on')
597        set(handles.MenuFile_4_1,'Enable','on')
598        set(handles.MenuFile_5_1,'Enable','on')
599        set(handles.MenuExport,'Enable','on')
600        set(handles.MenuExportFigure,'Enable','on')
601        set(handles.MenuExportMovie,'Enable','on')
602        set(handles.MenuTools,'Enable','on')
603        set(handles.OBJECT_txt,'Visible','on')
604        set(handles.edit_object,'Visible','on')
605        set(handles.list_object_1,'Visible','on')
606        set(handles.frame_object,'Visible','on')
607         %%%%%% initiate input file:
608        update_rootinfo(hObject,eventdata,handles); 
609    otherwise
610       msgbox_uvmat('ERROR',['invalid input file extension' ext])
611end
612
613%------------------------------------------------------------------------
614% --- Called by action in RootPath edit box
615function RootPath_Callback(hObject,eventdata,handles)
616%------------------------------------------------------------------------
617update_rootinfo(hObject,eventdata,handles);
618
619%------------------------------------------------------------------------
620% --- Called by action in RootFile edit box
621function SubDir_Callback(hObject, eventdata, handles)
622%------------------------------------------------------------------------
623%refresh the menu of input fields
624Fields_Callback(hObject, eventdata, handles);
625% refresh the current field
626run0_Callback(hObject, eventdata, handles);
627
628%------------------------------------------------------------------------
629% --- Called by action in RootFile edit box
630function RootFile_Callback(hObject, eventdata, handles)
631%------------------------------------------------------------------------
632update_rootinfo(hObject,eventdata,handles)
633
634%------------------------------------------------------------------------
635% --- Called by action in FileIndex edit box
636function FileIndex_Callback(hObject, eventdata, handles)
637%------------------------------------------------------------------------
638FileIndices=get(handles.FileIndex,'String');
639if isempty(str2num(FileIndices))
640    [pp,ff,str1,str2,str_a,str_b]=name2display(FileIndices);
641else
642    str1=FileIndices;
643    str2='';
644    str_a='';
645    str_b='';
646end
647set(handles.i1,'String',str1);
648set(handles.i2,'String',str2);
649set(handles.j1,'String',str_a);
650set(handles.j2,'String',str_b);
651run0_Callback(hObject, eventdata, handles)
652
653%------------------------------------------------------------------------
654% --- Update information about a new field series (indices to scan, timing,
655%     calibration from an xml file, then refresh current plots
656function update_rootinfo(hObject,eventdata,handles)
657%------------------------------------------------------------------------
658set(handles.RootPath,'BackgroundColor',[1 1 0])
659drawnow
660set(handles.Fields,'UserData',[])% reinialize data from uvmat opening
661UvData=get(handles.uvmat,'UserData');%huvmat=handles of the uvmat interface
662UvData.NewSeries=1; %flag for run0: begin a new series
663UvData.TestInputFile=1;
664set(handles.fix_pair,'Value',1) % activate by default the comp_input '-'input window
665
666[FileName,RootPath,FileBase,FileIndices,FileExt,SubDir]=read_file_boxes(handles);
667if ~exist(FileName,'file')
668   msgbox_uvmat('ERROR',['input file ' FileName ' not found']);
669    return
670end
671nbfield=[];%default
672nburst=[];%default
673
674% read timing and total frame number from the current file (movie files) !! may be overrid by xml file
675XmlData.Time=[];%default
676XmlData.GeometryCalib=[];%default
677TimeUnit=[];%default
678testima=0; %test for image input
679imainfo=[];
680ColorType='falsecolor'; %default
681hhh='';
682if isequal(lower(FileExt),'.avi') %.avi file
683    testima=1;
684    imainfo=aviinfo([FileBase FileIndices FileExt]);
685    nbfield=imainfo.NumFrames;
686    nburst=1;
687    set(handles.Dt_txt,'String',['Dt=' num2str(1000/imainfo.FramesPerSecond) 'ms']);%display the elementary time interval in millisec
688    XmlData.Time=(0:1/imainfo.FramesPerSecond:(imainfo.NumFrames-1)/imainfo.FramesPerSecond)';
689    TimeUnit='s';
690    hhh=which('mmreader');
691    ColorType=imainfo.ImageType;%='truecolor' for color images
692elseif ~isempty(FileExt(2:end))&&(~isempty(imformats(FileExt(2:end))) || isequal(FileExt,'.vol'))%&& isequal(NomType,'*')% multi-frame image
693    testima=1;
694    if ~isequal(SubDir,'')
695       RootFile=get(handles.RootFile,'String');
696        imainfo=imfinfo([fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]);
697    else
698        imainfo=imfinfo([FileBase FileIndices FileExt]);
699    end
700    ColorType=imainfo.ColorType;%='truecolor' for color images
701    if length(imainfo) >1 %case of image with multiple frames
702        nbfield=length(imainfo);
703        nburst=1;
704    end
705end
706if ~strcmp(hhh,'')&& mmreader.isPlatformSupported()% if the function is found (recent version of matlab)
707    UvData.MovieObject=mmreader([FileBase FileIndices FileExt]);
708elseif isfield(UvData,'MovieObject')
709    UvData=rmfield(UvData,'MovieObject');
710end
711if isfield(imainfo,'Width') && isfield(imainfo,'Height')
712    set(handles.npx,'String',num2str(imainfo.Width));%fills nbre of pixels x box
713    set(handles.npy,'String',num2str(imainfo.Height));%fills nbre of pixels x box
714else
715    set(handles.npx,'String','');%fills nbre of pixels x box
716    set(handles.npy,'String','');%fills nbre of pixels x box
717end
718set(handles.BW,'Value',strcmp(ColorType,'grayscale'))% select handles.BW if grayscale image
719
720% read parameters (time, geometric calibration..) from a documentation file (.xml advised)
721filexml=[FileBase '.xml'];
722fileciv=[FileBase '.civ'];
723warntext='';%default warning message
724NbSlice=1;%default
725
726if exist(filexml,'file')
727    set(handles.view_xml,'Visible','on')
728    set(handles.view_xml,'BackgroundColor',[1 1 0])
729    set(handles.RootPath,'BackgroundColor',[1 1 1])
730    set(handles.view_xml,'String','view .xml')
731    drawnow
732    [XmlData,warntext]=imadoc2struct(filexml);
733    if ~isempty(warntext)
734        msgbox_uvmat('WARNING',warntext)
735    end
736    if isfield(XmlData,'TimeUnit')
737        if isfield(XmlData,'TimeUnit')&& ~isempty(XmlData.TimeUnit)
738            TimeUnit=XmlData.TimeUnit;
739        end
740    end
741    set(handles.view_xml,'BackgroundColor',[1 1 1])
742    drawnow
743    if isfield(XmlData, 'GeometryCalib') && ~isempty(XmlData.GeometryCalib)
744        XmlData.GeometryCalib
745        if isfield(XmlData.GeometryCalib,'VolumeScan') && isequal(XmlData.GeometryCalib.VolumeScan,'y')
746            set (handles.nb_slice,'String','volume')
747        end
748        hgeometry_calib=findobj('tag','geometry_calib');
749        if ~isempty(hgeometry_calib)
750            GUserData=get(hgeometry_calib,'UserData');
751            if ~(isfield(GUserData,'XmlInputFile') && strcmp(GUserData.XmlInputFile,filexml))
752                answer=msgbox_uvmat('INPUT_Y-N','replace the display of geometry_calib with the new input data?');
753                if strcmp(answer,'Yes')
754                    geometry_calib(filexml);%diplay the new calibration points and parameters in geometry_calib
755                end
756            end
757        end
758    end 
759elseif exist(fileciv,'file')% if .civ file found
760    [error,XmlData.Time,TimeUnit,mode,npx,npy,pxcmx,pxcmy]=read_imatext([FileBase '.civ']);
761    GeometryCalib.R=[pxcmx 0 0; 0 pxcmy 0;0 0 0];
762    GeometryCalib.Tx=0;
763    GeometryCalib.Ty=0;
764    GeometryCalib.Tz=1;
765    GeometryCalib.dpx=1;
766    GeometryCalib.dpy=1;
767    GeometryCalib.sx=1;
768    GeometryCalib.Cx=0;
769    GeometryCalib.Cy=0;
770    GeometryCalib.f=1;
771    GeometryCalib.kappa1=0;
772    GeometryCalib.CoordUnit='cm';
773    XmlData.GeometryCalib=GeometryCalib;
774    if error==2, warntext=['no file ' FileBase '.civ'];
775    elseif error==1, warntext='inconsistent number of fields in the .civ file';
776    end 
777    set(handles.npx,'String',num2str(npx));%fills nbre of pixels x box
778    set(handles.npy,'String',num2str(npy));%fills nbre of pixels y box
779    set(handles.pxcm,'String',num2str(pxcmx));%fills scale x (pixel/cm) box
780    set(handles.pycm,'String',num2str(pxcmy));%fills scale y (pixel/cm) box
781    set(handles.pxcm,'Visible','on');%fills scale x (pixel/cm) box
782    set(handles.pycm,'Visible','on');%fills scale y (pixel/cm) box
783    set(handles.view_xml,'Visible','on')   
784    set(handles.view_xml,'String','view .civ')
785else
786    set(handles.view_xml,'Visible','off')
787end
788
789% store last index in handles.lat_i and .last_j
790if ~isempty(XmlData.Time)
791    nbfield=size(XmlData.Time,1);
792    nburst=size(XmlData.Time,2);
793    %transform .Time to a column vector if it is a line vector the nomenclature uses a single index
794    if isequal(nbfield,1) && ~isequal(nburst,1)% .Time is a line vector
795        NomType=get(handles.FileIndex,'UserData');
796        if numel(NomType)>=2 &&(strcmp(NomType,'_i')||strcmp(NomType(1:2),'%0')||strcmp(NomType(1:2),'_%'))
797            XmlData.Time=(XmlData.Time)';
798            nbfield=nburst;
799            nburst=1;
800        end
801    end
802end
803last_i_cell=get(handles.last_i,'String');
804if isempty(nbfield)
805    last_i_cell{1}='';
806else
807    last_i_cell{1}=num2str(nbfield);
808end
809set(handles.last_i,'String',last_i_cell)
810last_j_cell=get(handles.last_j,'String');
811if isempty(nburst)
812     last_j_cell{1}='';
813else
814     last_j_cell{1}=num2str(nburst);
815end
816set(handles.last_j,'String',last_j_cell);
817
818% store geometric calibration in UvData
819if isfield(XmlData,'GeometryCalib')
820    GeometryCalib=XmlData.GeometryCalib;
821    if isempty(GeometryCalib)
822        set(handles.pxcm,'String','')
823        set(handles.pycm,'String','')
824        set(handles.transform_fct,'Value',1); %  no transform by default
825    else
826        if (isfield(GeometryCalib,'R')&& ~isequal(GeometryCalib.R(2,1),0) && ~isequal(GeometryCalib.R(1,2),0)) ||...
827            (isfield(GeometryCalib,'kappa1')&& ~isequal(GeometryCalib.kappa1,0))
828            set(handles.pxcm,'String','var')
829            set(handles.pycm,'String','var')
830        elseif isfield(GeometryCalib,'fx_fy')
831            pixcmx=GeometryCalib.fx_fy(1);%*GeometryCalib.R(1,1)*GeometryCalib.sx/(GeometryCalib.Tz*GeometryCalib.dpx);
832            pixcmy=GeometryCalib.fx_fy(2);%*GeometryCalib.R(2,2)/(GeometryCalib.Tz*GeometryCalib.dpy);
833            set(handles.pxcm,'String',num2str(pixcmx))
834            set(handles.pycm,'String',num2str(pixcmy))
835        end
836        if ~get(handles.FixLimits,'Value')
837            set(handles.transform_fct,'Value',2); % phys transform by default if fixedLimits is off
838        end
839        if isfield(GeometryCalib,'SliceCoord')
840           
841           siz=size(GeometryCalib.SliceCoord);
842           if siz(1)>1
843               NbSlice=siz(1);
844               set(handles.slices,'Visible','on')
845               set(handles.slices,'Value',1)
846           end
847           if isfield(GeometryCalib,'VolumeScan') && isequal(GeometryCalib.VolumeScan,'y')
848               set(handles.nb_slice,'String','volume')
849           else
850               set(handles.nb_slice,'String',num2str(NbSlice))
851           end
852           slices_Callback(hObject, eventdata, handles)
853        end           
854    end
855end
856
857%update the data attached to the uvmat interface
858if ~isempty(TimeUnit)
859    set(handles.time_txt,'String',['time (' TimeUnit ')'])
860end
861UvData.TimeUnit=TimeUnit;
862UvData.XmlData=XmlData;
863UvData.NewSeries=1;
864set(handles.uvmat,'UserData',UvData)
865
866%display warning message
867if ~isequal(warntext,'')
868    msgbox_uvmat('WARNING',warntext);
869end
870
871% set default options in menu 'Fields'
872
873if testima
874elseif isequal(FileExt,'.nc')||isequal(FileExt,'.cdf')
875   Data=nc2struct(FileName,'ListGlobalAttribute','absolut_time_T0','civ');
876   %col_vec=get(handles.col_vec,'String');
877   if ~isempty(Data.absolut_time_T0)&& ~isequal(Data.civ,0)%if the new input is Civx
878       FieldList=calc_field;
879       set(handles.Fields,'String',[{'image'};FieldList;{'get_field...'}]);%standard menu for civx data
880       set(handles.Fields,'Value',2) % set menu to 'velocity'
881       col_vec=FieldList;
882       col_vec(1)=[];%remove 'velocity' option for vector color (must be a scalar)
883   else %general netcdf file (not civx)
884       set(handles.Fields,'Value',1) % set menu to 'get_field...
885       set(handles.Fields,'String',{'get_field...'})
886       col_vec={'get_field...'};
887       hget_field=findobj('Name','get_field');
888       if ~isempty(hget_field)%delete any existing get_field GUI for reinitialisation withthe new file series
889           hhget_field=guidata(hget_field);
890           if ~strcmp(get(hhget_field.inputfile,'String'),FileName)%delete any existing get_field GUI with file name different than the input
891                delete(hget_field)
892           end
893       end
894   end
895   set(handles.col_vec,'String',col_vec)
896else
897    msgbox_uvmat('ERROR',['invalid input file extension ' FileExt])
898    return
899end 
900
901%% set index navigation options and refresh plots
902set(handles.RootPath,'BackgroundColor',[1 1 1])
903drawnow
904set_scan_options(hObject, eventdata, handles)
905
906%------------------------------------------------------------------------
907%--- Set index navigation options for new series input and refresh plot
908%------------------------------------------------------------------------
909function set_scan_options(hObject, eventdata, handles)
910
911%  set the corresponding index navigation options
912NomType=get(handles.FileIndex,'UserData');       
913NomType_1=get(handles.FileIndex_1,'UserData');
914last_i_str=get(handles.last_i,'String');
915nbfield=str2num(last_i_str{1});
916if numel(last_i_str)==2
917    nbfield=min(nbfield,str2num(last_i_str{2}));
918end 
919state_j='off'; %default
920scan_option='i';%default
921NomTypeRaw=regexprep(NomType(2:end), '-', '');
922if numel(regexp(NomTypeRaw,'\D'))>=1
923        state_j='on';
924        if isequal(nbfield,1)
925            scan_option='j'; %scan j index by default if nbfield=1               
926        end
927end
928if ~isempty(NomType_1)
929    NomTypeRaw=regexprep(NomType_1(2:end), '-', '');
930    if numel(regexp(NomTypeRaw,'\D'))>=1
931            state_j='on';
932            if isequal(nbfield,1)
933                scan_option='j';                 
934            end           
935    end
936end
937if isequal(scan_option,'i')
938     set(handles.scan_i,'Value',1)
939     scan_i_Callback(hObject, eventdata, handles);
940else
941     set(handles.scan_j,'Value',1)
942     scan_j_Callback(hObject, eventdata, handles);
943end
944set(handles.scan_j,'Visible',state_j)
945set(handles.j1,'Visible',state_j)
946set(handles.j2,'Visible',state_j)
947set(handles.last_j,'Visible',state_j);
948set(handles.frame_j,'Visible',state_j);
949set(handles.j_text,'Visible',state_j);
950if strcmp(state_j,'on')
951    set(handles.fix_pair,'Visible','on')
952else
953    set(handles.fix_pair,'Visible','off')
954end
955
956%% view the field 
957run0_Callback(hObject, eventdata, handles); %view field
958mask_test=get(handles.mask_test,'value');
959if mask_test
960    MaskData=get(handles.mask_test,'UserData');
961    if isfield(MaskData,'maskhandle') && ishandle(MaskData.maskhandle)
962          delete(MaskData.maskhandle)    %delete old mask
963    end
964    mask_test_Callback(hObject, eventdata, handles)
965end
966
967%------------------------------------------------------------------------
968% --- Executes on the menu Open/Browse_1 for the second input field,
969%     search the files, recognize their type according to their name and fill the rootfile input windows
970function MenuBrowse_1_Callback(hObject, eventdata, handles)
971%------------------------------------------------------------------------
972% huvmat=get(handles.run0,'parent');
973UvData=get(handles.uvmat,'UserData');
974
975RootPath=get(handles.RootPath,'String');
976[FileName, PathName, filterindex] = uigetfile( ...
977       {'*.xml;*.xls;*.civ;*.jpg;*.png;*.avi;*.AVI;*.nc;*.cmx;*.fig;*.log;*.dat', ' (*.xml,*.xls,*.civ, *.jpg,*.png, *.avi,*.nc,*.cmx ,*.fig,*.log,*.dat)';
978       '*.xml',  '.xml files '; ...
979        '*.xls',  '.xls files '; ...
980        '*.civ',  '.civ files '; ...
981        '*.jpg','.jpg image files'; ...
982        '*.png','.png image files'; ...
983        '*.avi;*.AVI','.avi movie files'; ...
984        '*.nc','.netcdf files'; ...
985        '*.cdf','.netcdf files'; ...
986        '*.cmx','.cmx text files';...
987        '*.cmx2','.cmx2 text files';...
988        '*.fig','.fig files (matlab fig)';...
989        '*.log','.log text files ';...
990        '*.dat','.dat text files ';...
991        '*.*',  'All Files (*.*)'}, ...
992        'Pick a file',RootPath);
993fileinput_1=[PathName FileName];%complete file name
994% testblank=findstr(fileinput_1,' ');%look for blanks
995% if ~isempty(testblank)
996%     msgbox_uvmat('ERROR',['The input file name ' fileinput_1 ' contains blank character : This is not allowed. Please change name'])
997%     return
998% end
999sizf=size(fileinput_1);
1000if (~ischar(fileinput_1)||~isequal(sizf(1),1)),return;end
1001
1002% refresh the current displayed field
1003display_file_name_1(hObject,eventdata,handles,fileinput_1)
1004
1005%update list of recent files in the menubar
1006MenuFile_1=fileinput_1;
1007MenuFile_2=get(handles.MenuFile_1,'Label');
1008MenuFile_3=get(handles.MenuFile_2,'Label');
1009MenuFile_4=get(handles.MenuFile_3,'Label');
1010MenuFile_5=get(handles.MenuFile_4,'Label');
1011set(handles.MenuFile_1,'Label',MenuFile_1)
1012set(handles.MenuFile_2,'Label',MenuFile_2)
1013set(handles.MenuFile_3,'Label',MenuFile_3)
1014set(handles.MenuFile_4,'Label',MenuFile_4)
1015set(handles.MenuFile_5,'Label',MenuFile_5)
1016set(handles.MenuFile_1_1,'Label',MenuFile_1)
1017set(handles.MenuFile_2_1,'Label',MenuFile_2)
1018set(handles.MenuFile_3_1,'Label',MenuFile_3)
1019set(handles.MenuFile_4_1,'Label',MenuFile_4)
1020set(handles.MenuFile_5_1,'Label',MenuFile_5)
1021dir_perso=prefdir;
1022profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
1023if exist(profil_perso,'file')
1024    save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-append'); %store the file names for future opening of uvmat
1025else
1026    txt=ver('MATLAB');
1027    Release=txt.Release;
1028    relnumb=str2double(Release(3:4));
1029    if relnumb >= 14
1030        save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5','-V6'); %store the file names for future opening of uvmat
1031    else
1032        save (profil_perso,'MenuFile_1','MenuFile_2','MenuFile_3','MenuFile_4', 'MenuFile_5'); %store the file names for future opening of uvmat
1033    end
1034end
1035
1036% -----------------------------------------------------------------------
1037% --- Open again as second field the file whose name has been recorded in MenuFile_1
1038function MenuFile_1_1_Callback(hObject, eventdata, handles)
1039% -----------------------------------------------------------------------
1040fileinput_1=get(handles.MenuFile_1_1,'Label');
1041display_file_name_1(hObject,eventdata,handles,fileinput_1)
1042
1043% -----------------------------------------------------------------------
1044% --- Open again as second field the file whose name has been recorded in MenuFile_2
1045function MenuFile_2_1_Callback(hObject, eventdata, handles)
1046% -----------------------------------------------------------------------
1047fileinput_1=get(handles.MenuFile_2_1,'Label');
1048display_file_name_1(hObject,eventdata,handles,fileinput_1)
1049
1050% -----------------------------------------------------------------------
1051% --- Open again as second field the file whose name has been recorded in MenuFile_3
1052function MenuFile_3_1_Callback(hObject, eventdata, handles)
1053% -----------------------------------------------------------------------
1054fileinput_1=get(handles.MenuFile_3_1,'Label');
1055display_file_name_1(hObject,eventdata,handles,fileinput_1)
1056
1057% -----------------------------------------------------------------------
1058% --- Open again as second field the file whose name has been recorded in MenuFile_4
1059function MenuFile_4_1_Callback(hObject, eventdata, handles)
1060% -----------------------------------------------------------------------
1061fileinput_1=get(handles.MenuFile_4_1,'Label');
1062display_file_name_1(hObject,eventdata,handles,fileinput_1)
1063
1064% -----------------------------------------------------------------------
1065% --- Open again as second field the file whose name has been recorded in MenuFile_5
1066function MenuFile_5_1_Callback(hObject, eventdata, handles)
1067% -----------------------------------------------------------------------
1068fileinput_1=get(handles.MenuFile_5_1,'Label');
1069display_file_name_1(hObject,eventdata,handles,fileinput_1)
1070
1071%------------------------------------------------------------------------
1072% fills the edit boxes RootPath_1, RootFile_1,NomType_1...from an input file name 'fileinput_1'
1073%------------------------------------------------------------------------
1074function display_file_name_1(hObject,eventdata,handles,fileinput_1)
1075
1076%[path,name,ext]=fileparts(fileinput_1);
1077[RootPath_1,RootFile_1,field_count,str2,str_a,str_b,FileExt_1,NomType_1,SubDir_1]=name2display(fileinput_1);
1078nbfield_1=1; %default
1079ext_test=FileExt_1;%default
1080form=imformats(FileExt_1(2:end));
1081if ~isempty(form) % if the extension corresponds to an image format recognized by Matlab
1082    imainfo=imfinfo(fileinput_1); 
1083    nbfield_1=length(imainfo);
1084    ext_test='.image';
1085elseif isequal(lower(FileExt_1),'.avi')
1086    info=aviinfo(fileinput_1);
1087    nbfield_1=info.NumFrames;
1088    ext_test='.image';
1089end
1090
1091%open directly fig or text files
1092switch ext_test
1093    case {'.civ','.log','.cmx','.cmx2','.txt'}  %display text file
1094        edit(fileinput) 
1095        return
1096    case '.fig'                           %display matlab figure
1097        hfig=open(fileinput);
1098        set(hfig,'WindowButtonMotionFcn','mouse_motion')%set mouse action functio
1099        set(hfig,'WindowButtonUpFcn','mouse_up')%set mouse click action function
1100        set(hfig,'WindowButtonUpFcn','mouse_down')%set mouse click action function
1101        return
1102    case {'.xml','.xls'}                % edit xml or Excel files
1103       heditxml=editxml(fileinput);
1104       return
1105    case {'.image','.nc','.cdf'}
1106%         set(handles.FileIndex,'UserData',NomType_1);
1107    otherwise
1108        msgbox_uvmat(['invalid input file extension ' FileExt_1 ' for uvmat'],'ERROR')
1109        return
1110end
1111
1112% test for image series in a single file and synchronise file indices of the two series
1113if nbfield_1 >1 %case of image with multiple frames
1114    if nbfield_1 < num_i1
1115        msgbox_uvmat('ERROR','current frame index beyond the input movie length')
1116        return
1117    else
1118        NomType_1='*'; %indicate a set of indexed frames within a single file
1119        filename_new=fileinput_1;
1120    end
1121else  % cases of data files   
1122    RootPath=get(handles.RootPath,'String');
1123    RootFile=get(handles.RootFile,'String');
1124    FileBase=fullfile(RootPath,RootFile);
1125    FileBase_1=fullfile(RootPath_1,RootFile_1);
1126    if isequal(FileBase,FileBase_1)
1127        filename_new=fileinput_1;
1128    else       
1129        num_i1=stra2num(get(handles.i1,'String'));%get the current file indices from counters
1130        num_j1=stra2num(get(handles.j1,'String'));
1131        num_i2=stra2num(get(handles.i2,'String'));
1132        num_j2=stra2num(get(handles.j2,'String'));
1133        [filename_new,idetect]=...
1134           name_generator(FileBase_1,num_i1,num_j1,FileExt_1,NomType_1,1,num_i2,num_j2,SubDir_1);%create name with indices synchronised with the first file
1135        indices=''; %default
1136        if ~idetect
1137            msgbox_uvmat('ERROR','second input file with indices corresponding to the first one does not exist')
1138            return
1139        end
1140    end
1141end
1142set(handles.FileIndex_1,'UserData',NomType_1);
1143
1144% make visible and fill the second raw of edit boxes
1145set(handles.RootPath_1,'Visible','on')
1146set(handles.RootFile_1,'Visible','on')
1147set(handles.SubDir_1,'Visible','on');
1148set(handles.FileIndex_1,'Visible','on');
1149set(handles.FileExt_1,'Visible','on');
1150[FileName,RootPath,FileBase,FileIndices,FileExt,SubDir]=read_file_boxes(handles);
1151if isequal(FileBase,FileBase_1)
1152    set(handles.RootPath_1,'String','"')
1153    set(handles.RootFile_1,'String','"');
1154else
1155    set(handles.RootPath_1,'String',RootPath_1)
1156    set(handles.RootFile_1,'String',['/' RootFile_1]);
1157end
1158if  isequal(SubDir_1,'')
1159     set(handles.SubDir_1,'String','');
1160     FileBaseSub_1=FileBase_1;
1161else 
1162    set(handles.SubDir_1,'String',['/' SubDir_1]);
1163    FileBaseSub_1=fullfile(FileBase_1,SubDir_1);
1164end
1165indices=filename_new(length(FileBaseSub_1)+1:end);
1166indices(end-length(FileExt_1)+1:end)=[]; %remove extension
1167set(handles.FileIndex_1,'String',indices)
1168set(handles.FileIndex_1,'UserData',NomType_1)
1169set(handles.FileExt_1,'String',FileExt_1);
1170
1171% % default choice of fields
1172% if isequal(ext_test,'.image')
1173% %    set(handles.Fields_1,'String',{'';'image';'get_field...';'velocity';'vort';'div';'more...'})
1174% %    set(handles.Fields_1,'Value',2) % set menu to 'image'
1175% elseif strcmp(FileExt_1,'.nc')||strcmp(FileExt_1,'.cdf')
1176%    Data=nc2struct(fileinput_1,[]);
1177% %    if isfield(Data,'absolut_time_T0')
1178% %        set(handles.Fields_1,'String',{'';'image';'get_field...';'velocity';'vort';'div';'more...'})
1179% %        set(handles.Fields_1,'Value',4) % set menu to 'velocity'
1180% %    else   
1181% %        set(handles.Fields_1,'Value',2) % set menu to 'get_field...'
1182% %        set(handles.Fields_1,'String',{'';'get_field...'});
1183% %    end
1184% end 
1185set(handles.SubField,'Visible','on')
1186set(handles.SubField,'Value',1)
1187RootPath_1_Callback(hObject,eventdata,handles); 
1188
1189%-----------------------------------------------------------------------
1190% --- Called by action in RootPath_1 edit box
1191function RootPath_1_Callback(hObject,eventdata,handles)
1192% -----------------------------------------------------------------------
1193update_rootinfo_1(hObject,eventdata,handles)
1194
1195%-----------------------------------------------------------------------
1196% --- Called by action in RootFile_1 edit box
1197function RootFile_1_Callback(hObject, eventdata, handles)
1198% -----------------------------------------------------------------------
1199update_rootinfo_1(hObject,eventdata,handles)
1200
1201%------------------------------------------------------------------------
1202% --- Called by action in FileIndex_1 edit box
1203function FileIndex_1_Callback(hObject, eventdata, handles)
1204%------------------------------------------------------------------------
1205run0_Callback(hObject, eventdata, handles)
1206
1207%------------------------------------------------------------------------
1208% --- Update information about a new second field series (indices to scan, timing,
1209%     calibration from an xml file, then refresh current plots
1210function update_rootinfo_1(hObject,eventdata,handles) %A REVOIR
1211% -----------------------------------------------------------------------
1212set(handles.RootPath_1,'BackgroundColor',[1 1 0])% indicate active program by yellow color
1213drawnow
1214UvData=get(handles.uvmat,'UserData');%huvmat=handles of the uvmat interface
1215UvData.NewSeries=1; %flag for run0: begin a new series
1216
1217[FileName,RootPath,FileBase,FileIndices,FileExt,SubDir]=read_file_boxes_1(handles);
1218if ~exist(FileName,'file')
1219    msgbox_uvmat('ERROR',['input file ' FileName ' not found']);
1220end
1221nbfield_1=[];%default
1222nburst_1=[];%default
1223XmlData.Time=[];
1224XmlData.GeometryCalib=[];%default
1225TimeUnit=[];
1226if isfield(UvData,'TimeUnit')
1227    TimeUnit=UvData.TimeUnit;
1228end
1229TimeUnit_1=[];
1230hhh='';%default, test for  movie reading with mmreader
1231imainfo=[];
1232if isequal(lower(FileExt),'.avi') %.avi file
1233    imainfo=aviinfo([FileBase FileIndices FileExt]);
1234    nbfield_1=imainfo.NumFrames;
1235    nburst_1=1;
1236    set(handles.Dt_txt,'String',['Dt=' num2str(1000/info.FramesPerSecond) 'ms']);%display the elementary time interval in millisec
1237    time=(0:1/imainfo.FramesPerSecond:(imainfo.NumFrames-1)/imainfo.FramesPerSecond)';
1238    ColorType=imainfo.ImageType;%='truecolor' for color images
1239    hhh=which('mmreader');
1240elseif ~isempty(imformats(FileExt(2:end)))|| isequal(FileExt,'.vol')
1241    if ~isequal(SubDir,'')
1242        RootFile=get(handles.RootFile,'String');
1243        imainfo=imfinfo([fullfile(RootPath,SubDir,RootFile) FileIndices FileExt]);
1244    else
1245        imainfo=imfinfo([FileBase FileIndices FileExt]);
1246    end
1247    ColorType=imainfo.ColorType;%='truecolor' for color images
1248    if length(imainfo) >1 %case of image with multiple frames
1249        nbfield_1=length(imainfo);
1250        nburst_1=1;
1251    end
1252end
1253if ~strcmp(hhh,'')&& mmreader.isPlatformSupported()% if the function is found (recent version of matlab)
1254    UvData.MovieObject_1=mmreader([FileBase FileIndices FileExt]);
1255elseif isfield(UvData,'MovieObject_1')
1256    UvData=rmfield(UvData,'MovieObject_1');
1257end
1258if ~isempty(imainfo)% (an image has been introduced as second fierld input)
1259    if strcmp(get(handles.npx,'String'),'') || strcmp(get(handles.npy,'String'),'')%update npx and npy if it is not already filled by the first input field
1260        if  isfield(imainfo,'Width') && isfield(imainfo,'Height')
1261            set(handles.npx,'String',num2str(imainfo.Width));%fills nbre of pixels x box
1262            set(handles.npy,'String',num2str(imainfo.Height));%fills nbre of pixels x box
1263        else
1264            set(handles.npx,'String','');%fills nbre of pixels x box
1265            set(handles.npy,'String','');%fills nbre of pixels x box
1266        end
1267        set(handles.BW,'Value',strcmp(ColorType,'grayscale'))% select handles.BW if grayscale image
1268    end
1269end
1270% find scaling parameters
1271filexml=[FileBase '.xml'];
1272fileciv=[FileBase '.civ'];
1273warntext='';%default warning text
1274if exist(filexml,'file')
1275    [XmlData,warntext]=imadoc2struct(filexml);
1276    if ~isempty(warntext)
1277        msgbox_uvmat('WARNING',warntext)
1278    end
1279    if isfield(XmlData,'Camera')
1280        if isfield(XmlData.Camera,'TimeUnit')&& ~isempty(XmlData.Camera.TimeUnit)
1281            TimeUnit=XmlData.Camera.TimeUnit;
1282        end
1283    end
1284elseif exist(fileciv,'file')% if .civ file found
1285    [error,XmlData.Time,TimeUnit,mode,npx,npy,pxcmx,pxcmy]=read_imatext([FileBase '.civ']);
1286    GeometryCalib.R=[pxcmx 0 0; 0 pxcmy 0;0 0 0];
1287    GeometryCalib.Tx=0;
1288    GeometryCalib.Ty=0;
1289    GeometryCalib.Tz=1;
1290    GeometryCalib.dpx=1;
1291    GeometryCalib.dpy=1;
1292    GeometryCalib.sx=1;
1293    GeometryCalib.Cx=0;
1294    GeometryCalib.Cy=0;
1295    GeometryCalib.f=1;
1296    GeometryCalib.kappa1=0;
1297    GeometryCalib.CoordUnit='cm';
1298    XmlData.GeometryCalib=GeometryCalib;
1299    if error==2, warntext=['no file ' FileBase '.civ'];
1300    elseif error==1, warntext='inconsistent number of fields in the .civ file';
1301    end
1302   
1303    set(handles.npx,'String',num2str(npx));%fills nbre of pixels x box
1304    set(handles.npy,'String',num2str(npy));%fills nbre of pixels y box
1305    set(handles.pxcm,'String',num2str(pxcmx));%fills scale x (pixel/cm) box
1306    set(handles.pycm,'String',num2str(pxcmy));%fills scale y (pixel/cm) box
1307    set(handles.pxcm,'Visible','on');%fills scale x (pixel/cm) box
1308    set(handles.pycm,'Visible','on');%fills scale y (pixel/cm) box
1309end   
1310if ~isempty(TimeUnit_1) && ~isequal(TimeUnit_1,TimeUnit)
1311        msgbox_uvmat('WARNING','the time units for the second series differs from the first one')
1312end
1313       
1314% store last index in handles.lat_i and .last_j
1315if ~isempty(XmlData.Time)
1316    nbfield_1=size(XmlData.Time,1);
1317    nburst_1=size(XmlData.Time,2);   
1318end
1319last_i_cell=get(handles.last_i,'String');
1320if isempty(nbfield_1)
1321    last_i_cell{2}='';
1322else
1323    last_i_cell{2}=num2str(nbfield_1);
1324end
1325set(handles.last_i,'String',last_i_cell)
1326last_j_cell=get(handles.last_j,'String');
1327if isempty(nburst_1)
1328     last_j_cell{2}='';
1329else
1330     last_j_cell{2}=num2str(nburst_1);
1331end
1332set(handles.last_j,'String',last_j_cell);
1333if ~isequal(last_i_cell{1},last_i_cell{2}) || ~isequal(last_j_cell{1},last_j_cell{2})
1334        msgbox_uvmat('WARNING','the numbers of input file of the second series differs from the first one')
1335end
1336
1337% store calibration data
1338GeometryCalib=XmlData.GeometryCalib;
1339if isempty(GeometryCalib)
1340    if isfield(UvData, 'GeometryCalib_1')
1341        UvData=rmfield(UvData,'GeometryCalib_1');
1342    end
1343else
1344    UvData.GeometryCalib_1=GeometryCalib;
1345    if (isfield(GeometryCalib,'R')&& ~isequal(GeometryCalib.R(2,1),0) && ~isequal(GeometryCalib.R(1,2),0)) ||...
1346        (isfield(GeometryCalib,'kappa1')&& ~isequal(GeometryCalib.kappa1,0))
1347        set(handles.pxcm,'String','var')
1348        set(handles.pycm,'String','var')
1349    else
1350        if isfield(GeometryCalib,'fx_fy')
1351            pixcmx=GeometryCalib.fx_fy(1);
1352            pixcmy=GeometryCalib.fx_fy(2);
1353            set(handles.pxcm,'String',num2str(pixcmx))
1354            set(handles.pycm,'String',num2str(pixcmy))
1355        end
1356    end
1357end
1358UvData.XmlData_1=XmlData;
1359set(handles.uvmat,'UserData',UvData)%update the data attached to the uvmat interface
1360
1361if ~isequal(warntext,'')
1362    msgbox_uvmat('WARNING',warntext)
1363end
1364
1365set(handles.RootPath_1,'BackgroundColor',[1 1 1])% signa the end the input operation
1366drawnow
1367
1368set_scan_options(hObject, eventdata, handles)
1369
1370%---------------------------------------------------
1371% switch file index scanning options scan_i and scan_j in an exclusive way
1372function scan_i_Callback(hObject, eventdata, handles)
1373%---------------------------------------------------
1374if get(handles.scan_i,'Value')==1
1375    set(handles.scan_i,'BackgroundColor',[1 1 0])
1376    set(handles.scan_j,'Value',0)
1377%     set(handles.scan_j,'BackgroundColor',[0.831 0.816 0.784])
1378else
1379    set(handles.scan_i,'BackgroundColor',[0.831 0.816 0.784])
1380    set(handles.scan_j,'Value',1)
1381%     set(handles.scan_j,'BackgroundColor',[1 1 0])
1382end
1383scan_j_Callback(hObject, eventdata, handles)
1384
1385%-------------------------------------------------------------------
1386% switch file index scanning options scan_i and scan_j in an exclusive way
1387function scan_j_Callback(hObject, eventdata, handles)
1388%-------------------------------------------------------------------
1389if get(handles.scan_j,'Value')==1
1390    set(handles.scan_j,'BackgroundColor',[1 1 0])
1391    set(handles.scan_i,'Value',0)
1392    set(handles.scan_i,'BackgroundColor',[0.831 0.816 0.784])
1393    NomType=get(handles.FileIndex,'UserData')
1394    switch NomType
1395    case {'_i_j1-j2','#_ab','%3dab'},% pair with j index
1396        set(handles.fix_pair,'Visible','on')% option fixed pair on/off made visible (choice of avaible pair with buttons + and - if ='off')
1397    otherwise
1398        set(handles.fix_pair,'Visible','off')
1399    end
1400else
1401    set(handles.scan_j,'BackgroundColor',[0.831 0.816 0.784])
1402    set(handles.scan_i,'Value',1)
1403    set(handles.scan_i,'BackgroundColor',[1 1 0])
1404    set(handles.fix_pair,'Visible','off')
1405end
1406
1407%-------------------------------------------------------------------
1408function i1_Callback(hObject, eventdata, handles)
1409%-------------------------------------------------------------------
1410set(handles.i1,'BackgroundColor',[0.7 0.7 0.7])
1411NomType=get(handles.FileIndex,'UserData');
1412num1=stra2num(get(handles.i1,'String'));
1413num2=stra2num(get(handles.i2,'String'));
1414num_a=stra2num(get(handles.j1,'String'));
1415num_b=stra2num(get(handles.j2,'String'));
1416indices=name_generator('',num1,num_a,'',NomType,1,num2,num_b,'');
1417set(handles.FileIndex,'String',indices)
1418set(handles.FileIndex,'BackgroundColor',[0.7 0.7 0.7])
1419if get(handles.SubField,'Value')==1
1420    NomType_1=get(handles.FileIndex_1,'String');
1421     FileExt_1=get(handles.FileExt_1,'String');
1422    [P,F,str1,str2,str_a,str_b,Ext,NomType_1]=name2display(['xx' NomType_1 FileExt_1]);
1423     indices=name_generator('',num1,num_a,'',NomType_1,1,num2,num_b,'');
1424     set(handles.FileIndex_1,'String',indices)
1425     set(handles.FileIndex_1,'BackgroundColor',[0.7 0.7 0.7])
1426end
1427%Run0_Callback(hObject, eventdata, handles)
1428
1429%-------------------------------------------------------------------
1430function i2_Callback(hObject, eventdata, handles)
1431set(handles.i2,'BackgroundColor',[0.7 0.7 0.7])
1432i1_Callback(hObject, eventdata, handles)
1433%-------------------------------------------------------------------
1434
1435%-------------------------------------------------------------------
1436function j1_Callback(hObject, eventdata, handles)
1437set(handles.j1,'BackgroundColor',[0.7 0.7 0.7])
1438i1_Callback(hObject, eventdata, handles)
1439%-------------------------------------------------------------------
1440
1441%-------------------------------------------------------------------
1442function j2_Callback(hObject, eventdata, handles)
1443set(handles.j2,'BackgroundColor',[0.7 0.7 0.7])
1444i1_Callback(hObject, eventdata, handles)
1445%-------------------------------------------------------------------
1446
1447%-------------------------------------------------------------------
1448function slices_Callback(hObject, eventdata, handles)
1449%-------------------------------------------------------------------
1450if get(handles.slices,'Value')==1
1451    set(handles.slices,'BackgroundColor',[1 1 0])
1452    set(handles.nb_slice,'Visible','on')
1453    set(handles.z_text,'Visible','on')
1454    set(handles.z_index,'Visible','on')
1455    nb_slice_Callback(hObject, eventdata, handles)
1456else
1457    set(handles.nb_slice,'Visible','off')
1458    set(handles.slices,'BackgroundColor',[0.7 0.7 0.7])
1459    set(handles.z_text,'Visible','off')
1460    set(handles.z_index,'Visible','off')
1461    set(handles.masklevel,'Value',1)
1462    set(handles.masklevel,'String',{'1'})
1463end
1464
1465%-------------------------------------------------------------------
1466function nb_slice_Callback(hObject, eventdata, handles)
1467%-------------------------------------------------------------------
1468nb_slice_str=get(handles.nb_slice,'String');
1469if isequal(nb_slice_str,'volume')
1470    num=stra2num(get(handles.j1,'String'));
1471    last_j=get(handles.last_j,'String');
1472    nbslice=str2double(last_j{1});
1473else
1474    num=str2double(get(handles.i1,'String'));
1475    nbslice=str2double(get(handles.nb_slice,'String'));
1476end
1477z=mod(num-1,nbslice)+1;
1478set(handles.z_index,'String',num2str(z))
1479for ilist=1:nbslice
1480    list_index{ilist,1}=num2str(ilist);
1481end   
1482set(handles.masklevel,'String',list_index)
1483set(handles.masklevel,'Value',z)
1484
1485%------------------------------------------------------------------------
1486% --- Executes on button press in view_xml.
1487function view_xml_Callback(hObject, eventdata, handles)
1488%------------------------------------------------------------------------
1489[FileName,RootPath,FileBase,FileIndices,FileExt]=read_file_boxes(handles);
1490option=get(handles.view_xml,'String');
1491if isequal(option,'view .xml')
1492    FileXml=[FileBase '.xml'];
1493    heditxml=editxml(FileXml);
1494end
1495
1496%------------------------------------------------------------------------
1497% --- Executes on button press in mask_test.
1498function mask_test_Callback(hObject, eventdata, handles)
1499%------------------------------------------------------------------------
1500%case of view mask selection
1501if isequal(get(handles.mask_test,'Value'),1)
1502    [FF,RootPath,FileBase]=read_file_boxes(handles);
1503    num_i1=stra2num(get(handles.i1,'String'));
1504    num_j1=stra2num(get(handles.j1,'String'));
1505    currentdir=pwd; 
1506    cd(RootPath);
1507    maskfiles=dir('*_*mask_*.png');%look for a mask file
1508    cd(currentdir);%come back to the working directory
1509    mdetect=0;
1510    if ~isempty(maskfiles)
1511        for ilist=1:length(maskfiles)
1512            maskname=maskfiles(ilist).name;% take the first mask file in the list
1513            [rr,ff,x1,x2,xa,xb,xext,Mask_NomType{ilist}]=name2display(maskname);
1514            if ~strcmp(Mask_NomType{ilist},Mask_NomType{1})
1515                msgbox_uvmat('ERROR',['inconsistent mask types ' Mask_NomType{1} Mask_NomType{ilist } ' coexist in the current image directory'])
1516                return
1517            end
1518            [Path2,Name,ext]=fileparts(maskname);
1519            Namedouble=double(Name);
1520            val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters
1521            ind_mask=findstr('mask',Name);
1522            i=ind_mask-1;
1523            while val(i)==0 && i>0
1524                i=i-1;
1525            end
1526            nbmask_str=str2num(Name(i+1:ind_mask-1));
1527            if ~isempty(nbmask_str)
1528                nbslice(ilist)=nbmask_str; % number of different masks (slices)
1529            end
1530        end
1531        if isequal(min(nbslice),max(nbslice))
1532            nbslice=nbslice(1);
1533        else
1534            msgbox_uvmat('ERROR','several inconsistent mask sets coexist in the current image directory')
1535            return
1536        end
1537        if ~isempty(nbslice) && Name(i)=='_'
1538            Mask.Base=[FileBase Name(i:ind_mask+3)];
1539            Mask.NbSlice=nbslice;
1540            num_i1=mod(num_i1-1,nbslice)+1;
1541            Mask.NomType=Mask_NomType{1};
1542            [maskname,mdetect]=name_generator(Mask.Base,num_i1,num_j1,'.png',Mask.NomType);%
1543            mdetect=exist(maskname,'file');
1544            if mdetect
1545                set(handles.nb_slice,'String',Name(i+1:ind_mask-1));
1546                set(handles.nb_slice,'BackgroundColor',[1 1 0])
1547                set(handles.mask_test,'UserData',Mask);
1548                set(handles.mask_test,'BackgroundColor',[1 1 0])
1549                if nbslice > 1
1550                    set(handles.slices,'value',1)
1551                    slices_Callback(hObject, eventdata, handles)
1552                end
1553            end
1554        end
1555    end
1556    errormsg=[];%default
1557    if mdetect==0
1558        [FileName, PathName, filterindex] = uigetfile( ...
1559            {'*.png', ' (*.png)';
1560            '*.png',  '.png files '; ...
1561            '*.*', 'All Files (*.*)'}, ...
1562            'Pick a mask file *.png',FileBase);
1563        maskname=fullfile(PathName,FileName);
1564        if ~exist(maskname,'file')
1565            errormsg='no file browsed';
1566        end
1567        [RootDir,RootFile,x1,x2,xa,xb,xext,Mask.NomType]=name2display(maskname);
1568        Mask.Base=fullfile(RootDir,RootFile);
1569        Mask.NbSlice=1;
1570        set(handles.mask_test,'UserData',Mask);
1571        set(handles.mask_test,'BackgroundColor',[1 1 0])
1572    end
1573    if isempty(errormsg)
1574        errormsg=update_mask(handles,num_i1,num_j1);
1575    end
1576    if ~isempty(errormsg)
1577            set(handles.mask_test,'Value',0)
1578            set(handles.mask_test,'BackgroundColor',[0.7 0.7 0.7])
1579     end
1580else
1581    MaskData=get(handles.mask_test,'UserData');
1582    if isfield(MaskData,'maskhandle') && ishandle(MaskData.maskhandle)
1583          delete(MaskData.maskhandle)   
1584    end
1585    set(handles.mask_test,'UserData',[])   
1586    %huvmat=get(handles.mask_test,'parent');
1587    UvData=get(handles.uvmat,'UserData');
1588    if isfield(UvData,'MaskName')
1589        UvData=rmfield(UvData,'MaskName');
1590        set(handles.uvmat,'UserData',UvData)
1591    end
1592    set(handles.mask_test,'BackgroundColor',[0.7 0.7 0.7])
1593end
1594
1595%-------------------------------------------------------------------
1596function errormsg=update_mask(handles,num_i1,num_j1)
1597%-------------------------------------------------------------------
1598errormsg=[];%default
1599MaskData=get(handles.mask_test,'UserData');
1600if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
1601    uistack(MaskData.maskhandle,'top');
1602end
1603num_i1_mask=mod(num_i1-1,MaskData.NbSlice)+1;
1604MaskName=name_generator(MaskData.Base,num_i1_mask,num_j1,'.png',MaskData.NomType);
1605huvmat=get(handles.mask_test,'parent');
1606UvData=get(huvmat,'UserData');
1607
1608%update mask image if the mask is new
1609if ~ (isfield(UvData,'MaskName') && isequal(UvData.MaskName,MaskName))
1610    UvData.MaskName=MaskName; %update the recorded name on UvData
1611    set(huvmat,'UserData',UvData);
1612    if ~exist(MaskName,'file')
1613        if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
1614            delete(MaskData.maskhandle)   
1615        end
1616    else
1617        %read mask image
1618        Mask.AName='image';
1619        Mask.A=imread(MaskName);
1620        npxy=size(Mask.A);
1621        test_error=0;
1622        if length(npxy)>2
1623            errormsg=[MaskName ' is not a grey scale image'];
1624            return
1625        elseif ~isa(Mask.A,'uint8')
1626            errormsg=[MaskName ' is not a 8 bit grey level image'];
1627            return
1628        end
1629        Mask.AX=[0.5 npxy(2)-0.5];
1630        Mask.AY=[npxy(1)-0.5 0.5 ];
1631        Mask.CoordUnit='pixel';
1632        if isequal(get(handles.slices,'Value'),1)
1633           NbSlice=str2num(get(handles.nb_slice,'String'));
1634           num_i1=str2num(get(handles.i1,'String'));
1635           Mask.ZIndex=mod(num_i1-1,NbSlice)+1;
1636        end
1637        %px to phys or other transform on field
1638         menu_transform=get(handles.transform_fct,'String');
1639        choice_value=get(handles.transform_fct,'Value');
1640        transform_name=menu_transform{choice_value};%name of the transform fct  given by the menu 'transform_fct'
1641        transform_list=get(handles.transform_fct,'UserData');
1642        transform=transform_list{choice_value};
1643        if  ~isequal(transform_name,'') && ~isequal(transform_name,'px')
1644            if isfield(UvData,'XmlData') && isfield(UvData.XmlData,'GeometryCalib')%use geometry calib recorded from the ImaDoc xml file as first priority
1645                Calib=UvData.XmlData.GeometryCalib;
1646                Mask=transform(Mask,UvData.XmlData);
1647            end
1648        end
1649        flagmask=Mask.A < 200;
1650       
1651        %make brown color image
1652        imflag(:,:,1)=0.9*flagmask;
1653        imflag(:,:,2)=0.7*flagmask;
1654        imflag(:,:,3)=zeros(size(flagmask));
1655       
1656        %update mask image
1657        hmask=[]; %default
1658        if isfield(MaskData,'maskhandle')&& ishandle(MaskData.maskhandle)
1659            hmask=MaskData.maskhandle;
1660        end
1661        if ~isempty(hmask)
1662            set(hmask,'CData',imflag)   
1663            set(hmask,'AlphaData',flagmask*0.6)
1664            set(hmask,'XData',Mask.AX);
1665            set(hmask,'YData',Mask.AY);
1666%             uistack(hmask,'top')
1667        else
1668            axes(handles.axes3)
1669            hold on   
1670            MaskData.maskhandle=image(Mask.AX,Mask.AY,imflag,'Tag','mask','HitTest','off','AlphaData',0.6*flagmask);
1671%             set(MaskData.maskhandle,'AlphaData',0.6*flagmask)
1672            set(handles.mask_test,'UserData',MaskData)
1673        end
1674    end
1675end
1676
1677
1678%-------------------------------------------------------------------
1679function MenuExportFigure_Callback(hObject, eventdata, handles)
1680%-------------------------------------------------------------------
1681huvmat=get(handles.MenuExport,'parent');
1682%UvData=get(huvmat,'UserData');
1683hfig=figure;
1684copyobj(handles.axes3,hfig);
1685map=colormap(handles.axes3);
1686colormap(map);%transmit the current colormap to the zoom fig
1687colorbar
1688
1689%-------------------------------------------------------------------
1690%-------------------------------------------------------------------
1691% III - MAIN REFRESH FUNCTIONS : 'FRAME PLOT'
1692%-------------------------------------------------------------------
1693
1694%-------------------------------------------------------------------
1695% --- Executes on button press in runplus: make one step forward and call
1696% --- run0. The step forward is along the fields series 1 or 2 depending on
1697% --- the scan_i and scan_j check box (exclusive each other)
1698function runplus_Callback(hObject, eventdata, handles)
1699%-------------------------------------------------------------------
1700set(handles.runplus,'BackgroundColor',[1 1 0])%paint the command button in yellow
1701drawnow
1702%TODO: introduce the option: increment ='*' to move to the next available view
1703increment=str2double(get(handles.increment_scan,'String')); %get the field increment d
1704if isnan(increment)
1705    set(handles.increment_scan,'String','1')%default value
1706    increment=1;
1707end
1708errormsg=runpm(hObject,eventdata,handles,increment);
1709if ~isempty(errormsg)
1710    msgbox_uvmat('ERROR',errormsg);
1711end
1712set(handles.runplus,'BackgroundColor',[1 0 0])%paint the command button back to red
1713
1714%-------------------------------------------------------------------
1715% --- Executes on button press in runmin: make one step backward and call
1716% --- run0. The step backward is along the fields series 1 or 2 depending on
1717% --- the scan_i and scan_j check box (exclusive each other)
1718function runmin_Callback(hObject, eventdata, handles)
1719%-------------------------------------------------------------------
1720set(handles.runmin,'BackgroundColor',[1 1 0])%paint the command button in yellow
1721drawnow
1722increment=-str2double(get(handles.increment_scan,'String')); %get the field increment d
1723if isnan(increment)
1724    set(handles.increment_scan,'String','1')%default value
1725    increment=1;
1726end
1727errormsg=runpm(hObject,eventdata,handles,increment);
1728if ~isempty(errormsg)
1729    msgbox_uvmat('ERROR',errormsg);
1730end
1731set(handles.runmin,'BackgroundColor',[1 0 0])%paint the command button back to red
1732
1733%-------------------------------------------------------------------
1734% -- Executes on button press in Movie: make a series of +> steps
1735function Movie_Callback(hObject, eventdata, handles)
1736%------------------------------------------------------------------
1737set(handles.Movie,'BackgroundColor',[1 1 0])%paint the command button in yellow
1738drawnow
1739increment=str2double(get(handles.increment_scan,'String')); %get the field increment d
1740if isnan(increment)
1741    set(handles.increment_scan,'String','1')%default value
1742    increment=1;
1743end
1744set(handles.STOP,'Visible','on')
1745set(handles.speed,'Visible','on')
1746set(handles.speed_txt,'Visible','on')
1747set(handles.Movie,'BusyAction','queue')
1748UvData=get(handles.uvmat,'UserData');
1749
1750while get(handles.speed,'Value')~=0 && isequal(get(handles.Movie,'BusyAction'),'queue') % enable STOP command
1751        errormsg=runpm(hObject,eventdata,handles,increment);
1752        if ~isempty(errormsg)
1753            set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1754            return
1755        end
1756        pause(1.02-get(handles.speed,'Value'))% wait for next image
1757end
1758if isfield(UvData,'aviobj') && ~isempty( UvData.aviobj),
1759    UvData.aviobj=close(UvData.aviobj);
1760   set(handles.uvmat,'UserData',UvData);
1761end
1762set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1763
1764%-------------------------------------------------------------------
1765% -- Executes on button press in Movie: make a series of <- steps
1766function MovieBackward_Callback(hObject, eventdata, handles)
1767%------------------------------------------------------------------
1768set(handles.MovieBackward,'BackgroundColor',[1 1 0])%paint the command button in yellow
1769drawnow
1770increment=-str2double(get(handles.increment_scan,'String')); %get the field increment d
1771if isnan(increment)
1772    set(handles.increment_scan,'String','1')%default value
1773    increment=1;
1774end
1775set(handles.STOP,'Visible','on')
1776set(handles.speed,'Visible','on')
1777set(handles.speed_txt,'Visible','on')
1778set(handles.MovieBackward,'BusyAction','queue')
1779UvData=get(handles.uvmat,'UserData');
1780
1781while get(handles.speed,'Value')~=0 && isequal(get(handles.MovieBackward,'BusyAction'),'queue') % enable STOP command
1782        errormsg=runpm(hObject,eventdata,handles,increment);
1783        if ~isempty(errormsg)
1784            set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1785            return
1786        end
1787        pause(1.02-get(handles.speed,'Value'))% wait for next image
1788end
1789if isfield(UvData,'aviobj') && ~isempty( UvData.aviobj),
1790    UvData.aviobj=close(UvData.aviobj);
1791   set(handles.uvmat,'UserData',UvData);
1792end
1793set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1794
1795%-------------------------------------------------------------------
1796function STOP_Callback(hObject, eventdata, handles)
1797%-------------------------------------------------------------------
1798set(handles.movie_pair,'BusyAction','Cancel')
1799set(handles.movie_pair,'value',0)
1800set(handles.Movie,'BusyAction','Cancel')
1801set(handles.MovieBackward,'BusyAction','Cancel')
1802set(handles.MenuExportMovie,'BusyAction','Cancel')
1803set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1804set(handles.Movie,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1805set(handles.MovieBackward,'BackgroundColor',[1 0 0])%paint the command buttonback to red
1806
1807%------------------------------------------------------------------
1808function errormsg=runpm(hObject,eventdata,handles,increment)
1809%------------------------------------------------------------------
1810%check for mï¿œovie pair status
1811movie_status=get(handles.movie_pair,'Value');
1812if isequal(movie_status,1)
1813    STOP_Callback(hObject, eventdata, handles)%interrupt movie pair if active
1814end
1815%read the data on the current input rootfile(s)
1816
1817[FileName,RootPath,filebase,FileIndices,FileExt,subdir]=read_file_boxes(handles);
1818NomType=get(handles.FileIndex,'UserData');
1819
1820num1=stra2num(get(handles.i1,'String'));
1821num2=stra2num(get(handles.i2,'String'));
1822num_a=stra2num(get(handles.j1,'String'));
1823num_b=stra2num(get(handles.j2,'String'));
1824
1825sub_value= get(handles.SubField,'Value');
1826if sub_value % a second input file has been entered
1827    [FileName_1,RootPath_1,filebase_1,FileIndices_1,FileExt_1,SubDir_1]=read_file_boxes_1(handles);
1828    [pp,ff,str1,str2,str_a,str_b]=name2display(FileIndices_1);
1829    num1_1=stra2num(str1);%current set of indices for the second field (may be set different than the main indices)
1830    num2_1=stra2num(str2);
1831    num_a_1=stra2num(str_a);
1832    num_b_1=stra2num(str_b);
1833    NomType_1=get(handles.FileIndex_1,'UserData');
1834else
1835    filename_1=[];
1836end   
1837
1838comp_input=get(handles.fix_pair,'Value');
1839
1840%case of scanning along the first direction (rootfile numbers)
1841if get(handles.scan_i,'Value')==1% case of scanning along index i   
1842     num1=num1+increment;
1843     num2=num2+increment;
1844     [filename,num1,num_a,num2,num_b]=name_generator(filebase,num1,num_a,FileExt,NomType,comp_input,num2,num_b,subdir);
1845     if sub_value% set the second field name and indices
1846        num1_1=num1_1+increment;
1847        num2_1=num2_1+increment;
1848        filename_1=name_generator(filebase_1,num1_1,num_a_1,FileExt_1,NomType_1,1,num2_1,num_b_1,SubDir_1);
1849     end   
1850else % case of scanning along index j (burst numbers)
1851    num_a=num_a+increment;
1852    num_b=num_b+increment;
1853    [filename,num1,num_a,num2,num_b]=name_generator(filebase,num1,num_a,FileExt,NomType,comp_input,num2,num_b,subdir);
1854    if sub_value
1855        num_a_1=num_a_1+increment;
1856        num_b_1=num_b_1+increment;
1857        filename_1=name_generator(filebase_1,num1_1,num_a_1,FileExt_1,NomType_1,1,num2_1,num_b_1,SubDir_1);
1858    end   
1859end
1860
1861% refresh plots
1862errormsg=refresh_field(handles,filename,filename_1,num1,num2,num_a,num_b);
1863if isempty(errormsg)  %update the index counters
1864    set(handles.i1,'String',num2stra(num1,NomType,1));
1865    if isequal(num2,num1)
1866         set(handles.i2,'String','');
1867    else
1868        set(handles.i2,'String',num2stra(num2,NomType,1));
1869    end
1870    set(handles.j1,'String',num2stra(num_a,NomType,2));
1871    if isequal(num_b,num_a)
1872         set(handles.j2,'String','');
1873    else
1874        set(handles.j2,'String',num2stra(num_b,NomType,2));
1875    end
1876    [indices]=name_generator('',num1,num_a,'',NomType,1,num2,num_b,'');
1877    set(handles.FileIndex,'String',indices);
1878    if ~isempty(filename_1)
1879         indices_1=name_generator('',num1_1,num_a_1,'',NomType_1,1,num2_1,num_b_1,'');
1880         set(handles.FileIndex_1,'String',indices_1);
1881    end
1882    if isequal(movie_status,1)
1883        set(handles.movie_pair,'Value',1)
1884        movie_pair_Callback(hObject, eventdata, handles); %reactivate moviepair if it was activated
1885    end
1886end
1887
1888
1889%-------------------------------------------------------
1890% --- Executes on button press in movie_pair: create an alternating movie with two view
1891%-------------------------------------------------------
1892function movie_pair_Callback(hObject, eventdata, handles)
1893status=get(handles.movie_pair,'value');
1894if isequal(status,0)
1895    set(handles.movie_pair,'BusyAction','Cancel')%stop movie pair if button is 'off'
1896    set(handles.i2,'String','')
1897    set(handles.j2,'String','')
1898    return
1899else
1900    set(handles.movie_pair,'BusyAction','queue')
1901end
1902%initialisation
1903set(handles.movie_pair,'BackgroundColor',[1 1 0])%paint the command button in yellow
1904drawnow
1905list_fields=get(handles.Fields,'String');% list menu fields
1906index_fields=get(handles.Fields,'Value');% selected string index
1907FieldName=list_fields{index_fields}; % selected field
1908UvData=get(handles.uvmat,'UserData');
1909if isequal(FieldName,'image')
1910    test_1=0;
1911    [ff,rr,filebase,xx,Ext,SubDir]=read_file_boxes(handles);
1912    NomType=get(handles.FileIndex,'UserData');
1913else
1914    list_fields=get(handles.Fields_1,'String');% list menu fields
1915    index_fields=get(handles.Fields_1,'Value');% selected string index
1916    FieldName=list_fields{index_fields}; % selected field
1917    if isequal(FieldName,'image')
1918        test_1=1;
1919        [ff,rr,filebase,xx,Ext,SubDir]=read_file_boxes_1(handles);
1920        NomType=get(handles.FileIndex_1,'UserData');
1921    else
1922        msgbox_uvmat('ERROR','an image or movie must be first introduced as input')
1923        set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red
1924        return
1925    end
1926end
1927
1928num_i1=str2double(get(handles.i1,'String'));
1929num_j1=stra2num(get(handles.j1,'String'));
1930num_i2=str2double(get(handles.i2,'String'));
1931num_j2=stra2num(get(handles.j2,'String'));
1932if isnan(num_j2)
1933    if isempty(num_i2)   
1934        msgbox_uvmat('ERROR', 'a second image index i2 or j2 is needed to show the pair as a movie')
1935        set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red
1936        return
1937    else
1938        num_j2=num_j1;%repeat the index i1 by default
1939    end
1940end
1941if isnan(num_i2)
1942    num_i2=num_i1;%repeat the index i1 by default
1943end
1944imaname_1=name_generator(filebase,num_i2,num_j2,Ext,NomType);
1945if ~exist(imaname_1,'file')
1946      msgbox_uvmat('ERROR',['second input open (-)  ' imaname_1 ' not found']);
1947      set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red
1948      return
1949end
1950
1951%read the second image
1952Field.AName='image';
1953if test_1
1954    Field_a=UvData.Field_1;
1955else
1956    Field_a=UvData.Field;
1957end
1958Field_b.AX=Field_a.AX;
1959Field_b.AY=Field_a.AY;
1960% z index
1961nbslice=str2double(get(handles.nb_slice,'String'));
1962if ~isempty(nbslice)
1963    Field_b.ZIndex=mod(num_i2-1,nbslice)+1;
1964end
1965Field_b.CoordUnit='pixel';
1966%determine the input file type
1967if (test_1 && isfield(UvData,'MovieObject_1'))||(~test_1 && isfield(UvData,'MovieObject'))
1968    FileType='movie';
1969elseif isequal(lower(Ext),'.avi')
1970    FileType='avi';
1971elseif isequal(lower(Ext),'.vol')
1972    FileType='vol';
1973else
1974   form=imformats(Ext(2:end));
1975   if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
1976       if isequal(NomType,'*');
1977           FileType='multimage';
1978       else
1979           FileType='image';
1980       end
1981   end
1982end
1983switch FileType
1984        case 'movie'
1985            if test_1
1986                Field_b.A=read(UvData.MovieObject_1,num_i2);
1987            else
1988                Field_b.A=read(UvData.MovieObject,num_i2);
1989            end
1990        case 'avi'
1991            mov=aviread(imaname_1,num_i2);
1992            Field_b.A=frame2im(mov(1));
1993        case 'vol'
1994            Field_b.A=imread(imaname_1);
1995        case 'multimage'
1996            Field_b.A=imread(imaname_1,num_i2);
1997        case 'image'
1998            Field_b.A=imread(imaname_1);
1999end
2000if get(handles.slices,'Value')
2001    Field.ZIndex=str2double(get(handles.z_index,'String'));
2002end
2003
2004%px to phys or other transform on field
2005menu_transform=get(handles.transform_fct,'String');
2006choice_value=get(handles.transform_fct,'Value');
2007transform_name=menu_transform{choice_value};%name of the transform fct  given by the menu 'transform_fct'
2008transform_list=get(handles.transform_fct,'UserData');
2009transform=transform_list{choice_value};
2010if  ~isequal(transform_name,'') && ~isequal(transform_name,'px')
2011    if test_1 && isfield(UvData,'XmlData_1') && isfield(UvData.XmlData_1,'GeometryCalib')%use geometry calib recorded from the ImaDoc xml file as first priority
2012        Field_a=transform(Field_a,UvData.XmlData_1);%the first field has been stored without transform
2013        Field_b=transform(Field_b,UvData.XmlData_1);
2014    elseif ~test_1 && isfield(UvData,'XmlData') && isfield(UvData.XmlData,'GeometryCalib')%use geometry calib
2015        Field_b=transform(Field_b,UvData.XmlData);
2016    end
2017end
2018
2019 % make movie until movie speed is set to 0 or STOP is activated
2020hima=findobj(handles.axes3,'Tag','ima');% %handles.axes3 =main plotting window (A GENERALISER)
2021set(handles.STOP,'Visible','on')
2022set(handles.speed,'Visible','on')
2023set(handles.speed_txt,'Visible','on')
2024while get(handles.speed,'Value')~=0 && isequal(get(handles.movie_pair,'BusyAction'),'queue')%isequal(get(handles.run0,'BusyAction'),'queue'); % enable STOP command
2025    % read and plot the series of images in non erase mode
2026    set(hima,'CData',Field_b.A);
2027    pause(1.02-get(handles.speed,'Value'));% wait for next image
2028    set(hima,'CData',Field_a.A);
2029    pause(1.02-get(handles.speed,'Value'));% wait for next image
2030end
2031set(handles.movie_pair,'BackgroundColor',[1 0 0])%paint the command button in red
2032
2033%------------------------------------------------------------------------
2034% --- Executes on button press in run0.
2035function run0_Callback(hObject, eventdata, handles)
2036%------------------------------------------------------------------------
2037set(handles.run0,'BackgroundColor',[1 1 0])%paint the command button in yellow
2038drawnow
2039filename=read_file_boxes(handles);
2040
2041filename_1=[];%default
2042if get(handles.SubField,'Value')
2043    filename_1=read_file_boxes_1(handles);
2044end
2045num_i1=stra2num(get(handles.i1,'String'));
2046num_i2=stra2num(get(handles.i2,'String'));
2047num_j1=stra2num(get(handles.j1,'String'));
2048num_j2=stra2num(get(handles.j2,'String'));
2049errormsg=refresh_field(handles,filename,filename_1,num_i1,num_i2,num_j1,num_j2);
2050if ~isempty(errormsg)
2051      msgbox_uvmat('ERROR',errormsg);
2052else
2053    set(handles.i1,'BackgroundColor',[1 1 1])
2054    set(handles.i2,'BackgroundColor',[1 1 1])
2055    set(handles.j1,'BackgroundColor',[1 1 1])
2056    set(handles.j2,'BackgroundColor',[1 1 1])
2057    set(handles.FileIndex,'BackgroundColor',[1 1 1])
2058    set(handles.FileIndex_1,'BackgroundColor',[1 1 1])
2059end   
2060set(handles.run0,'BackgroundColor',[1 0 0])
2061
2062
2063%------------------------------------------------------------------------
2064% --- read the input files and refresh all the plots, including projection.
2065% OUTPUT:
2066%  errormsg: error message char string  =[] by default
2067% INPUT:
2068% filename: first input file (=[] in the absence of input file)
2069% filename_1: second input file (=[] in the asbsenc of secodn input file)
2070% num_i1,num_i2,num_j1,num_j2; frame indices
2071% Field: structure describing an optional input field (then replace the input file)
2072function errormsg=refresh_field(handles,filename,filename_1,num_i1,num_i2,num_j1,num_j2,Field)
2073%------------------------------------------------------------------------
2074
2075%% initialisation
2076abstime=[];
2077abstime_1=[];
2078dt=[];
2079if ~exist('Field','var')
2080    Field={};
2081end
2082UvData=get(handles.uvmat,'UserData');
2083if ishandle(handles.UVMAT_title) %remove title panel on uvmat
2084    delete(handles.UVMAT_title)
2085end
2086
2087%% determine the main input file information for action
2088FileType=[];%default
2089if ~exist(filename,'file')
2090    errormsg=['input file ' filename ' does not exist'];
2091    return
2092end
2093%Ext=get(handles.FileExt,'String');
2094NomType=get(handles.FileIndex,'UserData');
2095%update the z position index
2096nbslice_str=get(handles.nb_slice,'String');
2097if isequal(nbslice_str,'volume')%NOT USED
2098    z_index=num_j1;
2099    set(handles.z_index,'String',num2str(z_index))
2100else
2101    nbslice=str2num(nbslice_str);
2102    z_index=mod(num_i1-1,nbslice)+1;
2103    set(handles.z_index,'String',num2str(z_index))
2104end
2105% refresh menu for save_mask if relevant
2106masknumber=get(handles.masklevel,'String');
2107if length(masknumber)>=z_index
2108    set(handles.masklevel,'Value',z_index)
2109end
2110
2111%% read the first input field if a filename has been introduced
2112if ~isempty(filename)
2113    ObjectName=filename;
2114    FieldName=[];%default
2115    VelType=[];%default
2116    Ext=get(handles.FileExt,'String');
2117    if strcmp(Ext,'.nc')||strcmp(Ext,'.cdf')
2118        FileType='netcdf';
2119        list_fields=get(handles.Fields,'String');% list menu fields
2120        index_fields=get(handles.Fields,'Value');% selected string index
2121        FieldName= list_fields{index_fields}; % selected field
2122        if ~strcmp(FieldName,'get_field...')
2123           VelType=setfield(handles);% read the velocity type.
2124        end
2125        if strcmp(FieldName,'velocity')
2126            list_code=get(handles.color_code,'String');% list menu fields
2127            index_code=get(handles.color_code,'Value');% selected string index
2128            if  ~strcmp(list_code{index_code},'black') &&  ~strcmp(list_code{index_code},'white')
2129                list_code=get(handles.col_vec,'String');% list menu fields
2130                index_code=get(handles.col_vec,'Value');% selected string index
2131                ParamIn.ColorVar= list_code{index_code}; % selected field
2132            end
2133        end
2134    elseif isfield(UvData,'MovieObject')
2135        ObjectName=UvData.MovieObject;
2136        FileType='movie';
2137    elseif isequal(lower(Ext),'.avi')
2138        FileType='avi';
2139    elseif isequal(lower(Ext),'.vol')
2140        FileType='vol';
2141        if isfield(UvData.XmlData,'Npy') && isfield(UvData.XmlData,'Npx')
2142            ParamIn.Npy=UvData.XmlData.Npy;
2143            ParamIn.Npx=UvData.XmlData.Npx;
2144        else
2145            errormsg='Npx and Npy need to be defined in the xml file for volume images .vol';
2146            return
2147        end
2148    else
2149       form=imformats(Ext(2:end));
2150       if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
2151           if isequal(NomType,'*');
2152               FileType='multimage';
2153           else
2154               FileType='image';
2155           end
2156       end
2157    end
2158    ParamIn.FieldName=FieldName;
2159    ParamIn.VelType=VelType;
2160    ParamIn.GUIName='get_field';
2161    [Field{1},ParamOut,errormsg] = read_field(ObjectName,FileType,ParamIn,num_i1);
2162    if ~isempty(errormsg)
2163        errormsg=['error in reading ' filename ': ' errormsg];
2164        return
2165    end
2166    if isfield(ParamOut,'Npx')&& isfield(ParamOut,'Npy')
2167        set(handles.npx,'String',num2str(ParamOut.Npx));% display image size on the interface
2168        set(handles.npy,'String',num2str(ParamOut.Npy));
2169    end
2170end
2171
2172%% choose a second field if Subfield option is 'on', and if the field has changed
2173VelType_1=[];%default
2174FieldName_1=[];
2175ParamOut_1=[];
2176if ~isempty(filename_1)
2177    if ~exist(filename_1,'file')
2178        errormsg=['second file ' filename_1 ' does not exist'];
2179        return
2180    else
2181        Name=filename_1;
2182        FieldName_1=[];%default
2183        VelType_1=[];%default
2184        Ext_1=get(handles.FileExt_1,'String');
2185        NomType_1=get(handles.FileIndex_1,'UserData');
2186        if isequal(Ext_1,'.nc')||isequal(Ext_1,'.cdf')
2187            FileType_1='netcdf';
2188        elseif isfield(UvData,'MovieObject_1')
2189            Name=UvData.MovieObject_1;
2190            FileType_1='movie';
2191        elseif isequal(lower(Ext_1),'.avi')
2192            FileType_1='avi';
2193        elseif isequal(lower(Ext_1),'.vol')
2194            FileType_1='vol';
2195            if isfield(UvData.XmlData_1,'Npy') && isfield(UvData.XmlData_1,'Npx')
2196                ParamIn.Npy=UvData.XmlData_1.Npy;
2197                ParamIn.Npx=UvData.XmlData_1.Npx;
2198            else
2199                errormsg='Npx and Npy need to be defined in the xml file for volume images .vol';
2200                return
2201            end
2202        else
2203           form=imformats(Ext_1(2:end));
2204           if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
2205               if isequal(NomType_1,'*');
2206                   FileType_1='multimage';
2207               else
2208                   FileType_1='image';
2209               end
2210           end
2211        end
2212        if strcmp(FileType_1,'netcdf')
2213            list_fields=get(handles.Fields_1,'String');% list menu fields
2214            index_fields=get(handles.Fields_1,'Value');% selected string index
2215            FieldName_1= list_fields{index_fields}; % selected field
2216            if ~isequal(FieldName_1,'get_field...')% read the field names on the interface get_field...
2217                VelType_1=setfield_1(handles);
2218            end
2219            if strcmp(VelType_1,'*')% free veltype choice
2220                VelType_1=[];
2221            elseif strcmp(VelType_1,'"')% veltype the same as for the first field
2222                if isempty(VelType)
2223                    VelType_1=[];
2224                else
2225                    VelType_1=VelType;
2226                end
2227            end
2228            if strcmp(FieldName_1,'velocity')
2229                list_code=get(handles.color_code,'String');% list menu fields
2230                index_code=get(handles.color_code,'Value');% selected string index
2231                if  ~strcmp(list_code{index_code},'black') &&  ~strcmp(list_code{index_code},'white')
2232                    list_code=get(handles.col_vec,'String');% list menu fields
2233                    index_code=get(handles.col_vec,'Value');% selected string index
2234                    ParamIn.ColorVar= list_code{index_code}; % selected field
2235                end
2236            end
2237        end
2238        test_keepdata_1=0;% test for keeping the previous stored data if the input files are unchanged
2239        if ~isequal(NomType_1,'*')%in case of a series of files (not avi movie)
2240            if isfield(UvData,'filename_1')&& isfield(UvData,'VelType_1') && isfield(UvData,'FieldName_1')
2241                test_keepdata_1= strcmp(filename_1,UvData.filename_1) && strcmp(VelType_1,UvData.VelType_1) && strcmp(FieldName_1,UvData.FieldName_1);
2242            end
2243        end
2244        if test_keepdata_1
2245            Field{2}=UvData.Field_1;
2246        else
2247            ParamIn.FieldName=FieldName_1;
2248            ParamIn.VelType=VelType_1;
2249            ParamIn.GUIName='get_field_1';
2250            [Field{2},ParamOut_1,errormsg] = read_field(Name,FileType_1,ParamIn,num_i1);
2251            if ~isempty(errormsg)
2252                errormsg=['error in reading ' filename_1 ': ' errormsg];
2253                return
2254            end
2255            UvData.Field_1=Field{2}; %store the second field for possible use at next RUN
2256        end
2257    end
2258end
2259
2260%% update uvmat interface
2261if isfield(ParamOut,'Npx')
2262    set(handles.npx,'String',num2str(ParamOut.Npx));% display image size on the interface
2263    set(handles.npy,'String',num2str(ParamOut.Npy));
2264elseif isfield(ParamOut_1,'Npx')
2265    set(handles.npx,'String',num2str(ParamOut_1.Npx));% display image size on the interface
2266    set(handles.npy,'String',num2str(ParamOut_1.Npy));
2267end
2268
2269%% update the display buttons for the first velocity type (first menuline)
2270veltype_handles=[handles.civ1 handles.interp1 handles.filter1 handles.civ2 handles.interp2 handles.filter2];
2271if ~isequal(FileType,'netcdf')|| isequal(FieldName,'get_field...')
2272%     reset_vel_type(veltype_handles)
2273    set(veltype_handles,'Visible','off')
2274else% if isempty(ParamOut.VelType) && ~isequal(FieldName,'get_field...')
2275    set_veltype_display(veltype_handles,ParamOut.CivStage)%update the display of available velocity types for the first field
2276    if isempty(ParamOut.VelType)
2277        reset_vel_type(veltype_handles)
2278    else
2279        handle1=eval(['handles.' ParamOut.VelType]);
2280        reset_vel_type(veltype_handles,handle1)
2281    end
2282end
2283field_index=strcmp(ParamOut.FieldName,ParamOut.FieldList);
2284set(handles.Fields,'String',ParamOut.FieldList); %update the field menu
2285set(handles.Fields,'Value',find(field_index,1))
2286
2287%% update the display buttons for the second velocity type (second menuline)
2288if ~isempty(filename_1)
2289    veltype_handles_1=[handles.civ1_1 handles.interp1_1 handles.filter1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1];
2290    if ~isequal(FileType_1,'netcdf')|| isequal(FieldName_1,'get_field...')
2291        set(veltype_handles_1,'Visible','off')
2292        %reset_vel_type(veltype_handles_1)
2293    else %if isempty(VelType_1) && ~isequal(FieldName_1,'get_field...')
2294        set_veltype_display(veltype_handles_1,ParamOut_1.CivStage)%update the display of available velocity types for the first field
2295        if isempty(ParamOut_1.VelType)
2296            reset_vel_type(veltype_handles_1)
2297        else
2298            handle1=eval(['handles.' ParamOut_1.VelType '_1']);
2299            reset_vel_type(veltype_handles_1,handle1)
2300        end
2301    end
2302    field_index=strcmp(ParamOut_1.FieldName,ParamOut_1.FieldList);
2303    set(handles.Fields_1,'String',ParamOut_1.FieldList); %update the field menu
2304    set(handles.Fields_1,'Value',find(field_index,1))
2305end
2306
2307%% introduce w as background image by default for a new series (only for nbdim=2)
2308if ~isfield(UvData,'NewSeries')
2309    UvData.NewSeries=1;
2310end
2311%put W as background image by default if NbDim=2:
2312if  UvData.NewSeries && isequal(get(handles.SubField,'Value'),0) && isfield(Field{1},'W') && ~isempty(Field{1}.W) && ~isequal(Field{1}.NbDim,3);
2313        set(handles.SubField,'Value',1);
2314        %menu=update_menu(handles.Fields_1,'w');%update the menu for the background scalar nd set the choice to 'w'
2315        set(handles.RootPath_1,'String','"')
2316        set(handles.RootFile_1,'String','"')
2317        set(handles.SubDir_1,'String','"');
2318        [indices]=name_generator('',num_i1,num_j1,'',NomType,1,num_i2,num_j2,'');
2319        set(handles.FileIndex_1,'String',indices)
2320        set(handles.FileExt_1,'String','"');
2321        set(handles.Fields_1,'Visible','on');
2322        set(handles.Fields_1,'Visible','on');
2323        set(handles.RootPath_1,'Visible','on')
2324        set(handles.RootFile_1,'Visible','on')
2325        set(handles.SubDir_1,'Visible','on');
2326        set(handles.FileIndex_1,'Visible','on');
2327        set(handles.FileExt_1,'Visible','on');
2328        set(handles.Fields_1,'Visible','on');
2329        Field{1}.AName='w';
2330end           
2331
2332%% store the current open names, fields and vel types in uvmat interface
2333UvData.filename_1=filename_1;
2334UvData.VelType_1=[];%default
2335UvData.FieldName_1=[];
2336if isfield(ParamOut_1,VelType)
2337    UvData.VelType_1=ParamOut_1.VelType;
2338end
2339if isfield(ParamOut_1,FieldName)
2340    UvData.FieldName_1=ParamOut_1.FieldName;
2341end
2342
2343%% apply coordinate transform or other user fct
2344XmlData=[];%default
2345if isfield(UvData,'XmlData')%use geometry calib recorded from the ImaDoc xml file as first priority
2346    XmlData=UvData.XmlData;
2347end
2348XmlData_1=[];%default
2349if isfield(UvData,'XmlData_1')
2350   XmlData_1=UvData.XmlData_1;
2351end
2352% menu_transform=get(handles.transform_fct,'String');
2353choice_value=get(handles.transform_fct,'Value');
2354transform_list=get(handles.transform_fct,'UserData');
2355transform=transform_list{choice_value};%selected function handles
2356% z index
2357if ~isempty(filename)
2358    Field{1}.ZIndex=z_index;
2359end
2360%px to phys or other transform on field
2361if ~isempty(transform)
2362    if length(Field)>=2
2363        Field{2}.ZIndex=z_index;
2364        [Field{1},Field{2}]=transform(Field{1},XmlData,Field{2},XmlData_1);
2365        if isempty(Field{2})
2366            Field(2)=[];
2367        end
2368    else
2369        Field{1}=transform(Field{1},XmlData);
2370    end
2371end
2372
2373%% calculate scalar
2374if isequal(FileType,'netcdf') && ~isequal(ParamOut.CivStage,0)%&&~isempty(FieldName)%
2375    Field{1}=calc_field([{ParamOut.FieldName} {ParamOut.ColorVar}],Field{1});
2376end
2377if length(Field)==2 && ~test_keepdata_1 && isequal(FileType_1,'netcdf') && ~isequal(ParamOut_1.FieldName,'get_field...')%&&~isempty(FieldName_1)
2378    Field{2}=calc_field([{ParamOut_1.FieldName} {ParamOut_1.ColorVar}],Field{2});
2379end
2380
2381%% combine the two input fields (e.g. substract velocity fields)
2382if numel(Field)==2
2383   UvData.Field=sub_field(Field{1},Field{2}); 
2384else
2385   UvData.Field=Field{1};
2386end
2387
2388%% get bounds and mesh (needed for mouse action and to open set_object)
2389test_x=0;
2390test_z=0;% test for unstructured z coordinate
2391[UvData.Field,errormsg]=check_field_structure(UvData.Field);
2392if ~isempty(errormsg)
2393    errormsg=['error in uvmat/refresh_field/check_field_structure: ' errormsg];
2394    return
2395end
2396[CellVarIndex,NbDim,VarType,errormsg]=find_field_indices(UvData.Field);
2397if ~isempty(errormsg)
2398    errormsg=['error in uvmat/refresh_field/find_field_indices: ' errormsg];
2399    return
2400end
2401[NbDim,imax]=max(NbDim);
2402if isfield(UvData.Field,'NbDim')
2403    NbDim=UvData.Field.NbDim;% deal with plane fields containing z coordinates
2404end
2405if ~isempty(VarType{imax}.coord_x)  && ~isempty(VarType{imax}.coord_y)    %unstructured coordinates
2406    XName=UvData.Field.ListVarName{VarType{imax}.coord_x};
2407    YName=UvData.Field.ListVarName{VarType{imax}.coord_y};
2408    eval(['nbvec=length(UvData.Field.' XName ');'])%nbre of measurement points (e.g. vectors)
2409    test_x=1;%test for unstructured coordinates
2410    if ~isempty(VarType{imax}.coord_z)
2411        ZName=UvData.Field.ListVarName{VarType{imax}.coord_z};
2412    else
2413       NbDim=2;
2414    end
2415elseif VarType{imax}.coord(NbDim)>0 %structured coordinate 
2416    XName=UvData.Field.ListVarName{VarType{imax}.coord(NbDim)};
2417    if NbDim>1
2418        YName=UvData.Field.ListVarName{VarType{imax}.coord(NbDim-1)}; %structured coordinates
2419    end
2420end
2421if NbDim==3
2422    if ~test_x
2423        ZName=UvData.Field.ListVarName{VarType{imax}.coord(1)};%structured coordinates in 3D
2424    end
2425    eval(['ZMax=max(UvData.Field.' ZName ');'])
2426    eval(['ZMin=min(UvData.Field.' ZName ');'])
2427    UvData.Field.ZMax=ZMax;
2428    UvData.Field.ZMin=ZMin;
2429    test_z=1;
2430    if isequal(ZMin,ZMax)%no z dependency
2431        NbDim=2;
2432        test_z=0;
2433    end
2434end
2435if exist('XName','var')
2436    eval(['XMax=max(UvData.Field.' XName ');'])
2437    eval(['XMin=min(UvData.Field.' XName ');'])
2438    UvData.Field.NbDim=NbDim;
2439    UvData.Field.XMax=XMax;
2440    UvData.Field.XMin=XMin;
2441    if NbDim >1
2442        eval(['YMax=max(UvData.Field.' YName ');'])
2443        eval(['YMin=min(UvData.Field.' YName ');'])
2444        UvData.Field.YMax=YMax;
2445        UvData.Field.YMin=YMin;
2446    end
2447    eval(['nbvec=length(UvData.Field.' XName ');'])
2448    if test_x %unstructured coordinates
2449        if test_z
2450            UvData.Field.Mesh=((XMax-XMin)*(YMax-YMin)*(ZMax-ZMin))/nbvec;% volume per vector
2451            UvData.Field.Mesh=(UvData.Field.Mesh)^(1/3);
2452        else
2453            UvData.Field.Mesh=sqrt((XMax-XMin)*(YMax-YMin)/nbvec);%2D
2454        end
2455    else
2456        VarIndex=CellVarIndex{imax}; % list of variable indices
2457        DimIndex=UvData.Field.VarDimIndex{VarIndex(1)}; %list of dim indices for the variable
2458        nbpoints_x=UvData.Field.DimValue(DimIndex(NbDim));
2459        DX=(XMax-XMin)/(nbpoints_x-1);
2460        if NbDim >1
2461            nbpoints_y=UvData.Field.DimValue(DimIndex(NbDim-1));
2462            DY=(YMax-YMin)/(nbpoints_y-1);
2463        end
2464        if NbDim==3
2465            nbpoints_z=UvData.Field.DimValue(DimIndex(1));
2466            DZ=(ZMax-ZMin)/(nbpoints_z-1);
2467            UvData.Field.Mesh=sqrt(DX*DY*DZ);
2468            UvData.Field.ZMax=ZMax;
2469            UvData.Field.ZMin=ZMin;
2470        else
2471            UvData.Field.Mesh=DX;%sqrt(DX*DY);
2472        end
2473    end
2474end
2475
2476%% 3D case (menuvolume)
2477if NbDim==3% && UvData.NewSeries
2478    test_set_object=1;
2479    hset_object=findobj(allchild(0),'tag','set_object');% look for the set_object GUI
2480    ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider
2481    ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider
2482    if ~isempty(hset_object) %if set_object is detected
2483%         hhset_object=guidata(hset_object);
2484% %         ZBounds_old(1)=get(hhset_object.z_slider,'Min');
2485% %         ZBounds_old(2)=get(hhset_object.z_slider,'Max');
2486% %         if isequal(ZBounds_old,ZBounds)
2487%             test_set_object=0;% do not refresh the GUI set_object
2488%         else
2489            delete(hset_object);% delete the GUI set_object if it does not fit
2490%         end
2491    end
2492    if test_set_object% reinitiate the GUI set_object
2493        delete_object(1);% delete the current projection object in the list UvData.Object, delete its graphic representations and update the list displayed in handles.list_object_1 and 2
2494        UvData.Object{1}.Style='plane';%main plotting plane
2495        UvData.Object{1}.ProjMode='projection';%main plotting plane
2496        UvData.Object{1}.DisplayHandle_uvmat=[]; %plane not visible in uvmat
2497        UvData.Object{1}.NbDim=NbDim;%test for 3D objects
2498        UvData.Object{1}.RangeZ=UvData.Field.Mesh;%main plotting plane
2499        UvData.Object{1}.Coord(1,3)=(UvData.Field.ZMin+UvData.Field.ZMax)/2;%section at a middle plane chosen
2500        UvData.Object{1}.Angle=[0 0 0];
2501%         UvData.Object{1}.Theta=0;
2502%         UvData.Object{1}.Psi=0;
2503        UvData.Object{1}.HandlesDisplay=plot(0,0,'Tag','proj_object');% A REVOIR
2504%         PlotHandles=get_plot_handles(handles);
2505        UvData.Object{1}.Name='1-PLANE';
2506        UvData.Object{1}.enable_plot=1;
2507        set_object(UvData.Object{1},handles,ZBounds);
2508        set(handles.list_object_1,'Value',1);
2509        set(handles.list_object_1,'String',{'1-PLANE'});
2510        set(handles.edit_object,'Value',1)% put the plane in edit mode to enable the z cursor
2511        edit_object_Callback([],[], handles)
2512    end
2513    %multilevel case (single menuplane in a 3D space)
2514elseif isfield(UvData,'Z')
2515    if isfield(UvData,'CoordType')&& isequal(UvData.CoordType,'phys') && isfield(UvData,'XmlData')
2516        XmlData=UvData.XmlData;
2517        if isfield(XmlData,'PlanePos')
2518            UvData.Object{1}.Coord=XmlData.PlanePos(UvData.ZIndex,:);
2519        end
2520        if isfield(XmlData,'PlaneAngle')
2521            siz=size(XmlData.PlaneAngle);
2522            indangle=min(siz(1),UvData.ZIndex);%take first angle if a single angle is defined (translating scanning)
2523            UvData.Object{1}.PlaneAngle=XmlData.PlaneAngle(indangle,:);
2524        end
2525    elseif isfield(UvData,'ZIndex')
2526        UvData.Object{1}.ZObject=UvData.ZIndex;
2527    end
2528else
2529    % create a default projection menuplane
2530    %UvData.Object{1}.Style='none';%main plotting plane
2531    UvData.Object{1}.ProjMode='projection';%main plotting plane
2532    UvData.Object{1}.DisplayHandle_uvmat=[]; %plane not visible in uvmat
2533    set(handles.list_object_1,'Value',1);
2534    set(handles.list_object_1,'String',{''});
2535end
2536% if ~isfield(UvData.Object{1},'plotaxes')
2537%     UvData.Object{1}.plotaxes=handles.axes3;%default plotting axis
2538% end
2539testnewseries=UvData.NewSeries;
2540UvData.NewSeries=0;% put to 0 the test for a new field series (set by RootPath_callback)
2541set(handles.uvmat,'UserData',UvData)
2542
2543%% reset the min and max of scalar if only the mask is displayed(TODO: check the need)
2544if isfield(UvData,'Mask')&& ~isfield(UvData,'A')
2545    set(handles.MinA,'String','0')
2546    set(handles.MaxA,'String','255')
2547end
2548
2549%% Plot the projections on the selected  projection objects
2550
2551% main projection object (uvmat display)
2552IndexObj(1)=get(handles.list_object_1,'Value');%selected projection object for main view
2553if IndexObj(1)> numel(UvData.Object)
2554    IndexObj(1)=1;%select the first object if the selected one does not exist
2555    set(handles.list_object_1,'Value',1)
2556end
2557plot_handles{1}=handles;
2558if isfield(UvData,'plotaxes')%case of movies
2559    haxes(1)=UvData.plotaxes;
2560else
2561    haxes(1)=handles.axes3;
2562end
2563PlotParam{1}=read_plot_param(handles);%read plotting parameters on the uvmat interfac
2564keeplim(1)=get(handles.FixLimits,'Value');% test for fixed graph limits
2565PosColorbar{1}=UvData.OpenParam.PosColorbar;%prescribe the colorbar position on the uvmat interface
2566
2567% second projection object (view_field display)
2568IndexObj_2=get(handles.list_object_2,'Value');%selected projection object for the second view
2569if isequal(get(handles.list_object_2,'Visible'),'on') && IndexObj_2 <= numel(UvData.Object)&& ~isempty(UvData.Object{IndexObj_2})
2570    IndexObj(2)=IndexObj_2;
2571    view_field_handle=findobj(allchild(0),'tag','view_field');%handles of the view_field GUI
2572    if ~isempty(view_field_handle)
2573        plot_handles{2}=guidata(view_field_handle);
2574        haxes(2)=plot_handles{2}.axes3;
2575        PlotParam{2}=read_plot_param(plot_handles{2});%read plotting parameters on the uvmat interface
2576        keeplim(2)=get(plot_handles{2}.FixLimits,'Value');
2577        PosColorbar{2}='*'; %TODO: deal with colorbar position on view_field
2578    end
2579end
2580
2581%loop on the projection objects: one or two
2582for imap=1:numel(IndexObj)
2583    iobj=IndexObj(imap);
2584    [ObjectData,errormsg]=proj_field(UvData.Field,UvData.Object{iobj});% project field on the object
2585    if testnewseries && isfield(ObjectData,'CoordUnit')
2586        PlotParam{imap}=rmfield(PlotParam{imap},'FixEqual'); %set FixEqual to depend on the field (=1 if Data.CoordUnit=1 in plot_field)
2587    end
2588    if ~isempty(errormsg)
2589        return
2590    end
2591    %use of mask (TODO: check)
2592    if isfield(ObjectData,'NbDim') && isequal(ObjectData.NbDim,2) && isfield(ObjectData,'Mask') && isfield(ObjectData,'A')
2593        flag_mask=double(ObjectData.Mask>200);%=0 for masked regions
2594        AX=ObjectData.AX;%x coordiantes for the scalar field
2595        AY=ObjectData.AY;%y coordinates for the scalar field
2596        MaskX=ObjectData.MaskX;%x coordiantes for the mask
2597        MaskY=ObjectData.MaskY;%y coordiantes for the mask
2598        if ~isequal(MaskX,AX)||~isequal(MaskY,AY)
2599            nxy=size(flag_mask);
2600            sizpx=(ObjectData.MaskX(end)-ObjectData.MaskX(1))/(nxy(2)-1);%size of a mask pixel
2601            sizpy=(ObjectData.MaskY(1)-ObjectData.MaskY(end))/(nxy(1)-1);
2602            x_mask=ObjectData.MaskX(1):sizpx:ObjectData.MaskX(end); % pixel x coordinates for image display
2603            y_mask=ObjectData.MaskY(1):-sizpy:ObjectData.MaskY(end);% pixel x coordinates for image display
2604            %project on the positions of the scalar
2605            npxy=size(ObjectData.A);
2606            dxy(1)=(ObjectData.AY(end)-ObjectData.AY(1))/(npxy(1)-1);%grid mesh in y
2607            dxy(2)=(ObjectData.AX(end)-ObjectData.AX(1))/(npxy(2)-1);%grid mesh in x
2608            xi=ObjectData.AX(1):dxy(2):ObjectData.AX(end);
2609            yi=ObjectData.AY(1):dxy(1):ObjectData.AY(end);
2610            [XI,YI]=meshgrid(xi,yi);% creates the matrix of regular coordinates
2611            flag_mask = interp2(x_mask,y_mask,flag_mask,XI,YI);
2612        end
2613        AClass=class(ObjectData.A);
2614        ObjectData.A=flag_mask.*double(ObjectData.A);
2615        ObjectData.A=feval(AClass,ObjectData.A);
2616        ind_off=[];
2617        if isfield(ObjectData,'ListVarName')
2618            for ilist=1:length(ObjectData.ListVarName)
2619                if isequal(ObjectData.ListVarName{ilist},'Mask')||isequal(ObjectData.ListVarName{ilist},'MaskX')||isequal(ObjectData.ListVarName{ilist},'MaskY')
2620                    ind_off=[ind_off ilist];
2621                end
2622            end
2623            ObjectData.ListVarName(ind_off)=[];
2624            ObjectData.VarDimIndex(ind_off)=[];
2625            ind_off=[];
2626            for ilist=1:length(ObjectData.ListDimName)
2627                if isequal(ObjectData.ListDimName{ilist},'MaskX') || isequal(ObjectData.ListDimName{ilist},'MaskY')
2628                    ind_off=[ind_off ilist];
2629                end
2630            end
2631            ObjectData.ListDimName(ind_off)=[];
2632            ObjectData.DimValue(ind_off)=[];
2633        end
2634    end   
2635    if ~isempty(ObjectData)
2636        PlotType='none'; %default
2637        if imap==2 && isempty(view_field_handle)
2638            view_field(ObjectData)
2639        else
2640            [PlotType,PlotParamOut]=plot_field(ObjectData,haxes(imap),PlotParam{imap},PosColorbar{imap});
2641            write_plot_param(plot_handles{imap},PlotParamOut) %update the auto plot parameters
2642            if isfield(Field,'Mesh')&&~isempty(Field.Mesh)
2643                ObjectData.Mesh=Field.Mesh; % gives an estimated mesh size (useful for mouse action on the plot)
2644            end
2645        end
2646        if isequal(PlotType,'none')
2647            hget_field=findobj(allchild(0),'name','get_field');
2648            if isempty(hget_field)
2649                get_field(filename)% the projected field cannot be automatically plotted: use get_field to specify the variablesdelete(hget_field)
2650            end
2651            errormsg='The field defined by get_field cannot be plotted';
2652            return
2653        end
2654    end
2655end
2656
2657%% update the mask
2658if isequal(get(handles.mask_test,'Value'),1)%if the mask option is on
2659   update_mask(handles,num_i1,num_i2);
2660end
2661
2662%% prepare the menus of histograms and plot them (histogram of the whole volume in 3D case)
2663menu_histo=(UvData.Field.ListVarName)';%list of field variables to be displayed for the menu of histogram display
2664ind_bad=[];
2665nb_histo=1;
2666
2667% suppress coordinates from the histogram menu
2668for ivar=1:numel(menu_histo)%l loop on field variables:
2669    if isfield(UvData.Field,'VarAttribute') && numel(UvData.Field.VarAttribute)>=ivar && isfield(UvData.Field.VarAttribute{ivar},'Role')
2670        Role=UvData.Field.VarAttribute{ivar}.Role;
2671        switch Role
2672            case {'coord_x','coord_y','coord_z','dimvar'}
2673                ind_bad=[ind_bad ivar];
2674            case {'vector_y'}
2675                nb_histo=nb_histo+1;
2676        end
2677    end
2678    DimCell=UvData.Field.VarDimName{ivar};
2679    DimName='';
2680    if ischar(DimCell)
2681        DimName=DimCell;
2682    elseif iscell(DimCell)&& numel(DimCell)==1
2683        DimName=DimCell{1};
2684    end
2685    if strcmp(DimName,menu_histo{ivar})
2686        ind_bad=[ind_bad ivar];
2687    end
2688end
2689menu_histo(ind_bad)=[];
2690
2691%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2692% display menus and plot histograms
2693test_v=0;
2694if ~isempty(menu_histo)
2695    set(handles.histo1_menu,'Value',1)
2696    set(handles.histo1_menu,'String',menu_histo)
2697    histo1_menu_Callback(handles.histo1_menu, [], handles)% plot first histogram
2698    % case of more than one variables (eg vector components)
2699    if nb_histo > 1
2700        test_v=1;
2701        set(handles.histo2_menu,'Visible','on')
2702        set(handles.histo_v,'Visible','on')
2703        set(handles.histo2_menu,'String',menu_histo)
2704        set(handles.histo2_menu,'Value',2)
2705        histo2_menu_Callback(handles.histo2_menu,[], handles)% plot second histogram
2706    end
2707end
2708if ~test_v
2709    set(handles.histo2_menu,'Visible','off')
2710    set(handles.histo_v,'Visible','off')
2711    cla(handles.histo_v)
2712    set(handles.histo2_menu,'Value',1)
2713end
2714%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2715
2716%% display time
2717testimedoc=0;
2718TimeUnit='';
2719if isfield(UvData.Field,'Time')
2720    abstime=UvData.Field.Time;%time read from the netcdf input file
2721end
2722if isfield(UvData,'Field_1') && isfield(UvData.Field_1,'Time')
2723    abstime_1=UvData.Field_1.Time;%time read from the netcdf input file
2724end
2725if isfield(UvData.Field,'dt')
2726    dt=UvData.Field.dt;%dt read from the netcdf input file
2727    if isfield(UvData.Field,'TimeUnit')
2728       TimeUnit=UvData.Field.TimeUnit;
2729    end
2730elseif isfield(UvData,'Field_1') && isfield(UvData.Field_1,'dt')%dt obtained from the second field if not defined in the first
2731    dt=UvData.Field_1.dt;%dt read from the netcdf input file
2732    if isfield(UvData.Field_1,'TimeUnit')
2733       TimeUnit=UvData.Field_1.TimeUnit;
2734    end
2735end
2736% time from xml file overset previous result
2737if isfield(UvData,'XmlData') && isfield(UvData.XmlData,'Time')
2738    if isempty(num_i2)||isnan(num_i2)
2739        num_i2=num_i1;
2740    end
2741    if isempty(num_j1)||isnan(num_j1)
2742        num_j1=1;
2743    end
2744    if isempty(num_j2)||isnan(num_j2)
2745        num_j2=num_j1;
2746    end
2747    siz=size(UvData.XmlData.Time);
2748    if siz(1)>=max(num_i1,num_i2) && siz(2)>=max(num_j1,num_j2)
2749        abstime=(UvData.XmlData.Time(num_i1,num_j1)+UvData.XmlData.Time(num_i2,num_j2))/2;%overset the time read from files
2750        dt=(UvData.XmlData.Time(num_i2,num_j2)-UvData.XmlData.Time(num_i1,num_j1));
2751        testimedoc=1;
2752        if isfield(UvData.XmlData,'TimeUnit')
2753            TimeUnit=UvData.XmlData.TimeUnit;
2754        end
2755    end
2756end
2757if isfield(UvData,'XmlData_1') && isfield(UvData.XmlData_1,'Time')
2758    [P,F,str1,str2,str_a,str_b,E]=name2display(['xx' get(handles.FileIndex_1,'String') get(handles.FileExt_1,'String')]);
2759    num_i2=str2double(str2);
2760    if isnan(num_i2)
2761        num_i2=num_i1;
2762    end
2763    num_j1=str2double(str_a);
2764    if isnan(num_j1)
2765        num_j1=1;
2766    end
2767    num_j2=str2double(str_b);
2768    if isnan(num_j2)
2769        num_j2=num_j1;
2770    end
2771    num_i1=str2double(str1);
2772    siz=size(UvData.XmlData_1.Time);
2773    if siz(1)>=max(num_i1,num_i2) && siz(2)>=max(num_j1,num_j2)
2774        abstime_1=(UvData.XmlData_1.Time(num_i1,num_j1)+UvData.XmlData_1.Time(num_i2,num_j2))/2;%overset the time read from files
2775    end
2776end
2777set(handles.abs_time,'String',num2str(abstime,4))
2778set(handles.abs_time_1,'String',num2str(abstime_1,4))
2779if testimedoc && isfield(UvData,'dt')
2780    dt=UvData.dt;
2781end
2782if isempty(dt)||isequal(dt,0)
2783    set(handles.Dt_txt,'String','')
2784else
2785    if  isempty(TimeUnit)
2786        set(handles.Dt_txt,'String',['Dt=' num2str(1000*dt,3) '  10^(-3)'] )
2787    else
2788        set(handles.Dt_txt,'String',['Dt=' num2str(1000*dt,3) '  m' TimeUnit] )
2789    end
2790end
2791
2792
2793%-------------------------------------------------------------------
2794% --- translate coordinate to matrix index
2795%-------------------------------------------------------------------
2796function [indx,indy]=pos2ind(x0,rangx0,nxy)
2797indx=1+round((nxy(2)-1)*(x0-rangx0(1))/(rangx0(2)-rangx0(1)));% index x of pixel 
2798indy=1+round((nxy(1)-1)*(y12-rangy0(1))/(rangy0(2)-rangy0(1)));% index y of pixel
2799
2800%-------------------------------------------------------------------
2801% --- Executes on button press in 'FixLimits'.
2802%-------------------------------------------------------------------
2803function FixLimits_Callback(hObject, eventdata, handles)
2804test=get(handles.FixLimits,'Value');
2805if test
2806    set(handles.FixLimits,'BackgroundColor',[1 1 0])
2807else
2808    set(handles.FixLimits,'BackgroundColor',[0.7 0.7 0.7])
2809    update_plot(handles);
2810end
2811
2812%-------------------------------------------------------------------
2813% --- Executes on button press in FixEqual.
2814function FixEqual_Callback(hObject, eventdata, handles)
2815test=get(handles.FixEqual,'Value');
2816if test
2817    set(handles.FixEqual,'BackgroundColor',[1 1 0])
2818    cla(handles.axes3)
2819    update_plot(handles);
2820else
2821    set(handles.FixEqual,'BackgroundColor',[0.7 0.7 0.7])
2822    update_plot(handles);
2823%     axis(handles.axes3,'image')
2824end
2825
2826
2827%-------------------------------------------------------------------
2828
2829%-------------------------------------------------------------------
2830% --- Executes on button press in 'zoom'.
2831%-------------------------------------------------------------------
2832function zoom_Callback(hObject, eventdata, handles)
2833
2834if (get(handles.zoom,'Value') == 1);
2835    set(handles.zoom,'BackgroundColor',[1 1 0])
2836    set(handles.FixLimits,'Value',1)% propose by default fixed limits for the plotting axes
2837    set(handles.FixLimits,'BackgroundColor',[1 1 0])
2838else
2839    set(handles.zoom,'BackgroundColor',[0.7 0.7 0.7])
2840end
2841
2842
2843%-------------------------------------------------------------------
2844%----Executes on button press in 'record': records the current flags of manual correction.
2845%-------------------------------------------------------------------
2846function record_Callback(hObject, eventdata, handles)
2847% [filebase,num_i1,num_j1,num_i2,num_j2,Ext,NomType,SubDir]=read_input_file(handles);
2848filename=read_file_boxes(handles);
2849[erread,message]=fileattrib(filename);
2850if ~isempty(message) && ~isequal(message.UserWrite,1)
2851     msgbox_uvmat('ERROR',['no writting access to ' filename])
2852     return
2853end
2854test_civ2=isequal(get(handles.civ2,'BackgroundColor'),[1 1 0]);
2855test_civ1=isequal(get(handles.civ1,'BackgroundColor'),[1 1 0]);
2856if ~test_civ2 && ~test_civ1
2857    msgbox_uvmat('ERROR','manual correction only possible for CIV1 or CIV2 velocity fields')
2858end
2859if test_civ2
2860    nbname='nb_vectors2';
2861   flagname='vec2_FixFlag';
2862   attrname='fix2';
2863end
2864if test_civ1
2865    nbname='nb_vectors';
2866   flagname='vec_FixFlag';
2867   attrname='fix';
2868end
2869%write fix flags in the netcdf file
2870UvData=get(handles.uvmat,'UserData');
2871hhh=which('netcdf.open');% look for built-in matlab netcdf library
2872if ~isequal(hhh,'')% case of new builtin Matlab netcdf library
2873    nc=netcdf.open(filename,'NC_WRITE');
2874    netcdf.reDef(nc);
2875    netcdf.putAtt(nc,netcdf.getConstant('NC_GLOBAL'),attrname,1);
2876    dimid = netcdf.inqDimID(nc,nbname);
2877    try
2878        varid = netcdf.inqVarID(nc,flagname);% look for already existing fixflag variable
2879    catch
2880        varid=netcdf.defVar(nc,flagname,'double',dimid);%create fixflag variable if it does not exist
2881    end
2882    netcdf.endDef(nc);
2883    netcdf.putVar(nc,varid,UvData.axes3.FF);
2884    netcdf.close(nc); 
2885else %old netcdf library
2886    netcdf_toolbox(filename,AxeData,attrname,nbname,flagname)
2887end
2888
2889%-------------------------------------------------------------------
2890%----Correct the netcdf file, using toolbox (old versions of Matlab).
2891%-------------------------------------------------------------------
2892function netcdf_toolbox(filename,AxeData,attrname,nbname,flagname)
2893nc=netcdf(filename,'write'); %open netcdf file
2894result=redef(nc);
2895eval(['nc.' attrname '=1;']);
2896theDim=nc(nbname) ;% get the number of velocity vectors
2897nb_vectors=size(theDim);
2898var_FixFlag=ncvar(flagname,nc);% var_FixFlag will be written as the netcdf variable vec_FixFlag
2899var_FixFlag(1:nb_vectors)=AxeData.FF;%
2900fin=close(nc);
2901
2902
2903%-------------------------------------------------------------------
2904%determines the fields to read from the interface
2905%------------------------------------------------------------------
2906function [VelType,civ]=setfield(handles)
2907
2908VelType=[]; %default
2909if (get(handles.civ1,'Value') == 1);
2910        VelType='civ1';
2911% interp1   
2912elseif (get(handles.interp1,'Value') == 1);
2913    VelType='interp1';
2914% filter1   
2915elseif (get(handles.filter1,'Value') == 1);
2916    VelType='filter1'; 
2917% CIV2
2918elseif (get(handles.civ2,'Value') == 1);
2919    VelType='civ2';
2920% interp2   
2921elseif (get(handles.interp2,'Value') == 1);
2922    VelType='interp2';
2923% filter2   
2924elseif (get(handles.filter2,'Value') == 1); 
2925    VelType='filter2';
2926end
2927
2928if isequal(get(handles.filter2,'Visible'),'on');
2929    civ=6;
2930% interp1   
2931elseif isequal(get(handles.interp2,'Visible'),'on');
2932    civ=5;
2933% filter1   
2934elseif isequal(get(handles.civ2,'Visible'),'on');
2935    civ=4; 
2936% CIV2
2937elseif isequal(get(handles.filter1,'Visible'),'on');
2938   civ=3;
2939% interp2   
2940elseif isequal(get(handles.interp1,'Visible'),'on');
2941    civ=2;
2942% filter2   
2943elseif isequal(get(handles.civ1,'Visible'),'on'); 
2944    civ=1;
2945else
2946    civ=0;
2947end
2948
2949%-------------------------------------------------------------------
2950%determines the veltype of the second field to read from the iinterface
2951%------------------------------------------------------------------
2952function VelType=setfield_1(handles)
2953
2954VelType=[]; %default
2955if (get(handles.civ1_1,'Value') == 1);
2956    VelType='civ1';
2957% interp1   
2958elseif (get(handles.interp1_1,'Value') == 1);
2959    VelType='interp1';
2960% filter1   
2961elseif (get(handles.filter1_1,'Value') == 1);
2962    VelType='filter1'; 
2963% CIV2
2964elseif (get(handles.civ2_1,'Value') == 1);
2965    VelType='civ2';
2966% interp2   
2967elseif (get(handles.interp2_1,'Value') == 1);
2968    VelType='interp2';
2969% filter2   
2970elseif (get(handles.filter2_1,'Value') == 1); 
2971    VelType='filter2';
2972end
2973
2974
2975%---------------------------------------------------
2976% --- Executes on button press in SubField
2977function SubField_Callback(hObject, eventdata, handles)
2978huvmat=get(handles.run0,'parent');
2979UvData=get(huvmat,'UserData');
2980if get(handles.SubField,'Value')==0% if the subfield button is desactivated   
2981    set(handles.RootPath_1,'String','')
2982    set(handles.RootFile_1,'String','')
2983    set(handles.SubDir_1,'String','');
2984    set(handles.FileIndex_1,'String','');
2985    set(handles.FileExt_1,'String','');
2986    set(handles.RootPath_1,'Visible','off')
2987    set(handles.RootFile_1,'Visible','off')
2988    set(handles.SubDir_1,'Visible','off');
2989    set(handles.FileIndex_1,'Visible','off');
2990    set(handles.FileExt_1,'Visible','off');
2991    set(handles.Fields_1,'Value',1);%set to blank state
2992    set_veltype_display([handles.civ1_1 handles.interp1_1 handles.filter1_1 ...
2993            handles.civ2_1 handles.interp2_1 handles.filter2_1],0)
2994    if isfield(UvData,'XmlData_1')
2995        UvData=rmfield(UvData,'XmlData_1');
2996    end
2997    set(huvmat,'UserData',UvData);
2998    run0_Callback(hObject, eventdata, handles); %run
2999else
3000    MenuBrowse_1_Callback(hObject, eventdata, handles)
3001end
3002
3003%------------------------------------------------------------------------
3004% --- read the data displayed for the input rootfile windows (new)
3005function [FileName,RootPath,FileBase,FileIndices,FileExt,SubDir]=read_file_boxes(handles)
3006%------------------------------------------------------------------------
3007RootPath=get(handles.RootPath,'String');
3008FileName=RootPath; %default
3009SubDir=get(handles.SubDir,'String');
3010if ~isempty(SubDir) && ~isequal(SubDir,'')
3011    if (isequal(SubDir(1),'/')|| isequal(SubDir(1),'\'))
3012        SubDir(1)=[]; %suppress possible / or \ separator
3013    end
3014    FileName=fullfile(RootPath,SubDir);
3015end
3016RootFile=get(handles.RootFile,'String');
3017if ~isempty(RootFile) && ~isequal(RootFile,'')
3018    if (isequal(RootFile(1),'/')|| isequal(RootFile(1),'\'))
3019        RootFile(1)=[]; %suppress possible / or \ separator
3020    end
3021    FileName=fullfile(FileName,RootFile);
3022end
3023FileBase=fullfile(RootPath,RootFile);
3024FileIndices=get(handles.FileIndex,'String');
3025FileExt=get(handles.FileExt,'String');
3026FileName=[FileName FileIndices FileExt];
3027
3028%------------------------------------------------------------------------
3029% ---- read the data displayed for the second input rootfile windows
3030function [FileName_1,RootPath_1,FileBase_1,FileIndices_1,FileExt_1,SubDir_1]=read_file_boxes_1(handles)
3031%------------------------------------------------------------------------
3032RootPath_1=get(handles.RootPath_1,'String'); % read the data from the file1_input window
3033if isequal(get(handles.RootPath_1,'Visible'),'off') || isequal(RootPath_1,'"')
3034    RootPath_1=get(handles.RootPath,'String');
3035end;
3036FileName_1=RootPath_1; %default
3037SubDir_1=get(handles.SubDir_1,'String');
3038if isequal(get(handles.SubDir_1,'Visible'),'off')|| isequal(SubDir_1,'"')
3039    SubDir_1=get(handles.SubDir,'String');
3040end
3041if numel(SubDir_1)>=1
3042    if (isequal(SubDir_1(1),'/')|| isequal(SubDir_1(1),'\'))
3043        SubDir_1(1)=[]; %suppress possible / or \ separator
3044    end
3045    FileName_1=fullfile(RootPath_1,SubDir_1);
3046end
3047RootFile_1=get(handles.RootFile_1,'String');
3048if isequal(get(handles.RootFile_1,'Visible'),'off') || isequal(RootFile_1,'"')
3049    RootFile_1=get(handles.RootFile,'String');
3050end
3051if numel(RootFile_1)>=1
3052    if ~(isequal(RootFile_1(1),'/')||isequal(RootFile_1(1),'\'))
3053        RootFile_1(1)=[];%suppress possible / or \ separator
3054    end
3055    FileName_1=fullfile(FileName_1,RootFile_1);
3056end
3057FileBase_1=fullfile(RootPath_1,RootFile_1);
3058if isequal(get(handles.FileIndex_1,'Visible'),'off')
3059    FileIndices_1=get(handles.FileIndex,'String');
3060else
3061    FileIndices_1=get(handles.FileIndex_1,'String');
3062end
3063FileExt_1=get(handles.FileExt_1,'String');
3064if isequal(FileExt_1,'"'),FileExt_1=get(handles.FileExt,'String'); end;
3065FileName_1=[FileName_1 FileIndices_1 FileExt_1];
3066
3067%------------------------------------------------------------------------
3068% --- Executes on menu selection Fields
3069function Fields_Callback(hObject, eventdata, handles)
3070%------------------------------------------------------------------------
3071list_fields=get(handles.Fields,'String');% list menu fields
3072index_fields=get(handles.Fields,'Value');% selected string index
3073field= list_fields{index_fields(1)}; % selected string
3074if isequal(field,'get_field...')
3075     veltype_handles=[handles.civ1 handles.interp1 handles.filter1 handles.civ2 handles.interp2 handles.filter2];
3076     set_veltype_display(veltype_handles,0) % unvisible civ buttons
3077     filename=read_file_boxes(handles);
3078     hget_field=findobj(allchild(0),'name','get_field');
3079     if ~isempty(hget_field)
3080         delete(hget_field)
3081     end
3082     hget_field=get_field(filename);
3083     set(hget_field,'Name','get_field')       
3084     hhget_field=guidata(hget_field);
3085     set(hhget_field.list_fig,'Value',1)
3086     set(hhget_field.list_fig,'String',{'uvmat'})
3087     set(handles.transform_fct,'Value',1)% no transform by default
3088     set(handles.path_transform,'String','')
3089    return %no action
3090end
3091list_fields=get(handles.Fields_1,'String');% list menu fields
3092index_fields=get(handles.Fields_1,'Value');% selected string index
3093field_1= list_fields{index_fields(1)}; % selected string
3094UvData=get(handles.uvmat,'UserData');
3095
3096%read the rootfile input display
3097[FileName,RootPath,FileBase,FileIndices,FileExt]=read_file_boxes(handles);
3098[P,F,str1,str2,str_a,str_b,E,NomType]=name2display(['xxx' get(handles.FileIndex,'String') FileExt]);
3099NomTypeNew=NomType;%default
3100if isequal(field,'image')
3101    % transform netc type to the corresponding image type
3102%     if isequal(NomType,'_i1-i2_j')||isequal(NomType,'_i_j1-j2')|| isequal(NomType,'#_ab')|| isequal(NomType,'_i1-i2')
3103%         UvData.SubDir=get(handles.SubDir,'String'); %preserve the subdir in memory
3104%         if ~isempty(UvData.SubDir) && (isequal(UvData.SubDir(1),'/')||isequal(UvData.SubDir(1),'/'))
3105%             UvData.SubDir(1)=[];
3106%         end
3107%         set(handles.SubDir,'String','')
3108%         set(handles.FileExt,'String','.png');
3109        if isequal(NomType,'_i1-i2_j')||isequal(NomType,'_i_j1-j2')
3110            NomTypeNew='_i_j';
3111        elseif isequal(NomType,'#_ab')
3112            NomTypeNew='#a';
3113        elseif isequal(NomType,'_i1-i2')
3114            NomTypeNew='_i';
3115        end 
3116        imagename=name_generator(FileBase,str2double(str1),str2double(str_a),'.png',NomTypeNew,1,str2double(str2),str2double(str_b),'');
3117        if ~exist(imagename,'file')
3118                [FileName,PathName] = uigetfile( ...
3119           {'*.png;*.jpg;*.tif;*.avi;*.AVI;*.vol', ' (*.png, .tif, *.avi,*.vol)';
3120            '*.jpg',' jpeg image files'; ...
3121            '*.png','.png image files'; ...
3122            '*.tif','.tif image files'; ...
3123            '*.avi;*.AVI','.avi movie files'; ...
3124            '*.vol','.volume images (png)'; ...
3125            '*.*',  'All Files (*.*)'}, ...
3126            'Pick an image',imagename);           
3127            % display the selected field and related information
3128           imagename=[PathName FileName];
3129        end
3130        display_file_name(hObject, eventdata, handles,imagename)%display the image
3131        return
3132%     end
3133%     veltype_handles=[handles.civ1 handles.interp1 handles.filter1 handles.civ2 handles.interp2 handles.filter2];
3134%     set_veltype_display(veltype_handles,0) % unvisible civ buttons
3135else
3136    ext=get(handles.FileExt,'String');
3137    if ~isequal(ext,'.nc') %find the new NomType if the previous display was not already a netcdf file
3138                [FileName,PathName] = uigetfile( ...
3139           {'*.nc', ' (*.nc)';
3140            '*.nc',' netcdf files'; ...
3141            '*.*',  'All Files (*.*)'}, ...
3142            'Pick a netcdf file',FileBase);           
3143            % display the selected field and related information
3144           filename=[PathName FileName];
3145        display_file_name(hObject, eventdata, handles,filename)
3146        return
3147       %  MenuBrowse_Callback(hObject, eventdata, handles)
3148    end
3149    if isequal(field,'vort') || isequal(field,'div') || isequal(field,'strain')
3150        set(handles.civ1,'BackgroundColor',[0.702 0.702 0.702]) % put their color to grey
3151        set(handles.civ2,'BackgroundColor',[0.702 0.702 0.702])
3152        set(handles.interp1,'BackgroundColor',[0.702 0.702 0.702])
3153        set(handles.interp2,'BackgroundColor',[0.702 0.702 0.702])
3154    elseif isequal(field,'more...');
3155        set(handles.civ1,'BackgroundColor',[0.702 0.702 0.702]) % put their color to grey
3156        set(handles.civ2,'BackgroundColor',[0.702 0.702 0.702])
3157        str=calc_field;%get the list of available scalars by the function calc_scal
3158        [ind_answer] = listdlg('PromptString','Select a file:',...
3159                'SelectionMode','single',...
3160                'ListString',str);
3161       % edit the choice in the field and action menu
3162        scalar=cell2mat(str(ind_answer));
3163        menu=update_menu(handles.Fields,scalar);
3164        menu=[{''};menu];
3165        set(handles.Fields_1,'String',menu);% store the selected scalar type
3166    end
3167end
3168indices=name_generator('',str2double(str1),str2double(str_a),'',NomTypeNew,1,str2double(str2),str2double(str_b),'');
3169set(handles.FileIndex,'String',indices)
3170set(handles.FileIndex,'UserData',NomTypeNew)
3171%common to Fields_1_Callback
3172if isequal(field,'image')||isequal(field_1,'image')
3173    set(handles.npx_title,'Visible','on')% visible npx,pxcm... buttons
3174    set(handles.npy_title,'Visible','on')
3175    set(handles.npx,'Visible','on')
3176    set(handles.npy,'Visible','on')
3177else
3178    set(handles.npx_title,'Visible','off')% visible npx,pxcm... buttons
3179    set(handles.npy_title,'Visible','off')
3180    set(handles.npx,'Visible','off')
3181    set(handles.npy,'Visible','off')
3182end
3183setfield(handles);% update the field structure ('civ1'....)
3184
3185if ~(isfield(UvData,'NewSeries')&&isequal(UvData.NewSeries,1))
3186    run0_Callback(hObject, eventdata, handles)
3187end
3188
3189%---------------------------------------------------
3190% --- Executes on menu selection Fields
3191function Fields_1_Callback(hObject, eventdata, handles)
3192%-------------------------------------------------
3193list_fields=get(handles.Fields,'String');% list menu fields
3194index_fields=get(handles.Fields,'Value');% selected string index
3195field= list_fields{index_fields(1)}; % selected string
3196list_fields=get(handles.Fields_1,'String');% list menu fields
3197index_fields=get(handles.Fields_1,'Value');% selected string index
3198field_1= list_fields{index_fields(1)}; % selected string for the second field
3199if isequal(field_1,'') %remove second field if 'blank' field is selected
3200    set(handles.SubField,'Value',0)
3201    SubField_Callback(hObject, eventdata, handles)
3202    return
3203end
3204UvData=get(handles.uvmat,'UserData');
3205
3206%read the rootfile input display
3207[FileName,RootPath,FileBase,FileIndices,FileExt_prev]=read_file_boxes_1(handles);
3208[P,F,str1,str2,str_a,str_b,E,NomType]=name2display(['xxx' get(handles.FileIndex,'String') FileExt_prev]);
3209if isempty(FileExt_prev)|| strcmp(FileExt_prev,'')
3210    FileExt_1=get(handles.FileExt,'String');
3211else
3212    FileExt_1=FileExt_prev;
3213end
3214NomType_1=get(handles.FileIndex_1,'UserData');
3215if isempty(NomType_1)|| strcmp(NomType_1,'')
3216    NomType_1=get(handles.FileIndex,'UserData');
3217end
3218NomTypeNew=NomType_1;%default
3219
3220set(handles.SubField,'Value',1)%introduce second field
3221if isfield(UvData,'XmlData')
3222    UvData.XmlData_1=UvData.XmlData;
3223end
3224set(handles.FileIndex_1,'Visible','on')
3225set(handles.FileExt_1,'Visible','on')
3226RootPath_1=get(handles.RootPath_1,'String');
3227RootFile_1=get(handles.RootFile_1,'String');
3228if isempty(RootPath_1)||isequal(RootPath_1,'')
3229    set(handles.RootPath_1,'String','"')
3230end
3231if isempty(RootFile_1) || isequal(RootFile_1,'')
3232    set(handles.RootFile_1,'String','"')
3233end
3234if ~isempty(RootFile_1)&&(isequal(RootFile_1(1),'/')||isequal(RootFile_1(1),'\'))
3235    RootFile_1(1)=[];
3236end
3237
3238if isequal(field_1,'get_field...')
3239     veltype_handles=[handles.civ1 handles.interp1 handles.filter1 handles.civ2 handles.interp2 handles.filter2];
3240     set_veltype_display(veltype_handles,0) % unvisible civ buttons
3241     filename=read_file_boxes_1(handles);
3242     hget_field=findobj(allchild(0),'name','get_field_1');
3243     if ~isempty(hget_field)
3244         delete(hget_field)
3245     end
3246     hget_field=get_field(filename);
3247     set(hget_field,'name','get_field_1')
3248     hhget_field=guidata(hget_field);
3249     set(hhget_field.list_fig,'Value',1)
3250     set(hhget_field.list_fig,'String',{'uvmat'})
3251     set(handles.transform_fct,'Value',1)% no transform by default
3252     set(handles.path_transform,'String','')
3253    return %no action
3254end
3255if isequal(field_1,'image')
3256    % transform netc type to the corresponding image type
3257%     set(handles.FileExt_1,'String','.png');
3258    if isequal(NomType_1,'_i1-i2_j')|isequal(NomType_1,'_i_j1-j2')| isequal(NomType_1,'#_ab')| isequal(NomType_1,'_i1-i2')
3259        UvData.SubDir_1=get(handles.SubDir_1,'String'); %preserve the subdir in memory
3260%         set(handles.SubDir_1,'String','')
3261%         set(handles.FileExt_1,'String','.png');       
3262        if isequal(NomType_1,'_i1-i2_j')|isequal(NomType_1,'_i_j1-j2')
3263            NomTypeNew='_i_j';
3264        elseif isequal(NomType_1,'#_ab')
3265            NomTypeNew='#a';
3266        elseif isequal(NomType_1,'_i1-i2')
3267            NomTypeNew='_i';
3268        end 
3269    end
3270    imagename=name_generator(FileBase,str2double(str1),str2double(str_a),'.png',NomTypeNew,1,str2double(str2),str2double(str_b),'');
3271    if ~exist(imagename,'file')
3272        [FileName,PathName] = uigetfile( ...
3273            {'*.png;*.jpg;*.tif;*.avi;*.AVI;*.vol', ' (*.png, .tif, *.avi,*.vol)';
3274            '*.jpg',' jpeg image files'; ...
3275            '*.png','.png image files'; ...
3276            '*.tif','.tif image files'; ...
3277            '*.avi;*.AVI','.avi movie files'; ...
3278            '*.vol','.volume images (png)'; ...
3279            '*.*',  'All Files (*.*)'}, ...
3280            'Pick an image',imagename);
3281        % display the selected field and related information
3282        imagename=[PathName FileName];
3283    end
3284    display_file_name_1(hObject, eventdata, handles,imagename)%display the image
3285    return
3286%     veltype_handles=[handles.civ1_1 handles.interp1_1 handles.filter1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1];
3287%     set_veltype_display(veltype_handles,0) % unvisible civ buttons
3288else
3289    set(handles.SubDir_1,'Visible','on')
3290    if ~isequal(FileExt_prev,'.nc') %find the new NomType if the previous display was not already a netcdf file
3291        veltype_handles=[handles.civ1_1 handles.interp1_1 handles.filter1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1];
3292        set_veltype_display(veltype_handles,6); % make all civ buttons visible
3293        RootPath_1=get(handles.RootPath_1,'String');
3294        RootFile_1=get(handles.RootFile_1,'String');
3295        if isempty(RootPath_1)|isequal(RootPath_1,'')
3296            set(handles.RootPath_1,'String','"')
3297        end
3298        if isempty(RootFile_1) | isequal(RootFile_1,'')
3299            set(handles.RootFile_1,'String','"')
3300        end
3301        if ~isempty(RootFile_1)&(isequal(RootFile_1(1),'/')|isequal(RootFile_1(1),'\'))
3302            RootFile_1(1)=[];
3303        end
3304        filebase_1=fullfile(RootPath_1,RootFile_1);
3305        SubDir_1=get(handles.SubDir,'String');
3306        if isempty(SubDir_1)||isequal(SubDir_1,'')
3307            if isfield(UvData,'SubDir_1')
3308                SubDir_1=UvData.SubDir_1;%retrieve previous subdir
3309            else
3310                SubDir_1='?';
3311            end
3312        end
3313        str1=get(handles.i1,'String');
3314        str_a=get(handles.j1,'String');
3315        if isequal(NomType_1,'#_ab')||isequal(NomType_1,'_i1-i2_j')||isequal(NomType_1,'_i_j1-j2')||isequal(NomType_1,'_i1-i2')
3316            NomTypeNew=NomType_1;
3317        elseif isequal(NomType_1,'#a')
3318             [filename, n1,na,n2,nb,SubDir_1]=name_generator(filebase_1, str2num(str1),stra2num(str_a),'.nc','#_ab',0,[],[],SubDir_1);
3319             NomTypeNew='#_ab';
3320        elseif isequal(NomType_1,'_i_j')
3321             [filename,n1,na,n2,nb,SubDir_1]=name_generator(filebase_1,str2num(str1),stra2num(str_a),'.nc','_i1-i2_j',0,str2num(str1),[],SubDir_1);
3322            if idetect==1
3323                NomTypeNew='_i1-i2_j';
3324            else
3325                NomTypeNew='_i_j1-j2';
3326            end
3327        else %for instance avi files or any ima_num series
3328            [filename,n1,na,n2,nb,SubDir_1]=name_generator(filebase_1,str2num(str1),stra2num(str_a),'.nc','_i1-i2',0,str2num(str1),[],SubDir_1);
3329            NomTypeNew='_i1-i2';
3330        end           
3331        [Path,Name]=fileparts(filebase_1);
3332        set(handles.FileExt_1,'String','.nc');
3333        if ~isempty(SubDir_1) && ~strcmp(SubDir_1,'''')&& ~strcmp(SubDir_1,'"')&& ~strcmp(SubDir_1(1),'/')
3334            SubDir_1=['/' SubDir_1];
3335        end
3336        set(handles.SubDir_1,'String',SubDir_1);
3337    end
3338    if isequal(field,'vort') | isequal(field,'div') | isequal(field,'strain')
3339        set(handles.civ1_1,'BackgroundColor',[0.702 0.702 0.702]) % put their color to grey
3340        set(handles.civ2_1,'BackgroundColor',[0.702 0.702 0.702])
3341        set(handles.interp1_1,'BackgroundColor',[0.702 0.702 0.702])
3342        set(handles.interp2_1,'BackgroundColor',[0.702 0.702 0.702])
3343    elseif isequal(field_1,'more...'); %add new item to the menu
3344        set(handles.civ1_1,'BackgroundColor',[0.702 0.702 0.702]) % put their color to grey
3345        set(handles.civ2_1,'BackgroundColor',[0.702 0.702 0.702])
3346        str=calc_field;%get the list of available scalars by the function calc_scal
3347        [ind_answer,v] = listdlg('PromptString','Select a file:',...
3348                'SelectionMode','single',...
3349                'ListString',str);
3350       % edit the choice in the field and action menu
3351        scalar=cell2mat(str(ind_answer));
3352        menu=update_menu(handles.Fields_1,scalar);
3353        set(handles.Fields_1,'String',menu);% store the selected scalar type
3354    end
3355end
3356str1=get(handles.i1,'String');
3357str2=get(handles.i2,'String');
3358str_a=get(handles.j1,'String');
3359str_b=get(handles.j2,'String');
3360indices=name_generator('',str2num(str1),stra2num(str_a),'',NomTypeNew,1,str2num(str2),stra2num(str_b),'');
3361set(handles.FileIndex_1,'String',indices)
3362set(handles.FileIndex_1,'UserData',NomTypeNew)
3363
3364%common to Fields_Callback
3365if isequal(field,'image')|isequal(field_1,'image')
3366    set(handles.npx_title,'Visible','on')% visible npx,pxcm... buttons
3367    set(handles.npy_title,'Visible','on')
3368    set(handles.npx,'Visible','on')
3369    set(handles.npy,'Visible','on')
3370%     set(handles.fix_pair,'Value',0)
3371else
3372    set(handles.npx_title,'Visible','off')% visible npx,pxcm... buttons
3373    set(handles.npy_title,'Visible','off')
3374    set(handles.npx,'Visible','off')
3375    set(handles.npy,'Visible','off')
3376%     set(handles.fix_pair,'Value',1)
3377end
3378if isequal(field,'velocity')|isequal(field_1,'velocity');
3379    state_vect='on';
3380else
3381    state_vect='off';
3382end
3383if ~isequal(field,'velocity')|(~isequal(field_1,'velocity')&~isequal(field_1,''));
3384    state_scal='on';
3385else
3386    state_scal='off';
3387end
3388set(handles.uvmat,'UserData',UvData)
3389setfield(handles);% update the field structure ('civ1'....)
3390if ~(isfield(UvData,'NewSeries')&&isequal(UvData.NewSeries,1))
3391    run0_Callback(hObject, eventdata, handles)
3392end
3393
3394%------------------------------------------------------------------------
3395% --- set the visibility of relevant velocity type menus:
3396function set_veltype_display(handles,Civ)
3397%------------------------------------------------------------------------
3398%Civ=0; all states 'off'
3399%Civ=6; all states 'on'
3400if isequal(Civ,0)
3401    imax=0;
3402%    set(handles(1),'Visible','on')  % unvisible civ buttons
3403% else
3404%    set(handles(1),'String','civ1')
3405% end
3406elseif isequal(Civ,1) || isequal(Civ,2)
3407   imax=1;
3408elseif isequal(Civ,3)
3409    imax=3;
3410elseif isequal(Civ,4) || isequal(Civ,5)
3411    imax=4;
3412elseif isequal(Civ,6) %patch2
3413    imax=6;
3414end
3415for ibutton=1:imax;
3416    set(handles(ibutton),'Visible','on')  % unvisible civ buttons
3417end
3418% for ibutton=max(imax+1,2):6;
3419for ibutton=imax+1:6;
3420    set(handles(ibutton),'Visible','off')  % unvisible civ buttons
3421    set(handles(ibutton),'Value',0)%unactivate unvisible buttons
3422end
3423
3424%-------------------------------------------------------------------
3425% --- Executes on button press in civ1.
3426function civ1_Callback(hObject, eventdata, handles)
3427%-------------------------------------------------------------------
3428if get(handles.civ1,'Value')==1
3429    reset_vel_type([handles.interp1 handles.civ2 handles.filter1 handles.interp1 handles.interp2 handles.filter2],handles.civ1)
3430else
3431    reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3432end
3433run0_Callback(hObject, eventdata, handles)
3434
3435%-------------------------------------------------------------------
3436% --- Executes on button press in interp1.
3437function interp1_Callback(hObject, eventdata, handles)
3438%-------------------------------------------------------------------
3439if get(handles.interp1,'Value')==1
3440    reset_vel_type([handles.civ1 handles.civ2 handles.filter1 handles.interp2 handles.filter2],handles.interp1)
3441else
3442     reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3443end
3444run0_Callback(hObject, eventdata, handles)
3445
3446%-------------------------------------------------------------------
3447% --- Executes on button press in filter1.
3448function filter1_Callback(hObject, eventdata, handles)
3449%-------------------------------------------------------------------
3450if get(handles.filter1,'Value')==1
3451    reset_vel_type([handles.civ1 handles.civ2 handles.interp1 handles.interp2 handles.filter2],handles.filter1)
3452else
3453     reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3454end
3455run0_Callback(hObject, eventdata, handles)
3456
3457%-------------------------------------------------------------------
3458% --- Executes on button press in civ2.
3459function civ2_Callback(hObject, eventdata, handles)
3460%-------------------------------------------------------------------
3461if get(handles.civ2,'Value')==1
3462    reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.interp2 handles.filter2],handles.civ2)
3463else
3464     reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3465end
3466run0_Callback(hObject, eventdata, handles)
3467
3468%-----------------------------------------
3469% --- Executes on button press in interp2.
3470%-------------------------------------------
3471function interp2_Callback(hObject, eventdata, handles)
3472if get(handles.interp2,'Value')==1
3473    reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.filter2],handles.interp2)
3474else
3475     reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3476end
3477run0_Callback(hObject, eventdata, handles)
3478%---------------------------------------------
3479% --- Executes on button press in filter2.
3480%-------------------------------------------
3481function filter2_Callback(hObject, eventdata, handles)
3482if get(handles.filter2,'Value')==1
3483    reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2],handles.filter2)
3484else
3485     reset_vel_type([handles.civ1 handles.filter1 handles.interp1 handles.civ2 handles.interp2 handles.filter2])
3486end
3487run0_Callback(hObject, eventdata, handles)
3488
3489%---------------------------------------------
3490function civ1_1_Callback(hObject, eventdata, handles)
3491%---------------------------------------------
3492if get(handles.civ1_1,'Value')==1
3493    reset_vel_type([handles.interp1_1 handles.civ2_1 handles.filter1_1 handles.interp1_1 handles.interp2_1 handles.filter2_1],handles.civ1_1)
3494else
3495     reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3496end
3497run0_Callback(hObject, eventdata, handles)
3498
3499%--------------------------------------------
3500function interp1_1_Callback(hObject, eventdata, handles)
3501%--------------------------------------------
3502if get(handles.interp1_1,'Value')==1
3503    reset_vel_type([handles.civ1_1 handles.civ2_1 handles.filter1_1 handles.interp2_1 handles.filter2_1],handles.interp1_1)
3504else
3505    reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3506end
3507run0_Callback(hObject, eventdata, handles)
3508
3509%--------------------------------------------
3510function filter1_1_Callback(hObject, eventdata, handles)
3511%--------------------------------------------
3512if get(handles.filter1_1,'Value')==1
3513    reset_vel_type([handles.interp1_1 handles.civ2_1 handles.interp1_1 handles.interp2_1 handles.filter2_1],handles.filter1_1)
3514else
3515    reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3516end
3517run0_Callback(hObject, eventdata, handles)
3518
3519%--------------------------------------------
3520function civ2_1_Callback(hObject, eventdata, handles)
3521%--------------------------------------------
3522if get(handles.civ2_1,'Value')==1
3523    reset_vel_type([handles.civ1_1 handles.interp1_1  handles.filter1_1 handles.interp2_1 handles.filter2_1],handles.civ2_1)
3524else
3525    reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3526end
3527run0_Callback(hObject, eventdata, handles)
3528
3529%--------------------------------------------
3530function interp2_1_Callback(hObject, eventdata, handles)
3531%--------------------------------------------
3532if get(handles.interp2_1,'Value')==1
3533    reset_vel_type([handles.civ1_1 handles.civ2_1 handles.filter1_1 handles.interp1_1 handles.filter2_1],handles.interp2_1)
3534else
3535    reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3536end
3537run0_Callback(hObject, eventdata, handles)
3538
3539%--------------------------------------------
3540function filter2_1_Callback(hObject, eventdata, handles)
3541%--------------------------------------------
3542if get(handles.filter2_1,'Value')==1
3543    reset_vel_type([handles.civ1_1 handles.interp1_1 handles.civ2_1 handles.filter1_1 handles.interp1_1 handles.interp2_1],handles.filter2_1)
3544else
3545    reset_vel_type([handles.civ1_1 handles.filter1_1 handles.interp1_1 handles.civ2_1 handles.interp2_1 handles.filter2_1])
3546end
3547run0_Callback(hObject, eventdata, handles)
3548
3549%-----------------------------------------------
3550% --- reset civ buttons
3551function reset_vel_type(handles_civ0,handle1)
3552for ibutton=1:length(handles_civ0)
3553    set(handles_civ0(ibutton),'BackgroundColor',[0.831 0.816 0.784])
3554    set(handles_civ0(ibutton),'Value',0)
3555end
3556if exist('handle1','var')%handles of selected button
3557        set(handle1,'BackgroundColor',[1 1 0]) 
3558end
3559
3560%-------------------------------------------------------
3561% --- Executes on button press in MENUVOLUME.
3562%-------------------------------------------------------
3563function VOLUME_Callback(hObject, eventdata, handles)
3564%errordlg('command VOL not implemented yet')
3565if ishandle(handles.UVMAT_title)
3566    delete(handles.UVMAT_title)
3567end
3568UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
3569if isequal(get(handles.VOLUME,'Value'),1)
3570    set(handles.zoom,'Value',0)
3571    set(handles.zoom,'BackgroundColor',[0.7 0.7 0.7])
3572    set(handles.edit_vect,'Value',0)
3573    edit_vect_Callback(hObject, eventdata, handles)
3574    set(handles.edit_object,'Value',0)
3575    set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7])
3576%     set(handles.cal,'Value',0)
3577%     set(handles.cal,'BackgroundColor',[0 1 0])
3578    set(handles.edit_vect,'Value',0)
3579    edit_vect_Callback(hObject, eventdata, handles)
3580    %initiate set_object GUI
3581    data.TITLE='VOLUME';
3582    if isfield(UvData,'CoordType')
3583        data.CoordType=UvData.CoordType;
3584    end
3585    if isfield(UvData,'Mesh')&~isempty(UvData.Mesh)
3586        data.RangeY=UvData.Mesh;
3587        data.RangeX=UvData.Mesh;
3588        data.DX=UvData.Mesh;
3589        data.DY=UvData.Mesh;
3590    elseif isfield(UvData.Field,'AX')&isfield(UvData.Field,'AY')& isfield(UvData.Field,'A')%only image
3591        np=size(UvData.Field.A);
3592        meshx=(UvData.Field.AX(end)-UvData.Field.AX(1))/np(2);
3593        meshy=abs(UvData.Field.AY(end)-UvData.Field.AY(1))/np(1);
3594        data.RangeY=max(meshx,meshy);
3595        data.RangeX=max(meshx,meshy);
3596        data.DX=max(meshx,meshy);
3597    end
3598    data.ParentButton=handles.VOLUME;
3599    PlotHandles=get_plot_handles(handles);%get the handles of the interface elements setting the plotting parameters
3600    [hset_object,UvData.sethandles]=set_object(data,PlotHandles);% call the set_object interface with action on haxes,
3601                                                      % associate the set_object interface handle to the plotting axes
3602    if isfield(UvData.OpenParam,'SetObjectOrigin')                                               
3603    pos_uvmat=get(huvmat,'Position');
3604    pos_set_object(1:2)=UvData.OpenParam.SetObjectOrigin + pos_uvmat(1:2);
3605    pos_set_object(3:4)=UvData.OpenParam.SetObjectSize .* pos_uvmat(3:4); 
3606    set(hset_object,'Position',pos_set_object)
3607    end
3608    UvData.MouseAction='create_object';
3609else
3610    set(handles.VOLUME,'BackgroundColor',[0 1 0])
3611    UvData.MouseAction='none';
3612end
3613set(huvmat,'UserData',UvData)
3614
3615%-------------------------------------------------------
3616function edit_vect_Callback(hObject, eventdata, handles)
3617%-------------------------------------------------------
3618%
3619% UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
3620if isequal(get(handles.edit_vect,'Value'),1)
3621    test_civ2=isequal(get(handles.civ2,'BackgroundColor'),[1 1 0]);
3622    test_civ1=isequal(get(handles.civ1,'BackgroundColor'),[1 1 0]);
3623    if ~test_civ2 && ~test_civ1
3624        msgbox_uvmat('ERROR','manual correction only possible for CIV1 or CIV2 velocity fields')
3625    end
3626    set(handles.record,'Visible','on')
3627    set(handles.edit_vect,'BackgroundColor',[1 1 0])
3628    set(handles.edit_object,'Value',0)
3629    set(handles.zoom,'Value',0)
3630    set(handles.zoom,'BackgroundColor',[0.7 0.7 0.7])
3631%     set(handles.create,'Value',0)
3632%     set(handles.create,'BackgroundColor',[0 1 0])
3633    set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7])
3634    set(gcf,'Pointer','arrow')
3635%     UvData.MouseAction='edit_vect';
3636else
3637    set(handles.record,'Visible','off')
3638    set(handles.edit_vect,'BackgroundColor',[0.7 0.7 0.7])
3639%     UvData.MouseAction='none';
3640end
3641% set(handles.uvmat,'UserData',UvData)
3642
3643%----------------------------------------------
3644function save_mask_Callback(hObject, eventdata, handles)
3645%-----------------------------------------------------------------------
3646UvData=get(handles.uvmat,'UserData');
3647
3648flag=1;
3649npx=size(UvData.Field.A,2);
3650npy=size(UvData.Field.A,1);
3651xi=0.5:npx-0.5;
3652yi=0.5:npy-0.5;
3653[Xi,Yi]=meshgrid(xi,yi);
3654if isfield(UvData,'Object')
3655    for iobj=1:length(UvData.Object)
3656        ObjectData=UvData.Object{iobj};
3657        if isfield(ObjectData,'ProjMode') &&(isequal(ObjectData.ProjMode,'mask_inside')||isequal(ObjectData.ProjMode,'mask_outside'));
3658            flagobj=1;
3659            testphys=0; %coordinates in pixels by default
3660            if isfield(ObjectData,'CoordType') && isequal(ObjectData.CoordType,'phys')
3661                if isfield(UvData,'XmlData')&& isfield(UvData.XmlData,'GeometryCalib')
3662                    Calib=UvData.XmlData.GeometryCalib;
3663                    testphys=1;
3664                end
3665            end
3666            if isfield(ObjectData,'Coord')& isfield(ObjectData,'Style')
3667                if isequal(ObjectData.Style,'polygon')
3668                    X=ObjectData.Coord(:,1);
3669                    Y=ObjectData.Coord(:,2);
3670                    if testphys
3671                        [X,Y]=px_XYZ(Calib,X,Y,0);% to generalise with 3D cases
3672                    end
3673                    flagobj=~inpolygon(Xi,Yi,X',Y');%=0 inside the polygon, 1 outside                 
3674                elseif isequal(ObjectData.Style,'ellipse')
3675                    if testphys
3676                        %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys
3677                    end
3678                    RangeX=max(ObjectData.RangeX);
3679                    RangeY=max(ObjectData.RangeY);
3680                    X2Max=RangeX*RangeX;
3681                    Y2Max=RangeY*RangeY;
3682                    distX=(Xi-ObjectData.Coord(1,1));
3683                    distY=(Yi-ObjectData.Coord(1,2));
3684                    flagobj=(distX.*distX/X2Max+distY.*distY/Y2Max)>1;
3685                elseif isequal(ObjectData.Style,'rectangle')
3686                    if testphys
3687                        %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys
3688                    end
3689                    distX=abs(Xi-ObjectData.Coord(1,1));
3690                    distY=abs(Yi-ObjectData.Coord(1,2));
3691                    flagobj=distX>max(ObjectData.RangeX) | distY>max(ObjectData.RangeY);
3692                end
3693                if isequal(ObjectData.ProjMode,'mask_outside')
3694                    flagobj=~flagobj;
3695                end
3696                flag=flag & flagobj;
3697            end
3698        end
3699    end
3700end
3701% flag=~flag;
3702%mask name
3703RootPath=get(handles.RootPath,'String');
3704RootFile=get(handles.RootFile,'String');
3705if ~isempty(RootFile)&&(isequal(RootFile(1),'/')|| isequal(RootFile(1),'\'))
3706        RootFile(1)=[];
3707end
3708filebase=fullfile(RootPath,RootFile);
3709list=get(handles.masklevel,'String');
3710masknumber=num2str(length(list));
3711maskindex=get(handles.masklevel,'Value');
3712mask_name=name_generator([filebase '_' masknumber 'mask'],maskindex,1,'.png','_i');
3713imflag=uint8(255*(0.392+0.608*flag));% =100 for flag=0 (vectors not computed when 20<imflag<200)
3714imflag=flipdim(imflag,1);
3715% imflag=uint8(255*flag);% =0 for flag=0 (vectors=0 when 20<imflag<200)
3716msgbox_uvmat('CONFIRMATION',[mask_name ' saved'])
3717imwrite(imflag,mask_name,'BitDepth',8);
3718
3719%display the mask
3720%update_mask(handles,num_i1,num_j1)
3721figure;
3722vec=linspace(0,1,256);%define a linear greyscale colormap
3723map=[vec' vec' vec'];
3724colormap(map)
3725
3726image(imflag);
3727
3728%-------------------------------------------------------------------
3729%-------------------------------------------------------------------
3730%  - FUNCTIONS FOR SETTING PLOTTING PARAMETERS
3731
3732%------------------------------------------------------------------
3733
3734
3735
3736%------------------------------------------------------------------
3737% --- Executes on selection change in col_vec: choice of the color code.
3738%
3739function col_vec_Callback(hObject, eventdata, handles)
3740%------------------------------------------------------------------
3741% edit the choice for color code
3742list_code=get(handles.col_vec,'String');% list menu fields
3743index_code=get(handles.col_vec,'Value');% selected string index
3744col_code= list_code{index_code(1)}; % selected field
3745if isequal(col_code,'black') || isequal(col_code,'white')
3746   set(handles.slider1,'Visible','off')
3747   set(handles.slider2,'Visible','off')
3748   set(handles.colcode1,'Visible','off')
3749   set(handles.colcode2,'Visible','off')
3750   set(handles.AutoVecColor,'Visible','off')
3751   set_vec_col_bar(handles)
3752else
3753   set(handles.slider1,'Visible','on')
3754   set(handles.slider2,'Visible','on')
3755   set(handles.colcode1,'Visible','on')
3756   set(handles.colcode2,'Visible','on')
3757   set(handles.AutoVecColor,'Visible','on') 
3758   if isequal(col_code,'ima_cor')
3759       set(handles.AutoVecColor,'Value',0)%fixed scale by default
3760       set(handles.vec_col_bar,'Value',0)% 3 colors r,g,b by default
3761       set(handles.slider1,'Min',0);
3762       set(handles.slider1,'Max',1);
3763       set(handles.slider2,'Min',0);
3764       set(handles.slider2,'Max',1);
3765 %      set(handles.min_title_vec,'String','0')
3766       set(handles.max_vec,'String','1')
3767       set(handles.colcode1,'String','0.333')
3768       colcode1_Callback(hObject, eventdata, handles)
3769       set(handles.colcode2,'String','0.666')
3770       colcode2_Callback(hObject, eventdata, handles)
3771   else
3772       set(handles.AutoVecColor,'Value',1)%auto scale between min,max by default
3773       set(handles.vec_col_bar,'Value',1)% colormap 'jet' by default
3774       minval=get(handles.slider1,'Min');
3775       maxval=get(handles.slider1,'Max');
3776       set(handles.slider1,'Value',minval)
3777       set(handles.slider2,'Value',maxval)
3778       set_vec_col_bar(handles)
3779   end
3780%    slider_update(handles)
3781end
3782%replot the current graph
3783run0_Callback(hObject, eventdata, handles)
3784
3785
3786%----------------------------------------------------------------
3787% -- Executes on slider movement to set the color code
3788%
3789function slider1_Callback(hObject, eventdata, handles)
3790%------------------------------------------------------------------
3791slider1=get(handles.slider1,'Value');
3792min_val=str2num(get(handles.min_vec,'String'));
3793max_val=str2num(get(handles.max_vec,'String'));
3794col=min_val+(max_val-min_val)*slider1;
3795set(handles.colcode1,'String',num2str(col))
3796if(get(handles.slider2,'Value') < col)%move also the second slider at the same value if needed
3797    set(handles.slider2,'Value',col)
3798    set(handles.colcode2,'String',num2str(col))
3799end
3800colcode1_Callback(hObject, eventdata, handles)
3801
3802%----------------------------------------------------------------
3803% Executes on slider movement to set the color code
3804%----------------------------------------------------------------
3805function slider2_Callback(hObject, eventdata, handles)
3806slider2=get(handles.slider2,'Value');
3807min_val=str2num(get(handles.min_vec,'String'));
3808max_val=str2num(get(handles.max_vec,'String'));
3809col=min_val+(max_val-min_val)*slider2;
3810set(handles.colcode2,'String',num2str(col))
3811if(get(handles.slider1,'Value') > col)%move also the first slider at the same value if needed
3812    set(handles.slider1,'Value',col)
3813    set(handles.colcode1,'String',num2str(col))
3814end
3815colcode2_Callback(hObject, eventdata, handles)
3816
3817%----------------------------------------------------------------
3818%execute on return carriage on the edit box corresponding to slider 1
3819%----------------------------------------------------------------
3820function colcode1_Callback(hObject, eventdata, handles)
3821% col=str2num(get(handles.colcode1,'String'));
3822% set(handles.slider1,'Value',col)
3823set_vec_col_bar(handles)
3824update_plot(handles);
3825
3826%----------------------------------------------------------------
3827%execute on return carriage on the edit box corresponding to slider 2
3828%----------------------------------------------------------------
3829function colcode2_Callback(hObject, eventdata, handles)
3830% col=str2num(get(handles.colcode2,'String'));
3831% set(handles.slider2,'Value',col)
3832% slider2_Callback(hObject, eventdata, handles)
3833set_vec_col_bar(handles)
3834update_plot(handles);
3835%------------------------------------------------------------
3836%update the slider values after displaying vectors
3837%--------------------------------------------------------
3838% function slider_update(handles,auto,minC,colcode1,colcode2,maxC)
3839% set(handles.slider1,'Min',minC)
3840% set(handles.slider1,'Max',maxC)
3841% set(handles.slider2,'Min',minC)
3842% set(handles.slider2,'Max',maxC)
3843% set(handles.min_title_vec,'String',num2str(minC))
3844% set(handles.max_vec,'String',num2str(maxC))
3845% if auto
3846%         set(handles.colcode1,'String',num2str(colcode1,3))%update display
3847%         set(handles.colcode2,'String',num2str(colcode2,3))
3848% end
3849% set(handles.slider1,'Value',colcode1)%update slider with constant display
3850% set(handles.slider2,'Value',colcode2)
3851% set_vec_col_bar(handles)
3852
3853
3854%-------------------------------------------------------
3855% --- Executes on button press in AutoVecColor.
3856%-------------------------------------------------------
3857function vec_col_bar_Callback(hObject, eventdata, handles)
3858set_vec_col_bar(handles)
3859
3860%-------------------------------------------------------------
3861% --- Executes on selection change in transform_fct.
3862function transform_fct_Callback(hObject, eventdata, handles)
3863%-------------------------------------------------------------
3864
3865UvData=get(handles.uvmat,'UserData');
3866menu=get(handles.transform_fct,'String');
3867ind_coord=get(handles.transform_fct,'Value');
3868coord_option=menu{ind_coord};
3869list_transform=get(handles.transform_fct,'UserData');
3870ff=functions(list_transform{end}); 
3871if isequal(coord_option,'more...');
3872    coord_fct='';
3873    prompt = {'Enter the name of the transform function'};
3874    dlg_title = 'user defined transform';
3875    num_lines= 1;
3876    [FileName, PathName] = uigetfile( ...
3877       {'*.m', ' (*.m)';
3878        '*.m',  '.m files '; ...
3879        '*.*', 'All Files (*.*)'}, ...
3880        'Pick a file', ff.file);
3881    if isequal(PathName(end),'/')||isequal(PathName(end),'\')
3882        PathName(end)=[];
3883    end
3884    transform_selected =fullfile(PathName,FileName);
3885    if ~exist(transform_selected,'file')
3886           return
3887    end
3888   [ppp,transform,ext_fct]=fileparts(FileName);% removes extension .m
3889   if ~isequal(ext_fct,'.m')
3890        msgbox_uvmat('ERROR','a Matlab function .m must be introduced');
3891        return
3892   end
3893   menu=update_menu(handles.transform_fct,transform);%add the selected fct to the menu
3894   ind_coord=get(handles.transform_fct,'Value');
3895   addpath(PathName)
3896   list_transform{ind_coord}=str2func(transform);% create the function handle corresponding to the newly seleced function
3897   set(handles.transform_fct,'UserData',list_transform)
3898   rmpath(PathName)
3899   % save the new menu in the personal file 'uvmat_perso.mat'
3900   dir_perso=prefdir;%personal Matalb directory
3901   profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
3902   if exist(profil_perso,'file')
3903       nb_builtin=UvData.OpenParam.NbBuiltin;
3904       for ilist=nb_builtin+1:numel(list_transform)
3905           ff=functions(list_transform{ilist});
3906           transform_fct{ilist-nb_builtin}=ff.file;
3907       end
3908        save (profil_perso,'transform_fct','-append'); %store the root name for future opening of uvmat
3909   end   
3910end
3911
3912%check the current path to the selected function
3913if isa(list_transform{ind_coord},'function_handle')
3914    func=functions(list_transform{ind_coord});
3915    set(handles.path_transform,'String',fileparts(func.file)); %show the path to the senlected function
3916else
3917    set(handles.path_transform,'String','')
3918end
3919
3920set(handles.FixLimits,'Value',0)
3921set(handles.FixLimits,'BackgroundColor',[0.7 0.7 0.7])
3922
3923%delete drawn objects
3924hother=findobj('Tag','proj_object');%find all the proj objects
3925for iobj=1:length(hother)
3926    delete_object(hother(iobj))
3927end
3928hother=findobj('Tag','DeformPoint');%find all the proj objects
3929for iobj=1:length(hother)
3930    delete_object(hother(iobj))
3931end
3932hh=findobj('Tag','calib_points');
3933if ~isempty(hh)
3934    delete(hh)
3935end
3936hhh=findobj('Tag','calib_marker');
3937if ~isempty(hhh)
3938    delete(hhh)
3939end
3940if isfield(UvData,'Object')
3941     UvData.Object=UvData.Object(1);
3942end
3943list_object=get(handles.list_object_1,'String');
3944set(handles.list_object_1,'Value',1)
3945set(handles.list_object_1,'String',list_object(1))
3946set(handles.list_object_2,'Value',2)
3947set(handles.list_object_2,'String',[list_object(1);{'...'}])
3948list_object_2_Callback(hObject, eventdata, handles)
3949
3950%delete mask if it is displayed
3951if isequal(get(handles.mask_test,'Value'),1)%if the mask option is on
3952   UvData=rmfield(UvData,'MaskName'); %will impose mask refresh 
3953end
3954set(handles.uvmat,'UserData',UvData)
3955run0_Callback(hObject, eventdata, handles)
3956
3957%--------------------------------------------
3958function histo1_menu_Callback(hObject, eventdata, handles)
3959%--------------------------------------------
3960%plot first histo
3961huvmat=get(handles.histo1_menu,'parent');
3962histo_menu=get(handles.histo1_menu,'String');
3963histo_value=get(handles.histo1_menu,'Value');
3964FieldName=histo_menu{histo_value};
3965update_histo(handles.histo_u,huvmat,FieldName)
3966
3967%----------------------------------------------
3968function histo2_menu_Callback(hObject, eventdata, handles)
3969%----------------------------------------------
3970%plot second histo
3971huvmat=get(handles.histo2_menu,'parent');
3972histo_menu=get(handles.histo2_menu,'String');
3973histo_value=get(handles.histo2_menu,'Value');
3974FieldName=histo_menu{histo_value};
3975update_histo(handles.histo_v,huvmat,FieldName)
3976
3977
3978%--------------------------------------------
3979%read the field .Fieldname stored in UvData and plot its histogram
3980function update_histo(haxes,huvmat,FieldName)
3981UvData=get(huvmat,'UserData');
3982if ~isfield(UvData.Field,FieldName)
3983    msgbox_uvmat('ERROR',['no field  ' FieldName ' for histogram'])
3984    return
3985end
3986Field=UvData.Field;
3987FieldHisto=eval(['Field.' FieldName]);
3988if isfield(Field,'FF') && ~isempty(Field.FF) && isequal(size(Field.FF),size(FieldHisto))
3989    indsel=find(Field.FF==0);%find values marked as false
3990    if ~isempty(indsel)
3991        FieldHisto=FieldHisto(indsel);
3992    end
3993end
3994if isempty(Field)
3995    msgbox_uvmat('ERROR',['empty field ' FieldName])
3996else
3997    nxy=size(FieldHisto);
3998    Amin=double(min(min(min(FieldHisto))));%min of image
3999    Amax=double(max(max(max(FieldHisto))));%max of image
4000    if isequal(Amin,Amax)
4001        msgbox_uvmat('WARNING',['uniform field =' num2str(Amin)]);
4002    else
4003        Histo.ListVarName={FieldName,'histo'};
4004        if isequal(Field.NbDim,3)
4005            Histo.VarDimName={FieldName,FieldName}; %dimensions for the histogram
4006        else
4007            if numel(nxy)==2
4008                Histo.VarDimName={FieldName,FieldName}; %dimensions for the histogram
4009            else
4010                Histo.VarDimName={FieldName,{FieldName,'rgb'}}; %dimensions for the histogram
4011            end
4012        end
4013        %unit
4014        units=[]; %default
4015        for ivar=1:numel(Field.ListVarName)
4016            if strcmp(Field.ListVarName{ivar},FieldName)
4017                if isfield(Field,'VarAttribute') && numel(Field.VarAttribute)>=ivar && isfield(Field.VarAttribute{ivar},'units')
4018                    units=Field.VarAttribute{ivar}.units;
4019                    break
4020                end
4021            end
4022        end
4023        if ~isempty(units)
4024            Histo.VarAttribute{1}.units=units;
4025        end
4026        eval(['Histo.' FieldName '=linspace(Amin,Amax,50);'])%absissa values for histo
4027        if isequal(Field.NbDim,3)
4028            C=reshape(double(FieldHisto),1,[]);% reshape in a vector
4029            eval(['Histo.histo(:,1)=hist(C, Histo.' FieldName ');']);  %calculate histogram
4030        else
4031            for col=1:size(FieldHisto,3)
4032                B=FieldHisto(:,:,col);
4033                C=reshape(double(B),1,nxy(1)*nxy(2));% reshape in a vector
4034                eval(['Histo.histo(:,col)=hist(C, Histo.' FieldName ');']);  %calculate histogram
4035            end
4036        end
4037%         set(haxes,'XLimMode','auto')%reset auto mode (after zoom effect)
4038%         set(haxes,'YLimMode','auto')
4039%         PlotParam.Auto_xy=1;
4040        plot_field(Histo,haxes);
4041    end
4042end
4043
4044%------------------------------------------------
4045%CALLBACKS FOR PLOTTING PARAMETERS
4046%-------------------------------------------------
4047
4048%------------------------------------------------------------------------
4049function MinX_Callback(hObject, eventdata, handles)
4050%------------------------------------------------------------------------
4051set(handles.FixLimits,'Value',1) %suppress auto mode
4052set(handles.FixLimits,'BackgroundColor',[1 1 0])
4053update_plot(handles);
4054
4055%------------------------------------------------------------------------
4056function MaxX_Callback(hObject, eventdata, handles)
4057%------------------------------------------------------------------------
4058set(handles.FixLimits,'Value',1) %suppress auto mode
4059set(handles.FixLimits,'BackgroundColor',[1 1 0])
4060update_plot(handles);
4061
4062%------------------------------------------------------------------------
4063function MinY_Callback(hObject, eventdata, handles)
4064%------------------------------------------
4065set(handles.FixLimits,'Value',1) %suppress auto mode
4066set(handles.FixLimits,'BackgroundColor',[1 1 0])
4067update_plot(handles);
4068
4069%------------------------------------------------------------------------
4070function MaxY_Callback(hObject, eventdata, handles)
4071%------------------------------------------------------------------------
4072set(handles.FixLimits,'Value',1) %suppress auto mode
4073set(handles.FixLimits,'BackgroundColor',[1 1 0])
4074update_plot(handles);
4075
4076%------------------------------------------------------------------------
4077function MinA_Callback(hObject, eventdata, handles)
4078%------------------------------------------
4079set(handles.FixScal,'Value',1) %suppress auto mode
4080set(handles.FixScal,'BackgroundColor',[1 1 0])
4081update_plot(handles);
4082
4083%------------------------------------------------------------------------
4084function MaxA_Callback(hObject, eventdata, handles)
4085%------------------------------------------------------------------------
4086set(handles.FixScal,'Value',1) %suppress auto mode
4087set(handles.FixScal,'BackgroundColor',[1 1 0])
4088update_plot(handles);
4089
4090%------------------------------------------------------------------------
4091function FixScal_Callback(hObject, eventdata, handles)
4092%------------------------------------------------------------------------
4093test=get(handles.FixScal,'Value');
4094if test
4095    set(handles.FixScal,'BackgroundColor',[1 1 0])
4096else
4097    set(handles.FixScal,'BackgroundColor',[0.7 0.7 0.7])
4098    update_plot(handles);
4099end
4100
4101%-------------------------------------------------------------------
4102function BW_Callback(hObject, eventdata, handles)
4103%-------------------------------------------------------------------
4104update_plot(handles);
4105
4106%-------------------------------------------------------------------
4107function Contours_Callback(hObject, eventdata, handles)
4108%-------------------------------------------------------------------
4109val=get(handles.Contours,'Value');
4110if val==2
4111    set(handles.interval_txt,'Visible','on')
4112    set(handles.IncrA,'Visible','on')
4113else
4114    set(handles.interval_txt,'Visible','off')
4115    set(handles.IncrA,'Visible','off')
4116end
4117update_plot(handles);
4118
4119%-------------------------------------------------------------------
4120function IncrA_Callback(hObject, eventdata, handles)
4121%-------------------------------------------------------------------
4122update_plot(handles);
4123
4124%-------------------------------------------------------------------
4125function HideWarning_Callback(hObject, eventdata, handles)
4126%-------------------------------------------------------------------
4127update_plot(handles);
4128
4129%-------------------------------------------------------------------
4130function HideFalse_Callback(hObject, eventdata, handles)
4131%-------------------------------------------------------------------
4132update_plot(handles);
4133
4134%-------------------------------------------------------------------
4135function VecScale_Callback(hObject, eventdata, handles)
4136%-------------------------------------------------------------------
4137set(handles.FixVec,'Value',1);
4138set(handles.FixVec,'BackgroundColor',[1 1 0])
4139update_plot(handles);
4140
4141%-------------------------------------------------------------------
4142function FixVec_Callback(hObject, eventdata, handles)
4143%-------------------------------------------------------------------
4144test=get(handles.FixVec,'Value');
4145if test
4146    set(handles.FixVec,'BackgroundColor',[1 1 0])
4147else
4148    update_plot(handles);
4149    %set(handles.VecScale,'String',num2str(ScalOut.VecScale,3))
4150    set(handles.FixVec,'BackgroundColor',[0.7 0.7 0.7])
4151end
4152
4153%------------------------------------------------------------------------
4154% --- Executes on selection change in decimate4 (nb_vec/4).
4155function decimate4_Callback(hObject, eventdata, handles)
4156%------------------------------------------------------------------------
4157update_plot(handles);
4158
4159%------------------------------------------------------------------------
4160% --- Executes on selection change in color_code menu
4161function color_code_Callback(hObject, eventdata, handles)
4162%------------------------------------------------------------------------
4163set_vec_col_bar(handles)
4164update_plot(handles);
4165
4166%------------------------------------------------------------------------
4167% --- Executes on button press in AutoVecColor.
4168function AutoVecColor_Callback(hObject, eventdata, handles)
4169%------------------------------------------------------------------------
4170test=get(handles.AutoVecColor,'Value');
4171if test
4172    set(handles.AutoVecColor,'BackgroundColor',[1 1 0])
4173else
4174    update_plot(handles);
4175    %set(handles.VecScale,'String',num2str(ScalOut.VecScale,3))
4176    set(handles.AutoVecColor,'BackgroundColor',[0.7 0.7 0.7])
4177end
4178
4179%------------------------------------------------------------------------
4180% --- Executes on selection change in max_vec.
4181function min_vec_Callback(hObject, eventdata, handles)
4182%------------------------------------------------------------------------
4183max_vec_Callback(hObject, eventdata, handles)
4184
4185%------------------------------------------------------------------------
4186% --- Executes on selection change in max_vec.
4187function max_vec_Callback(hObject, eventdata, handles)
4188%------------------------------------------------------------------------
4189set(handles.AutoVecColor,'Value',1)
4190AutoVecColor_Callback(hObject, eventdata, handles)
4191min_val=str2num(get(handles.min_vec,'String'));
4192max_val=str2num(get(handles.max_vec,'String'));
4193slider1=get(handles.slider1,'Value');
4194slider2=get(handles.slider2,'Value');
4195colcode1=min_val+(max_val-min_val)*slider1;
4196colcode2=min_val+(max_val-min_val)*slider2;
4197set(handles.colcode1,'String',num2str(colcode1))
4198set(handles.colcode2,'String',num2str(colcode2))
4199update_plot(handles);
4200
4201%------------------------------------------------------------------------
4202% --- update the display of color code for vectors
4203function set_vec_col_bar(handles)
4204%------------------------------------------------------------------------
4205%get the image of the color display button 'vec_col_bar' in pixels
4206set(handles.vec_col_bar,'Unit','pixel');
4207pos_vert=get(handles.vec_col_bar,'Position');
4208set(handles.vec_col_bar,'Unit','Normalized');
4209width=ceil(pos_vert(3));
4210height=ceil(pos_vert(4));
4211
4212%get slider indications
4213list=get(handles.color_code,'String');
4214ichoice=get(handles.color_code,'Value');
4215colcode.ColorCode=list{ichoice};
4216colcode.MinC=str2num(get(handles.min_vec,'String'));
4217colcode.MaxC=str2num(get(handles.max_vec,'String'));
4218test3color=strcmp(colcode.ColorCode,'rgb') || strcmp(colcode.ColorCode,'bgr');
4219if test3color
4220    colcode.colcode1=str2num(get(handles.colcode1,'String'));
4221    colcode.colcode2=str2num(get(handles.colcode2,'String'));
4222end
4223colcode.FixedCbounds=0;
4224colcode.FixedCbounds=1;
4225vec_C=colcode.MinC+(colcode.MaxC-colcode.MinC)*(0.5:width-0.5)/width;%sample of vec_C values from min to max
4226[colorlist,col_vec]=set_col_vec(colcode,vec_C);
4227oneheight=ones(1,height);
4228A1=colorlist(col_vec,1)*oneheight;
4229A2=colorlist(col_vec,2)*oneheight;
4230A3=colorlist(col_vec,3)*oneheight;
4231A(:,:,1)=A1';
4232A(:,:,2)=A2';
4233A(:,:,3)=A3';
4234set(handles.vec_col_bar,'Cdata',A)
4235
4236
4237%-------------------------------------------------------------------
4238function update_plot(handles)
4239%-------------------------------------------------------------------
4240haxes= handles.axes3;
4241UvData=get(handles.uvmat,'UserData');
4242AxeData=UvData.axes3;
4243PlotParam=read_plot_param(handles);
4244[PP,PlotParamOut]= plot_field(AxeData,haxes,PlotParam);
4245write_plot_param(handles,PlotParamOut); %update the auto plot parameters
4246
4247%-------------------------------------------------------------------
4248% --- Executes on button press in grid.
4249function grid_Callback(hObject, eventdata, handles)
4250
4251
4252%-------------------------------------------------------------------
4253% --- Executes on selection change in edit_object.
4254function edit_object_Callback(hObject, eventdata, handles)
4255%-------------------------------------------------------------------
4256UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
4257test=get(handles.edit_object,'Value');
4258if test
4259    set(handles.edit_object,'BackgroundColor',[1,1,0]) 
4260    %suppress the other options
4261    set(handles.zoom,'Value',0)
4262    zoom_Callback(hObject, eventdata, handles)
4263    hgeometry_calib=findobj(allchild(0),'tag','geometry_calib');
4264    if ishandle(hgeometry_calib)
4265        hhgeometry_calib=guidata(hgeometry_calib);
4266        set(hhgeometry_calib.edit_append,'Value',0)% desactivate mouse action in geometry_calib
4267        set(hhgeometry_calib.edit_append,'BackgroundColor',[0.7 0.7 0.7])
4268    end
4269else
4270    UvData.MouseAction='none';
4271    set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7])   
4272    hset_object=findobj(allchild(0),'tag','set_object');% look for the set_object GUI
4273    if ~isempty(hset_object)
4274        delete(hset_object)% delete the current GUI set_object
4275    end
4276end
4277set(handles.uvmat,'UserData',UvData);
4278hset_object=findobj(allchild(0),'Tag','set_object');
4279if ~isempty(hset_object)
4280    hhset_object=guidata(hset_object);
4281    if test
4282        set(hhset_object.PLOT,'enable','on');
4283    else
4284       set(hhset_object.PLOT,'enable','off');
4285    end
4286end
4287
4288%------------------------------------------------------------------------
4289% --- Executes on selection change in list_object_1.
4290function list_object_1_Callback(hObject, eventdata, handles)
4291%------------------------------------------------------------------------
4292list_str=get(handles.list_object_1,'String');
4293IndexObj=get(handles.list_object_1,'Value');
4294str_1=list_str{IndexObj};
4295val_2=get(handles.list_object_2,'Value');
4296str_2=get(handles.list_object_2,'String');
4297if isequal(val_2,IndexObj)% if the first selection is equal to the second, it will suppress the second
4298    set(handles.list_object_2,'Value',numel(str_2))%select the end of the list ('...')
4299    list_object_2_Callback(hObject, eventdata, handles)
4300end
4301update_object(handles,IndexObj,1,str_1)
4302
4303%------------------------------------------------------------------------
4304% --- Executes on selection change in list_object_1.
4305function list_object_2_Callback(hObject, eventdata, handles)
4306%------------------------------------------------------------------------
4307list_str=get(handles.list_object_2,'String');
4308IndexObj=get(handles.list_object_2,'Value');
4309if ischar(list_str) || strcmp(list_str{IndexObj},'...')
4310    hview_field=findobj(allchild(0),'Tag','view_field');
4311    if ~isempty(hview_field)
4312        delete(hview_field)
4313    end
4314    hset_object=findobj(allchild(0),'Tag','set_object');
4315    if ~isempty(hset_object)
4316        delete(hset_object)
4317    end
4318else
4319    update_object(handles,IndexObj,2,list_str{IndexObj})
4320end
4321
4322%------------------------------------------------------------------------
4323function update_object(handles,IndexObj,option,ObjectName)
4324%------------------------------------------------------------------------
4325UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
4326if numel(UvData.Object)<IndexObj;
4327    return
4328end
4329ObjectData=UvData.Object{IndexObj};
4330ObjectData.Name=ObjectName;
4331if isequal(get(handles.edit_object,'Value'),1)
4332    ObjectData.enable_plot=1; % desable the PLOT option in the set_object GUI (editing mode
4333end
4334ZBounds=0; % default
4335if isfield(UvData.Field,'ZMin') && isfield(UvData.Field,'ZMax')
4336    ZBounds(1)=UvData.Field.ZMin; %minimum for the Z slider
4337    ZBounds(2)=UvData.Field.ZMax;%maximum for the Z slider
4338end
4339hset_object=findobj(allchild(0),'tag','set_object');
4340if ~isempty(hset_object)
4341    delete(hset_object)% delete existing version of set_object
4342end
4343edit_test=get(handles.edit_object,'Value');
4344if edit_test
4345    ObjectData.enable_plot=1;
4346else
4347    if isfield(ObjectData,'enable_plot')
4348        ObjectData=rmfield(ObjectData,'enable_plot');
4349    end
4350end
4351hset_object=set_object(ObjectData,[],ZBounds);% call the set_object interface,
4352
4353% %project the current field on the object and plot it
4354ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData
4355if option==1%length(UvData.Object)>= IndexObj && isfield(UvData.Object{IndexObj},'plotaxes')&& ishandle(UvData.Object{IndexObj}.plotaxes)
4356    PlotHandles=handles;
4357else
4358    hview_field=findobj(allchild(0),'tag','view_field');
4359    if isempty(hview_field)
4360        hview_field=view_field;
4361    end
4362    PlotHandles=guidata(hview_field);
4363end
4364plot_field(ProjData,PlotHandles.axes3,PlotHandles);
4365set(handles.uvmat,'UserData',UvData)
4366hother=findobj('Tag','proj_object');%find all the proj objects
4367for iobj=1:length(hother)
4368    if isequal(get(hother(iobj),'Type'),'rectangle')||isequal(get(hother(iobj),'Type'),'patch')
4369        set(hother(iobj),'EdgeColor','b')
4370        if isequal(get(hother(iobj),'FaceColor'),'m')
4371            set(hother(iobj),'FaceColor','b')
4372        end
4373    elseif isequal(get(hother(iobj),'Type'),'image')
4374        Acolor=get(hother(iobj),'CData');
4375        Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2));
4376        set(hother(iobj),'CData',Acolor);
4377    else
4378        set(hother(iobj),'Color','b')
4379    end
4380    set(hother(iobj),'Selected','off')
4381end
4382hother=findobj('Tag','DeformPoint');
4383set(hother,'Color','b');
4384set(hother,'Selected','off')
4385if isfield(ObjectData,'DisplayHandle_uvmat')
4386    if ishandle(ObjectData.DisplayHandle_uvmat)
4387        uistack(ObjectData.DisplayHandle_uvmat,'top')
4388        linetype=get(ObjectData.DisplayHandle_uvmat,'Type');
4389        if isequal(linetype,'line')
4390            set(ObjectData.DisplayHandle_uvmat,'Color','m'); %set the selected object to magenta color
4391        elseif isequal(linetype,'rectangle')
4392            set(ObjectData.DisplayHandle_uvmat,'EdgeColor','m'); %set the selected object to magenta color
4393        elseif isequal(linetype,'patch')
4394            set(ObjectData.DisplayHandle_uvmat,'FaceColor','m'); %set the selected object to magenta color
4395        end
4396        SubObjectData=get(ObjectData.DisplayHandle_uvmat,'UserData');
4397        if isfield(SubObjectData,'SubObject') & ishandle(SubObjectData.SubObject)
4398            uistack(SubObjectData.SubObject,'top')
4399            for iobj=1:length(SubObjectData.SubObject)
4400                hsub=SubObjectData.SubObject(iobj);
4401                if isequal(get(hsub,'Type'),'rectangle')
4402                    set(hsub,'EdgeColor','m'); %set the selected object to magenta color
4403                elseif isequal(get(hsub,'Type'),'image')
4404                    Acolor=get(hsub,'CData');
4405                    Acolor(:,:,1)=Acolor(:,:,3);
4406                    set(hsub,'CData',Acolor);
4407                else
4408                    set(hsub,'Color','m')
4409                end
4410            end
4411        end
4412        if isfield(SubObjectData,'DeformPoint') & ishandle(SubObjectData.DeformPoint)
4413            set(SubObjectData.DeformPoint,'Color','m')
4414        end
4415    end
4416    %     end
4417end
4418% pause(0.1)
4419figure(hset_object)%put set_object in front
4420
4421%------------------------------------------------------
4422% --- Executes on button press in Menu/Export/field in workspace.
4423%------------------------------------------------------
4424function MenuExportField_Callback(hObject, eventdata, handles)
4425global Data_uvmat
4426Data_uvmat=get(handles.uvmat,'UserData');
4427evalin('base','global Data_uvmat')%make CurData global in the workspace
4428display('current field :')
4429evalin('base','Data_uvmat') %display CurData in the workspace
4430commandwindow; %brings the Matlab command window to the front
4431
4432%------------------------------------------------------
4433% --- Executes on button press in Menu/Export/extract figure.
4434%------------------------------------------------------
4435function MenuExport_plot_Callback(hObject, eventdata, handles)
4436huvmat=get(handles.MenuExport_plot,'parent');
4437UvData=get(huvmat,'UserData');
4438hfig=figure;
4439newaxes=copyobj(handles.axes3,hfig);
4440map=colormap(handles.axes3);
4441colormap(map);%transmit the current colormap to the zoom fig
4442colorbar
4443
4444
4445% --------------------------------------------------------------------
4446function Insert_Callback(hObject, eventdata, handles)
4447
4448
4449% --------------------------------------------------------------------
4450function MenuHelp_Callback(hObject, eventdata, handles)
4451% --------------------------------------------------------------------
4452path_to_uvmat=which ('uvmat');% check the path of uvmat
4453pathelp=fileparts(path_to_uvmat);
4454helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
4455if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package')
4456else
4457    addpath (fullfile(pathelp,'uvmat_doc'))
4458    web(helpfile);
4459end
4460
4461%------------------------------------------------------------------------
4462% --------------------------------------------------------------------
4463function MenuExportMovie_Callback(hObject, eventdata, handles)
4464% --------------------------------------------------------------------
4465set(handles.MenuExportMovie,'BusyAction','queue')% activate the button
4466huvmat=get(handles.run0,'parent');
4467UvData=get(huvmat,'UserData');
4468[xx,xx,FileBase]=read_file_boxes(handles);
4469 %read the current input file name
4470prompt = {'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)'};
4471dlg_title = 'select properties of the output avi movie';
4472num_lines= 1;
4473% nbfield_cell=get(handles.last_i,'String');
4474def     = {[FileBase '_out.avi'];'10';'1';'[0.03 0.05 0.95 0.92]';'10'};
4475answer = inputdlg(prompt,dlg_title,num_lines,def,'on');
4476aviname=answer{1};
4477fps=str2double(answer{2});
4478% check for existing file with output name aviname
4479if exist(aviname,'file')
4480    backup=aviname;
4481    testexist=2;
4482    while testexist==2
4483        backup=[backup '~'];
4484        testexist=exist(backup,'file');     
4485    end
4486    [success,message]=copyfile(aviname,backup);%make backup of the existing file
4487    if isequal(success,1)
4488        delete(aviname)%delete existing file
4489    else
4490        msgbox_uvmat('ERROR',message)
4491        return
4492    end
4493end
4494%create avi open
4495aviobj=avifile(aviname,'Compression','None','fps',fps);
4496
4497%display first view for tests
4498newfig=figure;
4499newaxes=copyobj(handles.axes3,newfig);%new plotting axes in the new figure
4500set(newaxes,'Tag','movieaxes')
4501nbpix=[512 384]*str2double(answer{3});
4502set(gcf,'Position',[1 1 nbpix])% resolution XVGA
4503set(newaxes,'Position',eval(answer{4}));
4504map=colormap(handles.axes3);
4505colormap(map);%transmit the current colormap to the zoom fig
4506msgbox_uvmat('INPUT_Y-N',{['adjust figure ' num2str(newfig) ' with its matlab edit menu '] ;...
4507        ['then press OK to get the avi movie as a copy of figure ' num2str(newfig) ' display']});
4508UvData.plotaxes=newaxes;% the axis in the new figure becomes the current main plotting axes
4509set(huvmat,'UserData',UvData);
4510increment=str2double(get(handles.increment_scan,'String')); %get the field increment d
4511if isnan(increment)
4512    set(handles.increment_scan,'String','1')%default value
4513    increment=1;
4514end
4515set(handles.STOP,'Visible','on')
4516set(handles.speed,'Visible','on')
4517set(handles.speed_txt,'Visible','on')
4518set(handles.Movie,'BusyAction','queue')
4519
4520%imin=str2double(get(handles.i1,'String'));
4521imax=str2double(answer{5});
4522% if isfield(UvData,'Time')
4523htitle=get(newaxes,'Title');
4524xlim=get(newaxes,'XLim');
4525ylim=get(newaxes,'YLim');
4526set(htitle,'Position',[xlim(2)+0.07*(xlim(2)-xlim(1)) ylim(2)-0.05*(ylim(2)-ylim(1)) 0])
4527time_str=get(handles.abs_time,'String');
4528set(htitle,'String',['t=' time_str])
4529set(handles.speed,'Value',1)
4530for i=1:imax
4531    if get(handles.speed,'Value')~=0 && isequal(get(handles.MenuExportMovie,'BusyAction'),'queue') % enable STOP command
4532            runpm(hObject,eventdata,handles,increment)% run plus
4533            drawnow
4534            time_str=get(handles.abs_time,'String');
4535            if ishandle(htitle)
4536             set(htitle,'String',['t=' time_str])
4537            end
4538            mov=getframe(newfig);
4539            aviobj=addframe(aviobj,mov);
4540    end
4541end
4542aviobj=close(aviobj);
4543UvData=rmfield(UvData,'plotaxes');
4544%UvData.Object{1}.plotaxes=handles.axes3;
4545set(huvmat,'UserData',UvData);
4546msgbox_uvmat('CONFIRMATION',{['movie ' aviname ' created '];['with ' num2str(imax) ' frames']})
4547
4548%------------------------------------------------------------------------
4549function MenuCalib_Callback(hObject, eventdata, handles)
4550%------------------------------------------------------------------------
4551
4552UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
4553
4554%suppress competing options
4555set(handles.zoom,'Value',0)
4556set(handles.zoom,'BackgroundColor',[0.7 0.7 0.7])
4557set(handles.list_object_1,'Value',1)     
4558% initiate display of GUI geometry_calib
4559data=[]; %default
4560if isfield(UvData,'CoordType')
4561    data.CoordType=UvData.CoordType;
4562end
4563pos=get(handles.uvmat,'Position');
4564pos(1)=pos(1)+pos(3)-0.311+0.04; %0.311= width of the geometry_calib interface (units relative to the srcreen)
4565pos(2)=pos(2)-0.02;
4566[FileName,RootPath,FileBase,FileIndices,FileExt,SubDir]=read_file_boxes(handles);
4567set(handles.view_xml,'Backgroundcolor',[1 1 0])%indicate the reading of the current xml file by geometry_calib
4568if isfield(UvData.OpenParam,'CalOrigin')
4569    pos_uvmat=get(handles.uvmat,'Position');
4570    pos_cal(1)=pos_uvmat(1)+UvData.OpenParam.CalOrigin(1)*pos_uvmat(3);
4571    pos_cal(2)=pos_uvmat(2)+UvData.OpenParam.CalOrigin(2)*pos_uvmat(4);
4572    pos_cal(3:4)=UvData.OpenParam.CalSize .* pos_uvmat(3:4);
4573end
4574geometry_calib(FileName,pos_cal);% call the geometry_calib interface   
4575set(handles.view_xml,'Backgroundcolor',[1 1 1])%indicate the end of reading of the current xml file by geometry_calib
4576set(handles.MenuCalib,'checked','on')% indicate that MenuCalib is activated, test used by mouse action
4577
4578%------------------------------------------------------------------------
4579function MenuMask_Callback(hObject, eventdata, handles)
4580%------------------------------------------------------------------------
4581UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
4582ListObj=UvData.Object;
4583select=zeros(1,numel(ListObj));
4584for iobj=1:numel(ListObj);
4585    if strcmp(ListObj{iobj}.ProjMode,'mask_inside')||strcmp(ListObj{iobj}.ProjMode,'mask_outside')
4586        select(iobj)=1;
4587    end
4588end
4589val=find(select);
4590if isempty(val)
4591    msgbox_uvmat('ERROR','polygons must be first created by Projection object/mask polygon in the menu bar');
4592    return
4593else
4594    set(handles.list_object_1,'Max',2);%allow multiple selection
4595    set(handles.list_object_1,'Value',val);
4596    flag=1;
4597    npx=size(UvData.Field.A,2);
4598    npy=size(UvData.Field.A,1);
4599    xi=0.5:npx-0.5;
4600    yi=0.5:npy-0.5;
4601    [Xi,Yi]=meshgrid(xi,yi);
4602    if isfield(UvData,'Object')
4603        for iobj=1:length(UvData.Object)
4604            ObjectData=UvData.Object{iobj};
4605            if isfield(ObjectData,'ProjMode') &&(isequal(ObjectData.ProjMode,'mask_inside')||isequal(ObjectData.ProjMode,'mask_outside'));
4606                flagobj=1;
4607                testphys=0; %coordinates in pixels by default
4608                if isfield(ObjectData,'CoordUnit') && ~isequal(ObjectData.CoordUnit,'pixel')
4609                    if isfield(UvData,'XmlData')&& isfield(UvData.XmlData,'GeometryCalib')
4610                        Calib=UvData.XmlData.GeometryCalib;
4611                        testphys=1;
4612                    end
4613                end
4614                if isfield(ObjectData,'Coord')& isfield(ObjectData,'Style')
4615                    if isequal(ObjectData.Style,'polygon')
4616                        X=ObjectData.Coord(:,1);
4617                        Y=ObjectData.Coord(:,2);
4618                        if testphys
4619                            [X,Y]=px_XYZ(Calib,X,Y,0);% to generalise with 3D cases
4620                        end
4621                        flagobj=~inpolygon(Xi,Yi,X',Y');%=0 inside the polygon, 1 outside
4622                    elseif isequal(ObjectData.Style,'ellipse')
4623                        if testphys
4624                            %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys
4625                        end
4626                        RangeX=max(ObjectData.RangeX);
4627                        RangeY=max(ObjectData.RangeY);
4628                        X2Max=RangeX*RangeX;
4629                        Y2Max=RangeY*RangeY;
4630                        distX=(Xi-ObjectData.Coord(1,1));
4631                        distY=(Yi-ObjectData.Coord(1,2));
4632                        flagobj=(distX.*distX/X2Max+distY.*distY/Y2Max)>1;
4633                    elseif isequal(ObjectData.Style,'rectangle')
4634                        if testphys
4635                            %[X,Y]=px_XYZ(Calib,X,Y,0);% TODO:create a polygon boundary and transform to phys
4636                        end
4637                        distX=abs(Xi-ObjectData.Coord(1,1));
4638                        distY=abs(Yi-ObjectData.Coord(1,2));
4639                        flagobj=distX>max(ObjectData.RangeX) | distY>max(ObjectData.RangeY);
4640                    end
4641                    if isequal(ObjectData.ProjMode,'mask_outside')
4642                        flagobj=~flagobj;
4643                    end
4644                    flag=flag & flagobj;
4645                end
4646            end
4647        end
4648    end
4649   
4650    %mask name
4651    RootPath=get(handles.RootPath,'String');
4652    RootFile=get(handles.RootFile,'String');
4653    if ~isempty(RootFile)&&(isequal(RootFile(1),'/')|| isequal(RootFile(1),'\'))
4654        RootFile(1)=[];
4655    end
4656    filebase=fullfile(RootPath,RootFile);
4657    list=get(handles.masklevel,'String');
4658    masknumber=num2str(length(list));
4659    maskindex=get(handles.masklevel,'Value');
4660    mask_name=name_generator([filebase '_' masknumber 'mask'],maskindex,1,'.png','_i');
4661    imflag=uint8(255*(0.392+0.608*flag));% =100 for flag=0 (vectors not computed when 20<imflag<200)
4662    imflag=flipdim(imflag,1);
4663
4664    %display the mask
4665    figure;
4666    vec=linspace(0,1,256);%define a linear greyscale colormap
4667    map=[vec' vec' vec'];
4668    colormap(map)
4669    image(imflag);
4670    answer=msgbox_uvmat('INPUT_TXT','mask file name:', mask_name);
4671    if ~strcmp(answer,'Cancel')
4672        mask_dir=fileparts(answer);
4673        if ~exist(mask_dir,'dir')
4674            msgbox_uvmat('ERROR',['directory ' mask_dir ' does not exist'])
4675            return
4676        end
4677        imwrite(imflag,answer,'BitDepth',8);
4678    end
4679    set(handles.list_object_1,'Value',1)
4680    set(handles.list_object_1,'Max',1)
4681end
4682
4683%------------------------------------------------------------------------
4684%-- open the GUI set_grid.fig to create grid
4685function MenuGrid_Callback(hObject, eventdata, handles)
4686%------------------------------------------------------------------------
4687%UvData=get(handles.uvmat,'UserData');%read UvData properties stored on the uvmat interface
4688
4689%suppress the other options if grid is chosen
4690set(handles.edit_vect,'Value',0)
4691edit_vect_Callback(hObject, eventdata, handles)
4692set(handles.edit_object,'BackgroundColor',[0.7 0.7 0.7])
4693set(handles.list_object_1,'Value',1)     
4694
4695%prepare display of the set_grid GUI
4696FileName=read_file_boxes(handles);
4697CoordList=get(handles.transform_fct,'String');
4698val=get(handles.transform_fct,'Value');
4699set_grid(FileName,CoordList{val});% call the set_object interface
4700%set(handles.uvmat,'UserData',UvData);
4701
4702%------------------------------------------------------------------------
4703% open the GUI 'series'
4704function MenuSeries_Callback(hObject, eventdata, handles)
4705%------------------------------------------------------------------------
4706series; %first display of the GUI to fill waiting time
4707[param.FileName]=read_file_boxes(handles);
4708if isequal(get(handles.SubField,'Value'),1)
4709    FileName_1=read_file_boxes_1(handles);%
4710    if ~isequal(FileName_1,param.FileName)
4711        param.FileName_1=FileName_1;
4712    end
4713end
4714param.NomType=get(handles.FileIndex,'UserData');
4715param.NomType_1=get(handles.FileIndex_1,'UserData');
4716param.comp_input=get(handles.fix_pair,'Value');
4717huvmat=get(handles.MenuSeries,'parent');
4718UvData=get(huvmat,'UserData');
4719if isfield(UvData,'Time')
4720    param.Time=UvData.XmlData.Time;
4721end
4722if isequal(get(handles.scan_i,'Value'),1)
4723    param.incr_i=str2double(get(handles.increment_scan,'String'));
4724elseif isequal(get(handles.scan_j,'Value'),1)
4725    param.incr_j=str2double(get(handles.increment_scan,'String'));
4726end
4727param.list_fields=get(handles.Fields,'String');% list menu fields
4728param.list_fields(1)=[]; %suppress  'image' option
4729param.index_fields=get(handles.Fields,'Value');% selected string index
4730if param.index_fields>1
4731    param.index_fields=param.index_fields-1;
4732end
4733param.list_fields_1=get(handles.Fields_1,'String');% list menu fields
4734param.list_fields_1(1)=[]; %suppress  'image' option
4735param.index_fields_1=get(handles.Fields_1,'Value')-1;% selected string index
4736if param.index_fields_1>1
4737    param.index_fields_1=param.index_fields_1-1;
4738end
4739param.civ1=get(handles.civ1,'Value');
4740param.civ2=get(handles.civ2,'Value');
4741param.interp1=get(handles.interp1,'Value');
4742param.interp2=get(handles.interp2,'Value');
4743param.filter1=get(handles.filter1,'Value');
4744param.filter2=get(handles.filter2,'Value');
4745param.menu_coord_str=get(handles.transform_fct,'String');
4746param.menu_coord_val=get(handles.transform_fct,'Value');
4747
4748series(param); %run the series interface
4749
4750%------------------------------------------------------------------------
4751% -- open the GUI civ.fig for civx (PIV)
4752function MenuPIV_Callback(hObject, eventdata, handles)
4753%------------------------------------------------------------------------
4754 
4755[FileName,RootPath,filebase,FileIndices,ext,SubDir]=read_file_boxes(handles);
4756num1=stra2num(get(handles.i1,'String'));
4757num2=stra2num(get(handles.i2,'String'));
4758num_a=stra2num(get(handles.j1,'String'));
4759num_b=stra2num(get(handles.j2,'String'));
4760NomType=get(handles.FileIndex,'UserData');
4761ind_opening=1; % default (images): will advice civ1 option by default in the civ interface
4762if isequal(ext,'.nc') ||  isequal(ext,'.cdf')% netcdf files
4763    ind_opening=2;% propose 'fix' as the default option
4764% +read the current netcdf rootfile
4765    Data=nc2struct(FileName,'ListGlobalAttribute','fix','patch','civ2','fix2');
4766    if isfield(Data,'fix') && isequal(Data.fix,1)
4767        ind_opening=3;
4768    end
4769    if isfield(Data,'patch') && isequal(Data.patch,1)
4770        ind_opening=4;
4771    end
4772    if isfield(Data,'civ2') && isequal(Data.civ2,1)
4773        ind_opening=5;
4774    end
4775    if isfield(Data,'fix2') && isequal(Data.fix2,1)
4776        ind_opening=6;
4777    end
4778end     
4779param.RootName=filebase;
4780param.NomType=NomType;
4781param.num1=num1;
4782param.num2=num2;
4783param.num_a=num_a;
4784param.num_b=num_b;
4785param.SubDir=SubDir;
4786param.IndOpening=ind_opening;% A REVOIR +TRANSMETTRE IMADOC INFO
4787param.ImaExt=ext;
4788civ(param);% interface de civ(not in the uvmat file)
4789
4790%------------------------------------------------------------------------
4791function MenuTools_Callback(hObject, eventdata, handles)
4792%------------------------------------------------------------------------
4793
4794%------------------------------------------------------------------------
4795function MenuEditObject_Callback(hObject, eventdata, handles)
4796%------------------------------------------------------------------------
4797set(handles.edit_object,'Value',1)
4798edit_Callback(hObject, eventdata, handles)
4799
4800%------------------------------------------------------------------------
4801function enable_transform(handles,state)
4802%------------------------------------------------------------------------
4803set(handles.transform_fct,'Visible',state)
4804set(handles.TRANSFORM_txt,'Visible',state)   
4805set(handles.transform_fct,'Visible',state) 
4806set(handles.path_transform,'Visible',state)
4807set(handles.pxcmx_txt,'Visible',state)
4808set(handles.pxcmy_txt,'Visible',state)
4809set(handles.pxcm,'Visible',state)
4810set(handles.pycm,'Visible',state)
4811
4812%------------------------------------------------------------------------
4813function MenuEditVectors_Callback(hObject, eventdata, handles)
4814%------------------------------------------------------------------------
4815set(handles.edit_vect,'Visible','on')
4816set(handles.edit_vect,'Value',1)
4817edit_vect_Callback(hObject, eventdata, handles)
4818
4819% -----------------------------------------------------------------------
4820function Menupoints_Callback(hObject, eventdata, handles)
4821%------------------------------------------------------------------------
4822data.Style='points';
4823data.ProjMode='projection';%default
4824create_object(data,handles)
4825
4826% -----------------------------------------------------------------------
4827function Menuline_Callback(hObject, eventdata, handles)
4828%------------------------------------------------------------------------
4829data.Style='line';
4830data.ProjMode='projection';%default
4831create_object(data,handles)
4832
4833%------------------------------------------------------------------------
4834function Menupolyline_Callback(hObject, eventdata, handles)
4835%------------------------------------------------------------------------
4836data.Style='polyline';
4837data.ProjMode='projection';%default
4838create_object(data,handles)
4839
4840%------------------------------------------------------------------------
4841function Menupolygon_Callback(hObject, eventdata, handles)
4842%------------------------------------------------------------------------
4843data.Style='polygon';
4844data.ProjMode='inside';%default
4845create_object(data,handles)
4846
4847%------------------------------------------------------------------------
4848function Menurectangle_Callback(hObject, eventdata, handles)
4849%------------------------------------------------------------------------
4850data.Style='rectangle';
4851data.ProjMode='inside';%default
4852create_object(data,handles)
4853
4854%------------------------------------------------------------------------
4855function Menuellipse_Callback(hObject, eventdata, handles)
4856%------------------------------------------------------------------------
4857data.Style='ellipse';
4858data.ProjMode='inside';%default
4859create_object(data,handles)
4860
4861%------------------------------------------------------------------------
4862function MenuMaskObject_Callback(hObject, eventdata, handles)
4863%------------------------------------------------------------------------
4864data.Style='polygon';
4865data.StyleMenu={'polygon'};
4866data.ProjMode='mask_inside';%default
4867data.ProjMenu={'mask_inside';'mask_outside'};
4868create_object(data,handles)
4869
4870%------------------------------------------------------------------------
4871function Menuplane_Callback(hObject, eventdata, handles)
4872%------------------------------------------------------------------------
4873data.Style='plane';
4874data.ProjMode='projection';%default
4875
4876create_object(data,handles)
4877
4878%------------------------------------------------------------------------
4879function Menuvolume_Callback(hObject, eventdata, handles)
4880%------------------------------------------------------------------------
4881data.Style='volume';
4882data.ProjMode='interp';%default
4883% set(handles.create,'Visible','on')
4884% set(handles.create,'Value',1)
4885% VOLUME_Callback(hObject,eventdata,handles)
4886create_object(data,handles)
4887
4888%------------------------------------------------------------------------
4889function MenuBrowseObject_Callback(hObject, eventdata, handles)
4890%------------------------------------------------------------------------
4891%get the object file
4892[FileName, PathName, filterindex] = uigetfile( ...
4893       {'*.xml;*.mat', ' (*.xml,*.mat)';
4894       '*.xml',  '.xml files '; ...
4895        '*.mat',  '.mat matlab files '}, ...
4896        'Pick an xml Object file',get(handles.RootPath,'String'));
4897fileinput=[PathName FileName];%complete file name
4898% testblank=findstr(fileinput,' ');%look for blanks
4899% if ~isempty(testblank)
4900%     msgbox_uvmat('ERROR','forbidden input file name: contain blanks')
4901%     return
4902% end
4903sizf=size(fileinput);
4904if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end
4905
4906%read the file
4907t=xmltree(fileinput);
4908data=convert(t);
4909data.enable_plot=1;
4910[pp,data.Name]=fileparts(FileName);
4911%PlotHandles=get_plot_handles(handles);%get the handles of the interface elements setting the plotting parameters
4912hset_object=findobj(allchild(0),'tag','set_object');
4913if ~isempty(hset_object)
4914    delete(hset_object)% delete existing version of set_object
4915end
4916% UvData=get(handles.uvmat,'UserData');
4917set_object(data);% call the set_object interface
4918% %position the set_object GUI with respect to uvmat
4919% pos_uvmat=get(handles.uvmat,'Position');
4920% if isfield(UvData,'SetObjectOrigin')
4921%     pos_set_object(1:2)=UvData.SetObjectOrigin + pos_uvmat(1:2);
4922%     pos_set_object(3:4)=UvData.SetObjectSize .* pos_uvmat(3:4);
4923%     set(hset_object,'Position',pos_set_object)
4924% end
4925set(handles.edit_object,'Value',0); %suppress the object edit mode
4926set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) 
4927set(handles.MenuObject,'checked','on')
4928%UvData.MouseAction='create_object';
4929% set(handles.uvmat,'UserData',UvData)
4930set(handles.delete_object,'Visible','on')
4931set(handles.uvmat_title,'Visible','on')
4932set(handles.view_field_title,'Visible','on')
4933
4934%------------------------------------------------------------------------
4935% --- generic function used for the creation of a projection object
4936function create_object(data,handles)
4937%------------------------------------------------------------------------
4938hset_object=findobj(allchild(0),'tag','set_object');
4939if ~isempty(hset_object)
4940    delete(hset_object)% delete existing version of set_object
4941end
4942hgeometry_calib=findobj(allchild(0),'tag','geometry_calib');
4943if ishandle(hgeometry_calib)
4944    hhgeometry_calib=guidata(hgeometry_calib);
4945    set(hhgeometry_calib.edit_append,'Value',0)% desactivate mouse action in geometry_calib
4946    set(hhgeometry_calib.edit_append,'BackgroundColor',[0.7 0.7 0.7])
4947end
4948UvData=get(handles.uvmat,'UserData');
4949set(handles.edit_object,'Value',0); %suppress the object edit mode
4950set(handles.edit_object,'BackgroundColor',[0.7,0.7,0.7]) 
4951data.enable_plot=1;
4952transform_list=get(handles.transform_fct,'String');
4953val=get(handles.transform_fct,'Value');
4954%data.CoordType=transform_list{val};
4955if isfield(UvData,'Field')
4956    Field=UvData.Field;
4957    if isfield(Field,'Mesh')&&~isempty(Field.Mesh)
4958        data.RangeX=Field.Mesh;
4959        data.RangeY=Field.Mesh;
4960        data.DX=Field.Mesh;
4961        data.DY=Field.Mesh;
4962    elseif isfield(Field,'AX')&& isfield(Field,'AY')&& isfield(Field,'A')%only image
4963        np=size(Field.A);
4964        meshx=(Field.AX(end)-Field.AX(1))/np(2);
4965        meshy=abs(Field.AY(end)-Field.AY(1))/np(1);
4966        data.RangeY=max(meshx,meshy);
4967        data.RangeX=max(meshx,meshy);
4968        data.DX=max(meshx,meshy);
4969    end
4970    if isfield(Field,'NbDim')
4971        data.NbDim=Field.NbDim;
4972    end
4973    if isfield(Field,'CoordUnit')
4974        data.CoordUnit=Field.CoordUnit;
4975    end
4976end
4977data.Coord=[0 0 0]; %default
4978if isfield(data,'Style') && isequal(data.Style,'line')
4979    if isfield(data,'DX')
4980        data.Coord=[[0 0 0];[data.DX 0 0]]; %default
4981    else
4982        data.Coord=[[0 0 0];[1 0 0]]; %default
4983    end
4984end
4985if ishandle(handles.UVMAT_title)
4986    delete(handles.UVMAT_title)%delete the initial display of uvmat if no field has been entered
4987end
4988%PlotHandles=get_plot_handles(handles);%get the handles of the interface elements setting the plotting parameters
4989set_object(data,handles);% call the set_object interface
4990set(handles.MenuObject,'checked','on')
4991set(handles.uvmat,'UserData',UvData)
4992set(handles.zoom,'Value',0)
4993zoom_Callback(handles.uvmat, [], handles)
4994set(handles.delete_object,'Visible','on')
4995set(handles.uvmat_title,'Visible','on')
4996set(handles.view_field_title,'Visible','on')
4997
4998%------------------------------------------------------------------------
4999function MenuRuler_Callback(hObject, eventdata, handles)
5000%------------------------------------------------------------------------
5001set(handles.zoom,'Value',0)
5002zoom_Callback(handles.uvmat, [], handles)
5003set(handles.MenuRuler,'checked','on')
5004UvData=get(handles.uvmat,'UserData');
5005UvData.MouseAction='ruler';
5006set(handles.uvmat,'UserData',UvData);
5007
5008%------------------------------------------------------------------------
5009% --- executed when closing: set the parent interface button to value 0
5010function closefcn(gcbo,eventdata)
5011%------------------------------------------------------------------------
5012%delete all the associated figures if exist
5013hh=findobj(allchild(0),'tag','view_field');
5014if ~isempty(hh)
5015    delete(hh)
5016end
5017hh=findobj(allchild(0),'tag','geometry_calib');
5018if ~isempty(hh)
5019    delete(hh)
5020end
5021hh=findobj(allchild(0),'tag','set_object');
5022if ~isempty(hh)
5023    hhh=findobj(hh,'tag','PLOT');
5024    set(hhh,'enable','off')
5025end
5026
5027%------------------------------------------------------------------------
5028% --- Executes on button press in delete_object.
5029function delete_object_Callback(hObject, eventdata, handles)
5030%------------------------------------------------------------------------
5031IndexObj=get(handles.list_object_2,'Value');
5032if IndexObj>1
5033    delete_object(IndexObj)
5034end
5035
5036
Note: See TracBrowser for help on using the repository browser.