source: trunk/src/civ.m @ 188

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

various bug repairs and cleaning

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