source: trunk/src/civ.m @ 135

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

supercmd compatible with windows also

File size: 181.5 KB
Line 
1%'civ': function associated with the interface 'civ.fig' for PIV, spline interpolation and stereo PIV (patch)
2%------------------------------------------------------------------------
3%  provides an interface for the software CIVx
4% function varargout = civ(varargin)
5% provides an interface for the software CIVx
6%
7%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
8%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
9%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
10%     This file is part of the toolbox UVMAT.
11%
12%     UVMAT is free software; you can redistribute it and/or modify
13%     it under the terms of the GNU General Public License as published by
14%     the Free Software Foundation; either version 2 of the License, or
15%     (at your option) any later version.
16%
17%     UVMAT is distributed in the hope that it will be useful,
18%     but WITHOUT ANY WARRANTY; without even the implied warranty of
19%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20%     GNU General Public License (file UVMAT/COPYING.txt) for more details.
21%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
22function varargout = civ(varargin)
23
24% Last Modified by GUIDE v2.5 27-Mar-2010 13:41:11
25% Begin initialization code - DO NOT EDIT
26gui_Singleton = 1;
27gui_State = struct('gui_Name',       mfilename, ...
28    'gui_Singleton',  gui_Singleton, ...
29    'gui_OpeningFcn', @civ_OpeningFcn, ...
30    'gui_OutputFcn',  @civ_OutputFcn, ...
31    'gui_LayoutFcn',  [] , ...
32    'gui_Callback',   []);
33if nargin && ischar(varargin{1})
34    gui_State.gui_Callback = str2func(varargin{1});
35end
36
37if nargout
38    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
39else
40    gui_mainfcn(gui_State, varargin{:});
41end
42% End initialization code - DO NOT EDIT
43
44%------------------------------------------------------------------------
45% --- Executes just before civ is made visible.
46function civ_OpeningFcn(hObject, eventdata, handles, param)
47%------------------------------------------------------------------------
48% This function has no output args, see OutputFcn.
49% hObject    handle to figure
50% eventdata  reserved - to be defined in a future version of MATLAB
51% handles    structure with handles and user data (see GUIDATA)
52% varargin   command line arguments to civ (see VARARGIN)
53global patch_newBin %=1 if new patch processing available
54%filebase: root name
55%nom_type: nomencalture used ('png_old','_i_j'...)
56%list of field numbers to process
57%subdir: subdirectory of the opened netcdf file
58%ind_opening: operation number advised for beginning (1=civ1,2=fix1,3=patch1,4=civ2,5=fix2,6=patch2),
59%ind_a_opening ind_b_opening chosen pair from the opened netcdf file
60% Choose default command line output for civ
61handles.output = hObject;
62% Update handles structure
63guidata(hObject, handles);
64
65%default initial parameters
66filebase=''; % root file name ('filebase'.civ)
67ext=[];
68testall=0;
69%default input parameters:
70num1=1; % set of field i numbers
71num2=1; % set of field i numbers
72num_a=1; % set of field j numbers (fields a)
73num_b=1; % second set of field j numbers (fields b)
74subdir='A'; % subdir for the netcdf result files
75ind_opening=1; % proposed operation number (1=civ1,2=fix1,3=patch1,4=civ2,5=fix2,6=patch2)
76%load the initial parameters if the interface is started from uvmat
77if exist('param','var')&&isstruct(param)% the interface is opened from uvmat
78    filebase=param.RootName;
79    nom_type_read=param.NomType;
80    num1=param.num1;
81    num2=param.num2;
82    num_a=param.num_a;
83    num_b=param.num_b;
84    subdir=param.SubDir;
85    ind_opening=param.IndOpening;
86    ext=param.ImaExt;
87end
88browse.num_i1=num1;
89browse.num_i2=num2;
90browse.num_j1=num_a;
91browse.num_j2=num_b;
92if ~isempty(ext) && (~isempty(imformats(ext(2:end)))||strcmpi(ext,'.avi'));%if an image file has been opened by uvmat
93    set(handles.ImaExt,'String',ext)
94    browse.ext_ima=ext;
95    if exist('nom_type_read','var')
96        browse.nom_type_ima=nom_type_read; % the image nomenclature is stored
97    end
98elseif isequal(ext,'.nc')
99    if exist('nom_type_read','var')
100        browse.nom_type_nc=nom_type_read;% the netcdf  nomenclature is stored
101    end
102end
103set(handles.RootName,'String',filebase);
104set(handles.ImaDoc,'UserData',testall);
105set(handles.ImaDoc,'String',ext)
106
107%read names of the .exe file to adjust the interface according to available binaries
108path_uvmat=which('uvmat');% check the path detected for source file uvmat
109path_UVMAT=fileparts(path_uvmat); %path to UVMAT
110errormsg=[];%default error message
111% xmlfile=fullfile(path_UVMAT,'PARAM.xml');
112% if ~exist(xmlfile,'file')
113xmlfile='PARAM.xml';
114% end
115if exist(xmlfile,'file')
116    try
117        t=xmltree(xmlfile);
118        sparam=convert(t);
119    catch
120        errormsg={' Unable to read the file PARAM.xml defining the civx binaries:'; lasterr};
121    end
122else
123    errormsg=[xmlfile ' not found: path to civx binaries undefined'];
124end
125
126
127if ~isempty(errormsg)
128    msgbox_uvmat('ERROR',errormsg);
129end
130% patch_newBin='';
131test_batch=0;%default: ,no batch mode available
132if isfield(sparam,'BatchParam') && isfield(sparam.BatchParam,'BatchMode')
133    test_batch=strcmp(sparam.BatchParam.BatchMode,'sge'); %sge is currently the only implemented batch mod
134end
135if test_batch==0
136    set(handles.BATCH,'Enable','off')% put the BATCH button in grey (unactivated)
137    set(handles.BATCH,'BackgroundColor',[0.831 0.816 0.784])% put the BATCH button in grey (unactivated)
138end
139if isfield(sparam.RunParam,'CivBin')
140    if ~exist(sparam.RunParam.CivBin,'file')
141        sparam.RunParam.CivBin=fullfile(path_UVMAT,sparam.RunParam.CivBin);
142    end
143else
144    sparam.RunParam.CivBin='';
145end
146patch_newBin=exist(sparam.RunParam.CivBin,'file');
147set(handles.subdir_civ1,'String',subdir)%default subdir on which uvmat was working
148set(handles.subdir_civ2,'String',subdir)%default subdir on which uvmat was working
149
150%initiate advised operations
151if isequal(ind_opening,[])
152    ind_opening=1; % default
153end
154% set default operation options
155enable_civ1(handles,'off')
156enable_civ2(handles,'off')
157enable_pair1(handles,'on')
158enable_fix1(handles,'off')
159desable_patch1(handles)
160desable_fix2(handles)
161desable_patch2(handles)
162set(handles.CIV1,'Value',0)
163set(handles.FIX1,'Value',0)
164set(handles.PATCH1,'Value',0)
165set(handles.CIV2,'Value',0)
166set(handles.FIX2,'Value',0)
167set(handles.PATCH2,'Value',0)
168set(handles.frame_subdirciv2,'BackgroundColor',[0.831 0.816 0.784])
169if isequal(ind_opening,1)
170    set(handles.CIV1,'Value',1)
171    enable_civ1(handles,'on')
172elseif isequal(ind_opening,2)
173    set(handles.FIX1,'Value',1)
174    enable_fix1(handles,'on')
175elseif isequal(ind_opening,3)
176    set(handles.PATCH1,'Value',1)
177    enable_patch1(handles)
178elseif isequal(ind_opening,4)
179    set(handles.CIV2,'Value',1)
180    enable_civ2(handles,1)
181elseif isequal(ind_opening,5)
182    set(handles.FIX2,'Value',1)
183    enable_fix2(handles)
184    set(handles.frame_subdirciv2,'BackgroundColor',[1 1 0])
185    set(handles.list_pair_civ2,'Enable','On')
186    set(handles.list_pair_civ2,'Enable','On')
187    enable_pair1(handles,'off')
188elseif isequal(ind_opening,6)
189    set(handles.PATCH2,'Value',1)
190    enable_patch2(handles)
191    set(handles.frame_subdirciv2,'BackgroundColor',[1 1 0])
192    set(handles.list_pair_civ2,'Enable','On')
193    enable_pair1(handles,'off')
194end
195
196% set the range of fields (1:1 by default) and selected pair
197if isnan(num2)||isequal(num2,num1)
198    num_ref_i=num1;
199else
200    num_ref_i=floor((num1+num2)/2);
201    browse.incr_pair(1)=num2-num1;
202    browse.incr_pair(2)=0;
203end
204if isnan(num_b)||isequal(num_a,num_b)
205    if isnan(num_a)
206        num_ref_j=1;
207    else
208        num_ref_j=num_a;
209    end
210else
211    num_ref_j=floor((num_a+num_b)/2);
212    browse.incr_pair(2)=num_b-num_a;
213end
214set(handles.first_i,'String',num2str(num_ref_i));
215set(handles.last_i,'String',num2str(num_ref_i));
216set(handles.first_j,'String',num2str(num_ref_j));
217set(handles.last_j,'String',num2str(num_ref_j));
218set(handles.ref_i,'String',num2str(num_ref_i));
219set(handles.ref_j,'String',num2str(num_ref_j));
220set(handles.ref_i_civ2,'String',num2str(num_ref_i));
221set(handles.ref_j_civ2,'String',num2str(num_ref_j));
222set(handles.browse_root,'UserData',browse);
223if exist('param','var')%varargin the interface is opened from uvmat
224    RootName_Callback(hObject, eventdata, handles);
225end
226
227set(handles.waitbar_1,'Position',[0.946 0.877 0.03 0.001])
228set(handles.waitbar_patch1,'Position',[0.946 0.626 0.03 0.001])
229set(handles.waitbar_civ2,'Position',[0.946 0.406 0.03 0.001])
230set(handles.waitbar_patch2,'Position',[0.946 0.187 0.03 0.001])
231
232%------------------------------------------------------------------------
233% --- Outputs from this function are returned to the command line.
234function varargout = civ_OutputFcn(hObject, eventdata, handles)
235%------------------------------------------------------------------------
236% varargout  cell array for returning output args (see VARARGOUT);
237% hObject    handle to figure
238% eventdata  reserved - to be defined in a future version of MATLAB
239% handles    structure with handles and user data (see GUIDATA)
240% Get default command line output from handles structure
241varargout{1} = handles.output;
242
243%------------------------------------------------------------------------
244% --- Executes on button press in browse_root.
245function browse_root_Callback(hObject, eventdata, handles)
246%------------------------------------------------------------------------
247%get the input file properties
248filebase=get(handles.RootName,'String');
249oldfile=''; %default
250if isempty(filebase)|| isequal(filebase,'')%loads the previously stored file name and set it as default in the file_input box
251    dir_perso=prefdir;
252    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
253    if exist(profil_perso,'file')
254        h=load (profil_perso);
255        if isfield(h,'filebase')&& ischar(h.filebase)
256            oldfile=h.filebase;
257        end
258        if isfield(h,'RootPath') && ischar(h.RootPath)
259            oldfile=h.RootPath;
260        end
261    end
262else
263    oldfile=filebase;
264end
265testall=get(handles.ImaDoc,'UserData');
266ind_opening=1;%default
267browse.incr_pair=[0 0]; %default
268if testall
269    menu={'*.*', 'All Files (*.*)'; '*.xml; *.avi;*.AVI;*.nc','(*.xml,*.avi,*.nc)'; ...
270        '*.xml', '.xml files';'*.avi;*.AVI', '.avi files';'*.nc','.nc files'};
271else % menu selecting only .civ or .avi files
272    menu={'*.xml;*.avi;*.AVI;*.nc','(*.xml,*.avi,*.nc)'; ...
273        '*.xml', '.xml files';'*.avi;*.AVI', '.avi files';'*.nc', '.nc files';...
274        '*.*', 'All Files (*.*)'};
275end
276[FileName, PathName, filtindex] = uigetfile( menu, 'Pick a file',oldfile);
277fileinput=[PathName FileName];%complete file name
278sizf=size(fileinput);
279if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string
280[path,name,ext]=fileparts(fileinput);
281testeditxml=0;
282if isequal(ext,'.xml')
283    testeditxml=1;
284    t_browse=xmltree(fileinput);
285    head_element=get(t_browse,1);
286    if isfield(head_element,'name')&& isequal(head_element.name,'ImaDoc')
287        testeditxml=0;
288    end
289end
290if testeditxml==1 || isequal(ext,'.xls')
291    heditxml=editxml({fileinput});
292    set(heditxml,'Tag','browser')
293    waitfor(heditxml,'Tag','idle')
294    if ~ishandle(heditxml)
295        return
296    end
297    attr=findobj(get(heditxml,'children'),'Tag','CurrentAttributes');
298    set(handles.browse,'UserData',fileinput)% store for future opening with browser
299    fileinput=get(attr,'UserData');
300    if ~exist(fileinput,'file')
301        return
302    end
303end
304[RootPath,RootFile,str1,str2,str_a,str_b,ext,nom_type,subdir]=name2display(fileinput);
305filebase=fullfile(RootPath,RootFile);
306num_i1=str2double(str1);
307if isnan(num_i1),num_i1=1;end
308num_i2=str2double(str2);
309if isnan(num_i2),num_i2=num_i1;end
310num_j1=stra2num(str_a);
311if isnan(num_j1),num_j1=1;end
312num_j2=stra2num(str_b);
313if isnan(num_j2),num_j2=num_j1;end
314if isequal(get(handles.compare,'Value'),1)
315    browse=[];%initialisation
316else
317    browse=get(handles.browse_root,'UserData');
318end
319browse.num_i1=num_i1;
320browse.num_i2=num_i2;
321browse.num_j1=num_j1;
322browse.num_j2=num_j2;
323if length(ext)>1 && (~isempty(imformats(ext(2:end)))||strcmpi(ext,'.avi'));%if an image file has been opened by uvmat
324%     set(handles.ImaExt,'String',ext)
325    browse.nom_type_ima=nom_type;
326    browse.ext_ima=ext;
327end
328set(handles.ImaDoc,'String',ext);
329
330%%%%% read the state of the selected netcdf file to advise default operation
331if isequal(ext,'.nc')
332    browse.nom_type_nc=nom_type;
333    ind_opening=2;% propose 'fix' as the default option
334    Data=nc2struct(fileinput,[]);
335    if isfield(Data,'absolut_time_T0')%test for civx files
336        if isfield(Data,'fix') && isequal(Data.fix,1)
337            ind_opening=3;
338        end
339        if isfield(Data,'patch') && isequal(Data.patch,1)
340            ind_opening=4;
341        end
342        if isfield(Data,'civ2') && isequal(Data.civ2,1)
343            ind_opening=5;
344        end
345        if isfield(Data,'fix2') && isequal(Data.fix2,1)
346            ind_opening=6;
347        end
348        testciv=1; %TO SUPPRESS WITH NEW VERSION OF CIVX
349    else
350        ind_opening=3; %GUI used only for patch
351        testciv=0;
352    end
353    set(handles.subdir_civ1,'String',subdir);%set the default subdir directories for installing the .nc results
354    set(handles.subdir_civ2,'String',subdir);
355    browse.testciv=testciv;
356    browse.ind_opening=ind_opening;
357end
358set(handles.RootName,'String',filebase);
359set(handles.ImaDoc,'String',ext);
360if ~isempty(num_i1)
361    ref_i=num_i1;
362    if ~isempty(num_i2)
363        ref_i=floor((ref_i+num_i2)/2);% reference image number corresponding to the file
364        browse.incr_pair(1)=num_i2-num_i1;
365        browse.incr_pair(2)=0;
366    end
367    set(handles.first_i,'String',num2str(ref_i));
368    set(handles.last_i,'String',num2str(ref_i));
369    set(handles.ref_i,'String',num2str(ref_i));
370    set(handles.ref_i_civ2,'String',num2str(ref_i))
371end
372if isempty(num_j1)
373    set(handles.ref_j,'String','1');
374    set(handles.ref_j_civ2,'String','1');
375else
376    ref_j=num_j1;
377    if ~isempty(num_j2)
378        ref_j=floor((num_j1+num_j2)/2);
379        browse.incr_pair(2)=num_j2-num_j1;
380    end
381    set(handles.first_j,'String',num2str(ref_j));
382    set(handles.last_j,'String',num2str(ref_j));
383    set(handles.ref_j,'String',num2str(ref_j));
384    set(handles.ref_j_civ2,'String',num2str(ref_j));
385end
386
387% set default operation options
388enable_civ1(handles,'off')
389enable_civ2(handles,'off')
390enable_pair1(handles,'on')
391enable_fix1(handles,'off')
392desable_patch1(handles)
393desable_fix2(handles)
394desable_patch2(handles)
395set(handles.CIV1,'Value',0)
396set(handles.FIX1,'Value',0)
397set(handles.PATCH1,'Value',0)
398set(handles.CIV2,'Value',0)
399set(handles.FIX2,'Value',0)
400set(handles.PATCH2,'Value',0)
401set(handles.frame_subdirciv2,'BackgroundColor',[0.831 0.816 0.784])
402if isequal(ind_opening,1)
403    set(handles.CIV1,'Value',1)
404    enable_civ1(handles,'on')
405elseif isequal(ind_opening,2)
406    set(handles.FIX1,'Value',1)
407    enable_fix1(handles,'on')
408elseif isequal(ind_opening,3)
409    set(handles.PATCH1,'Value',1)
410    enable_patch1(handles)
411elseif isequal(ind_opening,4)
412    set(handles.CIV2,'Value',1)
413    enable_civ2(handles,1)
414elseif isequal(ind_opening,5)
415    enable_pair1(handles,'off')
416    set(handles.FIX2,'Value',1)
417    enable_fix2(handles)
418    set(handles.frame_subdirciv2,'BackgroundColor',[1 1 0])
419    set(handles.list_pair_civ2,'Enable','On')
420    set(handles.list_pair_civ2,'Enable','On')
421elseif isequal(ind_opening,6)
422    enable_pair1(handles,'off')
423    set(handles.PATCH2,'Value',1)
424    enable_patch2(handles)
425    set(handles.frame_subdirciv2,'BackgroundColor',[1 1 0])
426    set(handles.list_pair_civ2,'Enable','On')
427end
428set(handles.browse_root,'UserData',browse);% store information from browser
429testall=isequal(menu(filtindex,1),{'*.*'});
430set(handles.ImaDoc,'UserData',testall);
431
432RootName_Callback(hObject, eventdata, handles);
433
434%------------------------------------------------------------------------
435function ImaDoc_Callback(hObject, eventdata, handles)
436%------------------------------------------------------------------------
437RootName_Callback(hObject, eventdata, handles)
438
439%------------------------------------------------------------------------
440% --- function activated when a new filebase (image series) is introduced
441function RootName_Callback(hObject, eventdata, handles)
442%------------------------------------------------------------------------
443set(handles.compare,'Visible','on')
444%ext_ima=get(handles.ImaExt,'String');
445ext_ima='';%default
446nom_type_ima=[];%default
447field_count=1;%default
448nom_type_nc=[];
449time=[];
450TimeUnit='frame'; %default
451CoordUnit='px';%default
452pxcmx_search=[];%default
453pxcmy_search=[];%default
454filebase=get(handles.RootName,'String');
455ext_imadoc=get(handles.ImaDoc,'String');
456browse=get(handles.browse_root,'UserData');%default
457if isfield(browse,'nom_type_ima')
458    nom_type_ima=browse.nom_type_ima;% get an image nomenclature type already determined by an input image name
459end
460if isfield(browse,'ext_ima')
461    ext_ima=browse.ext_ima;
462end
463if isfield(browse,'nom_type_nc')
464    nom_type_nc=browse.nom_type_nc;% get an image nomenclature type already determined by an input image name
465end
466if isfield(browse,'num_i1')
467    field_count=browse.num_i1;% get an image index type already determined by an input file
468end
469
470%default first_i and j and increments
471first_i=str2num(get(handles.first_i,'String'));%value possibly set by uvmat_Opening
472if isempty(first_i)|| first_i < 1
473    first_i=1; %default first_i
474end
475last_i=str2num(get(handles.last_i,'String'));
476if isempty(last_i)|| last_i < first_i
477    last_i=first_i;  %default last_i
478end
479first_j=str2num(get(handles.first_j,'String'));
480if isempty(first_j)|| first_j < 1
481    first_j=1; %default first_j
482end
483last_j=str2num(get(handles.last_j,'String'));
484if isempty(last_j)|| last_j < first_j
485    last_j=first_j; %default last_j
486end
487incr_i=str2num(get(handles.incr_i,'String'));
488if isempty(incr_i) || incr_i < 1;
489    set(handles.incr_i,'String','1') %default incr_i
490end
491incr_j=str2num(get(handles.incr_j,'String'));
492if isempty(incr_j) || incr_j < 1;
493    set(handles.incr_j,'String','1') %default incr_j
494end
495dt=[];%default
496testmode=0;%default
497nbfield=[]; %default
498nburst=[];%default
499pxcmx=1;
500pxcmy=1;
501
502%look for an image documentation file
503if ~strcmp(ext_imadoc,'.xml') && ~strcmp(ext_imadoc,'.civ')&& ~strcmpi(ext_imadoc,'.avi')
504    if exist([filebase '.xml'],'file')
505        ext_imadoc='.xml';
506    elseif exist([filebase '.civxml'],'file')
507        ext_imadoc='.civxml';
508    elseif exist([filebase '.civ'],'file')
509        ext_imadoc='.civ';
510    elseif exist([filebase '.avi'],'file')
511        ext_imadoc='.avi';
512    elseif exist([filebase '.AVI'],'file')
513        ext_imadoc='.AVI';
514    end
515    set(handles.ImaDoc,'String',ext_imadoc)
516end
517
518%%%%%%%%   read image documentation file  %%%%%%%%%%%%%%%%%%%%%%%%%%%
519mode=''; %default
520set(handles.ImaDoc,'BackgroundColor',[1 1 0])
521drawnow
522if isequal(ext_imadoc,'.civxml') || isequal(ext_imadoc,'.xml')|| isequal(ext_imadoc,'.civ')
523    set(handles.ref_i,'Visible','On')%use a reference index
524    set(handles.ref_j,'Visible','On')
525elseif isequal(ext_imadoc,'.avi') || isequal(ext_imadoc,'.AVI')
526    set(handles.ref_j,'Visible','Off')
527else
528    set(handles.ref_i,'Visible','Off')
529    set(handles.ref_j,'Visible','Off')
530end
531testima_xml=0;
532if isequal(ext_imadoc,'.civxml')%TO ABANDON
533    [nbfield,nbfield2,time]=read_civxml([filebase '.civxml']);
534    mode='pair j1-j2';
535    if isempty(nom_type_ima)% dtermine types by default if not already selected by browser or uvmat
536        nom_type_ima='_i_j';
537    end
538elseif isequal(ext_imadoc,'.xml')
539    [XmlData,warntext]=imadoc2struct([filebase '.xml']);
540    ext_ima_read=[];
541    nom_type_read=[];
542    if isfield(XmlData,'Heading')&&isfield(XmlData.Heading','ImageName')&&ischar(XmlData.Heading.ImageName)% get image nom type and extension from the xml file
543        [PP,FF,fc,str2,str_a,str_b,ext_ima_read,nom_type_read]=name2display(XmlData.Heading.ImageName);
544        fullname=fullfile(fileparts(filebase),XmlData.Heading.ImageName); %full name (including path) of the first image defined by the xmle file,
545        if ~exist(fullname,'file')
546            msgbox_uvmat('WARNING',['FirstImage ' fullname ' defined in the xml file does not exist'])
547        end
548    end
549    if isfield(XmlData,'Time')
550        time=XmlData.Time;
551        nbfield=size(time,1);
552        nbfield2=size(time,2);
553        %transform .Time to a column vector if it is a line vector thenomenclature uses a single index: correct possible bug in xml
554        if isequal(nbfield,1) && ~isequal(nbfield2,1)% .Time is a line vector
555            if numel(nom_type_read)>=2 && isempty(regexp(nom_type_read(2:end),'\D'))
556                time=time';
557                nbfield=nbfield2;
558                nbfield2=1;
559            end
560        end
561    end
562    if isfield(XmlData,'TimeUnit')
563        TimeUnit=XmlData.TimeUnit;
564    end
565    if isfield(XmlData,'Npx')
566        npx=XmlData.Npx;
567        npy=XmlData.Npy;
568    end
569    pxcmx_search=1;
570    pxcmy_search=1;
571    if isfield(XmlData,'GeometryCalib')
572        tsai=XmlData.GeometryCalib;
573        if isfield(tsai,'f') && isfield(tsai,'Tz') && isfield(tsai,'dpx') && isfield(tsai,'dpy')&& isfield(tsai,'R')
574            rot2D=tsai.R(1:2,[1,2]);
575            pxcmx_search=tsai.f * sqrt(det(rot2D))/(tsai.Tz*tsai.dpx);
576            pxcmy_search=tsai.f * sqrt(det(rot2D))/(tsai.Tz*tsai.dpy);
577        end
578        if isfield(tsai,'CoordUnit')
579            CoordUnit=tsai.CoordUnit;
580        end
581    end
582%     if ~isempty(ext_ima_read) && ~isempty(nom_type_read)
583% %         if isempty(ext_ima)
584% %             ext_ima=ext_ima_read;% define image extension from the xml file if an image has not been opened previously
585% %         else   %keep the image extension
586% %             if  ~strcmp(ext_ima_read,ext_ima)
587% %                 msgbox_uvmat('WARNING',['FirtsImage extension ' ext_ima_read ' announced in the xml file inconsistent with the selected image'])
588% %             end
589% %         end
590%         nom_type_ima=nom_type_read;
591%     end
592elseif strcmp(ext_imadoc,'.civ')% case of .civ image documentation file
593    [error,time,TimeUnit,mode,npx,npy]=read_imatext([filebase '.civ']);
594    if error==2, msgbox_uvmat('WARNING',['no file ' filebase '.civ']);
595    elseif error==1, msgbox_uvmat('WARNING','inconsistent number of fields in the .civ file');
596    end
597    nom_type_ima='001a';
598elseif strcmpi(ext_imadoc,'.avi')
599    nom_type_ima='*';
600    ext_ima=ext_imadoc;
601    set(handles.mode,'String',{'series(Di)'})
602    dt=0.04;%default
603    if exist([filebase ext_imadoc],'file')==2
604        info=aviinfo([filebase ext_imadoc]);%read infos on the avi movie
605        dt=1/info.FramesPerSecond;%time interval between successive frames
606        nbfield=info.NumFrames;%number of frames
607    end
608    time=(dt*(0:nbfield-1))';%list of image times
609    %set(handles.dt,'String',num2str(dt*1000));%store the time interval between successive images
610end
611if isempty(time)
612    set(handles.ImaDoc,'String',''); %xml file not used for timing
613end
614set(handles.ImaDoc,'BackgroundColor',[1 1 1])
615
616%get the imabe nomenclature type if not defined by the input file nor by the xml file
617dirima=[];%default
618if isempty(nom_type_ima)
619    %look for double image series '_i_j'
620    dirima=dir([filebase '_' num2str(first_i) '_' num2str(first_j) '.*']);
621    if isempty(dirima)
622        % look for images series  with sub marker '_'
623        dirima=dir([filebase '_*' num2str(first_i) '.*']);
624        if isempty(dirima)
625            % look for other images series
626            dirima=dir([filebase '*' num2str(first_i) '.*']);
627            if isempty(dirima)
628                % look for other images series witth letter appendix
629                appendix=char(96+first_j);
630                dirima=dir([filebase '*' num2str(first_i) appendix '.*']);
631            end
632        end
633    end
634end
635for ilist=1:numel(dirima)
636    [pp,ff,fc,str2,str_a,str_b,ext_list,nom_type_list]=name2display(dirima(ilist).name);
637    form=imformats(ext_list(2:end));
638    if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
639        ext_ima=ext_list;
640        nom_type_ima=nom_type_list;
641            break
642    end
643end
644% no image documentation file found: look for a series of existing files,images by priority or .nc files
645if isempty(nom_type_ima)
646    ext_search=ext_imadoc;
647    nom_type_search=nom_type_nc;
648else
649    ext_search=ext_ima;
650    nom_type_search=nom_type_ima;
651end
652if isempty(time) && ~strcmp(nom_type_search,'none') && ~strcmp(nom_type_search,'') && ~strcmp(nom_type_search,'*')
653    subdir=get(handles.subdir_civ1,'String');
654    incr_pair=[0 0];%default
655    if isfield(browse,'incr_pair')
656        incr_pair=browse.incr_pair;
657    end
658    %     nbdetect=0;%test of detected images
659    field_i=browse.num_i2;
660    idetect=1;
661    while idetect==1 %look for the maximum file number in the series
662        imagename=name_generator(filebase,field_i+1,1,ext_search,nom_type_search);
663        idetect=(exist(imagename,'file')==2);
664        if idetect
665            field_i=field_i+1;
666        end
667        %SEE CASE OF NETCDF FILES
668        %             nbdetect=nbdetect+(exist(imagename,'file')==2);
669    end
670    nbfield=field_i;% last detected field number
671    field_i=browse.num_i1;%look for the minimum file number in the series
672    idetect=1;
673    while idetect==1
674        imagename=name_generator(filebase,field_i-1,1,ext_search,nom_type_search);
675        idetect=(exist(imagename,'file')==2);
676        if idetect
677            field_i=field_i-1;
678        end
679    end
680    first_i=max(field_i,1);
681    if numel(regexp(nom_type_search,'\D'))>=1%two indices i and j
682        field_i=browse.num_i1;
683        field_j=browse.num_j2;
684        jdetect=1;
685        while jdetect==1 %look for the maximum file number in the series
686            imagename=name_generator(filebase,field_i,field_j,ext_search,nom_type_search);
687            jdetect=(exist(imagename,'file')==2);
688            if jdetect
689                field_j=field_j+1;
690            end
691            %SEE CASE OF NETCDF FILES
692            %             nbdetect=nbdetect+(exist(imagename,'file')==2);
693        end
694        nbfield2=field_j;% last detected field number
695     end
696 
697    %determine the set of times and possible intervals for CIV
698    %   dt=(1/1000)*str2num(get(handles.dt,'String'));
699    time=(0:nbfield-1)';% time=file index -1  by default
700    if numel(regexp(nom_type_search,'\D'))>=1%two indices i and j
701%     switch nom_type_search 
702%         case {'_i_j','%01dA','%02dA','%03dA','%04dA'}
703        % time=[0:nb_field-1]'*ones(1,nb_field_j);% time=file index -1  by default
704        [x,y]=meshgrid(0:nbfield2-1,0:nbfield-1);
705        time=x+y;
706%         time=[0:nb_field-1]'*[0:nb_field_j-1];% time=file index -1  by default
707    end
708%     set(handles.mode,'String',{'series(Di)'})
709end
710
711if exist('time','var')
712    if size(time,1)+size(time,2)>=3 % if there are at least two time values to define dt
713        nbfield=size(time,1);
714        nbfield2=size(time,2);
715        set(handles.RootName,'UserData',time); %store the set of times
716        set(handles.dt_unit,'String',['dt in m' TimeUnit]);
717        set(handles.dt_unit_civ2,'String',['dt in m' TimeUnit]);
718        set(handles.TimeUnit,'String',TimeUnit);
719        set(handles.nb_field,'String',num2str(nbfield));
720        set(handles.nb_field2,'String',num2str(nbfield2));
721    end
722end
723set(handles.CoordUnit,'String',CoordUnit)
724set(handles.calcul_search,'UserData',[pxcmx_search pxcmy_search]);
725% npxy=[npy npx];
726set(handles.ImaExt,'String',ext_ima)
727set(handles.first_i,'String',num2str(first_i));
728set(handles.last_i,'String',num2str(last_i));%
729set(handles.first_j,'String',num2str(first_j));
730set(handles.last_j,'String',num2str(last_j));%
731browse.nom_type_ima=nom_type_ima;
732set(handles.browse_root,'UserData',browse)% store the nomenclature type
733
734%%%%%%%%%%%  set the menus of image pairs and default selection for civ   %%%%%%%%%%%%%%%%%%%
735test_ima_i=numel(nom_type_ima)>1 && isempty(regexp(nom_type_ima(2:end),'\D'));%images with single indexing
736if test_ima_i || isequal(nom_type_nc,'_i1-i2')||~(exist('nbfield2','var')&&(nbfield2~=1))
737    set(handles.mode,'String',{'series(Di)'})
738    set(handles.mode,'Value',1)
739elseif (nbfield==1)% simple series in j
740    set(handles.mode,'String',{'series(Dj)'})
741    set(handles.mode,'Value',1)
742else
743    set(handles.mode,'String',{'pair j1-j2';'series(Dj)';'series(Di)'})%multiple choice
744    if nbfield2 <= 10
745        set(handles.mode,'Value',1)% advice 'pair j1-j2' for small burst
746    end
747end
748
749%update the subdir
750pathdir=fileparts(filebase);%path to the current xml file
751listot=dir(pathdir);
752idir=0;
753listdir={''};%default
754for ilist=1:length(listot)
755    if listot(ilist).isdir
756        name=listot(ilist).name;
757        if ~isequal(name,'.') && ~isequal(name,'..')
758            idir=idir+1;
759            listdir{idir,1}=listot(ilist).name;
760        end
761    end
762end
763set(handles.list_subdir_civ1,'Value',1)
764set(handles.list_subdir_civ2,'Value',1)
765set(handles.list_subdir_civ1,'String',[{'browse...'};listdir])
766set(handles.list_subdir_civ2,'String',[{'browse...'};listdir])
767%check wether the current subdir exists:
768subdir_civ1=get(handles.subdir_civ1,'String');
769subdir_civ2=get(handles.subdir_civ2,'String');
770
771mode_Callback(hObject, eventdata, handles)
772
773%%%%%% initialize waitbars and RUN button
774set(handles.waitbar_1,'Position',[0.946 0.876 0.03 0.001])
775set(handles.waitbar_patch1,'Position',[0.946 0.439 0.03 0.001])
776set(handles.waitbar_civ2,'Position',[0.946 0.219 0.03 0.001])
777set(handles.waitbar_patch2,'Position',[0.946 0.0 0.03 0.001])
778set(handles.RUN, 'Enable','On')
779set(handles.RUN,'BackgroundColor',[1 0 0])
780set(handles.BATCH,'Enable','On')
781set(handles.BATCH,'BackgroundColor',[1 0 0])
782
783%%%%% store the root input filename for future opening
784dir_perso=prefdir;
785profil_perso=fullfile(prefdir,'uvmat_perso.mat');
786RootPath=fileparts(filebase);
787if exist(profil_perso,'file')
788    save (profil_perso,'RootPath','-append'); %store the root name for future opening of uvmat
789else
790    txt=ver;
791    Release=txt(1).Release;
792    relnumb=str2num(Release(3:4));
793    if relnumb >= 14
794        save (profil_perso,'RootPath','-V6'); %store the root name for future opening of uvmat
795    else
796        save (profil_perso,'RootPath'); %store the root name for future opening of uvmat
797    end
798end
799% save(profil_perso, 'filebase'); %store the root name for future opening of uvmat
800set(gcf,'Pointer','arrow')
801
802%------------------------------------------------------------------------
803% --- Executes on button press in mode.
804function mode_Callback(hObject, eventdata, handles)
805%------------------------------------------------------------------------
806browse=get(handles.browse_root,'UserData');
807compare_list=get(handles.compare,'String');
808val=get(handles.compare,'Value');
809compare=compare_list{val};
810if strcmp(compare,'displacement')
811    mode='displacement';
812else
813    mode_list=get(handles.mode,'String');
814    mode_value=get(handles.mode,'Value');
815    mode=mode_list{mode_value};
816end
817displ_num=[];%default
818ref_i=str2num(get(handles.ref_i,'String'));
819% last_i=str2num(get(handles.last_i,'String'));
820time=get(handles.RootName,'UserData'); %get the set of times
821siztime=size(time);
822nbfield=siztime(1);
823nbfield2=siztime(2);
824indchosen=1;  %%first pair selected by default
825if isequal(mode,'pair j1-j2')%| isequal(mode,'st_pair j1-j2')
826    dt=1;
827    displ='';
828    index=0;
829    numlist_a=[];
830    numlist_B=[];
831    %get all the time intervals in bursts
832    displ_dt=1;%default
833    nbfield2=min(nbfield2,10);%limitate the number of pairs to 10x10
834    for numod_a=1:nbfield2-1 %nbfield2 always >=2 for 'pair j1-j2' mode
835        for numod_b=(numod_a+1):nbfield2
836            index=index+1;
837            numlist_a(index)=numod_a;
838            numlist_b(index)=numod_b;
839            if ~isempty(time)
840                dt(numod_a,numod_b)=time(ref_i,numod_b)-time(ref_i,numod_a);%first time interval dt
841                displ_dt(index)=dt(numod_a,numod_b);
842            else
843                displ_dt(index)=1;
844            end
845        end
846    end
847    [dtsort,indsort]=sort(displ_dt);
848    if ~isempty(numlist_a)
849        displ_num(1,:)=numlist_a(indsort);
850        displ_num(2,:)=numlist_b(indsort);
851    end
852    displ_num(3,:)=0;
853    displ_num(4,:)=0;
854    set(handles.jtext,'Visible','Off')
855    set(handles.first_j,'Visible','Off')
856    set(handles.last_j,'Visible','Off')
857    set(handles.incr_j,'Visible','Off')
858    set(handles.nb_field2,'Visible','Off')
859    set(handles.ref_j,'Visible','Off')
860elseif isequal(mode,'series(Dj)') %| isequal(mode,'st_series(Dj)')
861    for index=1:min(nbfield2-1,200)
862        displ_num(1,index)=-floor(index/2);
863        displ_num(2,index)=ceil(index/2);
864        displ_num(3,index)=0;
865        displ_num(4,index)=0;
866    end
867    set(handles.jtext,'Visible','On')
868    set(handles.first_j,'Visible','On')
869    set(handles.last_j,'Visible','On')
870    set(handles.incr_j,'Visible','On')
871    set(handles.nb_field2,'Visible','On')
872    set(handles.ref_j,'Visible','On')
873    if nbfield > 1
874        set(handles.itext,'Visible','On')
875        set(handles.first_i,'Visible','On')
876        set(handles.last_i,'Visible','On')
877        set(handles.incr_i,'Visible','On')
878        set(handles.nb_field,'Visible','On')
879        set(handles.ref_i,'Visible','On')
880    else
881        set(handles.itext,'Visible','Off')
882        set(handles.first_i,'Visible','Off')
883        set(handles.last_i,'Visible','Off')
884        set(handles.incr_i,'Visible','Off')
885        set(handles.nb_field,'Visible','Off')
886        set(handles.ref_i,'Visible','Off')
887    end
888elseif isequal(mode,'series(Di)') %| isequal(mode,'st_series(Di)')
889    for index=1:200%min(nbfield-1,200)
890        displ_num(1,index)=0;
891        displ_num(2,index)=0;
892        displ_num(3,index)=-floor(index/2);
893        displ_num(4,index)=ceil(index/2);
894    end
895    set(handles.itext,'Visible','On')
896    set(handles.first_i,'Visible','On')
897    set(handles.last_i,'Visible','On')
898    set(handles.incr_i,'Visible','On')
899    set(handles.nb_field,'Visible','On')
900    set(handles.ref_i,'Visible','On')
901    if nbfield2 > 1
902        set(handles.jtext,'Visible','On')
903        set(handles.first_j,'Visible','On')
904        set(handles.last_j,'Visible','On')
905        set(handles.incr_j,'Visible','On')
906        set(handles.nb_field2,'Visible','On')
907        set(handles.ref_j,'Visible','On')
908    else
909        set(handles.jtext,'Visible','Off')
910        set(handles.first_j,'Visible','Off')
911        set(handles.last_j,'Visible','Off')
912        set(handles.incr_j,'Visible','Off')
913        set(handles.nb_field2,'Visible','Off')
914        set(handles.ref_j,'Visible','Off')
915    end
916elseif isequal(mode,'displacement')%the pairs have the same indices
917    displ_num(1,1)=0;
918    displ_num(2,1)=0;
919    displ_num(3,1)=0;
920    displ_num(4,1)=0;
921    if nbfield > 1
922        set(handles.itext,'Visible','On')
923        set(handles.first_i,'Visible','On')
924        set(handles.last_i,'Visible','On')
925        set(handles.incr_i,'Visible','On')
926        set(handles.nb_field,'Visible','On')
927        set(handles.ref_i,'Visible','On')
928    else
929        set(handles.itext,'Visible','Off')
930        set(handles.first_i,'Visible','Off')
931        set(handles.last_i,'Visible','Off')
932        set(handles.incr_i,'Visible','Off')
933        set(handles.nb_field,'Visible','Off')
934        set(handles.ref_i,'Visible','Off')
935    end
936    if nbfield2 > 1
937        set(handles.jtext,'Visible','On')
938        set(handles.first_j,'Visible','On')
939        set(handles.last_j,'Visible','On')
940        set(handles.incr_j,'Visible','On')
941        set(handles.nb_field2,'Visible','On')
942        set(handles.ref_j,'Visible','On')
943    else
944        set(handles.jtext,'Visible','Off')
945        set(handles.first_j,'Visible','Off')
946        set(handles.last_j,'Visible','Off')
947        set(handles.incr_j,'Visible','Off')
948        set(handles.nb_field2,'Visible','Off')
949        set(handles.ref_j,'Visible','Off')
950    end
951end
952set(handles.list_pair_civ1,'UserData',displ_num);
953find_netcpair_civ1(hObject, eventdata, handles)
954find_netcpair_civ2(hObject, eventdata, handles)
955
956%------------------------------------------------------------------------
957% determine the menu for civ1 pairs depending on existing netcdf file at the middle of
958% the field series set by first_i, incr, last_i
959function find_netcpair_civ1(hObject, eventdata, handles)
960%------------------------------------------------------------------------
961set(gcf,'Pointer','watch')
962%nomenclature types
963filebase=get(handles.RootName,'String');
964[filepath,Nme,ext_dir]=fileparts(filebase);
965browse=get(handles.browse_root,'UserData');
966compare_list=get(handles.compare,'String');
967val=get(handles.compare,'Value');
968compare=compare_list{val};
969if strcmp(compare,'displacement')
970    mode='displacement';
971else
972    mode_list=get(handles.mode,'String');
973    mode_value=get(handles.mode,'Value');
974    mode=mode_list{mode_value};
975end
976
977% nomenclature type of the .nc files
978nom_type_ima=[];%default
979if isfield(browse,'nom_type_ima')
980    nom_type_ima=browse.nom_type_ima;
981end
982
983%determine nom_type_nc:
984nom_type_nc=[];%default
985if isfield(browse,'nom_type_nc')
986    nom_type_nc=browse.nom_type_nc;
987end
988if isempty(nom_type_nc)
989    [nom_type_nc]=nomtype2pair(nom_type_ima,isequal(mode,'series(Di)'),isequal(mode,'series(Dj)'));
990end
991browse.nom_type_nc=nom_type_nc;
992set(handles.browse_root,'UserData',browse)
993
994%reads .nc subdirectoy and image numbers from the interface
995subdir_civ1=get(handles.subdir_civ1,'String');%subdirectory subdir_civ1 for the netcdf data
996% first_i=str2num(get(handles.first_i,'String'));
997% last_i=str2num(get(handles.last_i,'String'));
998% incr=str2num(get(handles.incr_i,'String'));
999% num1=first_i:incr:last_i;
1000% if isempty(num1)
1001%     set(handles.list_pair_civ1,'String',{''});
1002%     return
1003% end
1004ref_i=str2double(get(handles.ref_i,'String'));
1005if isequal(mode,'pair j1-j2')%|isequal(mode,'st_pair j1-j2')
1006    ref_j=0;
1007else
1008    ref_j=str2double(get(handles.ref_j,'String'));
1009end
1010time=get(handles.RootName,'UserData');%get the set of times
1011if isempty(time)
1012    time=[0 1];
1013end
1014%dt_unit=str2double(get(handles.dt,'String'));% used when there is no image documentation file
1015dt_unit=1000;%default
1016displ_num=get(handles.list_pair_civ1,'UserData');
1017
1018%eliminate the first pairs inconsistent with the position
1019if isempty(displ_num)
1020    nbpair=0;
1021else
1022    nbpair=length(displ_num(1,:));%nbre of displayed pairs
1023    if  isequal(mode,'series(Di)')  %| isequal(mode,'st_series(Di)')
1024        nbpair=min(2*ref_i-1,nbpair);%limit the number of pairs with positive first index
1025    elseif  isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)')
1026        nbpair=min(2*ref_j-1,nbpair);%limit the number of pairs with positive first index
1027    end
1028end
1029nbpair=min(200,nbpair);%limit the number of displayed pairs to 200
1030
1031%look for existing processed pairs involving the field at the middle of the series if civ1 will not
1032% be performed, while the result is needed for next steps.
1033displ_pair={''};
1034select=ones(size(1:nbpair));%default =1 for numbers of displayed pairs
1035testpair=0;
1036if get(handles.CIV1,'Value')==0 %
1037    if ~exist(fullfile(filepath,subdir_civ1,ext_dir),'dir')
1038        msgbox_uvmat('ERROR',['no civ1 file available: subdirectory ' subdir_civ1 ' does not exist']);
1039        set(handles.list_pair_civ1,'String',{});
1040        return
1041    end
1042    for ipair=1:nbpair
1043        filename=name_generator(filebase,ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair),'.nc',nom_type_nc,1,...
1044            ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair),subdir_civ1);
1045        select(ipair)=exist(filename,'file')==2;
1046    end
1047    if ~exist('select','var') || isequal(select,zeros(size(1:nbpair)))
1048        if isfield(browse,'incr_pair')
1049            num_i1=ref_i-floor(browse.incr_pair(1)/2);
1050            num_i2=ref_i+ceil(browse.incr_pair(1)/2);
1051            num_j1=ref_j-floor(browse.incr_pair(2)/2);
1052            num_j2=ref_j+ceil(browse.incr_pair(2)/2);
1053            filename=name_generator(filebase,num_i1,num_j1,'.nc',nom_type_nc,1,num_i2,num_j2,subdir_civ1);
1054            select(1)=exist(filename,'file')==2;
1055            testpair=1;
1056        else
1057            if  isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)')
1058                msgbox_uvmat('ERROR',['no civ1 file available for the selected reference index j=' num2str(ref_j) ' and subdirectory ' subdir_civ1]);
1059            else
1060                msgbox_uvmat('ERROR',['no civ1 file available for the selected reference index i=' num2str(ref_i) ' and subdirectory ' subdir_civ1]);
1061            end
1062            set(handles.list_pair_civ1,'String',{''});
1063            %COMPLETER CAS STEREO
1064            return
1065        end
1066    end
1067end
1068if isequal(mode,'series(Di)') %| isequal(mode,'st_series(Di)')
1069    if testpair
1070        displ_pair{1}=['Di= ' num2str(-floor(browse.incr_pair(1)/2)) '|' num2str(ceil(browse.incr_pair(1)/2))];
1071        %     elseif ~isequal(get(handles.root_txt,'String'),'dt(ms)=')
1072        %        for ipair=1:nbpair
1073        %           if select(ipair)
1074        %               if size(time,1)>=ref_i+displ_num(4,ipair) && size(time,2)>=ref_j+displ_num(2,ipair)
1075        %               dt=time(ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair));%time interval dt
1076        %               displ_pair{ipair}=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ' :dt= ' num2str(dt*1000)];
1077        %               end
1078        %           else
1079        %              displ_pair{ipair}='...'; %pair not displayed in the menu
1080        %           end
1081        %        end
1082    else
1083        for ipair=1:nbpair
1084            if select(ipair)
1085                if size(time,1)>=ref_i+displ_num(4,ipair) && size(time,2)>=ref_j+displ_num(2,ipair)
1086                    dt=time(ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair));%time interval dt
1087                    displ_pair{ipair}=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ' :dt= ' num2str(dt*1000)];
1088                else
1089                    displ_pair{ipair}='...'; %pair not displayed in the menu
1090                end
1091            end
1092        end
1093    end
1094elseif isequal(mode,'series(Dj)')%|isequal(mode,'st_series(Dj)')% series on the j index
1095    if testpair
1096        displ_pair{1}=['Dj= ' num2str(-floor(browse.incr_pair(1)/2)) '|' num2str(ceil(browse.incr_pair(1)/2))];
1097    else
1098        for ipair=1:nbpair
1099            if select(ipair)
1100                if size(time,1)>=ref_i+displ_num(4,ipair) && size(time,2)>=ref_j+displ_num(2,ipair)
1101                    dt=time(ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair));%time interval dt
1102                    displ_pair{ipair}=['Dj= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ' :dt= ' num2str(dt*1000)];
1103                end
1104            elseif testpair
1105                displ_pair{1}=['Dj= ' num2str(-floor(browse.incr_pair(2)/2)) '|' num2str(ceil(browse.incr_pair(2)/2))];
1106            else
1107                displ_pair{ipair}='...'; %pair not displayed in the menu
1108            end
1109        end
1110    end
1111elseif isequal(mode,'pair j1-j2')%|isequal(mode,'st_pair j1-j2')%case of pairs
1112    for ipair=1:nbpair
1113        if select(ipair)
1114            dt=time(ref_i+displ_num(4,ipair),displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),displ_num(1,ipair));%time interval dt
1115            displ_pair{ipair}=['j= ' num2stra(displ_num(1,ipair),nom_type_ima) '-' num2stra(displ_num(2,ipair),nom_type_ima) ...
1116                ' :dt= ' num2str(dt*1000)];
1117        else
1118            displ_pair{ipair}='...'; %pair not displayed in the menu
1119        end
1120    end
1121elseif isequal(mode,'displacement')
1122    displ_pair={'Di=Dj=0'};
1123end
1124set(handles.list_pair_civ1,'String',displ_pair');
1125ichoice=min(find(select));
1126if (isempty(ichoice) || ichoice < 1); ichoice=1; end;
1127initial=get(handles.list_pair_civ1,'Value');%initial choice of pair
1128if initial>nbpair
1129    set(handles.list_pair_civ1,'Value',ichoice);% first valid pair proposed by default in the menu
1130end
1131if numel(select)>=initial && ~isequal(select(initial),1)
1132    set(handles.list_pair_civ1,'Value',ichoice);% first valid pair proposed by default in the menu
1133end
1134
1135%set(handles.list_pair_civ2,'String',displ_pair');
1136initial=get(handles.list_pair_civ2,'Value');
1137if initial>length(displ_pair')%|~isequal(select(initial),1)
1138    if ichoice <= length(displ_pair')
1139        set(handles.list_pair_civ2,'Value',ichoice);% same pair proposed by default for civ2
1140    else
1141        set(handles.list_pair_civ2,'Value',1);% same pair proposed by default for civ2
1142    end
1143end
1144set(handles.list_pair_civ2,'String',displ_pair');
1145set(gcf,'Pointer','arrow')
1146
1147%------------------------------------------------------------------------
1148% determine the menu for civ2 pairs depending on the existing netcdf file at the
1149%middle of the series set by first_i, incr, last_i
1150function find_netcpair_civ2(hObject, eventdata, handles)
1151%------------------------------------------------------------------------
1152set(gcf,'Pointer','watch')
1153%nomenclature types
1154filebase=get(handles.RootName,'String');
1155[filepath,Nme,ext_dir]=fileparts(filebase);
1156browse=get(handles.browse_root,'UserData');
1157compare_list=get(handles.compare,'String');
1158val=get(handles.compare,'Value');
1159compare=compare_list{val};
1160if strcmp(compare,'displacement')
1161    mode='displacement';
1162else
1163    mode_list=get(handles.mode,'String');
1164    mode_value=get(handles.mode,'Value');
1165    mode=mode_list{mode_value};
1166end
1167
1168% nomenclature type of the .nc files
1169nom_type_ima='ima_num';%default
1170if isfield(browse,'nom_type_ima')
1171    nom_type_ima=browse.nom_type_ima;
1172end
1173nom_type_nc='_i1-i2';%default
1174if isfield(browse,'nom_type_nc')
1175    nom_type_nc=browse.nom_type_nc;
1176end
1177if isequal(nom_type_ima,'png_old') || isequal(nom_type_ima,'netc_old')|| isequal(nom_type_ima,'raw_SMD')|| isequal(nom_type_nc,'netc_old')
1178    nom_type_nc='netc_old';%nom_type for the netcdf files
1179elseif isequal(nom_type_ima,'none')||isequal(nom_type_nc,'none')
1180    nom_type_nc='none';
1181elseif isequal(nom_type_ima,'avi')||isequal(nom_type_ima,'_i')||isequal(nom_type_ima,'ima_num')||isequal(nom_type_nc,'_i1-i2')
1182    nom_type_nc='_i1-i2';
1183else
1184    if  isequal(mode,'series(Di)')%|isequal(mode,'st_series(Di)')
1185        nom_type_nc='_i1-i2_j'; % PIV in volume
1186    else
1187        nom_type_nc='_i_j1-j2';
1188    end
1189end
1190browse.nom_type_nc=nom_type_nc;
1191set(handles.browse_root,'UserData',browse)
1192
1193%reads .nc subdirectory and image numbers from the interface
1194subdir_civ1=get(handles.subdir_civ1,'String');%subdirectory subdir_civ1 for the netcdf data
1195subdir_civ2=get(handles.subdir_civ2,'String');%subdirectory subdir_civ2 for the netcdf data
1196% first_i=str2num(get(handles.first_i,'String'));
1197% last_i=str2num(get(handles.last_i,'String'));
1198% incr=str2num(get(handles.incr_i,'String'));
1199% num1=first_i:incr:last_i;
1200% if isempty(num1)
1201%     set(handles.list_pair_civ2,'Value',1);
1202%     set(handles.list_pair_civ2,'String',{''});
1203%     return
1204% end
1205ref_i=str2num(get(handles.ref_i_civ2,'String'));
1206if isequal(mode,'pair j1-j2')%|isequal(mode,'st_pair j1-j2')
1207    ref_j=0;
1208else
1209    ref_j=str2num(get(handles.ref_j_civ2,'String'));
1210end
1211time=get(handles.RootName,'UserData'); %get the set of times
1212if isempty(time)
1213    time=[0 1];%default
1214end
1215%dt_unit=str2num(get(handles.dt,'String'));% used when there is no image documentation file
1216%dt_unit=1000;
1217displ_num=get(handles.list_pair_civ1,'UserData');
1218
1219
1220%eliminate the first pairs inconsistent with the position
1221if isempty(displ_num)
1222    nbpair=0;
1223else
1224    nbpair=length(displ_num(1,:));%nbre of displayed pairs
1225    if  isequal(mode,'series(Di)')% | isequal(mode,'st_series(Di)')
1226        nbpair=min(2*ref_i-1,nbpair);%limit the number of pairs with positive first index
1227    elseif  isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)')
1228        nbpair=min(2*ref_j-1,nbpair);%limit the number of pairs with positive first index
1229    end
1230end
1231nbpair=min(200,nbpair);%limit the number of displayed pairs to 200
1232
1233%look for existing processed pairs involving the field at the middle of the series if civ1 will not
1234% be performed, while the result is needed for next steps.
1235displ_pair={''}; %default
1236select=ones(size(1:nbpair));%default =1 for numbers of displayed pairs
1237if get(handles.CIV2,'Value')==0 & get(handles.CIV1,'Value')==0 & get(handles.FIX1,'Value')==0 & get(handles.PATCH1,'Value')==0%&...
1238    if ~exist(fullfile(filepath,subdir_civ2,ext_dir),'dir')
1239        errordlg(['no civ2 file available: subdirectory ' subdir_civ2 ' does not exist'])
1240        set(handles.list_pair_civ2,'Value',1);
1241        set(handles.list_pair_civ2,'String',{''});
1242        return
1243    end
1244    for ipair=1:nbpair
1245        filename=name_generator(filebase,ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair),'.nc',nom_type_nc,1,...
1246            ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair),subdir_civ1);
1247        select(ipair)=exist(filename,'file')==2;
1248    end
1249    if  isequal(select,zeros(size(1:nbpair)))
1250        if isfield(browse,'incr_pair')
1251            num_i1=ref_i-floor(browse.incr_pair(1)/2);
1252            num_i2=ref_i+floor((browse.incr_pair(1)+1)/2);
1253            num_j1=ref_j-floor(browse.incr_pair(2)/2);
1254            num_j2=ref_j+floor((browse.incr_pair(2)+1)/2);
1255            filename=name_generator(filebase,num_i1,num_j1,'.nc',nom_type_nc,1,num_i2,num_j2,subdir_civ2);
1256            select(1)=exist(filename,'file')==2;
1257        else
1258            if  isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)')
1259                errordlg(['no civ2 file available for the selected reference index j=' num2str(ref_j) ' and subdirectory ' subdir_civ2])
1260            else
1261                errordlg(['no civ2 file available for the selected reference index i=' num2str(ref_i) ' and subdirectory ' subdir_civ2])
1262            end
1263            set(handles.list_pair_civ2,'Value',1);
1264            set(handles.list_pair_civ2,'String',{''});
1265            return
1266        end
1267    end
1268end
1269if isequal(mode,'series(Di)') % | isequal(mode,'st_series(Di)')
1270    for ipair=1:nbpair
1271        if select(ipair)
1272            if size(time,1)>=ref_i+displ_num(4,ipair) && size(time,2)>=ref_j+displ_num(2,ipair)
1273                dt=time(ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair));%time interval dt
1274                displ_pair{ipair}=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ' :dt= ' num2str(dt*1000)];
1275            end
1276        else
1277            displ_pair{ipair}='...'; %pair not displayed in the menu
1278        end
1279    end
1280elseif isequal(mode,'series(Dj)') %| isequal(mode,'st_series(Dj)') % series on the j index
1281    for ipair=1:nbpair
1282        if select(ipair)
1283            if size(time,1)>=ref_i+displ_num(4,ipair) && size(time,2)>=ref_j+displ_num(2,ipair)
1284                dt=time(ref_i+displ_num(4,ipair),ref_j+displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),ref_j+displ_num(1,ipair));%time interval dt
1285                displ_pair{ipair}=['Dj= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ' :dt= ' num2str(dt*1000)];
1286            end
1287        else
1288            displ_pair{ipair}='...'; %pair not displayed in the menu
1289        end
1290    end
1291elseif isequal(mode,'pair j1-j2')% | isequal(mode,'st_pair j1-j2') %case of pairs
1292    for ipair=1:nbpair
1293        if select(ipair)
1294            dt=time(ref_i+displ_num(4,ipair),displ_num(2,ipair))-time(ref_i+displ_num(3,ipair),displ_num(1,ipair));%time interval dt
1295            displ_pair{ipair}=['j= ' num2stra(displ_num(1,ipair),nom_type_ima) '-' num2stra(displ_num(2,ipair),nom_type_ima) ...
1296                ' :dt= ' num2str(dt*1000)];
1297        else
1298            displ_pair{ipair}='...'; %pair not displayed in the menu
1299        end
1300    end
1301elseif isequal(mode,'displacement')
1302    displ_pair={'Di=Dj=0'};
1303end
1304val=get(handles.list_pair_civ2,'Value');
1305ichoice=min(find(select));
1306if (isempty(ichoice) | ichoice < 1); ichoice=1; end;
1307if get(handles.CIV2,'Value')==0 & get(handles.CIV1,'Value')==0 & get(handles.FIX1,'Value')==0 & get(handles.PATCH1,'Value')==0
1308    val=ichoice;% first valid pair proposed by default in the menu
1309end
1310if val>length(displ_pair')
1311    set(handles.list_pair_civ2,'Value',1);% first valid pair proposed by default in the menu
1312else
1313    set(handles.list_pair_civ2,'Value',val);
1314end
1315set(handles.list_pair_civ2,'String',displ_pair');
1316set(gcf,'Pointer','arrow')
1317
1318%------------------------------------------------------------------------
1319%  determine the list of index pairs of processing file
1320function [num1_civ1,num2_civ1,num_a_civ1,num_b_civ1,num1_civ2,num2_civ2,num_a_civ2,num_b_civ2]=...
1321    find_pair_indices(handles,mode)
1322%------------------------------------------------------------------------
1323first_i=str2double(get(handles.first_i,'String'));%first index i
1324last_i=str2double(get(handles.last_i,'String'));%last index i
1325incr=str2double(get(handles.incr_i,'String'));% increment
1326num_i=[first_i:incr:last_i];% list of i indices (reference values for each pair)
1327if isequal(get(handles.first_j,'Visible'),'on')
1328    first_j=str2double(get(handles.first_j,'String'));%first index j
1329    last_j=str2double(get(handles.last_j,'String'));%last index j
1330    incr_j=str2double(get(handles.incr_j,'String'));% increment
1331else
1332    first_j=1;
1333    last_j=1;
1334    incr_j=1;
1335end
1336num_j=[first_j:incr_j:last_j];% list of j indices (reference values for each pair)
1337list_civ1=get(handles.list_pair_civ1,'String');
1338index_civ1=get(handles.list_pair_civ1,'Value');
1339str_civ1=list_civ1{index_civ1};%string defining the image pairs for civ1
1340if isempty(str_civ1)||isequal(str_civ1,'')
1341    msgbox_uvmat('ERROR','no image pair selected for civ1')
1342    return
1343end
1344list_civ2=get(handles.list_pair_civ2,'String');
1345index_civ2=get(handles.list_pair_civ2,'Value');
1346if index_civ2>length(list_civ2)
1347    list_civ2=list_civ1;
1348    index_civ2=index_civ1;
1349end
1350str_civ2=list_civ2{index_civ2};%string defining the image pairs for civ2
1351if isempty(first_i)||isempty(first_j), msgbox_uvmat('ERROR','first field number not defined'),...
1352        return,end;
1353if isequal(last_i,[])|| isequal(last_j,[]),msgbox_uvmat('ERROR','last field number not defined'),...
1354        return,end;
1355if isequal(incr,[])|| isequal(incr_j,[]),msgbox_uvmat('ERROR','increment in field number not defined'),...
1356        return,end;
1357if last_i < first_i || last_j < first_j , msgbox_uvmat('ERROR','last field number must be larger than the first one'),...
1358        return,end;
1359if isequal (mode,'series(Di)')
1360    %recognize the pair civ1 from the display
1361    indsel=find((double(str_civ1)<48)|(double(str_civ1)>57));% character indices of non numerical characters
1362    str_raw=str_civ1(indsel);
1363    indsepar=find(str_raw=='|'); %character index of the separator
1364    d1=str2double(str_civ1([indsel(indsepar-1)+1:indsel(indsepar)-1]));
1365    if indsepar==length(str_raw)
1366        d2=str2double(str_civ1([indsel(indsepar)+1:end]));
1367    else
1368        d2=str2double(str_civ1([indsel(indsepar)+1:indsel(indsepar+1)-1]));
1369    end
1370    num1_civ1=num_i-d1;% set of first image numbers
1371    num2_civ1=num_i+d2;
1372    num_a_civ1=num_j;
1373    num_b_civ1=num_j;
1374   
1375    %recognize the pair civ2 from the display
1376    indsel=find((double(str_civ2)<48)|(double(str_civ2)>57));% character indices of non numerical characters
1377    str_raw=str_civ2(indsel);
1378    indsepar=find(str_raw=='|'); %character index of the separator
1379    d1=str2num(str_civ2([indsel(indsepar-1)+1:indsel(indsepar)-1]));
1380    if indsepar==length(str_raw)
1381        d2=str2num(str_civ2([indsel(indsepar)+1:end]));
1382    else
1383        d2=str2num(str_civ2([indsel(indsepar)+1:indsel(indsepar+1)-1]));
1384    end
1385    if isempty(d1)
1386        num1_civ2=num_i;
1387    else
1388        num1_civ2=num_i-d1;% set of first image numbers
1389    end
1390    if isempty(d2)
1391        num2_civ2=num_i;
1392    else
1393        num2_civ2=num_i+d2;
1394    end
1395    num_a_civ2=num_j;
1396    num_b_civ2=num_j;
1397   
1398    % adjust the first and last field number
1399    lastfield=str2num(get(handles.nb_field,'String'));
1400    if isequal(lastfield,[])
1401        indsel=find((num1_civ1 >= 1)&(num1_civ2 >= 1));
1402    else
1403        indsel=find((num2_civ1 <= lastfield)&(num2_civ2 <= lastfield)&(num1_civ1 >= 1)&(num1_civ2 >= 1));
1404    end
1405    if length(indsel)>=1
1406        firstind=indsel(1);
1407        lastind=indsel(end);
1408        set(handles.first_i,'String',num2str(num_i(firstind)))%update the display of first and last fields
1409        set(handles.last_i,'String',num2str(num_i(lastind)))
1410        num_i=num_i(indsel);
1411        num1_civ1=num1_civ1(indsel);
1412        num1_civ2=num1_civ2(indsel);
1413        num2_civ1=num2_civ1(indsel);
1414        num2_civ2=num2_civ2(indsel);
1415    end
1416elseif isequal (mode,'series(Dj)')
1417    lastfield_j=str2num(get(handles.nb_field2,'String'));
1418    num1_civ1=num_i;% set of first image numbers
1419    num2_civ1=num_i;
1420    num_a_civ1=num_j-floor(index_civ1/2)*ones(size(num_j));
1421    num_b_civ1=num_j+ceil(index_civ1/2)*ones(size(num_j));
1422    num1_civ2=num_i;
1423    num2_civ2=num_i;
1424    num_a_civ2=num_j-floor(index_civ2/2)*ones(size(num_j));
1425    num_b_civ2=num_j+ceil(index_civ2/2)*ones(size(num_j));
1426    % adjust the first and last field number
1427    if isequal(lastfield_j,[])
1428        indsel=find((num_a_civ1 >= 1)&(num_a_civ2 >= 1));
1429    else
1430        indsel=find((num_b_civ1 <= lastfield_j)&(num_b_civ2 <= lastfield_j)&(num_a_civ1 >= 1)&(num_a_civ2 >= 1));
1431    end
1432    if length(indsel)>=1
1433        firstind=indsel(1);
1434        lastind=indsel(end);
1435        set(handles.first_j,'String',num2str(num_j(firstind)))%update the display of first and last fields
1436        set(handles.last_j,'String',num2str(num_j(lastind)))
1437        num_j=num_j(indsel);
1438        num_a_civ1=num_a_civ1(indsel);
1439        num_a_civ2=num_a_civ2(indsel);
1440        num_b_civ1=num_b_civ1(indsel);
1441        num_b_civ2=num_b_civ2(indsel);
1442    end
1443elseif isequal(mode,'pair j1-j2') %case of bursts (png_old or png_2D)
1444    num1_civ1=num_i;
1445    num1_civ2=num_i;
1446    displ_num=get(handles.list_pair_civ1,'UserData');
1447    num2_civ1=num_i;
1448    num_a_civ1=displ_num(1,index_civ1);
1449    num_b_civ1=displ_num(2,index_civ1);
1450    num2_civ2=num_i;
1451    num_a_civ2=displ_num(1,index_civ2);
1452    num_b_civ2=displ_num(2,index_civ2);
1453elseif isequal(mode,'displacement')
1454    num1_civ1=num_i;
1455    num2_civ1=num_i;
1456    num_a_civ1=num_j;
1457    num_b_civ1=num_j;
1458    num1_civ2=num_i;
1459    num2_civ2=num_i;
1460    num_a_civ2=num_j;
1461    num_b_civ2=num_j;
1462end
1463
1464
1465%------------------------------------------------------------------------
1466% --- Executes on selection change in list_pair_civ1.
1467function list_pair_civ1_Callback(hObject, eventdata, handles)
1468%------------------------------------------------------------------------
1469%reproduce by default the chosen pair in the civ2 menu
1470list_pair=get(handles.list_pair_civ1,'String');%get the menu of image pairs
1471index_pair=get(handles.list_pair_civ1,'Value');
1472displ_num=get(handles.list_pair_civ1,'UserData');
1473num_a=displ_num(1,index_pair);
1474num_b=displ_num(2,index_pair);
1475list_pair2=get(handles.list_pair_civ2,'String');%get the menu of image pairs
1476if index_pair<=length(list_pair2)
1477    set(handles.list_pair_civ2,'Value',index_pair);
1478end
1479
1480%update first_i and last_i according to the chosen image pairs
1481mode_list=get(handles.mode,'String');
1482mode_value=get(handles.mode,'Value');
1483mode=mode_list{mode_value};
1484if isequal(mode,'series(Di)')
1485    first_i=str2num(get(handles.first_i,'String'));
1486    last_i=str2num(get(handles.last_i,'String'));
1487    incr_i=str2num(get(handles.incr_i,'String'));
1488    num1=first_i:incr_i:last_i;
1489    lastfield=str2num(get(handles.nb_field,'String'));
1490    if ~isequal(lastfield,[])
1491        ind=find((num1-floor(index_pair/2)*ones(size(num1))>0)& ...
1492            (num1+ceil(index_pair/2)*ones(size(num1))<=lastfield));
1493        num1=num1(ind);
1494    end
1495    set(handles.first_i,'String',num2str(num1(1)));
1496    set(handles.last_i,'String',num2str(num1(end)));
1497elseif isequal(mode,'series(Dj)')
1498    first_j=str2num(get(handles.first_j,'String'));
1499    last_j=str2num(get(handles.last_j,'String'));
1500    incr_j=str2num(get(handles.incr_j,'String'));
1501    num_j=first_j:incr_j:last_j;
1502    lastfield2=str2num(get(handles.nb_field2,'String'));
1503    if ~isequal(lastfield2,[])
1504        ind=find((num_j-floor(index_pair/2)*ones(size(num_j))>0)& ...
1505            (num_j+ceil(index_pair/2)*ones(size(num_j))<=lastfield2));
1506        num1=num_j(ind);
1507    end
1508    set(handles.first_j,'String',num2str(num1(1)));
1509    set(handles.last_j,'String',num2str(num1(end)));
1510end
1511
1512%------------------------------------------------------------------------
1513% --- Executes on selection change in list_pair_civ2.
1514function list_pair_civ2_Callback(hObject, eventdata, handles)
1515%------------------------------------------------------------------------
1516index_pair=get(handles.list_pair_civ2,'Value');%get the selected position index in the menu
1517
1518%update first_i and last_i according to the chosen image pairs
1519mode_list=get(handles.mode,'String');
1520mode_value=get(handles.mode,'Value');
1521mode=mode_list{mode_value};
1522if isequal(mode,'series(Di)')
1523    first_i=str2num(get(handles.first_i,'String'));
1524    last_i=str2num(get(handles.last_i,'String'));
1525    incr_i=str2num(get(handles.incr_i,'String'));
1526    num1=first_i:incr_i:last_i;
1527    lastfield=str2num(get(handles.nb_field,'String'));
1528    if ~isequal(lastfield,[])
1529        ind=find((num1-floor(index_pair/2)*ones(size(num1))>0)& ...
1530            (num1+ceil(index_pair/2)*ones(size(num1))<=lastfield));
1531        num1=num1(ind);
1532    end
1533    set(handles.first_i,'String',num2str(num1(1)));
1534    set(handles.last_i,'String',num2str(num1(end)));
1535elseif isequal(mode,'series(Dj)')
1536    first_j=str2num(get(handles.first_j,'String'));
1537    last_j=str2num(get(handles.last_j,'String'));
1538    incr_j=str2num(get(handles.incr_j,'String'));
1539    num_j=first_j:incr_j:last_j;
1540    lastfield2=str2num(get(handles.nb_field2,'String'));
1541    if ~isequal(lastfield2,[])
1542        ind=find((num_j-floor(index_pair/2)*ones(size(num_j))>0)& ...
1543            (num_j+ceil(index_pair/2)*ones(size(num_j))<=lastfield2));
1544        num1=num_j(ind);
1545    end
1546    set(handles.first_j,'String',num2str(num1(1)));
1547    set(handles.last_j,'String',num2str(num1(end)));
1548end
1549
1550function RUN_Callback(hObject, eventdata, handles)
1551%------------------------------------------------------------------------
1552% global civ1_exe civ2_exe patch_exe patch_new_exe sge
1553set(handles.RUN, 'Enable','Off')
1554set(handles.RUN,'BackgroundColor',[0.831 0.816 0.784])
1555batch=0;
1556launch_jobs(hObject, eventdata, handles,batch);
1557set(handles.RUN, 'Enable','On')
1558set(handles.RUN,'BackgroundColor',[1 0 0])
1559
1560%------------------------------------------------------------------------
1561% --- Executes on button press in BATCH: remote processing
1562function BATCH_Callback(hObject, eventdata, handles)
1563%% -----------------------------------------------------------------------
1564%global civ1_exe civ2_exe patch_exe patch_new_exe fix_exe todo_path sge Civ_exe % probabely to remove
1565set(handles.BATCH, 'Enable','Off')
1566set(handles.BATCH,'BackgroundColor',[0.831 0.816 0.784])
1567batch=1;
1568launch_jobs(hObject, eventdata, handles, batch)
1569set(handles.BATCH, 'Enable','On')
1570set(handles.BATCH,'BackgroundColor',[1 0 0])
1571
1572%------------------------------------------------------------------------
1573% --- Lauch command called by RUN and BATCH: remote processing
1574function launch_jobs(hObject, eventdata, handles, batch)
1575%-----------------------------------------------------------------------
1576%% check the selected list of operations:
1577operations={'CIV1','FIX1','PATCH1','CIV2','FIX2','PATCH2'};
1578box_test(1)=get(handles.CIV1,'Value');
1579box_test(2)=get(handles.FIX1,'Value');
1580box_test(3)=get(handles.PATCH1,'Value');
1581box_test(4)=get(handles.CIV2,'Value');
1582box_test(5)=get(handles.FIX2,'Value');
1583box_test(6)=get(handles.PATCH2,'Value');
1584index=find(box_test==1);
1585if isempty(index)
1586    msgbox_uvmat('ERROR','no selected operation')
1587    return
1588end
1589index_first=min(index);
1590index_last=max(index);
1591box_used=box_test([index_first : index_last]);
1592[box_missing,ind_missing]=min(box_used);
1593if isequal(box_missing,0)
1594    msgbox_uvmat('ERROR',['missing' cell2mat(operations(ind_missing))]);
1595    return
1596end
1597
1598%% get the root names
1599filebase=get(handles.RootName,'String');
1600if isempty(filebase)||isequal(filebase,'')
1601    msgbox_uvmat('ERROR','no input files')
1602    return
1603end
1604
1605%check mask if selecetd
1606if isequal(get(handles.get_mask_civ1,'Value'),1)
1607    maskname=get(handles.mask_civ1,'String');
1608    if ~exist(maskname,'file')
1609        get_mask_civ1_Callback(hObject, eventdata, handles);
1610    end
1611end
1612if isequal(get(handles.get_mask_fix1,'Value'),1)
1613    maskname=get(handles.mask_fix1,'String');
1614    if ~exist(maskname,'file')
1615        get_mask_fix1_Callback(hObject, eventdata, handles);
1616    end
1617end
1618if isequal(get(handles.get_mask_civ2,'Value'),1)
1619    maskname=get(handles.mask_civ2,'String');
1620    if ~exist(maskname,'file')
1621        get_mask_civ2_Callback(hObject, eventdata, handles);
1622    end
1623end
1624if isequal(get(handles.get_mask_fix2,'Value'),1)
1625    maskname=get(handles.mask_fix2,'String');
1626    if ~exist(maskname,'file')
1627        get_mask_fix2_Callback(hObject, eventdata, handles);
1628    end
1629end
1630
1631%% initialize the waitbars
1632set(handles.waitbar_1,'Position',[0.946 0.876 0.03 0.001])
1633set(handles.waitbar_patch1,'Position',[0.946 0.439 0.03 0.001])
1634set(handles.waitbar_civ2,'Position',[0.946 0.219 0.03 0.001])
1635set(handles.waitbar_patch2,'Position',[0.946 0.0 0.03 0.001])
1636drawnow
1637
1638%% set the list of files and check them
1639display('checking the files...')
1640compare=get(handles.compare,'Value');%test for usual PIV (compare=1) or displacement (=2) or stereo PIV (=3)
1641[filecell,num1_civ1,num2_civ1,num_a_civ1,num_b_civ1,num1_civ2,num2_civ2,num_a_civ2,num_b_civ2,nom_type_nc]=...
1642    set_civ_filenames(handles,compare,box_test);
1643if isempty(filecell)
1644    return
1645end
1646nbfield=numel(num1_civ1);
1647nbslice=numel(num_a_civ1);
1648
1649%% choice of batch priority
1650ind_answer=2;
1651if batch
1652    [s,w]=unix('qstat -q civ.q|grep job_| wc -l'); %check the waiting list (command unix)
1653    if isequal(s,0)
1654        w(end)=[];
1655        str_displ={[w ' jobs in the waiting list'];'Select a priority:'};
1656        str={'urgent';'normal';'low'};
1657        [ind_answer,v] = listdlg('PromptString',str_displ,...
1658            'SelectionMode','single',...
1659            'ListString',str,'ListSize',[200 200],'Name','job priority','InitialValue',3);
1660        if isequal(v,0) % to handle Cancel button and figure close,
1661            return % a better way should be create
1662        end
1663    else
1664        msgbox_uvmat('ERROR','batch system not available')
1665        return
1666    end
1667else
1668    if isunix
1669        [xx,w]=unix('ps faux |grep civ|wc -l');
1670        w(end)=[];
1671        if str2double(w)+numel(num1_civ1)> 50
1672            msgbox_uvmat('ERROR',{['There are already ' w ' civ processes running locally'];'Use BATCH or submit RUN later'})
1673            return
1674        end
1675    end
1676end
1677
1678
1679%% read names of the .exe files for PIV and patch
1680path_UVMAT=fileparts(which('uvmat')); %path to the source directory of uvmat
1681xmlfile='PARAM.xml';
1682if exist(xmlfile,'file')% search parameter xml file in the whole matlab path
1683    t=xmltree(xmlfile);
1684    s=convert(t);
1685end
1686test_interp=0;
1687if batch
1688    if isfield(s,'BatchParam')
1689        sparam=s.BatchParam;
1690        if ~ismember(sparam.BatchMode,{'sge'})
1691            msgbox_uvmat('ERROR',['batch mode ' sparam.BatchMode ' not supported by UVMAT'])
1692        end
1693    else
1694        msgbox_uvmat('ERROR','no batch mode defined in PARAM.xml')
1695        return
1696    end
1697else
1698    if isfield(s,'RunParam')
1699        sparam=s.RunParam;
1700    else
1701        msgbox_uvmat('ERROR','no civ binaries defined in PARAM.xml')
1702        return
1703    end
1704    if isfield(sparam,'CivBin')
1705        if ~exist(sparam.CivBin,'file')
1706            sparam.CivBin=fullfile(path_UVMAT,sparam.CivBin);
1707        end
1708    end
1709    if isfield(sparam,'Civ1Bin')
1710        if ~exist(sparam.Civ1Bin,'file')
1711            sparam.Civ1Bin=fullfile(path_UVMAT,sparam.Civ1Bin);
1712        end
1713    end
1714    if isfield(sparam,'Civ2Bin')
1715        if ~exist(sparam.Civ2Bin,'file')
1716            sparam.Civ2Bin=fullfile(path_UVMAT,sparam.Civ2Bin);
1717        end
1718    end
1719    %test_interp=get(handles.test_interp,'Value');
1720
1721    if  isfield(sparam,'PatchBin')
1722        if ~exist(sparam.PatchBin,'file')
1723            sparam.PatchBin=fullfile(path_UVMAT,sparam.PatchBin);
1724        end
1725    end
1726    % if test_interp && isfield(sparam,'PatchNewBin')
1727    %     if ~exist(sparam.PatchNewBin,'file')
1728    %          sparam.PatchNewBin=fullfile(path_UVMAT,sparam.PatchNewBin);
1729    %     end
1730    % end
1731    if isfield(sparam,'FixBin')
1732        if ~exist(sparam.FixBin,'file')
1733            sparam.FixBin=fullfile(path_UVMAT,sparam.FixBin);
1734        end
1735    end
1736end
1737if batch
1738    if isfield(sparam,'BatchMode')
1739        batch_mode=sparam.BatchMode;
1740    end
1741else
1742%     MaxCivProcesses=50;
1743%     if isfield(sparam,'MaxCivProcesses')
1744%         MaxCivProcesses=str2double(sparam.MaxCivProcesses);
1745%     end
1746end
1747
1748
1749%% get civ1 parameters:
1750display('files OK, processing...')
1751%get civ parameters
1752if box_test(1)==1
1753    par_civ1=read_param_civ1(handles,filecell.ima1.civ1{1,1});
1754end
1755
1756%% get fix1 parameters
1757if box_test(2)==1
1758    flagindex1(1)=get(handles.vec_Fmin2, 'Value');
1759    flagindex1(2)=get(handles.vec_F3, 'Value');
1760    flagindex1(3)=get(handles.vec_F2, 'Value');
1761    thresh_vecC1=str2double(get(handles.thresh_vecC,'String'));%threshold on image correlation vec_C
1762    thresh_vel1=str2double(get(handles.thresh_vel,'String'));%threshold on velocity modulus
1763    test_mask=get(handles.get_mask_fix1,'Value');
1764    nbslice_mask=get(handles.mask_fix1,'UserData'); % get the number of slices (= number of masks)
1765    %%%%%%%%%%%%%COMPLETER LE PROGRAMME FIX
1766    %     inf_sup=get(handles.inf_sup1,'Value');80
1767    %     fileref=get(handles.ref_fix1,'String');
1768    %     refpath=get(handles.ref_fix1,'UserData');
1769    %     fileref=fullfile(refpath,fileref);
1770    menu=get(handles.field_ref1,'String');
1771    index=get(handles.field_ref1,'Value');
1772    if isempty(menu)
1773        fieldchoice='';
1774    else
1775        fieldchoice=menu{index};
1776        msgbox_uvmat('WARNING','reference field is not used presently with batch, use RUN option')
1777    end
1778end
1779
1780%% get patch1 parameters
1781if box_test(3)==1
1782    rho_patch1=str2double(get(handles.rho_patch1,'String'));
1783    if isnan(rho_patch1)
1784        rho_patch1='1000';
1785        set(handles.rho_patch1,'String','1')
1786    else
1787        rho_patch1=num2str(1000*rho_patch1);
1788    end
1789    nx_patch1=get(handles.nx_patch1,'String');
1790    ny_patch1=get(handles.ny_patch1,'String');
1791    if isnan(str2double(nx_patch1))
1792        nx_patch1='50' ;%default
1793        set(handles.nx_patch1,'String','50');
1794    end
1795    if isnan(str2double(ny_patch1))
1796        ny_patch1='50' ;%default
1797        set(handles.ny_patch1,'String','50');
1798    end
1799    subdomain_patch1=get(handles.subdomain_patch1,'String');
1800    thresh_patch1=get(handles.thresh_patch1,'String');
1801end
1802
1803%% get civ2 parameters:
1804if box_test(4)==1
1805    par_civ2=read_param_civ2(handles,cell2mat(filecell.ima1.civ2(1,1)));
1806end
1807
1808%% get fix2 parameters
1809if box_test(5)==1
1810    flagindex2(1)=get(handles.vec_Fmin2_2, 'Value');
1811    flagindex2(2)=get(handles.vec_F3_2, 'Value');
1812    flagindex2(3)=get(handles.vec_F4, 'Value');
1813    thresh_vec2C=str2double(get(handles.thresh_vec2C,'String'));%threshold on image correlation vec_C
1814    thresh_vel2=str2double(get(handles.thresh_vel2,'String'));%threshold on velocity modulus
1815    test_mask=get(handles.get_mask_fix2,'Value');
1816    nbslice_mask=get(handles.mask_fix2,'UserData'); % get the number of slices (= number of masks)
1817    %%%%%%%%%%%%%COMPLETER LE PROGRAMME FIX AVEC REF FILE ET OPTION inf_sup=2
1818    %     inf_sup=get(handles.inf_sup2,'Value');
1819    %     ref=get(handles.ref_fix2,'UserData');
1820   
1821    %%%%%%%%%%%%%%%%%%%
1822end
1823
1824%% get patch2 parameters
1825if box_test(6)==1
1826    rho_patch2=str2double(get(handles.rho_patch2,'String'));
1827    if isnan(rho_patch2)
1828        rho_patch2='1000';
1829        set(handles.rho_patch2,'String','1')
1830    else
1831        rho_patch2=num2str(1000*rho_patch2);
1832    end
1833    nx_patch2=get(handles.nx_patch2,'String');
1834    ny_patch2=get(handles.ny_patch2,'String');
1835    if isnan(str2double(nx_patch2))
1836        nx_patch2='50' ;%default
1837        set(handles.nx_patch2,'String','50');
1838    end
1839    if isnan(str2double(ny_patch2))
1840        ny_patch2='50' ;%default
1841        set(handles.ny_patch2,'String','50');
1842    end
1843    subdomain_patch2=get(handles.subdomain_patch2,'String');
1844    thresh_patch2=get(handles.thresh_patch2,'String');
1845    %              test_interp=get(handles.test_interp,'Value');
1846end
1847
1848%% MAIN LOOP
1849time=get(handles.RootName,'UserData'); %get the set of times
1850civAll=get(handles.Experimental,'Value'); % Boolean for new civ excution method
1851super_cmd=[];
1852
1853for ifile=1:nbfield
1854    for j=1:nbslice
1855        i_cmd=0;
1856        cmd='';
1857        if isunix % check: necessaire aussi en RUN?
1858            %fid=fopen([filename '.cmx'],'w')
1859            cmd='#!/bin/bash \n';
1860            cmd=[cmd '#$ -cwd \n'];
1861            cmd=[cmd 'hostname && date \n'];
1862            cmd=[cmd 'umask 002 \n'];
1863        end
1864        if civAll
1865            civAllxml=xmltree;% xml contents,  all parameters
1866            civAllCmd='';
1867            civAllxml=set(civAllxml,1,'name','CivDoc');
1868        end
1869        filename_cmx=filecell.nc.civ1{ifile,j};%output netcdf file
1870        filename_cmx(end-1:end+1)='cmx';%name of cmx file
1871       
1872        %CIV1
1873        if box_test(1)==1
1874            par_civ1.filename_ima_a=filecell.ima1.civ1{ifile,j};
1875            par_civ1.filename_ima_b=filecell.ima2.civ1{ifile,j};
1876            namelog=[filename_cmx([1:end-3]) 'log'];
1877            par_civ1.Dt=num2str(time(num2_civ1(ifile),num_b_civ1(j))-time(num1_civ1(ifile),num_a_civ1(j)));
1878            par_civ1.T0=num2str((time(num2_civ1(ifile),num_b_civ1(j))+time(num1_civ1(ifile),num_a_civ1(j)))/2);
1879            par_civ1.term_a=num2stra(num_a_civ1(j),nom_type_nc);%UTILITE?
1880            par_civ1.term_b=num2stra(num_b_civ1(j),nom_type_nc);%
1881            test_mask=get(handles.get_mask_civ1,'Value');
1882            if test_mask==0
1883                par_civ1.maskname='noFile use default';
1884                par_civ1.maskflag='n';
1885            else
1886                maskdispl=get(handles.mask_civ1,'String');
1887                if exist(maskdispl,'file')
1888                    par_civ1.maskname=maskdispl;
1889                    par_civ1.maskflag='y';
1890                else
1891                    maskbase=[filebase '_' maskdispl]; %
1892                    nbslice_mask=str2num(maskdispl(1:end-4)); %
1893                    num1_mask=mod(num1_civ1(ifile)-1,nbslice_mask)+1;
1894                    par_civ1.maskname=name_generator(maskbase,num1_mask,1,'.png','_i');
1895                    if exist(par_civ1.maskname,'file')
1896                        par_civ1.maskflag='y';
1897                    else
1898                        par_civ1.maskname='noFile use default';
1899                        par_civ1.maskflag='n';
1900                    end
1901                end
1902            end
1903           
1904            test_grid=get(handles.browse_gridciv1,'Value');
1905            if test_grid
1906                par_civ1.gridflag='y';
1907                gridname=get(handles.grid_civ1,'String');
1908                if isequal(gridname(end-3:end),'grid')
1909                    nbslice_grid=str2num(gridname(1:end-4)); %
1910                    if ~isempty(nbslice_grid)
1911                        num1_grid=mod(num1_civ1(ifile)-1,nbslice_grid)+1;
1912                        par_civ1.gridname=[filebase '_' name_generator(gridname,num1_grid,1,'.grid','_i')];
1913                        if ~exist(par_civ1.gridname,'file')
1914                            msgbox_uvmat('ERROR','grid file absent for civ1')
1915                        end
1916                    elseif exist(gridname,'file')
1917                        par_civ1.gridname=gridname;
1918                    else
1919                        msgbox_uvmat('ERROR','grid file absent for civ1')
1920                    end
1921                end
1922            else
1923                par_civ1.gridname='noFile use default';
1924                par_civ1.gridflag='n';
1925            end
1926            %
1927            i_cmd=i_cmd+1;
1928            if isequal(civAll,0)
1929                cmd=[cmd CIV1_CMD(filename_cmx(1:end-4),namelog,par_civ1,handles,sparam) '\n'];
1930            else
1931                civAllCmd=[civAllCmd ' civ1 '];
1932                str=CIV1_CMD_Unified(filename_cmx([1:end-4]),namelog,par_civ1);
1933                fieldnames=fields(str);
1934                [civAllxml,uid_civ1]=add(civAllxml,1,'element','civ1');
1935                for ilist=1:length(fieldnames)
1936                    val=eval(['str.' fieldnames{ilist}]);
1937                    if ischar(val)
1938                        [civAllxml,uid_t]=add(civAllxml,uid_civ1,'element',fieldnames{ilist});
1939                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
1940                    end
1941                end
1942            end
1943        end
1944       
1945        % FIX1
1946        if box_test(2)==1
1947            test_mask=get(handles.get_mask_fix1,'Value');
1948            if test_mask==0
1949                maskname='';
1950            else
1951                maskdispl=get(handles.mask_fix1,'String');
1952                nbslice_mask=str2num(maskdispl(1:end-4)); %
1953                num1_mask=mod(num1_civ1(ifile)-1,nbslice_mask)+1;
1954                maskbase=[filebase '_' maskdispl];
1955                maskname=name_generator(maskbase,num1_mask,1,'.png','_i');
1956            end
1957            if isequal(civAll,0)
1958                cmd_FIX=[sparam.FixBin ' -f ' filecell.nc.civ1{ifile,j} ' -fi1 ' num2str(flagindex1(1)) ...
1959                    ' -fi2 ' num2str(flagindex1(2)) ' -fi3 ' num2str(flagindex1(3)) ...
1960                    ' -threshC ' num2str(thresh_vecC1) ' -threshV ' num2str(thresh_vel1) ' -maskName ' maskname];
1961                cmd_FIX=regexprep(cmd_FIX,'\\','\\\\');
1962                cmd=[cmd cmd_FIX '\n'];
1963            else
1964                fix1.inputFileName=filecell.nc.civ1{ifile,j} ;
1965                fix1.fi1=num2str(flagindex1(1));
1966                fix1.fi2=num2str(flagindex1(2));
1967                fix1.fi3=num2str(flagindex1(3));
1968                fix1.threshC=num2str(thresh_vecC1);
1969                fix1.threshV=num2str(thresh_vel1);
1970                fieldnames=fields(fix1);
1971                [civAllxml,uid_fix1]=add(civAllxml,1,'element','fix1');
1972                for ilist=1:length(fieldnames)
1973                    val=eval(['fix1.' fieldnames{ilist}]);
1974                    if ischar(val)
1975                        [civAllxml,uid_t]=add(civAllxml,uid_fix1,'element',fieldnames{ilist});
1976                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
1977                    end
1978                end
1979                civAllCmd=[civAllCmd ' fix1 '];
1980            end
1981        end
1982       
1983        %PATCH1
1984        if box_test(3)==1
1985            if isequal(civAll,0)
1986                cmd_PATCH=PATCH_CMD(filecell.nc.civ1{ifile,j},nx_patch1,ny_patch1,rho_patch1,subdomain_patch1,thresh_patch1,test_interp,sparam.PatchBin);
1987                cmd_PATCH=regexprep(cmd_PATCH,'\\','\\\\');
1988                cmd=[cmd cmd_PATCH '\n'];
1989            else
1990                patch1.inputFileName=filecell.nc.civ1{ifile,j} ;
1991                patch1.nopt=subdomain_patch1;
1992                patch1.maxdiff=thresh_patch1;
1993                patch1.ro=rho_patch1;
1994                test_grid=get(handles.get_gridpatch1,'Value');
1995                if test_grid
1996                    patch1.gridflag='y';
1997                    gridname=get(handles.grid_patch1,'String');
1998                    if isequal(gridname(end-3:end),'grid')
1999                        nbslice_grid=str2num(gridname(1:end-4)); %
2000                        if ~isempty(nbslice_grid)
2001                            num1_grid=mod(num1_civ1(ifile)-1,nbslice_grid)+1;
2002                            patch1.gridPatch=[filebase '_' name_generator(gridname,num1_grid,1,'.grid','_i')];
2003                            if ~exist(patch1.gridPatch,'file')
2004                                msgbox_uvmat('ERROR','grid file absent for patch1')
2005                            end
2006                        elseif exist(gridname,'file')
2007                            patch1.gridPatch=gridname;
2008                        else
2009                            msgbox_uvmat('ERROR','grid file absent for patch1')
2010                        end
2011                    end
2012                else
2013                    patch1.gridPatch='none';
2014                    patch1.gridflag='n';
2015                    patch1.m=nx_patch1;
2016                    patch1.n=ny_patch1;
2017                end
2018                patch1.convectFlow='n';
2019                fieldnames=fields(patch1);
2020                [civAllxml,uid_patch1]=add(civAllxml,1,'element','patch1');
2021                for ilist=1:length(fieldnames)
2022                    val=eval(['patch1.' fieldnames{ilist}]);
2023                    if ischar(val)
2024                        [civAllxml,uid_t]=add(civAllxml,uid_patch1,'element',fieldnames{ilist});
2025                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
2026                    end
2027                end
2028                civAllCmd=[civAllCmd ' patch1 '];
2029            end
2030        end
2031       
2032        if box_test(4)==1 || box_test(5)==1 || box_test(6)==1
2033            filename_cmx=filecell.nc.civ2{ifile,j};%output netcdf file
2034            filename_cmx([end-1:end+1])=[ 'cmx'];%name of cmx file
2035%             filename_cmx=[filename_cmx 'x'];
2036        end
2037       
2038        if box_test(4)==1
2039            par_civ2.filename_ima_a=filecell.ima1.civ2{ifile,j};
2040            %par_civ2.filename_ima_a([end-3:end])=[];%remove .png extension
2041            par_civ2.filename_ima_b=filecell.ima2.civ2{ifile,j};
2042            %par_civ2.filename_ima_b([end-3:end])=[];%remove .png extension
2043            namelog=[filename_cmx([1:end-3]) 'log'];
2044            par_civ2.Dt=num2str(time(num2_civ2(ifile),num_b_civ2(j))-time(num1_civ2(ifile),num_a_civ2(j)));
2045            par_civ2.T0=num2str((time(num2_civ1(ifile),num_b_civ2(j))+time(num1_civ2(ifile),num_a_civ2(j)))/2);
2046            par_civ2.term_a=num2stra(num_a_civ2(j),nom_type_nc);
2047            par_civ2.term_b=num2stra(num_b_civ2(j),nom_type_nc);
2048            par_civ2.filename_nc1=filecell.nc.civ1{ifile,j};
2049            par_civ2.filename_nc1([end-2:end])=[]; % remove '.nc'
2050            test_mask=get(handles.get_mask_civ2,'Value');
2051            if test_mask==0
2052                par_civ2.maskname='noFile use default';
2053                par_civ2.maskflag='n';
2054            else
2055                maskdispl=get(handles.mask_civ2,'String');
2056                if exist(maskdispl,'file')
2057                    par_civ2.maskname=maskdispl;
2058                    par_civ2.maskflag='y';
2059                else
2060                    maskbase=[filebase '_' maskdispl]; %
2061                    nbslice_mask=str2num(maskdispl(1:end-4)); %
2062                    num1_mask=mod(num1_civ2(ifile)-1,nbslice_mask)+1;
2063                    par_civ2.maskname=name_generator(maskbase,num1_mask,1,'.png','_i');
2064                    if exist(par_civ2.maskname,'file')
2065                        par_civ2.maskflag='y';
2066                    else
2067                        par_civ2.maskname='noFile use default';
2068                        par_civ2.maskflag='n';
2069                    end
2070                end
2071            end
2072            %TESTgrid
2073            test_grid=get(handles.browse_gridciv2,'Value');
2074            gridname=get(handles.grid_civ2,'String');
2075            gridflag='y';
2076            if numel(gridname)>=4 && isequal(gridname(end-3:end),'grid')
2077                nbslice_grid=str2num(gridname(1:end-4)); %
2078                if ~isempty(nbslice_grid)
2079                    par_civ2.gridflag='y';
2080                    num1_grid=mod(num1_civ2(ifile)-1,nbslice_grid)+1;
2081                    par_civ2.gridname=[filebase '_' name_generator(gridname,num1_grid,1,'.grid','_i')];
2082                    if exist(par_civ2.gridname,'file')
2083                        par_civ2.gridflag='y';
2084                    else
2085                        par_civ2.gridname='noFile use default';
2086                        par_civ2.gridflag='n';
2087                    end
2088                elseif exist(gridname,'file')
2089                    par_civ2.gridflag='y';
2090                else
2091                    par_civ2.gridname='noFile use default';
2092                    par_civ2.gridflag='n';
2093                end
2094            end
2095            %endTESTgrid
2096            i_cmd=i_cmd+1;
2097            cmd_CIV2=CIV2_CMD(filename_cmx(1:end-4),namelog,par_civ2,sparam);
2098            if isequal(civAll,0)
2099                if(isunix)
2100                    cmd=[cmd 'cp -f ' filename_cmx '2 ' filename_cmx '\n' cmd_CIV2 '\n'];
2101                else
2102                    filename_cmx=regexprep(filename_cmx,'\\','\\\\');
2103                    cmd=[cmd 'copy /Y ' filename_cmx '2 ' filename_cmx '\n' cmd_CIV2 '\n'];
2104                end
2105            else
2106                civAllCmd=[civAllCmd ' civ2 '];
2107                str=CIV2_CMD_Unified(filename_cmx([1:end-4]),namelog,par_civ2);
2108                fieldnames=fields(str);
2109                [civAllxml,uid_civ2]=add(civAllxml,1,'element','civ2');
2110                for ilist=1:length(fieldnames)
2111                    val=eval(['str.' fieldnames{ilist}]);
2112                    if ischar(val)
2113                        [civAllxml,uid_t]=add(civAllxml,uid_civ2,'element',fieldnames{ilist});
2114                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
2115                    end
2116                end
2117            end
2118        end
2119       
2120        % FIX2
2121        if box_test(5)==1
2122            test_mask=get(handles.get_mask_fix2,'Value');
2123            if test_mask==0
2124                maskname=''; %no mask used
2125            else
2126                maskdispl=get(handles.mask_fix2,'String');
2127                maskbase=[filebase '_' maskdispl]; %
2128                nbslice_mask=str2num(maskdispl(1:end-4)); %
2129                num1_mask=mod(num1_civ2(ifile)-1,nbslice_mask)+1;
2130                maskname =name_generator(maskbase,num1_mask,1,'.png','_i');
2131            end
2132            if isequal(civAll,0)
2133                cmd_FIX=[sparam.FixBin ' -f ' filecell.nc.civ2{ifile,j} ' -fi1 ' num2str(flagindex2(1)) ...
2134                    ' -fi2 ' num2str(flagindex2(2)) ' -fi3 ' num2str(flagindex2(3)) ...
2135                    ' -threshC ' num2str(thresh_vec2C) ' -threshV ' num2str(thresh_vel2) ' -maskName ' maskname];
2136                cmd_FIX=regexprep(cmd_FIX,'\\','\\\\');
2137                cmd=[cmd cmd_FIX '\n'];
2138            else
2139                fix2.inputFileName=filecell.nc.civ2{ifile,j} ;
2140                fix2.fi1=num2str(flagindex2(1));
2141                fix2.fi2=num2str(flagindex2(2));
2142                fix2.fi3=num2str(flagindex2(3));
2143                fix2.threshC=num2str(thresh_vec2C);
2144                fix2.threshV=num2str(thresh_vel2);
2145                fieldnames=fields(fix2);
2146                [civAllxml,uid_fix2]=add(civAllxml,1,'element','fix2');
2147                for ilist=1:length(fieldnames)
2148                    val=eval(['fix2.' fieldnames{ilist}]);
2149                    if ischar(val)
2150                        [civAllxml,uid_t]=add(civAllxml,uid_fix2,'element',fieldnames{ilist});
2151                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
2152                    end
2153                end
2154                civAllCmd=[civAllCmd ' fix2 '];
2155            end
2156        end
2157       
2158        %PATCH2
2159        if box_test(6)==1
2160            if isequal(civAll,0)
2161                cmd_PATCH=PATCH_CMD(filecell.nc.civ2{ifile,j},nx_patch2,ny_patch2,rho_patch2,subdomain_patch2,thresh_patch2,test_interp,sparam.PatchBin);
2162                cmd_PATCH=regexprep(cmd_PATCH,'\\','\\\\');
2163                cmd=[cmd cmd_PATCH '\n'];
2164            else
2165                patch2.inputFileName=filecell.nc.civ1{ifile,j} ;
2166                patch2.nopt=subdomain_patch1;
2167                patch2.maxdiff=thresh_patch1;
2168                patch2.ro=rho_patch1;
2169                test_grid=get(handles.get_gridpatch2,'Value');
2170                if test_grid
2171                    patch2.gridflag='y';
2172                    gridname=get(handles.grid_patch2,'String');
2173                    if isequal(gridname(end-3:end),'grid')
2174                        nbslice_grid=str2num(gridname(1:end-4)); %
2175                        if ~isempty(nbslice_grid)
2176                            num1_grid=mod(num1_civ2(ifile)-1,nbslice_grid)+1;
2177                            patch2.gridPatch=[filebase '_' name_generator(gridname,num1_grid,1,'.grid','_i')];
2178                            if ~exist(patch2.gridPatch,'file')
2179                                msgbox_uvmat('ERROR','grid file absent for patch2')
2180                            end
2181                        elseif exist(gridname,'file')
2182                            patch2.gridPatch=gridname;
2183                        else
2184                            msgbox_uvmat('ERROR','grid file absent for patch2')
2185                        end
2186                    end
2187                else
2188                    patch2.gridPatch='none';
2189                    patch2.gridflag='n';
2190                    patch2.m=nx_patch2;
2191                    patch2.n=ny_patch2;
2192                end
2193                patch2.convectFlow='n';
2194                fieldnames=fields(patch2);
2195                [civAllxml,uid_patch2]=add(civAllxml,1,'element','patch2');
2196                for ilist=1:length(fieldnames)
2197                    val=eval(['patch2.' fieldnames{ilist}]);
2198                    if ischar(val)
2199                        [civAllxml,uid_t]=add(civAllxml,uid_patch2,'element',fieldnames{ilist});
2200                        [civAllxml,uid_t2]=add(civAllxml,uid_t,'chardata',val);
2201                    end
2202                end
2203                civAllCmd=[civAllCmd ' patch2 '];
2204            end
2205        end
2206        if isequal(civAll,1)
2207            save(civAllxml,[filename_cmx([1:end-4]) '.xml']);
2208            %cmd=char({cmd;[CivBin ' -f ' [filename_cmx([1:end-4]) '.xml'] ' ' civAllCmd]});
2209            cmd=[cmd CivBin ' -f ' filename_cmx(1:end-4) '.xml '  civAllCmd  '\n'];
2210        end
2211        % create the .bat file:
2212        if batch
2213            [Rootbat,Filebat,extbat]=fileparts(filename_cmx);
2214            filename_bat=fullfile(Rootbat,['job_' Filebat extbat]);
2215        else
2216            filename_bat=filename_cmx;
2217        end
2218        filename_bat(end-2:end)='bat';
2219        fid=fopen(filename_bat,'w');
2220        fprintf(fid,cmd);
2221        fclose(fid);
2222        %dlmwrite(filename_bat,cmd,'');%write commands in filename_bat
2223        if batch
2224            switch batch_mode
2225                case 'sge'
2226                    pvalue=num2str((1-ind_answer)*500);
2227                    %namelog=[filename_bat '.patch.log'];
2228                    display(['!qsub -p ' pvalue ' -q civ.q -e ' filename_cmx(1:end-4) '.errors -o ' filename_cmx(1:end-4) '.log' ' ' filename_bat]);
2229                    eval(  ['!qsub -p ' pvalue ' -q civ.q -e ' filename_cmx(1:end-4) '.errors -o ' filename_cmx(1:end-4) '.log' ' ' filename_bat]);
2230            end
2231        else
2232            %% to lauch the jobs locally :
2233            if(isunix)
2234                cmd_str=['. ' filename_bat];
2235                % cmd_str=['!at -qb now -f ' filename_bat ' &']; %ou at -qb now -f bad idea...
2236            else %case of Windows
2237                cmd_str=['@call ' regexprep(filename_bat,'\\','\\\\')];
2238            end
2239            super_cmd=[super_cmd cmd_str '\n'];         
2240            %             eval(cmd_str);
2241            disp(cmd_str);
2242        end
2243    end
2244end
2245
2246
2247if ~batch%TODO: a revoir, cas 'run as background task'
2248    [Rootbat,Filebat,extbat]=fileparts(filename_cmx);
2249    filename_superbat=fullfile(Rootbat,['job_list.bat']);
2250    fid=fopen(filename_superbat,'w');
2251    fprintf(fid,super_cmd');
2252    fclose(fid);
2253    if(isunix)
2254        eval(['!. ' filename_superbat ' &']);
2255    else
2256        eval(['!' filename_superbat ' &']);
2257    end
2258end
2259
2260
2261%save interface state
2262if isfield(filecell,'nc')
2263    if isfield(filecell.nc,'civ2')
2264        fileresu=filecell.nc.civ2{1,1};
2265    else
2266        fileresu=filecell.nc.civ1{1,1};
2267    end
2268end
2269[RootPath,RootFile,field_count,str2,str_a,str_b,ext,nom_type,subdir]=name2display(fileresu);
2270namedoc=fullfile(RootPath,subdir,RootFile);
2271detect=1;
2272while detect==1
2273    namefigfull=[namedoc '.fig'];
2274    hh=dir(namefigfull);
2275    if ~isempty(hh)
2276        detect=1;
2277        namedoc=[namedoc '.0'];
2278    else
2279        detect=0;
2280    end
2281end
2282saveas(gcbf,namefigfull);%save the interface with name namefigfull (A CHANGER EN FICHIER  .xml)
2283
2284
2285
2286function [filecell,num1_civ1,num2_civ1,num_a_civ1,num_b_civ1,num1_civ2,num2_civ2,num_a_civ2,num_b_civ2,nom_type_nc,file_ref_fix1,file_ref_fix2]=...
2287    set_civ_filenames(handles,compare,box_test)
2288%------------------------------------------------------------------------
2289filecell=[];%default
2290%get the filename root, nomenclature and numbers
2291filebase=get(handles.RootName,'String');
2292browse=get(handles.browse_root,'UserData');
2293compare_list=get(handles.compare,'String');
2294val=get(handles.compare,'Value');
2295compare=compare_list{val};
2296if strcmp(compare,'displacement')
2297    mode='displacement';
2298else
2299    mode_list=get(handles.mode,'String');
2300    mode_value=get(handles.mode,'Value');
2301    mode=mode_list{mode_value};
2302end
2303time=get(handles.RootName,'UserData'); %get the set of times
2304ext_ima=get(handles.ImaExt,'String');
2305nom_type_nc=browse.nom_type_nc;
2306if isfield(browse,'nom_type_ima')
2307    nom_type_ima2=browse.nom_type_ima;
2308end
2309if isempty(nom_type_ima2),nom_type_ima2='1';end; %default
2310if isempty(nom_type_nc),nom_type_nc='_i1-i2';end; %default
2311[num1_civ1,num2_civ1,num_a_civ1,num_b_civ1,num1_civ2,num2_civ2,num_a_civ2,num_b_civ2]=...
2312    find_pair_indices(handles,mode);
2313%determine the new filebase for 'displacement' mode (comparison of two series)
2314filebase_B=filebase;% root name of the second field series for stereo
2315if strcmp(compare,'displacement') || strcmp(compare,'stereo PIV')
2316%     test_disp=1;
2317    nom_type_ima1=browse.nom_type_ima_1; %nomenclature type of the second file series
2318    [Path2,Name2]=fileparts(filebase_B);
2319    Path1=Path2;
2320    Name1=get(handles.RootName_1,'String');% root name of the first field series for stereo
2321    filebase_A=fullfile(Path1,Name1);
2322    if length(Name1)>6
2323        Name1=Name1(end-5:end);
2324    end
2325    if length(Name2)>6
2326        Name2=Name2(end-5:end);
2327    end
2328    filebase_AB=fullfile(Path2,[Name2 '-' Name1]);
2329else
2330%     test_disp=0;
2331    filebase_A=filebase;
2332    nom_type_ima1=nom_type_ima2;
2333    filebase_AB=filebase;
2334end
2335if strcmp(compare,'displacement')
2336    filebase_ima1=filebase_A;
2337    filebase_ima2=filebase_B;
2338    filebase_nc=filebase_AB; %root name for the result of civ2
2339else
2340    filebase_ima1=filebase_B;
2341    filebase_ima2=filebase_B;
2342    filebase_nc=filebase_B;
2343end
2344
2345%determine reference files for fix:
2346file_ref_fix1={};%default
2347file_ref_fix2={};
2348nbfield=length(num1_civ1);
2349nbslice=length(num_a_civ1);
2350if box_test(2)==1% fix1 performed
2351    ref=get(handles.ref_fix1,'UserData');%read data on the ref file stored by get_ref_fix1_Callback
2352    if ~isempty(ref)
2353        first_i=str2num(get(handles.first_i,'String'));
2354        last_i=str2num(get(handles.last_i,'String'));
2355        incr_i=str2num(get(handles.incr_i,'String'));
2356        first_j=str2num(get(handles.first_j,'String'));
2357        last_j=str2num(get(handles.last_j,'String'));
2358        incr_j=str2num(get(handles.incr_j,'String'));
2359        num_i_ref=first_i:incr_i:last_i;
2360        num_j_ref=first_j:incr_j:last_j;
2361        if isequal(mode,'displacement')
2362            num_i1=num_i_ref;
2363            num_i2=num_i_ref;
2364            num_j1=num_j_ref;
2365            num_j2=num_j_ref;
2366        elseif isequal(mode,'pair j1-j2')% isequal(mode,'st_pair j1-j2')
2367            num_i1=num_i_ref;
2368            num_i2=num_i1;
2369            num_j1=ref.num_a*ones(size(num_i_ref));
2370            num_j2=ref.num_b*ones(size(num_i_ref));
2371        elseif isequal(mode,'series(Di)') % isequal(mode,'st_series(Di)')
2372            delta1=floor((ref.num2-ref.num1)/2);
2373            delta2=ceil((ref.num2-ref.num1)/2);
2374            num_i1=num_i_ref-delta1*ones(size(num_i_ref));
2375            num_i2=num_i_ref+delta2*ones(size(num_i_ref));
2376            if isempty(ref.num_a)
2377                ref.num_a=1;
2378            end
2379            num_j1=ref.num_a*ones(size(num_i1));
2380            num_j2=num_j1;
2381        elseif isequal(mode,'series(Dj)')%| isequal(mode,'st_series(Dj)')
2382            delta1=floor((ref.num_b-ref.num_a)/2);
2383            delta2=ceil((ref.num_b-ref.num_a)/2);
2384            num_i1=ref.num1*ones(size(num_i_ref));
2385            num_i2=num_i1;
2386            num_j1=num_j_ref-delta1*ones(size(num_j_ref));
2387            num_j2=num_j_ref+delta2*ones(size(num_j_ref));
2388        end
2389        for ifile=1:nbfield
2390            for j=1:nbslice
2391                file_ref=name_generator(ref.filebase,num_i1(ifile),num_j1(j),'.nc',ref.nom_type,1,num_i2(ifile),num_j2(j),ref.subdir);%
2392                file_ref_fix1(ifile,j)={file_ref};
2393                if ~exist(file_ref,'file')
2394                    msgbox_uvmat('ERROR',['reference file ' file_ref ' not found for fix1'])
2395                    filecell=[];
2396                    return
2397                end
2398            end
2399        end
2400    end
2401end
2402
2403%determine reference files for fix2:
2404if box_test(5)==1% fix2 performed
2405    ref=get(handles.ref_fix2,'UserData');
2406    if ~isempty(ref)
2407        first_i=str2double(get(handles.first_i,'String'));
2408        last_i=str2double(get(handles.last_i,'String'));
2409        incr_i=str2double(get(handles.incr_i,'String'));
2410        first_j=str2double(get(handles.first_j,'String'));
2411        last_j=str2double(get(handles.last_j,'String'));
2412        incr_j=str2double(get(handles.incr_j,'String'));
2413        num_i_ref=[first_i:incr_i:last_i];
2414        num_j_ref=[first_j:incr_j:last_j];
2415        if isequal(mode,'displacement')
2416            num_i1=num_i_ref;
2417            num_i2=num_i_ref;
2418            num_j1=num_j_ref;
2419            num_j2=num_j_ref;
2420        elseif isequal(mode,'pair j1-j2')
2421            num_i1=num_i_ref;
2422            num_i2=num_i1;
2423            num_j1=ref.num_a;
2424            num_j2=ref.num_b;
2425        elseif isequal(mode,'series(Di)')
2426            delta1=floor((ref.num2-ref.num1)/2);
2427            delta2=ceil((ref.num2-ref.num1)/2);
2428            num_i1=num_i_ref-delta1*ones(size(num_i_ref));
2429            num_i2=num_i_ref+delta2*ones(size(num_i_ref));
2430            num_j1=ref.num_a*ones(size(num_i1));
2431            num_j2=num_j1;
2432        elseif isequal(mode,'series(Dj)')
2433            delta1=floor((ref.num_b-ref.num_a)/2);
2434            delta2=ceil((ref.num_b-ref.num_a)/2);
2435            num_i1=ref.num1*ones(size(num_i_ref));
2436            num_i2=num_i1;
2437            num_j1=num_j_ref-delta1*ones(size(num_j_ref));
2438            num_j2=num_j_ref+delta2*ones(size(num_j_ref));
2439        end
2440        for ifile=1:nbfield
2441            for j=1:nbslice
2442                file_ref=name_generator(ref.filebase,num_i1(ifile),num_j1(j),'.nc',ref.nom_type,1,num_i2(ifile),num_j2(j),ref.subdir);%
2443                file_ref_fix2(ifile,j)={file_ref};
2444                if ~exist(file_ref,'file')
2445                    msgbox_uvmat('ERROR',['reference file ' file_ref ' not found for fix2'])
2446                    filecell={};
2447                    return
2448                end
2449            end
2450        end
2451    end
2452end
2453
2454%check dir
2455subdir_civ1=get(handles.subdir_civ1,'String');%subdirectory subdir_civ1 for the netcdf output data
2456subdir_civ2=get(handles.subdir_civ2,'String');
2457if isequal(subdir_civ1,''),subdir_civ1='A'; end% put default subdir
2458if isequal(subdir_civ2,''),subdir_civ2=subdir_civ1; end% put default subdir
2459currentdir=pwd;%store the current working directory
2460[Path_ima,Name]=fileparts(filebase);%Path of the image files (.civ)
2461if ~exist(Path_ima,'dir')
2462    msgbox_uvmat('ERROR',['path to images ' Path_ima ' not found'])
2463    filecell={};
2464    return
2465end
2466[xx,message]=fileattrib(Path_ima);
2467if ~isempty(message) && ~isequal(message.UserWrite,1)
2468    msgbox_uvmat('ERROR',['No writting access to ' Path_ima])
2469    filecell={};
2470    cd(currentdir);
2471    return
2472end
2473
2474%check the existence of the netcdf and image files involved
2475% %%%%%%%%%%%%  case CIV1 activated   %%%%%%%%%%%%%
2476if box_test(1)==1;
2477    detect=1;
2478    vers=0;
2479    subdir_civ1_new=subdir_civ1;
2480    while detect==1 %create a new subdir if the netcdf files already exist
2481        for ifile=1:nbfield
2482            for j=1:nbslice
2483                filename=name_generator(filebase_nc,num1_civ1(ifile),num_a_civ1(j),'.nc',nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1_new);
2484                detect=exist(filename,'file')==2;
2485                if detect% if a netcdf file already exists
2486                    indstr=regexp(subdir_civ1,'\D');
2487                    if indstr(end)<length(subdir_civ1) %subdir_civ1 ends by a number
2488                        vers=str2double(subdir_civ1(indstr(end)+1:end))+1;
2489                        subdir_civ1_new=[subdir_civ1(1:indstr(end)) num2str(vers)];
2490                    else
2491                        vers=vers+1;
2492                        subdir_civ1_new=[subdir_civ1(1:indstr(end)) '_' num2str(vers)];       
2493                    end
2494                    subdir_civ2=subdir_civ1;
2495                    break
2496                end
2497                filecell.nc.civ1(ifile,j)={filename};
2498            end
2499            if detect% if a netcdf file already exists
2500                break
2501            end
2502        end
2503 
2504        %create the new subdir_civ1
2505        if ~exist(fullfile(Path_ima,subdir_civ1_new),'dir')
2506            cd(Path_ima);         
2507            [xx,msg1]=mkdir(subdir_civ1_new);
2508
2509            if ~strcmp(msg1,'')
2510                msgbox_uvmat('ERROR',['cannot create ' subdir_civ1_new ': ' msg1])%error message for directory creation
2511                filecell={};
2512                return
2513            else         
2514                [xx,msg2] = fileattrib(subdir_civ1_new,'+w','g'); %yield writing access (+w) to user group (g)
2515                if ~strcmp(msg2,'')
2516                    msgbox_uvmat('ERROR',['pb of permission for  ' subdir_civ1_new ': ' msg2])%error message for directory creation
2517                    filecell={};
2518                    return
2519                end
2520            end
2521            cd(currentdir);
2522        end
2523        if strcmp(compare,'stereo PIV')&&(strcmp(mode,'pair j1-j2')||strcmp(mode,'series(Dj)')||strcmp(mode,'series(Di)'))%check second nc series
2524%             vers=0;
2525%             subdir_civ1_new=subdir_civ1;
2526            for ifile=1:nbfield
2527                for j=1:nbslice
2528                    filename=name_generator(filebase_A,num1_civ1(ifile),num_a_civ1(j),'.nc',nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1_new);%
2529                    detect=exist(filename,'file')==2;
2530                    if detect% if a netcdf file already exists
2531                       indstr=regexp(subdir_civ1,'\D');
2532                       if indstr(end)<length(subdir_civ1) %subdir_civ1 ends by a number
2533                           vers=str2double(subdir_civ1(indstr(end)+1:end))+1;
2534                           subdir_civ1_new=[subdir_civ1(1:indstr(end)) num2str(vers)];
2535                       else
2536                           vers=vers+1;
2537                           subdir_civ1_new=[subdir_civ1 '_' num2str(vers)];
2538                       end
2539                       subdir_civ2=subdir_civ1;
2540                       break
2541                    end
2542                    filecell.ncA.civ1(ifile,j)={filename};
2543                end
2544                if detect% if a netcdf file already exists
2545                    break
2546                end
2547            end
2548%             subdir_civ1=subdir_civ1_new;
2549            %create the new subdir_civ1
2550            if exist(fullfile(Path_ima,subdir_civ1_new),'dir')
2551                   cd(Path_ima);         
2552                [xx,msg1]=mkdir(subdir_civ1_new);
2553                            cd(currentdir);
2554                if ~strcmpl(msg1,'')
2555                    msgbox_uvmat('ERROR',['cannot create ' subdir_civ1_new ': ' msg1])
2556                    cd(currentdir)
2557                    filecell={};
2558                    return
2559                else
2560                    [xx,msg2] = fileattrib(subdir_civ1_new,'+w','g'); %yield writing access (+w) to user group (g)
2561                    if ~strcmp(msg2,'')
2562                        msgbox_uvmat('ERROR',['pb of permission for ' subdir_civ1_new ': ' msg2])%error message for directory creation
2563                        cd(currentdir)
2564                        filecell={};
2565                        return
2566                    end
2567                end
2568            end
2569        end
2570    end
2571    subdir_civ1=subdir_civ1_new;
2572    % get image names
2573    for ifile=1:nbfield
2574        for j=1:nbslice
2575            filename=name_generator(filebase_ima1, num1_civ1(ifile),num_a_civ1(j),ext_ima,nom_type_ima1);
2576            idetect(j)=exist(filename,'file')==2;
2577            filecell.ima1.civ1(ifile,j)={filename}; %first image
2578            filename=name_generator(filebase_ima2, num2_civ1(ifile),num_b_civ1(j),ext_ima,nom_type_ima2);
2579            idetect_1(j)=exist(filename,'file')==2;
2580            filecell.ima2.civ1(ifile,j)={filename};%second image
2581        end
2582        [idetectmin,indexj]=min(idetect);
2583        if idetectmin==0,
2584            msgbox_uvmat('ERROR',[filecell.ima1.civ1{ifile,indexj} ' not found'])
2585            filecell={};
2586            cd(currentdir)
2587            return
2588        end
2589        [idetectmin,indexj]=min(idetect_1);
2590        if idetectmin==0,
2591            msgbox_uvmat('ERROR',[filecell.ima2.civ1{ifile,indexj} ' not found'])
2592            filecell={};
2593            cd(currentdir)
2594            return
2595        end
2596    end
2597    if strcmp(compare,'stereo PIV') && (strcmp(mode,'pair j1-j2') || strcmp(mode,'series(Dj)') || strcmp(mode,'series(Di)'))
2598        for ifile=1:nbfield
2599            for j=1:nbslice
2600                filename=name_generator(filebase_A, num1_civ1(ifile),num_a_civ1(j),ext_ima,nom_type_ima1);
2601                idetect(j)=exist(filename,'file')==2;
2602                filecell.imaA1.civ1(ifile,j)={filename} ;%first image
2603                filename=name_generator(filebase_A, num2_civ1(ifile),num_b_civ1(j),ext_ima,nom_type_ima2);
2604                idetect_1(j)=exist(filename,'file')==2;
2605                filecell.imaA2.civ1(ifile,j)={filename};%second image
2606            end
2607            [idetectmin,indexj]=min(idetect);
2608            if idetectmin==0,
2609                msgbox_uvmat('ERROR',[filecell.imaA1.civ1{ifile,indexj} ' not found'])
2610                filecell={};
2611                cd(currentdir)
2612                return
2613            end
2614            [idetectmin,indexj]=min(idetect_1);
2615            if idetectmin==0,
2616                msgbox_uvmat('ERROR',[filecell.imaA2.civ1{ifile,indexj} ' not found'])
2617                filecell={};
2618                cd(currentdir)
2619                return
2620            end
2621        end
2622    end
2623   
2624    %%%%%%%%%%%%%  fix1 or patch1 activated but no civ1   %%%%%%%%%%%%%
2625elseif (box_test(2)==1 || box_test(3)==1);
2626    for ifile=1:nbfield
2627        for j=1:nbslice
2628            filename=name_generator(filebase_nc,num1_civ1(ifile),num_a_civ1(j),'.nc',...
2629                nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1);%
2630            detect=exist(filename,'file')==2;
2631            if detect==0
2632                msgbox_uvmat('ERROR',[filename ' not found'])
2633                filecell={};
2634                cd(currentdir)
2635                return
2636            end
2637            filecell.nc.civ1(ifile,j)={filename};
2638        end
2639    end
2640    if strcmp(compare,'stereo PIV')
2641        for ifile=1:nbfield
2642            for j=1:nbslice
2643                filename=name_generator(filebase_A,num1_civ1(ifile),num_a_civ1(j),'.nc',nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1);%
2644                filecell.ncA.civ1(ifile,j)={filename};
2645                if ~exist(filename,'file')
2646                    msgbox_uvmat('ERROR',['input file ' filename ' not found'])
2647                    set(handles.RUN, 'Enable','On')
2648                    set(handles.RUN,'BackgroundColor',[1 0 0])
2649                    filecell={};
2650                    cd(currentdir)
2651                    return
2652                end
2653            end
2654        end
2655    end
2656end
2657
2658%%%%%%%%%%%%%  if civ2 performed with pairs different than civ1  %%%%%%%%%%%%%
2659testdiff=0;
2660if (box_test(4)==1)&&...
2661        ((get(handles.list_pair_civ1,'Value')~=get(handles.list_pair_civ2,'Value'))||~strcmp(subdir_civ2,subdir_civ1))
2662    testdiff=1;
2663    detect=1;
2664    vers=0;
2665    subdir_civ2_new=subdir_civ2;
2666    while detect==1 %create a new subdir if the netcdf files already exist
2667        for ifile=1:nbfield
2668            for j=1:nbslice
2669                filename=name_generator(filebase_nc,num1_civ2(ifile),num_a_civ2(j),'.nc',nom_type_nc,1,num2_civ2(ifile),num_b_civ2(j),subdir_civ2_new);%
2670                detect=exist(filename,'file')==2;
2671                if detect% if a netcdf file already exists
2672                    indstr=regexp(subdir_civ2,'\D');
2673                    if indstr(end)<length(subdir_civ2) %subdir_civ1 ends by a number
2674                        vers=str2double(subdir_civ2(indstr(end)+1:end))+1;
2675                        subdir_civ2_new=[subdir_civ2(1:indstr(end)) num2str(vers)];
2676                    else
2677                        vers=vers+1;
2678                        subdir_civ2_new=[subdir_civ1 '_' num2str(vers)];
2679                    end
2680                    break
2681                end
2682                filecell.nc.civ2(ifile,j)={filename};
2683            end
2684            if detect% if a netcdf file already exists
2685                break
2686            end
2687        end
2688        %create the new subdir_civ2_new
2689        if ~exist(fullfile(Path_ima,subdir_civ2_new),'dir')
2690            [xx,m2]=mkdir(subdir_civ2_new);
2691            [xx,msg2] = fileattrib(subdir_civ2_new,'+w','g'); %yield writing access (+w) to user group (g)
2692            if ~isequal(m2,'')
2693                msgbox_uvmat('ERROR',['cannot create ' subdir_civ2_new ': ' m2])
2694                filecell={};
2695                cd(currentdir)
2696                return
2697            end
2698        end
2699        if strcmp(compare,'stereo PIV')%check second nc series
2700            for ifile=1:nbfield
2701                for j=1:nbslice
2702                    filename=name_generator(filebase_A,num1_civ2(ifile),num_a_civ2(j),'.nc',...
2703                        nom_type_nc,1,num2_civ2(ifile),num_b_civ1(j),subdir_civ2_new);%
2704                    detect=exist(filename,'file')==2;
2705                    if detect% if a netcdf file already exists
2706                        indstr=regexp(subdir_civ2,'\D');
2707                        if indstr(end)<length(subdir_civ2) %subdir_civ1 ends by a number
2708                           vers=str2double(subdir_civ2(indstr(end)+1:end))+1;
2709                           subdir_civ2_new=[subdir_civ2(1:indstr(end)) num2str(vers)];
2710                        else
2711                           vers=vers+1;
2712                           subdir_civ2_new=[subdir_civ1 '_' num2str(vers)];
2713                        end
2714                        break
2715                    end
2716                    filecell.ncA.civ2(ifile,j)={filename};
2717                end
2718                if detect% if a netcdf file already exists
2719                    break
2720                end
2721            end
2722            subdir_civ2=subdir_civ2_new;
2723            %create the new subdir_civ1
2724            if ~exist(fullfile(Path_ima,subdir_civ2_new),'dir')
2725                [xx,m2]=mkdir(subdir_civ2_new);
2726                 [xx,msg2] = fileattrib(subdir_civ2_new,'+w','g'); %yield writing access (+w) to user group (g)
2727                if ~isequal(m2,'')
2728                    msgbox_uvmat('ERROR', ['cannot create ' subdir_civ2_new ': ' m2])%error message for directory creation
2729                    cd(currentdir)
2730                    filecell={};
2731                    return
2732                end
2733            end
2734        end
2735    end
2736    subdir_civ2=subdir_civ2_new;
2737end
2738cd(currentdir);%come back to the current working directory
2739
2740%%%%%%%%%%%%%  if civ2 results are obtained or used  %%%%%%%%%%%%%
2741if box_test(4)==1 || box_test(5)==1 || box_test(6)==1 %civ2
2742    %check source netcdf file of civ1 estimates
2743    if box_test(1)==0; %no civ1 performed
2744        for ifile=1:nbfield
2745            for j=1:nbslice
2746                filename=name_generator(filebase_nc,num1_civ1(ifile),num_a_civ1(j),'.nc',...
2747                    nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1);%
2748                filecell.nc.civ1(ifile,j)={filename};% name of the civ1 file
2749                if ~exist(filename,'file')
2750                    msgbox_uvmat('ERROR',['input file ' filename ' not found'])
2751                    filecell={};
2752                    return
2753                end
2754                if ~testdiff % civ2 or patch2 are written in the same file as civ1
2755                    if box_test(4)==0 ; %check the existence of civ2 if it is not calculated
2756                        Data=nc2struct(filename,'ListGlobalAttribute','civ2');
2757                        if isempty(Data.civ2)||isequal(Data.civ2,0)
2758                            msgbox_uvmat('ERROR',['no civ2 data in ' filename])
2759                            filecell=[];
2760                            return
2761                        end
2762                    elseif box_test(3)==0; %check the existence of patch if it is not calculated
2763                        Data=nc2struct(filename,'ListGlobalAttribute','patch');
2764                        if isempty(Data.patch)||isequal(Data.patch,0)
2765                            msgbox_uvmat('ERROR',['no patch data in ' filename])
2766                            filecell=[];
2767                            return
2768                        end
2769                    end
2770                end
2771            end
2772        end
2773        if strcmp(compare,'stereo PIV')
2774            for ifile=1:nbfield
2775                for j=1:nbslice
2776                    filename=name_generator(filebase_A,num1_civ2(ifile),num_a_civ2(j),'.nc',...
2777                        nom_type_nc,1,num2_civ2(ifile),num_b_civ2(j),subdir_civ2);%
2778                    filecell.ncA.civ2(ifile,j)={filename};
2779                    if ~exist(filename,'file')
2780                        msgbox_uvmat('ERROR',['input file ' filename ' not found'])
2781                        set(handles.RUN, 'Enable','On')
2782                        set(handles.RUN,'BackgroundColor',[1 0 0])
2783                        return
2784                    end
2785                end
2786            end
2787        end
2788    end
2789   
2790    detect=1;
2791    %     while detect==1%creates a new subdir if the netcdf files already contain civ2 data
2792    for ifile=1:nbfield
2793        for j=1:nbslice
2794            filename=name_generator(filebase_nc,num1_civ2(ifile),num_a_civ2(j),'.nc',...
2795                nom_type_nc,1,num2_civ2(ifile),num_b_civ2(j),subdir_civ2);
2796            detect=exist(filename,'file')==2;
2797            filecell.nc.civ2(ifile,j)={filename};
2798        end
2799    end
2800    %get first image names for civ2
2801    if box_test(1)==1 & isequal(num1_civ1,num1_civ2) & isequal(num_a_civ1,num_a_civ2)
2802        filecell.ima1.civ2=filecell.ima1.civ1;
2803    elseif box_test(4)==1
2804        for ifile=1:nbfield
2805            for j=1:nbslice
2806                filename=name_generator(filebase_ima1, num1_civ2(ifile),num_a_civ2(j),ext_ima,nom_type_ima1);
2807                idetect_2(j)=exist(filename,'file')==2;
2808                filecell.ima1.civ2(ifile,j)={filename};%first image
2809            end
2810            [idetectmin,indexj]=min(idetect_2);
2811            if idetectmin==0,
2812                msgbox_uvmat('ERROR',['input image ' filecell.ima1.civ2{ifile,indexj} ' not found'])
2813                filecell=[];
2814                return
2815            end
2816        end
2817    end
2818   
2819    %get second image names for civ2
2820    if box_test(1)==1 & isequal(num2_civ1,num2_civ2) & isequal(num_b_civ1,num_b_civ2)
2821        filecell.ima2.civ2=filecell.ima2.civ1;
2822    elseif box_test(4)==1
2823        for ifile=1:nbfield
2824            for j=1:nbslice
2825                filename=name_generator(filebase_ima2, num2_civ2(ifile),num_b_civ2(j),ext_ima,nom_type_ima2);
2826                idetect_3(j)=exist(filename,'file')==2;
2827                filecell.ima2.civ2(ifile,j)={filename};%first image
2828            end
2829            [idetectmin,indexj]=min(idetect_3);
2830            if idetectmin==0,
2831                msgbox_uvmat('ERROR',['input image ' filecell.ima2.civ2{ifile,indexj} ' not found'])
2832                filecell=[];
2833                return
2834            end
2835        end
2836    end
2837end
2838if (box_test(5)==1 || box_test(6)==1 ) && box_test(4)==0  % need to read an existing netcdf civ2 file
2839    if ~testdiff
2840        filecell.nc.civ2=filecell.nc.civ1;% file already checked
2841    else     % check the civ2 files
2842        for ifile=1:nbfield
2843            for j=1:nbslice
2844                filename=name_generator(filebase_nc,num1_civ2(ifile),num_a_civ2(j),'.nc',...
2845                    nom_type_nc,1,num2_civ2(ifile),num_b_civ2(j),subdir_civ2);%
2846                filecell.nc.civ2(ifile,j)={filename};
2847                if ~exist(filename,'file')
2848                    msgbox_uvmat('ERROR',['input file ' filename ' not found'])
2849                    filecell=[];
2850                    return
2851                else
2852                    Data=nc2struct(filename,'ListGlobalAttribute','civ2');
2853                    if isempty(Data.civ2)||isequal(Data.civ2,0)
2854                        msgbox_uvmat('ERROR',['no civ2 data in ' filename])
2855                        filecell=[];
2856                        return
2857                    end
2858                end
2859            end
2860        end
2861    end
2862end
2863
2864%%%%%%%%%%%%%  if stereo fields are calculated by PATCH %%%%%%%%%%%%%
2865if strcmp(compare,'stereo PIV')
2866    if  box_test(3)==1 && isequal(get(handles.test_stereo1,'Value'),1)
2867        for ifile=1:nbfield
2868            for j=1:nbslice
2869                filename=name_generator(filebase_AB,num1_civ1(ifile),num_a_civ1(j),'.nc',...
2870                    nom_type_nc,1,num2_civ1(ifile),num_b_civ1(j),subdir_civ1);%
2871                filecell.st(ifile,j)={filename};
2872            end
2873        end
2874    end
2875    if  box_test(6)==1 && isequal(get(handles.test_stereo2,'Value'),1)
2876        for ifile=1:nbfield
2877            for j=1:nbslice
2878                filename=name_generator(filebase_AB,num1_civ2(ifile),num_a_civ2(j),'.nc',...
2879                    nom_type_nc,1,num2_civ2(ifile),num_b_civ2(j),subdir_civ2);%
2880                filecell.st(ifile,j)={filename};
2881            end
2882        end
2883    end
2884end
2885set(handles.subdir_civ1,'String',subdir_civ1);%update the edit box
2886set(handles.subdir_civ2,'String',subdir_civ2);%update the edit box
2887browse.nom_type_nc=nom_type_nc;
2888set(handles.browse_root,'UserData',browse); %update the nomenclature type for uvmat
2889
2890
2891%COPY IMAGES TO THE FORMAT .png IF NEEDED
2892if isequal(nom_type_ima1,'*')%case of movie files
2893    nom_type_imanew1='_i';
2894else
2895    nom_type_imanew1=nom_type_ima1;
2896end
2897if isequal(nom_type_ima2,'*')%case of movie files
2898    nom_type_imanew2='_i';
2899else
2900    nom_type_imanew2=nom_type_ima2;
2901end
2902if ~isequal(ext_ima,'.png')
2903    %%type of image file
2904    type_ima1='none';%default
2905    movieobject1=[];%default
2906    if strcmpi(ext_ima,'.avi')
2907        hhh=which('mmreader');
2908        if ~isequal(hhh,'')&& mmreader.isPlatformSupported()% if the mmreader function is found (recent version of matlab)
2909            type_ima1='movie';
2910            movieobject1=mmreader([filebase_ima2 ext_ima]);
2911        else
2912            type_ima1='avi';
2913        end
2914    elseif ischar(ext_ima) && ~isempty(ext_ima(2:end))
2915        form=imformats(ext_ima(2:end));
2916        if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
2917            if isequal(nom_type_ima1,'*');
2918                type_ima1='multimage';%image series in a single image file
2919            else
2920                type_ima1='image';
2921            end
2922        end
2923    end
2924    type_ima2='none';%default
2925    movieobject2=[];
2926    if strcmpi(ext_ima,'.avi')
2927        hhh=which('mmreader');
2928        if ~isequal(hhh,'')&& mmreader.isPlatformSupported()% if the mmreader function is found (recent version of matlab)
2929            type_ima2='movie';
2930            movieobject2=mmreader([filebase_ima2 ext_ima]);
2931        else
2932            type_ima2='avi';
2933        end
2934    elseif ischar(ext_ima) && ~isempty(ext_ima(2:end))
2935        form=imformats(ext_ima(2:end));
2936        if ~isempty(form)% if the extension corresponds to an image format recognized by Matlab
2937            if isequal(nom_type_ima1,'*');
2938                type_ima2='multimage';%image series in a single image file
2939            else
2940                type_ima2='image';
2941            end
2942        end
2943    end
2944    %npxy=get(handles.ImaExt,'UserData');
2945    % %     if numel(npxy)<2
2946    %
2947    %         filename=name_generator(filebase_ima1,num1_civ1(1),num_a_civ1(1),ImaExt,nom_type_ima1);
2948    %         A=imread(filename);
2949    %         npxy=size(A);
2950    % %     end
2951    %     npy=npxy(1);
2952    %     npx=npxy(2);
2953    if box_test(1)==1 %if civ1 is performed
2954        h = waitbar(0,['copy images to the .png format for civ1']);% display a wait bar
2955        for ifile=1:nbfield
2956            waitbar(ifile/nbfield);
2957            for j=1:nbslice
2958                filename=name_generator(filebase_ima1,num1_civ1(ifile),num_a_civ1(j),'.png',nom_type_imanew1);
2959                if ~exist(filename,'file')
2960                    A=read_image(filecell.ima1.civ1{ifile,j},type_ima1,num1_civ1(ifile),movieobject1);
2961                    imwrite(A,filename,'BitDepth',16);
2962                end
2963                filecell.ima1.civ1(ifile,j)={filename};
2964                filename=name_generator(filebase_ima2, num2_civ1(ifile),num_b_civ1(j),'.png',nom_type_imanew2);
2965                if ~exist(filename,'file')
2966                    A=read_image(filecell.ima2.civ1{ifile,j},type_ima2,num2_civ1(ifile),movieobject2);
2967                    imwrite(A,filename,'BitDepth',16);
2968                end
2969                filecell.ima2.civ1(ifile,j)={filename};
2970            end
2971        end
2972        close(h)
2973    end
2974    if box_test(4)==1 %if civ2 is performed
2975        h = waitbar(0,['copy images to the .png format for civ2']);% display a wait bar
2976        for ifile=1:nbfield
2977            waitbar(ifile/nbfield);
2978            for j=1:nbslice
2979                filename=name_generator(filebase_ima1,num1_civ2(ifile),num_a_civ2(j),'.png',nom_type_imanew1);
2980                if ~exist(filename,'file')
2981                    A=read_image(cell2mat(filecell.ima1.civ2(ifile,j)),type_ima2,num1_civ2(ifile));
2982                    imwrite(A,filename,'BitDepth',16);
2983                end
2984                filecell.ima1.civ2(ifile,j)={filename};
2985                filename=name_generator(filebase_ima2, num2_civ2(ifile),num_b_civ2(j),'.png',nom_type_imanew2);
2986                if ~exist(filename,'file')
2987                    A=read_image(cell2mat(filecell.ima2.civ2(ifile,j)),type_ima2,num2_civ2(ifile));
2988                    imwrite(A,filename,'BitDepth',16);
2989                end
2990                filecell.ima2.civ2(ifile,j)={filename};
2991            end
2992        end
2993        close(h);
2994    end
2995end
2996
2997%------------------------------------------------------------------------
2998% --- PATCH
2999function cmd_PATCH=PATCH_CMD(filename_nc,nx_patch,ny_patch,rho_patch,subdomain_patch,thresh_value,test_interp,PatchBin)
3000%------------------------------------------------------------------------
3001namelog=[filename_nc([1:end-3]) '_patch.log'];
3002if test_interp==0
3003    cmd_PATCH=[PatchBin ' -f ' filename_nc ' -m ' nx_patch  ' -n ' ny_patch ' -ro ' rho_patch ' -nopt ' subdomain_patch ...
3004        '  > ' namelog ' 2>&1']; % redirect standard output to the log file
3005else %nouveau programme patch
3006    cmd_PATCH=[PatchBin ' -f ' filename_nc ' -m ' nx_patch  ' -n ' ny_patch ' -ro ' rho_patch ...
3007        ' -max ' thresh_value ' -nopt ' subdomain_patch  '  > ' namelog ' 2>&1']; % redirect standard output to the log file
3008end
3009
3010%------------------------------------------------------------------------
3011% --- STEREO Interp
3012function cmd=RUN_STINTERP(stinterpBin,filename_A_nc,filename_B_nc,filename_nc,nx_patch,ny_patch,rho_patch,subdomain_patch,thresh_value,xmlA,xmlB)
3013%------------------------------------------------------------------------
3014namelog=[filename_nc([1:end-3]) '_stinterp.log'];
3015cmd=[stinterpBin ' -f1 ' filename_A_nc  ' -f2 ' filename_B_nc ' -f  ' filename_nc ...
3016    ' -m ' nx_patch  ' -n ' ny_patch ' -ro ' rho_patch ' -nopt ' subdomain_patch ' -c1 ' xmlA ' -c2 ' xmlB '  -xy  x -Nfy 1024 > ' namelog ' 2>&1']; % redirect standard output to the log file
3017
3018%------------------------------------------------------------------------
3019% --- Executes on button press in CIV1.
3020function CIV1_Callback(hObject, eventdata, handles)
3021%------------------------------------------------------------------------
3022val=get(handles.CIV1,'Value');
3023if isequal(val,1)
3024    enable_civ1(handles,'on')
3025    enable_pair1(handles,'on')
3026else
3027    enable_civ1(handles,'off')
3028end
3029find_netcpair_civ1(hObject, eventdata, handles);
3030
3031%------------------------------------------------------------------------
3032% --- Executes on button press in FIX1.
3033function FIX1_Callback(hObject, eventdata, handles)
3034%------------------------------------------------------------------------
3035enable_fix1(handles,get(handles.FIX1,'Value'))
3036
3037%------------------------------------------------------------------------
3038% --- Executes on button press in PATCH1.
3039function PATCH1_Callback(hObject, eventdata, handles)
3040%------------------------------------------------------------------------
3041if get(handles.PATCH1,'Value')==1
3042    enable_patch1(handles)
3043else
3044    desable_patch1(handles)
3045end
3046
3047%------------------------------------------------------------------------
3048% --- Executes on button press in CIV2.
3049function CIV2_Callback(hObject, eventdata, handles)
3050%------------------------------------------------------------------------
3051state=get(handles.CIV2,'Value');
3052enable_civ2(handles,state)
3053if state
3054    find_netcpair_civ2(hObject, eventdata, handles)
3055    enable_pair1(handles,'on')
3056end
3057
3058%------------------------------------------------------------------------
3059% --- Executes on button press in FIX2.
3060function FIX2_Callback(hObject, eventdata, handles)
3061%------------------------------------------------------------------------
3062if get(handles.FIX2,'Value')==1
3063    enable_fix2(handles)
3064    if get(handles.CIV2,'Value')==0
3065        find_netcpair_civ2(hObject, eventdata, handles) % select the available netcdf files
3066    end
3067else
3068    desable_fix2(handles)
3069end
3070
3071%------------------------------------------------------------------------
3072% --- Executes on button press in PATCH2.
3073function PATCH2_Callback(hObject, eventdata, handles)
3074%------------------------------------------------------------------------
3075if get(handles.PATCH2,'Value')==1
3076    enable_patch2(handles)
3077    if get(handles.CIV2,'Value')==0
3078        find_netcpair_civ2(hObject, eventdata, handles) % select the available netcdf files
3079    end
3080else
3081    desable_patch2(handles)
3082end
3083
3084%------------------------------------------------------------------------
3085function first_i_Callback(hObject, eventdata, handles)
3086%------------------------------------------------------------------------
3087% last_i_Callback(hObject, eventdata, handles)
3088first_i=str2num(get(handles.first_i,'String'));
3089% last_i=str2num(get(handles.last_i,'String'));
3090% ref_i=ceil((first_i+last_i)/2);
3091set(handles.ref_i,'String', num2str(first_i))% reference index for pair dt = first index
3092set(handles.ref_i_civ2,'String', num2str(first_i))% reference index for pair dt = first index
3093ref_i_Callback(hObject, eventdata, handles)%refresh dispaly of dt for pairs (in case of non constant dt)
3094
3095%------------------------------------------------------------------------
3096function first_j_Callback(hObject, eventdata, handles)
3097%------------------------------------------------------------------------
3098first_j=str2num(get(handles.first_j,'String'));
3099set(handles.ref_j,'String', num2str(first_j))% reference index for pair dt = first index
3100ref_j_Callback(hObject, eventdata, handles)%refresh dispaly of dt for pairs (in case of non constant dt)
3101
3102%------------------------------------------------------------------------
3103% --- Executes on button press in calcul_search: determine the search range isx,isy
3104function calcul_search_Callback(hObject, eventdata, handles)
3105%------------------------------------------------------------------------
3106%determine pair numbers
3107list_pair=get(handles.list_pair_civ1,'String');%get the menu of image pairs
3108index=get(handles.list_pair_civ1,'Value');
3109displ_num=get(handles.list_pair_civ1,'UserData');
3110time=get(handles.RootName,'UserData'); %get the set of times
3111pxcm_xy=get(handles.calcul_search,'UserData');
3112pxcmx=pxcm_xy(1);
3113pxcmy=pxcm_xy(2);
3114mode_list=get(handles.mode,'String');
3115mode_value=get(handles.mode,'Value');
3116mode=mode_list{mode_value};
3117if isequal (mode, 'series(Di)' )
3118    ref_i=str2num(get(handles.ref_i,'String'));
3119    num1=ref_i-floor(index/2);%  first image numbers
3120    num2=ref_i+ceil(index/2);
3121    num_a=1;
3122    num_b=1;
3123elseif isequal (mode, 'series(Dj)')
3124    num1=1;
3125    num2=1;
3126    ref_j=str2num(get(handles.ref_j,'String'));
3127    num_a=ref_j-floor(index/2);%  first image numbers
3128    num_b=ref_j+ceil(index/2);
3129elseif isequal(mode,'pair j1-j2') %case of bursts (png_old or png_2D)
3130    ref_i=str2num(get(handles.ref_i,'String'));
3131    num1=ref_i;
3132    num2=ref_i;
3133    num_a=displ_num(1,index);
3134    num_b=displ_num(2,index);
3135end
3136dt=time(num2,num_b)-time(num1,num_a);
3137ibx=str2num(get(handles.ibx,'String'));
3138iby=str2num(get(handles.iby,'String'));
3139umin=dt*pxcmx*str2num(get(handles.umin,'String'));
3140umax=dt*pxcmx*str2num(get(handles.umax,'String'));
3141vmin=dt*pxcmy*str2num(get(handles.vmin,'String'));
3142vmax=dt*pxcmy*str2num(get(handles.vmax,'String'));
3143shiftx=round((umin+umax)/2);
3144shifty=round((vmin+vmax)/2);
3145isx=(umax+2-shiftx)*2+ibx;
3146isx=2*ceil(isx/2)+1;
3147isy=(vmax+2-shifty)*2+iby;
3148isy=2*ceil(isy/2)+1;
3149set(handles.shiftx,'String',num2str(shiftx));
3150set(handles.shifty,'String',num2str(shifty));
3151set(handles.isx,'String',num2str(isx));
3152set(handles.isy,'String',num2str(isy));
3153
3154%------------------------------------------------------------------------
3155% --- Executes on carriage return on the subdir civ1 edit window
3156function subdir_civ1_Callback(hObject, eventdata, handles)
3157%------------------------------------------------------------------------
3158subdir=get(handles.subdir_civ1,'String');
3159set(handles.subdir_civ2,'String',subdir);
3160if get(handles.CIV1,'Value')==0
3161    find_netcpair_civ1(hObject, eventdata, handles); %update the list of available pairs from netcdf files in the new directory
3162end
3163
3164%------------------------------------------------------------------------
3165% --- Executes on carriage return on the subdir civ1 edit window
3166function subdir_civ2_Callback(hObject, eventdata, handles)
3167%------------------------------------------------------------------------
3168%update the list of available pairs from netcdf files in the new directory
3169if get(handles.CIV2,'Value')==0 & get(handles.CIV1,'Value')==0 & get(handles.FIX1,'Value')==0 & get(handles.PATCH1,'Value')==0
3170    find_netcpair_civ2(hObject, eventdata, handles);
3171end
3172
3173%------------------------------------------------------------------------
3174% --- Executes on button press in get_mask_civ1: select box for mask option
3175function get_mask_civ1_Callback(hObject, eventdata, handles)
3176%------------------------------------------------------------------------
3177maskval=get(handles.get_mask_civ1,'Value');
3178if isequal(maskval,0)
3179    set(handles.mask_civ1,'String','')
3180else
3181    mask_displ='no mask'; %default
3182    filebase=get(handles.RootName,'String');
3183    [ nbslice_mask, flag_mask]=get_mask(filebase,handles);
3184    if isequal(flag_mask,1)
3185        mask_displ=[num2str(nbslice_mask) 'mask'];
3186    elseif get(handles.compare,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series
3187        common_path=fileparts(filebase);
3188        filebase_a=fullfile(common_path,get(handles.RootName_1,'String'));
3189        [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles);
3190        if isequal(flag_mask_a,0) || ~isequal(nbslice_a,nbslice_mask)
3191            mask_displ='no mask';
3192        end
3193    end
3194    if isequal(mask_displ,'no mask')
3195        [FileName, PathName, filterindex] = uigetfile( ...
3196            {'*.png', ' (*.png)';
3197            '*.png',  '.png files '; ...
3198            '*.*', 'All Files (*.*)'}, ...
3199            'Pick a mask file *.png',filebase);
3200        mask_displ=fullfile(PathName,FileName);
3201        if ~exist(mask_displ,'file')
3202            mask_displ='no mask';
3203        end
3204    end
3205    if isequal(mask_displ,'no mask')
3206        set(handles.get_mask_civ1,'Value',0)
3207        set(handles.get_mask_fix1,'Value',0)
3208        set(handles.get_mask_civ2,'Value',0)
3209        set(handles.get_mask_fix2,'Value',0)
3210    else
3211        set(handles.get_mask_fix1,'Value',1)
3212        set(handles.get_mask_fix2,'Value',1)
3213    end
3214    set(handles.mask_civ1,'String',mask_displ)
3215    set(handles.mask_fix1,'String',mask_displ)
3216    set(handles.mask_civ2,'String',mask_displ)
3217    set(handles.mask_fix2,'String',mask_displ)
3218end
3219set(handles.get_mask_civ2,'Value',maskval)%update the civ2 mask with the same option as civ1
3220
3221%------------------------------------------------------------------------
3222% --- Executes on button press in get_mask_fix1.
3223function get_mask_fix1_Callback(hObject, eventdata, handles)
3224%------------------------------------------------------------------------
3225maskval=get(handles.get_mask_fix1,'Value');
3226if isequal(maskval,0)
3227    set(handles.mask_fix1,'String','')
3228else
3229    mask_displ='no mask'; %default
3230    filebase=get(handles.RootName,'String');
3231    [nbslice, flag_mask]=get_mask(filebase,handles);
3232    if isequal(flag_mask,1)
3233        mask_displ=[num2str(nbslice) 'mask'];
3234    elseif get(handles.compare,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series
3235        filebase_a=get(handles.RootName_1,'String');
3236        [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles);
3237        if isequal(flag_mask_a,0) | ~isequal(nbslice_a,nbslice)
3238            mask_displ='no mask';
3239        end
3240    end
3241    if isequal(mask_displ,'no mask')
3242        [FileName, PathName, filterindex] = uigetfile( ...
3243            {'*.png', ' (*.png)';
3244            '*.png',  '.png files '; ...
3245            '*.*', 'All Files (*.*)'}, ...
3246            'Pick a mask file *.png',filebase);
3247        mask_displ=fullfile(PathName,FileName);
3248        if ~exist(mask_displ,'file')
3249            mask_displ='no mask';
3250        end
3251    end
3252    if isequal(mask_displ,'no mask')
3253        set(handles.get_mask_fix1,'Value',0)
3254        set(handles.get_mask_civ2,'Value',0)
3255        set(handles.get_mask_fix2,'Value',0)
3256    else
3257        %set(handles.get_mask_civ2,'Value',1)
3258        set(handles.get_mask_fix2,'Value',1)
3259    end
3260    set(handles.mask_fix1,'String',mask_displ)
3261    set(handles.mask_civ2,'String',mask_displ)
3262    set(handles.mask_fix2,'String',mask_displ)
3263end
3264
3265%------------------------------------------------------------------------
3266% --- Executes on button press in get_mask_civ2: select box for mask option
3267function get_mask_civ2_Callback(hObject, eventdata, handles)
3268%------------------------------------------------------------------------
3269maskval=get(handles.get_mask_civ2,'Value');
3270if isequal(maskval,0)
3271    set(handles.mask_civ2,'String','')
3272else
3273    mask_displ='no mask'; %default
3274    filebase=get(handles.RootName,'String');
3275    [nbslice, flag_mask]=get_mask(filebase,handles);
3276    if isequal(flag_mask,1)
3277        mask_displ=[num2str(nbslice) 'mask'];
3278    elseif get(handles.compare,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series
3279        filebase_a=get(handles.RootName_1,'String');
3280        [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles);
3281        if isequal(flag_mask_a,0) | ~isequal(nbslice_a,nbslice)
3282            mask_displ='no mask';
3283        end
3284    end
3285    if isequal(mask_displ,'no mask')
3286        [FileName, PathName, filterindex] = uigetfile( ...
3287            {'*.png', ' (*.png)';
3288            '*.png',  '.png files '; ...
3289            '*.*', 'All Files (*.*)'}, ...
3290            'Pick a mask file *.png',filebase);
3291        mask_displ=fullfile(PathName,FileName);
3292        if ~exist(mask_displ,'file')
3293            mask_displ='no mask';
3294        end
3295    end
3296    if isequal(mask_displ,'no mask')
3297        set(handles.get_mask_civ2,'Value',0)
3298        set(handles.get_mask_fix2,'Value',0)
3299    else
3300        set(handles.get_mask_fix2,'Value',1)
3301    end
3302    set(handles.mask_civ2,'String',mask_displ)
3303    set(handles.mask_fix2,'String',mask_displ)
3304end
3305
3306%------------------------------------------------------------------------
3307% --- Executes on button press in get_mask_fix2.
3308function get_mask_fix2_Callback(hObject, eventdata, handles)
3309%------------------------------------------------------------------------
3310maskval=get(handles.get_mask_fix2,'Value');
3311if isequal(maskval,0)
3312    set(handles.mask_fix2,'String','')
3313else
3314    mask_displ='no mask'; %default
3315    filebase=get(handles.RootName,'String');
3316    [nbslice, flag_mask]=get_mask(filebase,handles);
3317    if isequal(flag_mask,1)
3318        mask_displ=[num2str(nbslice) 'mask'];
3319    elseif get(handles.compare,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series
3320        filebase_a=get(handles.RootName_1,'String');
3321        [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles);
3322        if isequal(flag_mask_a,0) | ~isequal(nbslice_a,nbslice)
3323            mask_displ='no mask';
3324        end
3325    end
3326    if isequal(mask_displ,'no mask')
3327        [FileName, PathName, filterindex] = uigetfile( ...
3328            {'*.png', ' (*.png)';
3329            '*.png',  '.png files '; ...
3330            '*.*', 'All Files (*.*)'}, ...
3331            'Pick a mask file *.png',filebase);
3332        mask_displ=fullfile(PathName,FileName);
3333        if ~exist(mask_displ,'file')
3334            mask_displ='no mask';
3335        end
3336    end
3337    if isequal(mask_displ,'no mask')
3338        set(handles.get_mask_fix2,'Value',0)
3339    end
3340    set(handles.mask_fix2,'String',mask_displ)
3341end
3342
3343%------------------------------------------------------------------------
3344% --- function called to look for mask files
3345function [nbslice, flag_mask]=get_mask(filebase,handles)
3346%------------------------------------------------------------------------
3347%detect mask files, images with appropriate file base
3348%[filebase '_' xx 'mask'], xx=nbslice
3349%flag_mask=1 indicates detection
3350
3351flag_mask=0;%default
3352nbslice=1;
3353
3354% subdir=get(handles.subdir_civ1,'String');
3355[Path,Name]=fileparts(filebase);
3356if ~isdir(Path)
3357    msgbox_uvmat('ERROR','no path for input files')
3358    return
3359end
3360currentdir=pwd;
3361cd(Path);%move in the dir of the root name filebase
3362maskfiles=dir([Name '_*mask_*.png']);%look for mask files
3363cd(currentdir);%come back to the current working directory
3364if ~isempty(maskfiles)
3365    %     msgbox_uvmat('ERROR','no mask available, to create it use Tools/Make mask in the upper menu bar of uvmat')
3366    % else
3367    flag_mask=1;
3368    maskname=maskfiles(1).name;% take the first mask file in the list
3369    [Path2,Name,ext]=fileparts(maskname);
3370    Namedouble=double(Name);
3371    val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters
3372    ind_mask=findstr('mask',Name);
3373    i=ind_mask-1;
3374    while val(i)==0 & i>0
3375        i=i-1;
3376    end
3377    nbslice=str2num(Name(i+1:ind_mask-1));
3378    if ~isequal(nbslice,[]) & Name(i)=='_'
3379        flag_mask=1;
3380    else
3381        msgbox_uvmat('ERROR',['bad mask file ' Name ext ' found in ' Path2])
3382        return
3383        nbslice=1;
3384    end
3385end
3386
3387%------------------------------------------------------------------------
3388% --- function called to look for grid files
3389function [nbslice, flag_mask]=get_grid(filebase,handles)
3390%------------------------------------------------------------------------
3391flag_mask=0;%default
3392nbslice=1;
3393[Path,Name]=fileparts(filebase);
3394currentdir=pwd;
3395cd(Path);%move in the dir of the root name filebase
3396maskfiles=dir([Name '_*grid_*.grid']);%look for mask files
3397cd(currentdir);%come back to the current working directory
3398if ~isempty(maskfiles)
3399    flag_mask=1;
3400    maskname=maskfiles(1).name;% take the first mask file in the list
3401    [Path2,Name,ext]=fileparts(maskname);
3402    Namedouble=double(Name);
3403    val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters
3404    ind_mask=findstr('grid',Name);
3405    i=ind_mask-1;
3406    while val(i)==0 & i>0
3407        i=i-1;
3408    end
3409    nbslice=str2num(Name(i+1:ind_mask-1));
3410    if ~isequal(nbslice,[]) & Name(i)=='_'
3411        flag_mask=1;
3412    else
3413        msgbox_uvmat('ERROR',['bad grid file ' Name ext ' found in ' Path2])
3414        return
3415        nbslice=1;
3416    end
3417end
3418
3419%------------------------------------------------------------------------
3420% --- transform numbers to letters
3421function str=num2stra(num,nom_type)
3422%------------------------------------------------------------------------
3423if isempty(nom_type)
3424    str='';
3425elseif strcmp(nom_type(end),'a')
3426    str=char(96+num);
3427elseif strcmp(nom_type(end),'A')
3428    str=char(96+num);
3429elseif isempty(nom_type(2:end))%a single index
3430    str='';
3431else
3432    str=num2str(num);
3433end
3434
3435%------------------------------------------------------------------------
3436function mask_civ1_Callback(hObject, eventdata, handles)
3437%------------------------------------------------------------------------
3438set(handles.mask_civ1,'UserData',[])
3439set(handles.mask_civ1,'String','')
3440
3441%------------------------------------------------------------------------
3442function mask_civ2_Callback(hObject, eventdata, handles)
3443%------------------------------------------------------------------------
3444set(handles.mask_civ2,'UserData',[])
3445set(handles.mask_civ2,'String','')
3446
3447%------------------------------------------------------------------------
3448function mask_fix1_Callback(hObject, eventdata, handles)
3449%------------------------------------------------------------------------
3450set(handles.mask_fix1,'UserData',[])
3451set(handles.mask_fix1,'String','')
3452
3453%------------------------------------------------------------------------
3454function mask_fix2_Callback(hObject, eventdata, handles)
3455%------------------------------------------------------------------------
3456set(handles.mask_fix2,'UserData',[])
3457set(handles.mask_fix2,'String','')
3458
3459%------------------------------------------------------------------------
3460% --- Executes on button press in list_subdir_civ1.
3461function list_subdir_civ1_Callback(hObject, eventdata, handles)
3462%------------------------------------------------------------------------
3463list_subdir_civ1=get(handles.list_subdir_civ1,'String');
3464val=get(handles.list_subdir_civ1,'Value');
3465if val>1
3466    subdir=list_subdir_civ1{val};
3467    set(handles.subdir_civ1,'String',subdir);
3468    set(handles.list_subdir_civ1,'Value',1);
3469end
3470
3471%------------------------------------------------------------------------
3472% --- Executes on button press in list_subdir_civ2.
3473function list_subdir_civ2_Callback(hObject, eventdata, handles)
3474%------------------------------------------------------------------------
3475list_subdir_civ2=get(handles.list_subdir_civ2,'String');
3476val=get(handles.list_subdir_civ2,'Value');
3477if val>1
3478    subdir=list_subdir_civ2{val};
3479    set(handles.subdir_civ2,'String',subdir);
3480    set(handles.list_subdir_civ2,'Value',1);
3481end
3482
3483%------------------------------------------------------------------------
3484% --- Executes on button press in browse_gridciv1.
3485function browse_gridciv1_Callback(hObject, eventdata, handles)
3486%------------------------------------------------------------------------
3487value=get(handles.browse_gridciv1,'Value');
3488testgrid=0;
3489if value
3490    filebase=get(handles.RootName,'String');
3491    [nbslice, flag_grid]=get_grid(filebase,handles);
3492    if isequal(flag_grid,1)
3493        filegrid=[num2str(nbslice) 'grid'];
3494        testgrid=1;
3495    else
3496        [FileName, PathName, filterindex] = uigetfile( ...
3497            {'*.grid', ' (*.grid)';
3498            '*.grid',  '.grid files '; ...
3499            '*.*', 'All Files (*.*)'}, ...
3500            'Pick a file',filebase);
3501        filegrid=fullfile(PathName,FileName);
3502        if ~(isempty(FileName)||isempty(PathName)||isequal(FileName,0)||~exist(filegrid,'file'))
3503            testgrid=1;
3504        end
3505    end
3506end
3507if testgrid
3508    set(handles.browse_gridciv2,'Value',1)
3509    set(handles.get_gridpatch1,'Value',1)
3510    set(handles.get_gridpatch2,'Value',1)
3511    set(handles.dx_civ1,'Visible','off');
3512    set(handles.dy_civ1,'Visible','off');
3513    set(handles.dx_civ2,'Visible','off');
3514    set(handles.dy_civ2,'Visible','off');
3515    set(handles.grid_civ1,'String',filegrid)
3516    set(handles.grid_patch1,'String',filegrid)
3517    set(handles.grid_civ2,'String',filegrid)
3518    set(handles.grid_patch2,'String',filegrid)
3519else
3520    set(handles.browse_gridciv1,'Value',0);
3521    set(handles.browse_gridciv2,'Value',0);
3522    set(handles.get_gridpatch1,'Value',0)
3523    set(handles.get_gridpatch2,'Value',0)
3524    set(handles.dx_civ1,'Visible','on');
3525    set(handles.dy_civ1,'Visible','on');
3526    set(handles.dx_civ2,'Visible','on');
3527    set(handles.dy_civ2,'Visible','on');
3528    set(handles.grid_civ1,'String','')
3529    set(handles.grid_patch1,'String','')
3530    set(handles.grid_civ2,'String','')
3531    set(handles.grid_patch2,'String','')
3532end
3533
3534%------------------------------------------------------------------------
3535% --- Executes on button press in browse_gridciv1.
3536function browse_gridciv2_Callback(hObject, eventdata, handles)
3537%------------------------------------------------------------------------
3538value=get(handles.browse_gridciv2,'Value');
3539if value
3540    filebase=get(handles.RootName,'String');
3541    [nbslice, flag_grid]=get_grid(filebase,handles);
3542    if isequal(flag_grid,1)
3543        mask_displ=[num2str(nbslice) 'grid'];
3544        set(handles.grid_civ2,'String',mask_displ)
3545        set(handles.dx_civ2,'Visible','off');
3546        set(handles.dy_civ2,'Visible','off');
3547    else
3548        [FileName, PathName, filterindex] = uigetfile( ...
3549            {'*.grid', ' (*.grid)';
3550            '*.grid',  '.grid files '; ...
3551            '*.*', 'All Files (*.*)'}, ...
3552            'Pick a file',filebase);
3553        filegrid=fullfile(PathName,FileName);
3554        if isempty(FileName)|isempty(PathName)|isequal(FileName,0)|~exist(filegrid,'file')
3555            set(handles.browse_gridciv2,'Value',0);
3556            set(handles.grid_civ2,'string','');
3557            set(handles.dx_civ2,'Visible','on');
3558            set(handles.dy_civ2,'Visible','on');
3559            set(handles.grid_civ2,'string','');
3560        else
3561            set(handles.grid_civ2,'string',filegrid);
3562            set(handles.dx_civ2,'Visible','off');
3563            set(handles.dy_civ2,'Visible','off');
3564            set(handles.grid_civ2,'string',filegrid);
3565        end
3566    end
3567else
3568    set(handles.grid_civ2,'string','');
3569    set(handles.dx_civ2,'Visible','on');
3570    set(handles.dy_civ2,'Visible','on');
3571    set(handles.grid_civ2,'string','');
3572end
3573
3574% % --- Executes on button press in browse_gridciv2.
3575% function browse_gridciv2_Callback(hObject, eventdata, handles)
3576%
3577% filebase=get(handles.RootName,'String');
3578% [FileName, PathName, filterindex] = uigetfile( ...
3579%        {'*.grid', ' (*.grid)';
3580%         '*.grid',  '.grid files '; ...
3581%         '*.*', 'All Files (*.*)'}, ...
3582%         'Pick a file',filebase);
3583% filegrid=fullfile(PathName,FileName);
3584% set(handles.grid_civ2,'string',filegrid);
3585% set(handles.dx_civ2,'String',' ');
3586% set(handles.dy_civ2,'String',' ');
3587% % set(handles.grid_patch2,'string',filegrid);
3588
3589% --- Executes on button press in get_gridpatch1.
3590function get_gridpatch1_Callback(hObject, eventdata, handles)
3591% hObject    handle to get_gridpatch1 (see GCBO)
3592% eventdata  reserved - to be defined in a future version of MATLAB
3593% handles    structure with handles and user data (see GUIDATA)
3594
3595filebase=get(handles.RootName,'String');
3596[FileName, PathName, filterindex] = uigetfile( ...
3597    {'*.grid', ' (*.grid)';
3598    '*.grid',  '.grid files '; ...
3599    '*.*', 'All Files (*.*)'}, ...
3600    'Pick a file',filebase);
3601filegrid=fullfile(PathName,FileName);
3602set(handles.grid_patch1,'string',filegrid);
3603% set(handles.grid_patch2,'string',filegrid
3604
3605%------------------------------------------------------------------------
3606% --- Executes on button press in get_gridpatch2.
3607function get_gridpatch2_Callback(hObject, eventdata, handles)
3608%------------------------------------------------------------------------
3609
3610%------------------------------------------------------------------------
3611function enable_civ1(handles,state)
3612%------------------------------------------------------------------------
3613if isequal(state,0)
3614    state='off';
3615end
3616if isequal(state,1)
3617    state='on';
3618end
3619if isequal(state,'on')
3620    set(handles.frame_civ1,'BackgroundColor',[1 1 0])
3621    set(handles.frame_para_civ1,'BackgroundColor',[1 1 0])
3622    set(handles.frame_grid_civ1,'BackgroundColor',[1 1 0])
3623else
3624    set(handles.frame_civ1,'BackgroundColor',[0.831 0.816 0.784])
3625    set(handles.frame_para_civ1,'BackgroundColor',[0.831 0.816 0.784])
3626    set(handles.frame_grid_civ1,'BackgroundColor',[0.831 0.816 0.784])
3627end
3628set(handles.ibx,'Visible',state)
3629set(handles.iby,'Visible',state)
3630set(handles.isx,'Visible',state)
3631set(handles.isy,'Visible',state)
3632set(handles.shiftx,'Visible',state)
3633set(handles.shifty,'Visible',state)
3634set(handles.rho,'Visible',state)
3635set(handles.dx_civ1,'Visible',state)
3636set(handles.dy_civ1,'Visible',state)
3637set(handles.calcul_search,'Visible',state)
3638set(handles.u_text,'Visible',state)
3639set(handles.v_text,'Visible',state)
3640set(handles.min,'Visible',state)
3641set(handles.max,'Visible',state)
3642set(handles.umin,'Visible',state)
3643set(handles.umax,'Visible',state)
3644set(handles.vmin,'Visible',state)
3645set(handles.vmax,'Visible',state)
3646set(handles.grid_civ1,'Visible',state)
3647set(handles.mask_civ1,'Visible',state)
3648set(handles.browse_gridciv1,'Visible',state)
3649set(handles.get_mask_civ1,'Visible',state)
3650set(handles.parameters,'Visible',state)
3651set(handles.grid,'Visible',state)
3652set(handles.dx_civ1,'Visible',state)
3653set(handles.dy_civ1,'Visible',state)
3654set(handles.ImaThreshold,'Visible',state)
3655if isequal(state,'off')
3656    set(handles.MinIma,'Visible','off')
3657    set(handles.MaxIma,'Visible','off')
3658    set(handles.ImaThreshold,'Value',0)
3659end
3660set(handles.dx_civ1_title,'Visible',state)
3661set(handles.dy_civ1_title,'Visible',state)
3662set(handles.ImaThreshold_title,'Visible',state)
3663set(handles.ib_title,'Visible',state)
3664set(handles.is_title,'Visible',state)
3665set(handles.shift_title,'Visible',state)
3666set(handles.rho_title,'Visible',state)
3667
3668%------------------------------------------------------------------------
3669function enable_fix1(handles,state)
3670%------------------------------------------------------------------------
3671if isequal(state,0)
3672    state='off';
3673end
3674if isequal(state,1)
3675    state='on';
3676end
3677if isequal(state,'on')
3678    set(handles.frame_fix1,'BackgroundColor',[1 1 0])
3679else
3680    set(handles.frame_fix1,'BackgroundColor',[0.7 0.7 0.7])
3681end
3682set(handles.REMOVE,'Visible',state)
3683set(handles.vec_Fmin2,'Visible',state)
3684set(handles.vec_F2,'Visible',state)
3685set(handles.vec_F3,'Visible',state)
3686set(handles.thresh_vecC,'Visible',state)
3687set(handles.thresh_vecC_title,'Visible',state)
3688set(handles.thresh_vel,'Visible',state)
3689set(handles.thresh_vel_text,'Visible',state)
3690set(handles.mask_fix1,'Visible',state)
3691set(handles.get_mask_fix1,'Visible',state)
3692set(handles.get_ref_fix1,'Visible',state)
3693set(handles.ref_fix1,'Visible',state)
3694set(handles.inf_sup1,'Visible',state)
3695set(handles.field_ref1,'Visible',state)
3696
3697%------------------------------------------------------------------------
3698function enable_patch1(handles)
3699%------------------------------------------------------------------------
3700global patch_newBin
3701set(handles.frame_patch1,'BackgroundColor',[1 1 0])
3702set(handles.rho_patch1,'Visible','on')
3703set(handles.rho_text1,'Visible','on')
3704set(handles.thresh_patch1,'Visible','on')
3705set(handles.thresh_text1,'Visible','on')
3706set(handles.subdomain_patch1,'Visible','on')
3707set(handles.subdomain_text1,'Visible','on')
3708set(handles.nx_patch1,'Visible','on')
3709set(handles.ny_patch1,'Visible','on')
3710set(handles.nx_patch1_title,'Visible','on')
3711set(handles.ny_patch1_title,'Visible','on')
3712% if ~isempty(patch_newBin)
3713%     set(handles.test_interp,'Visible','on');
3714% end
3715set(handles.get_gridpatch1,'Visible','on')
3716set(handles.grid_patch1,'string','none');
3717set(handles.grid_patch1,'Visible','on')
3718
3719%------------------------------------------------------------------------
3720function desable_patch1(handles)
3721%------------------------------------------------------------------------
3722set(handles.frame_patch1,'BackgroundColor',[0.831 0.816 0.784])
3723set(handles.rho_patch1,'Visible','off')
3724set(handles.rho_text1,'Visible','off')
3725set(handles.thresh_patch1,'Visible','off')
3726set(handles.thresh_text1,'Visible','off')
3727set(handles.subdomain_patch1,'Visible','off')
3728set(handles.subdomain_text1,'Visible','off')
3729set(handles.nx_patch1,'Visible','off')
3730set(handles.ny_patch1,'Visible','off')
3731set(handles.nx_patch1_title,'Visible','off')
3732set(handles.ny_patch1_title,'Visible','off')
3733%set(handles.test_interp,'Visible','off')
3734set(handles.get_gridpatch1,'Visible','off')
3735set(handles.grid_patch1,'Visible','off')
3736
3737%------------------------------------------------------------------------
3738function enable_civ2(handles,state)
3739%------------------------------------------------------------------------
3740if isequal(state,0)
3741    state='off';
3742end
3743if isequal(state,1)
3744    state='on';
3745end
3746if isequal(state,'on')
3747    set(handles.frame_civ2,'BackgroundColor',[1 1 0])
3748    set(handles.frame_para_civ2,'BackgroundColor',[1 1 0])
3749    set(handles.frame_grid_civ2,'BackgroundColor',[1 1 0])
3750    set(handles.frame_subdirciv2,'BackgroundColor',[1 1 0])
3751else
3752    set(handles.frame_civ2,'BackgroundColor',[0.831 0.816 0.784])
3753    set(handles.frame_para_civ2,'BackgroundColor',[0.831 0.816 0.784])
3754    set(handles.frame_grid_civ2,'BackgroundColor',[0.831 0.816 0.784])
3755    set(handles.frame_subdirciv2,'BackgroundColor',[0.831 0.816 0.784])
3756end
3757set(handles.ibx_civ2,'Visible',state)
3758set(handles.iby_civ2,'Visible',state)
3759set(handles.decimal,'Visible',state)
3760set(handles.deformation,'Visible',state)
3761set(handles.rho_civ2,'Visible',state)
3762set(handles.dx_civ2,'Visible',state)
3763set(handles.dy_civ2,'Visible',state)
3764set(handles.browse_gridciv2,'Visible',state)
3765set(handles.get_mask_civ2,'Visible',state)
3766set(handles.parameters,'Visible',state)
3767set(handles.grid,'Visible',state)
3768set(handles.parameters_text,'Visible',state)
3769set(handles.grid_text,'Visible',state)
3770set(handles.grid_civ2,'Visible',state)
3771set(handles.mask_civ2,'Visible',state)
3772set(handles.dx_civ2_title,'Visible',state)
3773set(handles.dy_civ2_title,'Visible',state)
3774set(handles.ibx_civ2_text,'Visible',state)
3775set(handles.rho_civ2_title,'Visible',state)
3776set(handles.ImaThreshold2,'Visible',state)
3777set(handles.ImaThreshold_title2,'Visible',state)
3778if isequal(state,'off')
3779    set(handles.MinIma2,'Visible','off')
3780    set(handles.MaxIma2,'Visible','off')
3781    set(handles.ImaThreshold2,'Value',0)
3782    if isequal(get(handles.FIX2,'Value'),0) & isequal(get(handles.PATCH2,'Value'),0)
3783        set(handles.list_pair_civ2,'Visible','off')
3784        set(handles.subdir_civ2,'Visible','off')
3785        set(handles.subdir_civ2_text,'Visible','off')
3786        set(handles.dt_unit_civ2,'Visible','off')
3787        set(handles.ref_i_civ2,'Visible','off')
3788        set(handles.i_ref_civ2_title,'Visible','off')
3789        set(handles.j_ref_civ2_title,'Visible','off')
3790        set(handles.ref_j_civ2,'Visible','off')
3791    end
3792else
3793    set(handles.list_pair_civ2,'Visible','on')
3794    set(handles.subdir_civ2,'Visible','on')
3795    set(handles.subdir_civ2_text,'Visible','on')
3796    set(handles.dt_unit_civ2,'Visible','on')
3797    set(handles.ref_i_civ2,'Visible','on')
3798    set(handles.i_ref_civ2_title,'Visible','on')
3799    set(handles.j_ref_civ2_title,'Visible','on')
3800    set(handles.ref_j_civ2,'Visible','on')
3801end
3802set(handles.rho_civ2_title,'Visible',state)
3803
3804%------------------------------------------------------------------------
3805function enable_fix2(handles)
3806%------------------------------------------------------------------------
3807set(handles.frame_fix2,'BackgroundColor',[1 1 0])
3808set(handles.REMOVE2,'Visible','on')
3809set(handles.vec_Fmin2_2,'Visible','on')
3810set(handles.vec_F4,'Visible','on')
3811set(handles.vec_F3_2,'Visible','on')
3812set(handles.thresh_vec2C,'Visible','on')
3813set(handles.thresh_vec2C_text,'Visible','on')
3814set(handles.thresh_vel2,'Visible','on')
3815set(handles.thresh_vel2_text,'Visible','on')
3816set(handles.mask_fix2,'Visible','on')
3817set(handles.get_mask_fix2,'Visible','on')
3818set(handles.list_pair_civ2,'Visible','on')
3819set(handles.subdir_civ2,'Visible','on')
3820set(handles.subdir_civ2_text,'Visible','on')
3821set(handles.get_ref_fix2,'Visible','on')
3822set(handles.ref_fix2,'Visible','on')
3823set(handles.inf_sup2,'Visible','on')
3824set(handles.field_ref2,'Visible','on')
3825
3826%------------------------------------------------------------------------
3827function desable_fix2(handles)
3828%------------------------------------------------------------------------
3829set(handles.frame_fix2,'BackgroundColor',[0.831 0.816 0.784])
3830set(handles.REMOVE2,'Visible','off')
3831set(handles.vec_Fmin2_2,'Visible','off')
3832set(handles.vec_F4,'Visible','off')
3833set(handles.vec_F3_2,'Visible','off')
3834set(handles.thresh_vec2C,'Visible','off')
3835set(handles.thresh_vec2C_text,'Visible','off')
3836set(handles.thresh_vel2,'Visible','off')
3837set(handles.thresh_vel2_text,'Visible','off')
3838set(handles.mask_fix2,'Visible','off')
3839set(handles.get_mask_fix2,'Visible','off')
3840set(handles.get_ref_fix2,'Visible','off')
3841set(handles.ref_fix2,'Visible','off')
3842set(handles.inf_sup2,'Visible','off')
3843set(handles.field_ref2,'Visible','off')
3844if isequal(get(handles.CIV2,'Value'),0) & isequal(get(handles.PATCH2,'Value'),0)
3845    set(handles.list_pair_civ2,'Visible','off')
3846    set(handles.subdir_civ2,'Visible','off')
3847    set(handles.subdir_civ2_text,'Visible','off')
3848end
3849
3850%------------------------------------------------------------------------
3851function enable_patch2(handles)
3852%------------------------------------------------------------------------
3853set(handles.frame_patch2,'BackgroundColor',[1 1 0])
3854set(handles.rho_patch2,'Visible','on')
3855set(handles.rho_text2,'Visible','on')
3856set(handles.thresh_patch2,'Visible','on')
3857set(handles.thresh_text2,'Visible','on')
3858set(handles.subdomain_patch2,'Visible','on')
3859set(handles.subdomain_text2,'Visible','on')
3860set(handles.nx_patch2,'Visible','on')
3861set(handles.ny_patch2,'Visible','on')
3862set(handles.nx_patch2_title,'Visible','on')
3863set(handles.ny_patch2_title,'Visible','on')
3864set(handles.get_gridpatch2,'Visible','on')
3865set(handles.grid_patch2,'Visible','on')
3866set(handles.list_pair_civ2,'Visible','on')
3867set(handles.subdir_civ2,'Visible','on')
3868set(handles.subdir_civ2_text,'Visible','on')
3869
3870%------------------------------------------------------------------------
3871function desable_patch2(handles)
3872%------------------------------------------------------------------------
3873set(handles.frame_patch2,'BackgroundColor',[0.831 0.816 0.784])
3874set(handles.rho_patch2,'Visible','off')
3875set(handles.rho_text2,'Visible','off')
3876set(handles.thresh_patch2,'Visible','off')
3877set(handles.thresh_text2,'Visible','off')
3878set(handles.subdomain_patch2,'Visible','off')
3879set(handles.subdomain_text2,'Visible','off')
3880set(handles.nx_patch2,'Visible','off')
3881set(handles.ny_patch2,'Visible','off')
3882set(handles.nx_patch2_title,'Visible','off')
3883set(handles.ny_patch2_title,'Visible','off')
3884set(handles.get_gridpatch2,'Visible','off')
3885set(handles.grid_patch2,'Visible','off')
3886if isequal(get(handles.CIV2,'Value'),0) & isequal(get(handles.FIX2,'Value'),0)
3887    set(handles.list_pair_civ2,'Visible','off')
3888    set(handles.subdir_civ2,'Visible','off')
3889    set(handles.subdir_civ2_text,'Visible','off')
3890end
3891
3892%------------------------------------------------------------------------
3893function enable_pair1(handles,state)
3894%------------------------------------------------------------------------
3895set(handles.subdir_civ1,'Visible',state)
3896set(handles.list_subdir_civ1,'Visible',state)
3897set(handles.SUBDIR_CIV1_txt,'Visible',state)
3898set(handles.frame_subdirciv1,'Visible',state)
3899set(handles.list_pair_civ1,'Visible',state)
3900set(handles.PAIR_txt,'Visible',state)
3901%set(handles.dt_unit,'Visible',state)
3902set(handles.PAIR_frame,'Visible',state)
3903
3904%------------------------------------------------------------------------
3905% --- Read the parameters for civ1 on the interface
3906function par=read_param_civ1(handles,file_ima)
3907%------------------------------------------------------------------------
3908ibx_val=str2double(get(handles.ibx,'String'));
3909par.ibx=num2str(ibx_val);
3910iby_val=str2double(get(handles.iby,'String'));
3911par.iby=num2str(iby_val);
3912isx=get(handles.isx,'String');
3913if isnan(str2double(isx)), isx='41'; set(handles.isx,'String','41'), end; %default
3914if str2double(isx)<ibx_val+8,isx=num2str(ibx_val+8); set(handles.isx,'String',num2str(ibx_val+8)); end
3915isy=get(handles.isy,'String');
3916if isnan(str2double(isy)), isy='41'; set(handles.isy,'String','41'), end;%default
3917if str2double(isy)<iby_val+8,isy=num2str(iby_val+8); set(handles.isy,'String',num2str(iby_val+8)); end
3918par.isx=get(handles.isx,'String');
3919par.isy=get(handles.isy,'String');
3920par.shiftx=get(handles.shiftx,'String');
3921par.shifty=get(handles.shifty,'String');
3922if isnan(str2double(par.isx))
3923    par.isx='41';%default
3924    set(handles.isx,'String','41');
3925end
3926if isnan(str2double(par.isy))
3927    par.isy='41'; %default
3928    set(handles.isy,'String','41');
3929end
3930if isnan(str2double(par.shiftx))
3931    par.shiftx='0';%default
3932    set(handles.shiftx,'String','0');
3933end
3934if isnan(str2double(par.shifty))
3935    par.shifty='0'; %default
3936    set(handles.shifty,'String','0');
3937end
3938par.rho=get(handles.rho,'String');
3939par.dx=get(handles.dx_civ1,'String');
3940par.dy=get(handles.dy_civ1,'String');
3941if isnan(str2double(par.dx))
3942    if isempty(get(handles.grid_civ1,'String'));
3943        par.dx='0'; %just read by civ program, not used
3944    else
3945        par.dx='20';%default
3946        set(handles.dx_civ1,'String','20');
3947    end
3948end
3949if isnan(str2double(par.dy))
3950    if isempty(get(handles.grid_civ1,'String'));
3951        par.dy='0';%just read by civ program, not used
3952    else
3953        par.dy='20';%default
3954        set(handles.dy_civ1_title,'String','20');
3955    end
3956end
3957par.pxcmx='1'; %velocities are expressed in pixel dispalcement
3958par.pxcmy='1';
3959%      end
3960A=imread(file_ima);%read the first image to get the size
3961sizim=size(A);
3962par.npx=num2str(sizim(2));
3963par.npy=num2str(sizim(1));
3964%time=get(handles.RootName,'UserData'); %get the set of times
3965par.gridname=get(handles.grid_civ1,'String');
3966par.gridflag='y';
3967if strcmp(par.gridname,'')|| isempty(par.gridname)
3968    par.gridname='nogrid';
3969    par.gridflag='n';
3970end
3971
3972%------------------------------------------------------------------------
3973function par=read_param_civ2(handles,file_ima)
3974%------------------------------------------------------------------------
3975par.ibx=get(handles.ibx_civ2,'String');
3976par.iby=get(handles.iby_civ2,'String');
3977par.rho=get(handles.rho_civ2,'String');
3978par.decimal=int2str(get(handles.decimal,'Value'));
3979par.deformation=int2str(get(handles.deformation,'Value'));
3980par.dx=get(handles.dx_civ2,'String');
3981par.dy=get(handles.dy_civ2,'String');
3982if isnan(str2double(par.dx))
3983    if isempty(get(handles.grid_civ2,'String'));
3984        par.dx='0'; %just read by civ program, not used
3985    else
3986        par.dx='20';%default
3987        set(handles.dx_civ2,'String','20');
3988    end
3989end
3990if isnan(str2double(par.dy))
3991    if isempty(get(handles.grid_civ2,'String'));
3992        par.dy='0';%just read by civ program, not used
3993    else
3994        par.dy='20';%default
3995        set(handles.dy_civ2,'String','20');
3996    end
3997end
3998par.pxcmx='1';
3999par.pxcmy='1';
4000A=imread(file_ima);%read the first image to get the size
4001sizim=size(A);
4002par.npx=num2str(sizim(2));
4003par.npy=num2str(sizim(1));
4004%time=get(handles.RootName,'UserData'); %get the set of times
4005par.gridname=get(handles.grid_civ2,'String');
4006par.gridflag='y';
4007if strcmp(par.gridname,'')|| isempty(par.gridname)
4008    par.gridname='nogrid';
4009    par.gridflag='n';
4010end
4011
4012%------------------------------------------------------------------------
4013% --- CIV1  CIV1  CIV1 CIV1
4014function cmd_CIV1=CIV1_CMD(filename,namelog,par,handles,sparam)
4015%------------------------------------------------------------------------
4016%pixels per cm and matrix of the image times, read from the .civ file by uvmat
4017
4018%changes : filename_cmx -> filename ( no extension )
4019
4020if isequal(par.Dt,'0')
4021    par.Dt='1' ;%case of 'displacement' mode
4022end
4023%
4024%     textcmx={'##############   CMX file';...
4025%     ['FirstImage ' par.filename_ima_a];...
4026%     ['LastImage  ' par.filename_ima_b];...
4027%     'XX' ;...
4028%     ['Mask ' par.maskflag] ;...
4029%     ['MaskName ' par.maskname];...
4030%     ['ImageSize ' par.npx ' ' par.npy];...   %VERIFIER CAS GENERAL ?
4031%     ['CorrelationBoxesSize ' par.ibx ' ' par.iby];...
4032%     ['SearchBoxeSize ' par.isx ' ' par.isy];...
4033%     ['RO ' par.rho];...
4034%     ['GridSpacing ' par.dx ' ' par.dy];...
4035%     'XX 1.0';...
4036%     ['Dt_TO ' par.Dt ' ' par.T0];...
4037%     ['PixCmXY ' par.pxcmx ' ' par.pxcmy];...
4038%     'XX 1';...
4039%     ['ShiftXY ' par.shiftx ' '  par.shifty];...
4040%     ['Grid ' par.gridflag];...
4041%     ['GridName ' par.gridname] ;...
4042%     'XX 85';...
4043%     'XX 1.0';...
4044%     'XX 1.0';...
4045%     'Hart 1';...
4046%     'DecimalShift 0';...
4047%     'Deformation 0';...
4048%     'CorrelationMin 0';...
4049%     'IntensityMin 0';...
4050%     'SeuilImage n';...
4051%     'SeuilImageValues 0 4096';...
4052%     ['ImageToUse ' par.term_a ' ' par.term_b];... % VERIFIER ?
4053%     'ImageUsedBefore null null'};
4054%
4055%             textout=char(textcmx);
4056par.filename_ima_a=regexprep(par.filename_ima_a,'.png','');
4057par.filename_ima_b=regexprep(par.filename_ima_b,'.png','');
4058fid=fopen([filename '.cmx'],'w');
4059fprintf(fid,['##############   CMX file' '\n' ]);
4060fprintf(fid,   ['FirstImage ' regexprep(par.filename_ima_a,'\\','\\\\') '\n' ]);% for windows compatibility
4061fprintf(fid,   ['LastImage  ' regexprep(par.filename_ima_b,'\\','\\\\') '\n' ]);% for windows compatibility
4062fprintf(fid,  ['XX' '\n' ]);
4063fprintf(fid,  ['Mask ' par.maskflag '\n' ]);
4064fprintf(fid,  ['MaskName ' regexprep(par.maskname,'\\','\\\\') '\n' ]);
4065fprintf(fid,   ['ImageSize ' par.npx ' ' par.npy '\n' ]);   %VERIFIER CAS GENERAL ?
4066fprintf(fid,   ['CorrelationBoxesSize ' par.ibx ' ' par.iby '\n' ]);
4067fprintf(fid,   ['SearchBoxeSize ' par.isx ' ' par.isy '\n' ]);
4068fprintf(fid,   ['RO ' par.rho '\n' ]);
4069fprintf(fid,   ['GridSpacing ' par.dx ' ' par.dy '\n' ]);
4070fprintf(fid,   ['XX 1.0' '\n' ]);
4071fprintf(fid,   ['Dt_TO ' par.Dt ' ' par.T0 '\n' ]);
4072fprintf(fid,  ['PixCmXY ' par.pxcmx ' ' par.pxcmy '\n' ]);
4073fprintf(fid,  ['XX 1' '\n' ]);
4074fprintf(fid,   ['ShiftXY ' par.shiftx ' '  par.shifty '\n' ]);
4075fprintf(fid,  ['Grid ' par.gridflag '\n' ]);
4076fprintf(fid,   ['GridName ' regexprep(par.gridname,'\\','\\\\') '\n' ]);
4077fprintf(fid,   ['XX 85' '\n' ]);
4078fprintf(fid,   ['XX 1.0' '\n' ]);
4079fprintf(fid,   ['XX 1.0' '\n' ]);
4080fprintf(fid,   ['Hart 1' '\n' ]);
4081fprintf(fid,  [ 'DecimalShift 0' '\n' ]);
4082fprintf(fid,   ['Deformation 0' '\n' ]);
4083fprintf(fid,  ['CorrelationMin 0' '\n' ]);
4084fprintf(fid,   ['IntensityMin 0' '\n' ]);
4085fprintf(fid,  ['SeuilImage n' '\n' ]);
4086fprintf(fid,   ['SeuilImageValues 0 4096' '\n' ]);
4087fprintf(fid,   ['ImageToUse ' par.term_a ' ' par.term_b '\n' ]); % VERIFIER ?
4088fprintf(fid,   ['ImageUsedBefore null null' '\n' ]);
4089fclose(fid);
4090
4091cmd_CIV1=[sparam.Civ1Bin ' -f ' filename '.cmx >' filename '.log' ]; % redirect standard output to the log file
4092cmd_CIV1=regexprep(cmd_CIV1,'\\','\\\\');
4093namelog=regexprep(namelog,'\\','\\\\');
4094
4095if(isunix)
4096    [Rootbat,Filebat,extbat]=fileparts(namelog);
4097    ncName=fullfile(Rootbat,[ Filebat '.nc']);
4098    cmd_CIV1=[cmd_CIV1 '\n' 'mv ' namelog  ' ' regexprep(namelog,'\.log','') '.civ1.log' '\n' 'chmod g+w ' ncName];
4099else
4100    cmd_CIV1=[cmd_CIV1 '\n' 'copy /Y ' namelog ' ' regexprep(namelog,'\.log','') '.civ1.log'];
4101end
4102
4103%------------------------------------------------------------------------
4104% --- CIV1  Unified
4105function xml_civ1_parameters=CIV1_CMD_Unified(filename,namelog,par)
4106%------------------------------------------------------------------------
4107%pixels per cm and matrix of the image times, read from the .civ file by uvmat
4108%global CivBin%name of the executable for civ1 calculation
4109
4110civ1.image1=par.filename_ima_a;
4111civ1.image2=par.filename_ima_b;
4112civ1.imageSize_X=par.npx;
4113civ1.imageSize_Y=par.npy;
4114civ1.outputFileName=[filename '.nc'];
4115civ1.correlationBoxesSize_X=par.ibx;
4116civ1.correlationBoxesSize_Y=par.iby;
4117civ1.searchBoxesSize_X=par.isx;
4118civ1.searchBoxesSize_Y=par.isy;
4119civ1.globalShift_X=par.shiftx;
4120civ1.globalShift_Y=par.shifty;
4121civ1.ro=par.rho;
4122civ1.hart='y';
4123if isequal(par.gridflag,'y')
4124    civ1.grid=par.gridname;
4125else
4126    civ1.grid='n';
4127    civ1.gridSpacing_X=par.dx;
4128    civ1.gridSpacing_Y=par.dy;
4129end
4130if isequal(par.maskflag,'y')
4131    civ1.mask=par.maskname;
4132end
4133civ1.dt=par.Dt;
4134civ1.unit='pixel';
4135civ1.absolut_time_T0=par.T0;
4136civ1.pixcmx=par.pxcmx;
4137civ1.pixcmy=par.pxcmy;
4138civ1.convectFlow='n';
4139
4140xml_civ1_parameters=civ1;
4141
4142%------------------------------------------------------------------------
4143% --- CIV2  Unified
4144function civ2=CIV2_CMD_Unified(filename,namelog,par)
4145%------------------------------------------------------------------------
4146%pixels per cm and matrix of the image times, read from the .civ file by uvmat
4147%global CivBin%name of the executable for civ1 calculation
4148
4149civ2.image1=par.filename_ima_a;
4150civ2.image2=par.filename_ima_b;
4151civ2.imageSize_X=par.npx;
4152civ2.imageSize_Y=par.npy;
4153civ2.inputFileName=[par.filename_nc1 '.nc'];
4154civ2.outputFileName=[filename '.nc'];
4155civ2.correlationBoxesSize_X=par.ibx;
4156civ2.correlationBoxesSize_Y=par.iby;
4157civ2.ro=par.rho;
4158%civ2.decimalShift=par.decimal;
4159%civ2.deformation=par.deformation;
4160if isequal(par.decimal,'1')
4161    civ2.decimalShift='y';
4162else
4163    civ2.decimalShift='n';
4164end
4165if isequal(par.deformation,'1')
4166    civ2.deformation='y';
4167else
4168    civ2.deformation='n';
4169end
4170if isequal(par.gridflag,'y')
4171    civ2.grid=par.gridname;
4172else
4173    civ2.grid='n';
4174    civ2.gridSpacing_X=par.dx;
4175    civ2.gridSpacing_Y=par.dy;
4176end
4177civ2.gridSpacing_X='10';
4178civ2.gridSpacing_Y='10';%NOTE: faut mettre gridSpacing pourque ca tourne, meme si c'est la grille qui est utilisee
4179if isequal(par.maskflag,'y')
4180    civ2.mask=par.maskname;
4181else
4182    civ2.mask='n';
4183end
4184civ2.dt=par.Dt;
4185civ2.unit='pixel';
4186civ2.absolut_time_T0=par.T0;
4187civ2.pixcmx=par.pxcmx;
4188civ2.pixcmy=par.pxcmy;
4189civ2.convectFlow='n';
4190civ2.pixcmx=par.pxcmx;
4191civ2.pixcmy=par.pxcmy;
4192civ2.convectFlow='n';
4193
4194%------------------------------------------------------------------------
4195% --- CIV2  CIV2  CIV2 CIV2
4196function cmd_CIV2=CIV2_CMD(filename,namelog,par,sparam)
4197%------------------------------------------------------------------------
4198%pixels per cm and matrix of the image times, read from the .civ file by uvmat
4199% global civ2Bin sge%name of the executable for civ1 calculation
4200if isequal(par.Dt,'0')
4201    par.Dt='1' ;%case of 'displacement' mode
4202end
4203% textcmx=['##############   CMX file'  '\n'...
4204% ['FirstImage ' par.filename_ima_a]  '\n'...
4205% ['LastImage  ' par.filename_ima_b]  '\n'...
4206% 'XX'   '\n'...
4207% ['Mask ' par.maskflag]  '\n'...
4208% ['MaskName ' par.maskname]  '\n'...
4209% ['ImageSize ' par.npx ' ' par.npy]  '\n'...
4210% ['CorrelationBoxesSize ' par.ibx ' ' par.iby]  '\n'...
4211% ['SearchBoxeSize ' par.ibx ' ' par.iby]  '\n'...
4212% ['RO ' par.rho]  '\n'...
4213% ['GridSpacing ' par.dx ' ' par.dy]  '\n'...
4214% 'XX 1.0'  '\n'...
4215% ['Dt_TO ' par.Dt ' ' par.T0]  '\n'...
4216% ['PixCmXY ' par.pxcmx ' ' par.pxcmy]  '\n'...
4217% 'XX 1'  '\n'...
4218% ['ShiftXY 0 0']  '\n'...
4219% ['Grid ' par.gridflag]  '\n'...
4220% ['GridName ' par.gridname]  '\n'...
4221% 'XX 85'  '\n'...
4222% 'XX 1.0'  '\n'...
4223% 'XX 1.0'  '\n'...
4224% 'Hart 1'  '\n'...
4225% ['DecimalShift ' par.decimal]  '\n'...
4226% ['Deformation ' par.deformation]  '\n'...
4227% 'CorrelationMin 0'  '\n'...
4228% 'IntensityMin 0'  '\n'...
4229% 'SeuilImage n'  '\n'...
4230% 'SeuilImageValues 0 4096'  '\n'...
4231% ['ImageToUse ' par.term_a ' ' par.term_b]  '\n'... % VERIFIER ?
4232% ['ImageUsedBefore ' par.filename_nc1]];
4233% textout=char(textcmx);
4234% fid=fopen([filename_cmx '2'],'w');
4235% fprintf(fid,textout);
4236% fclose(fid)
4237
4238par.filename_ima_a=regexprep(par.filename_ima_a,'.png','');
4239par.filename_ima_b=regexprep(par.filename_ima_b,'.png','');% bug : .png appears two times ?
4240fid=fopen([filename '.cmx2'],'w');
4241fprintf(fid,['##############   CMX file' '\n' ]);
4242fprintf(fid,   ['FirstImage ' regexprep(par.filename_ima_a,'\\','\\\\') '\n' ]);% for windows compatibility
4243fprintf(fid,   ['LastImage  ' regexprep(par.filename_ima_b,'\\','\\\\') '\n' ]);% for windows compatibility
4244fprintf(fid,  ['XX' '\n' ]);
4245fprintf(fid, ['Mask ' par.maskflag '\n' ]);
4246fprintf(fid, ['MaskName ' regexprep(par.maskname,'\\','\\\\') '\n' ]);% for windows compatibility
4247fprintf(fid, ['ImageSize ' par.npx ' ' par.npy '\n' ]);   %VERIFIER CAS GENERAL ?
4248fprintf(fid, ['CorrelationBoxesSize ' par.ibx ' ' par.iby '\n' ]);
4249fprintf(fid, ['SearchBoxeSize ' par.ibx ' ' par.iby '\n']);
4250fprintf(fid, ['RO ' par.rho '\n']);
4251fprintf(fid, ['GridSpacing ' par.dx ' ' par.dy '\n']);
4252fprintf(fid, ['XX 1.0' '\n' ]);
4253fprintf(fid, ['Dt_TO ' par.Dt ' ' par.T0 '\n' ]);
4254fprintf(fid, ['PixCmXY ' par.pxcmx ' ' par.pxcmy '\n' ]);
4255fprintf(fid, ['XX 1' '\n' ]);
4256fprintf(fid, 'ShiftXY 0 0\n');
4257fprintf(fid, ['Grid ' par.gridflag '\n' ]);
4258fprintf(fid, ['GridName ' regexprep(par.gridname,'\\','\\\\') '\n']);
4259fprintf(fid, ['XX 85' '\n' ]);
4260fprintf(fid, ['XX 1.0' '\n' ]);
4261fprintf(fid, ['XX 1.0' '\n' ]);
4262fprintf(fid, ['Hart 1' '\n' ]);
4263fprintf(fid, ['DecimalShift ' par.decimal '\n']);
4264fprintf(fid, ['Deformation ' par.deformation '\n']);
4265fprintf(fid,  ['CorrelationMin 0' '\n' ]);
4266fprintf(fid,   ['IntensityMin 0' '\n' ]);
4267fprintf(fid,  ['SeuilImage n' '\n' ]);
4268fprintf(fid,   ['SeuilImageValues 0 4096' '\n' ]);
4269fprintf(fid,   ['ImageToUse ' par.term_a ' ' par.term_b '\n' ]); % VERIFIER ?
4270fprintf(fid, ['ImageUsedBefore ' regexprep(par.filename_nc1,'\\','\\\\') '\n']);
4271fclose(fid);
4272
4273cmd_CIV2=[sparam.Civ2Bin ' -f ' filename  '.cmx >' filename '.log' ]; % redirect standard output to the log file
4274cmd_CIV2=regexprep(cmd_CIV2,'\\','\\\\');
4275namelog=regexprep(namelog,'\\','\\\\');
4276
4277if(isunix)
4278    [Rootbat,Filebat,extbat]=fileparts(namelog);
4279    ncName=fullfile(Rootbat,[ Filebat '.nc']);
4280    cmd_CIV2=[cmd_CIV2 '\n' 'mv ' namelog  ' ' regexprep(namelog,'\.log','') '.civ2.log' '\n' 'chmod g+w ' ncName];
4281else
4282    cmd_CIV2=[cmd_CIV2 '\n' 'copy /Y ' namelog ' ' regexprep(namelog,'\.log','') '.civ2.log'];
4283end
4284
4285
4286
4287%------------------------------------------------------------------------
4288% --- Executes on button press in HELP.
4289function HELP_Callback(hObject, eventdata, handles)
4290%------------------------------------------------------------------------
4291path_to_uvmat=which ('uvmat');% check the path of uvmat
4292pathelp=fileparts(path_to_uvmat);
4293helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
4294if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package')
4295else
4296    addpath (fullfile(pathelp,'uvmat_doc'))
4297    web([helpfile '#civ'])
4298end
4299
4300%------------------------------------------------------------------------
4301%--read images and convert them to the uint16 format used for PIV
4302function A=read_image(filename,type_ima,num,movieobject)
4303%------------------------------------------------------------------------
4304%num is the view number needed for an avi movie
4305switch type_ima
4306    case 'movie'
4307        A=read(movieobject,num);
4308    case 'avi'
4309        mov=aviread(filename,num);
4310        A=frame2im(mov(1));
4311    case 'multimage'
4312        A=imread(filename,num);
4313    case 'image'
4314        A=imread(filename);
4315end
4316siz=size(A);
4317if length(siz)==3;%color images
4318    A=sum(double(A),3);
4319    A=uint16(A);
4320end
4321
4322%------------------------------------------------------------------------
4323function ref_i_Callback(hObject, eventdata, handles)
4324%------------------------------------------------------------------------
4325mode_list=get(handles.mode,'String');
4326mode_value=get(handles.mode,'Value');
4327mode=mode_list{mode_value};
4328find_netcpair_civ1(hObject, eventdata, handles);% update the menu of pairs depending on the available netcdf files
4329if isequal(mode,'series(Di)') || ...% we do patch2 only
4330        (get(handles.CIV2,'Value')==0 && get(handles.CIV1,'Value')==0 && get(handles.FIX1,'Value')==0 && get(handles.PATCH1,'Value')==0)
4331    find_netcpair_civ2(hObject, eventdata, handles);
4332end
4333
4334%------------------------------------------------------------------------
4335function ref_j_Callback(hObject, eventdata, handles)
4336%------------------------------------------------------------------------
4337mode_list=get(handles.mode,'String');
4338mode_value=get(handles.mode,'Value');
4339mode=mode_list{mode_value};
4340if isequal(get(handles.CIV1,'Value'),0)|| isequal(mode,'series(Dj)')
4341    find_netcpair_civ1(hObject, eventdata, handles);% update the menu of pairs depending on the available netcdf files
4342end
4343if isequal(mode,'series(Dj)') || ...
4344        (get(handles.CIV2,'Value')==0 && get(handles.CIV1,'Value')==0 && get(handles.FIX1,'Value')==0 && get(handles.PATCH1,'Value')==0)
4345    find_netcpair_civ2(hObject, eventdata, handles);
4346end
4347
4348%------------------------------------------------------------------------
4349function ref_i_civ2_Callback(hObject, eventdata, handles)
4350%------------------------------------------------------------------------
4351mode_list=get(handles.mode,'String');
4352mode_value=get(handles.mode,'Value');
4353mode=mode_list{mode_value};
4354find_netcpair_civ2(hObject, eventdata, handles);% update the menu of pairs depending on the available netcdf files
4355
4356%------------------------------------------------------------------------
4357function ref_j_civ2_Callback(hObject, eventdata, handles)
4358%------------------------------------------------------------------------
4359mode_list=get(handles.mode,'String');
4360mode_value=get(handles.mode,'Value');
4361mode=mode_list{mode_value};
4362if  isequal(mode,'series(Dj)')
4363    find_netcpair_civ2(hObject, eventdata, handles);% update the menu of pairs depending on the available netcdf files
4364end
4365
4366%------------------------------------------------------------------------
4367% --- Executes on button press in compare.
4368function compare_Callback(hObject, eventdata, handles)
4369%------------------------------------------------------------------------
4370test=get(handles.compare,'Value');
4371if test==2 || test==3
4372    filebase=get(handles.RootName,'String');
4373    browse=get(handles.browse_root,'Userdata');
4374    browse.nom_type_ima1=browse.nom_type_ima;
4375    set(handles.browse_root,'UserData',browse);
4376    set(handles.sub_txt,'Visible','on')
4377    set(handles.RootName_1,'Visible','On');%mkes the second file input window visible
4378    mode_store=get(handles.mode,'String');%get the present 'mode'
4379    set(handles.compare,'UserData',mode_store);%store the mode display
4380    set(handles.mode,'Visible','off')
4381    if test==2
4382        set(handles.mode,'Visible','off')
4383    else
4384        set(handles.mode,'Visible','on')
4385    end
4386   
4387    % open an image file with the browser
4388    ind_opening=1;%default
4389    browse.incr_pair=[0 0]; %default
4390    oldfile=get(handles.RootName,'String');
4391    menu={'*.xml;*.avi;*.AVI;*.nc','(*.xml,*.avi,*.nc)'; ...
4392        '*.xml', '.xml files';'*.avi;*.AVI', '.avi files';'*.nc', '.nc files';...
4393        '*.*', 'All Files (*.*)'};
4394    [FileName, PathName, filtindex] = uigetfile( menu, 'Pick a file',oldfile);
4395    fileinput=[PathName FileName];%complete file name
4396    sizf=size(fileinput);
4397    if (~ischar(fileinput)|~isequal(sizf(1),1)),return;end %stop if fileinput not a character string
4398    [path,name,ext]=fileparts(fileinput);
4399    [path1]=fileparts(filebase);
4400    if ~strcmp(path1,path)
4401        msgbox_uvmat('ERROR','The two  input image series must be in the same directory')
4402        return
4403    end
4404    set(handles.RootName_1,'String',name);
4405    [RootPath,RootFile,field_count,str2,str_a,str_b,xx,nom_type,subdir]=name2display(name);
4406    browse=get(handles.browse_root,'UserData');
4407    browse.nom_type_ima_1=nom_type;
4408    set(handles.browse_root,'UserData',browse)
4409   
4410    %check image extension
4411    if ~strcmp(ext,get(handles.ImaExt,'String'))
4412        msgbox_uvmat('ERROR','The two  input image series must have the same extenion name')
4413        return
4414    end
4415   
4416    %check image size
4417    A=imread(fileinput);
4418    npxy=get(handles.ImaExt,'UserData');
4419    if ~isequal(npxy(1),size(A,1))|| ~isequal(npxy(2),size(A,2))
4420        msgbox_uvmat('ERROR','The two input image series must have the same size')
4421        return
4422    end
4423else
4424    set(handles.mode,'Visible','on')
4425    set(handles.RootName_1,'Visible','Off');
4426    set(handles.sub_txt,'Visible','off')
4427    set(handles.RootName_1,'String',[]);
4428    mode_store=get(handles.compare,'UserData');
4429    set(handles.mode,'String',mode_store)
4430    set(handles.test_stereo1,'Value',0)
4431    set(handles.test_stereo2,'Value',0)
4432end
4433mode_Callback(hObject, eventdata, handles)
4434
4435%------------------------------------------------------------------------
4436% --- Executes on button press in get_ref_fix1.
4437function get_ref_fix1_Callback(hObject, eventdata, handles)
4438%------------------------------------------------------------------------
4439filebase=get(handles.RootName,'String');
4440[FileName, PathName, filterindex] = uigetfile( ...
4441    {'*.nc', ' (*.nc)';
4442    '*.nc',  'netcdf files '; ...
4443    '*.*', 'All Files (*.*)'}, ...
4444    'Pick a file',filebase);
4445
4446fileinput=[PathName FileName];
4447sizf=size(fileinput);
4448if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string
4449[Path,File,field_count,str2,str_a,str_b,ref.ext,ref.nom_type,ref.subdir]=name2display(fileinput);
4450ref.filebase=fullfile(Path,File);
4451ref.num_a=stra2num(str_a);
4452ref.num_b=stra2num(str_b);
4453ref.num1=str2double(field_count);
4454ref.num2=str2double(str2);
4455browse=[];%initialisation
4456if ~isequal(ref.ext,'.nc')
4457    msgbox_uvmat('ERROR','the reference file must be in netcdf format (*.nc)')
4458    return
4459end
4460set(handles.ref_fix1,'String',[fullfile(ref.subdir,File) '....nc']);
4461set(handles.ref_fix1,'UserData',ref)
4462menu_field{1}='civ1';
4463Data=nc2struct(fileinput,[]);
4464if isfield(Data,'patch') && isequal(Data.patch,1)
4465    menu_field{2}='filter1';
4466end
4467if isfield(Data,'civ2') && isequal(Data.civ2,1)
4468    menu_field{3}='civ2';
4469end
4470if isfield(Data,'patch2') && isequal(Data.patch2,1)
4471    menu_field{4}='filter2';
4472end
4473set(handles.field_ref1,'String',menu_field);
4474set(handles.field_ref1,'Value',length(menu_field));
4475set(handles.inf_sup1,'Value',2);
4476set(handles.thresh_vel,'String','1');%default threshold
4477set(handles.ref_fix1,'Enable','on')
4478
4479%------------------------------------------------------------------------
4480% --- Executes on button press in get_ref_fix2.
4481function get_ref_fix2_Callback(hObject, eventdata, handles)
4482%------------------------------------------------------------------------
4483if isequal(get(handles.get_ref_fix2,'Value'),1)
4484    filebase=get(handles.RootName,'String');
4485    [FileName, PathName, filterindex] = uigetfile( ...
4486        {'*.nc', ' (*.nc)';
4487        '*.nc',  'netcdf files '; ...
4488        '*.*', 'All Files (*.*)'}, ...
4489        'Pick a file',filebase);
4490    fileinput=[PathName FileName];
4491    sizf=size(fileinput);
4492    if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string
4493    [Path,File,field_count,str2,str_a,str_b,ref.ext,ref.nom_type,ref.subdir]=name2display(fileinput);
4494    ref.filebase=fullfile(Path,File);
4495    ref.num_a=stra2num(str_a);
4496    ref.num_b=stra2num(str_b);
4497    ref.num1=str2num(field_count);
4498    ref.num2=str2num(str2);
4499    browse=[];%initialisation
4500    if ~isequal(ref.ext,'.nc')
4501        msgbox_uvmat('ERROR','the reference file must be in netcdf format (*.nc)')
4502        return
4503    end
4504    set(handles.ref_fix2,'String',[fullfile(ref.subdir,File) '....nc']);
4505    set(handles.ref_fix2,'UserData',ref)
4506    menu_field{1}='civ1';
4507    Data=nc2struct(fileinput,[]);
4508    if isfield(Data,'patch') & isequal(Data.patch,1)
4509        menu_field{2}='filter1';
4510    end
4511    if isfield(Data,'civ2') & isequal(Data.civ2,1)
4512        menu_field{3}='civ2';
4513    end
4514    if isfield(Data,'patch2') & isequal(Data.patch2,1)
4515        menu_field{4}='filter2';
4516    end
4517    set(handles.field_ref2,'String',menu_field);
4518    set(handles.field_ref2,'Value',length(menu_field));
4519    set(handles.inf_sup2,'Value',2);
4520    set(handles.thresh_vel2,'String','1');%default threshold
4521    set(handles.ref_fix2,'Enable','on')
4522    set(handles.ref_fix2,'Visible','on')
4523    set(handles.field_ref2,'Visible','on')
4524else
4525    set(handles.ref_fix2,'Visible','off')
4526    set(handles.field_ref2,'Visible','off')
4527end
4528
4529%------------------------------------------------------------------------
4530function ref_fix1_Callback(hObject, eventdata, handles)
4531%------------------------------------------------------------------------
4532set(handles.inf_sup1,'Value',1);
4533set(handles.field_ref1,'Value',1)
4534set(handles.field_ref1,'String',{' '})
4535set(handles.ref_fix1,'UserData',[]);
4536set(handles.ref_fix1,'String','');
4537set(handles.thresh_vel1,'String','0');
4538
4539%------------------------------------------------------------------------
4540function ref_fix2_Callback(hObject, eventdata, handles)
4541%------------------------------------------------------------------------
4542set(handles.inf_sup2,'Value',1);
4543set(handles.field_ref2,'Value',1)
4544set(handles.field_ref2,'String',{' '})
4545set(handles.ref_fix2,'UserData',[]);
4546set(handles.ref_fix2,'String','');
4547set(handles.thresh_vel2,'String','0');
4548
4549%------------------------------------------------------------------------
4550% --- Executes on button press in test_stereo1.
4551function test_stereo1_Callback(hObject, eventdata, handles)
4552%------------------------------------------------------------------------
4553if isequal(get(handles.test_stereo1,'Value'),0)
4554    set(handles.subdomain_patch1,'Visible','on')
4555    set(handles.rho_patch1,'Visible','on')
4556else
4557    set(handles.subdomain_patch1,'Visible','off')
4558    set(handles.rho_patch1,'Visible','off')
4559end
4560
4561%------------------------------------------------------------------------
4562% --- Executes on button press in test_stereo2.
4563function test_stereo2_Callback(hObject, eventdata, handles)
4564%------------------------------------------------------------------------
4565if isequal(get(handles.test_stereo2,'Value'),0)
4566    set(handles.subdomain_patch2,'Visible','on')
4567    set(handles.rho_patch2,'Visible','on')
4568else
4569    set(handles.subdomain_patch2,'Visible','off')
4570    set(handles.rho_patch2,'Visible','off')
4571end
4572
4573%------------------------------------------------------------------------
4574% --- Executes on button press in ImaThreshold.
4575function ImaThreshold_Callback(hObject, eventdata, handles)
4576%------------------------------------------------------------------------
4577if isequal(get(handles.ImaThreshold,'Value'),1)
4578    set(handles.MinIma,'Visible','on')
4579    set(handles.MaxIma,'Visible','on')
4580else
4581    set(handles.MinIma,'Visible','off')
4582    set(handles.MaxIma,'Visible','off')
4583end
4584
4585%------------------------------------------------------------------------
4586% --- Executes on button press in ImaThreshold2.
4587function ImaThreshold2_Callback(hObject, eventdata, handles)
4588%------------------------------------------------------------------------
4589if isequal(get(handles.ImaThreshold2,'Value'),1)
4590    set(handles.MinIma2,'Visible','on')
4591    set(handles.MaxIma2,'Visible','on')
4592else
4593    set(handles.MinIma2,'Visible','off')
4594    set(handles.MaxIma2,'Visible','off')
4595end
4596
4597
4598
4599
Note: See TracBrowser for help on using the repository browser.