[435] | 1 | |
---|
[112] | 2 | %'civ': function associated with the interface 'civ.fig' for PIV, spline interpolation and stereo PIV (patch) |
---|
[2] | 3 | %------------------------------------------------------------------------ |
---|
[309] | 4 | % provides an interface for the software menucivx |
---|
[2] | 5 | % function varargout = civ(varargin) |
---|
[309] | 6 | % provides an interface for the software menucivx |
---|
[2] | 7 | % |
---|
| 8 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
[282] | 9 | % Copyright Joel Sommeria, 2011, LEGI / CNRS-UJF-INPG, sommeria@legi.grenoble-inp.fr |
---|
[2] | 10 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
[112] | 11 | % This file is part of the toolbox UVMAT. |
---|
| 12 | % |
---|
[2] | 13 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 14 | % it under the terms of the GNU General Public License as published by |
---|
| 15 | % the Free Software Foundation; either version 2 of the License, or |
---|
| 16 | % (at your option) any later version. |
---|
[112] | 17 | % |
---|
[2] | 18 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 19 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 20 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 21 | % GNU General Public License (file UVMAT/COPYING.txt) for more details. |
---|
| 22 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 23 | function varargout = civ(varargin) |
---|
[273] | 24 | %TODO: search range |
---|
[2] | 25 | |
---|
[581] | 26 | % Last Modified by GUIDE v2.5 09-Mar-2013 22:50:23 |
---|
[2] | 27 | % Begin initialization code - DO NOT EDIT |
---|
| 28 | gui_Singleton = 1; |
---|
| 29 | gui_State = struct('gui_Name', mfilename, ... |
---|
[112] | 30 | 'gui_Singleton', gui_Singleton, ... |
---|
| 31 | 'gui_OpeningFcn', @civ_OpeningFcn, ... |
---|
| 32 | 'gui_OutputFcn', @civ_OutputFcn, ... |
---|
| 33 | 'gui_LayoutFcn', [] , ... |
---|
| 34 | 'gui_Callback', []); |
---|
[382] | 35 | if nargin && ischar(varargin{1}) && ~isempty(regexp(varargin{1},'_Callback$','once')) |
---|
[2] | 36 | gui_State.gui_Callback = str2func(varargin{1}); |
---|
| 37 | end |
---|
| 38 | |
---|
| 39 | if nargout |
---|
| 40 | [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); |
---|
| 41 | else |
---|
| 42 | gui_mainfcn(gui_State, varargin{:}); |
---|
| 43 | end |
---|
| 44 | % End initialization code - DO NOT EDIT |
---|
| 45 | |
---|
[12] | 46 | %------------------------------------------------------------------------ |
---|
[2] | 47 | % --- Executes just before civ is made visible. |
---|
[298] | 48 | function civ_OpeningFcn(hObject, eventdata, handles, fileinput) |
---|
[12] | 49 | %------------------------------------------------------------------------ |
---|
[2] | 50 | % This function has no output args, see OutputFcn. |
---|
[298] | 51 | |
---|
| 52 | %% General settings |
---|
[2] | 53 | handles.output = hObject; |
---|
[298] | 54 | guidata(hObject, handles); % Update handles structure |
---|
[309] | 55 | set(hObject,'WindowButtonDownFcn',{'mouse_down'}) % allows mouse action with right button (zoom for uicontrol display) |
---|
[252] | 56 | |
---|
[298] | 57 | %% Adjust the GUI according to the binaries available in PARAM.xml |
---|
[276] | 58 | path_civ=fileparts(which('civ')); %path to civ |
---|
[298] | 59 | addpath (path_civ) ; %add the path to civ, (useful in case of change of working directory after civ has been s opened in the working directory) |
---|
[273] | 60 | errormsg=[];%default error message |
---|
[500] | 61 | xmlfile=fullfile(path_civ,'PARAM.xml'); |
---|
[483] | 62 | test_batch=0;%default: ,no batch mode available |
---|
| 63 | sparam=[]; |
---|
[500] | 64 | if ~exist(xmlfile,'file') |
---|
[505] | 65 | [success,message]=copyfile(fullfile(path_civ,'PARAM.xml.default'),xmlfile); |
---|
[500] | 66 | end |
---|
[273] | 67 | if exist(xmlfile,'file') |
---|
| 68 | try |
---|
| 69 | t=xmltree(xmlfile); |
---|
| 70 | sparam=convert(t); |
---|
[435] | 71 | catch ME |
---|
| 72 | errormsg={' Unable to read the file PARAM.xml defining the civx binaries:';ME.message}; |
---|
[483] | 73 | msgbox_uvmat('WARNING',errormsg); |
---|
[273] | 74 | end |
---|
| 75 | else |
---|
[483] | 76 | [s,w]=system('oarstat'); |
---|
| 77 | if ~isequal(s,0) |
---|
| 78 | [s,w]=system('qstat'); |
---|
| 79 | end |
---|
| 80 | if isequal(s,0) |
---|
| 81 | test_batch=1; |
---|
| 82 | end |
---|
[273] | 83 | end |
---|
| 84 | if isfield(sparam,'BatchParam') && isfield(sparam.BatchParam,'BatchMode') |
---|
[591] | 85 | batch_mode=sparam.BatchParam.BatchMode; |
---|
[484] | 86 | test_command=''; |
---|
[482] | 87 | switch batch_mode |
---|
| 88 | case 'sge' |
---|
| 89 | test_command='qstat'; |
---|
| 90 | case 'oar' |
---|
| 91 | test_command='oarstat'; |
---|
| 92 | end |
---|
[484] | 93 | if ~isempty(test_command) |
---|
[500] | 94 | [s,w]=system(test_command); |
---|
| 95 | if isequal(s,0) |
---|
| 96 | test_batch=1; |
---|
| 97 | end |
---|
[482] | 98 | end |
---|
[273] | 99 | end |
---|
[467] | 100 | RUNVal=get(handles.RunMode,'Value'); |
---|
[273] | 101 | if test_batch==0 |
---|
[467] | 102 | if RUNVal>2 |
---|
| 103 | set(handles.RunMode,'Value',1) |
---|
| 104 | end |
---|
| 105 | set(handles.RunMode,'String',{'local';'background'}) |
---|
| 106 | else |
---|
| 107 | set(handles.RunMode,'String',{'local';'background';'cluster'}) |
---|
[273] | 108 | end |
---|
| 109 | |
---|
[298] | 110 | %% load the list of previously browsed files in the upper bar menu Open/ |
---|
[296] | 111 | dir_perso=prefdir; % path to the directory .matlab for personal data |
---|
| 112 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat');% personal data file uvmauvmat_perso.mat' in .matlab |
---|
| 113 | if exist(profil_perso,'file') |
---|
| 114 | h=load (profil_perso); |
---|
| 115 | if isfield(h,'MenuFile') |
---|
| 116 | for ifile=1:min(length(h.MenuFile),5) |
---|
| 117 | eval(['set(handles.MenuFile_' num2str(ifile) ',''Label'',h.MenuFile{ifile});']) |
---|
| 118 | end |
---|
| 119 | end |
---|
[273] | 120 | end |
---|
| 121 | |
---|
[298] | 122 | %% prepare the GUI with parameters from the input file if opened from uvmat |
---|
| 123 | if exist('fileinput','var')% && isfield(param,'RootName') && ~isempty(param.RootName) |
---|
[371] | 124 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[298] | 125 | errormsg=display_file_name(handles,fileinput); |
---|
| 126 | if ~isempty(errormsg) |
---|
| 127 | msgbox_uvmat('ERROR',errormsg) |
---|
[112] | 128 | end |
---|
[371] | 129 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[2] | 130 | end |
---|
[506] | 131 | Program_Callback([],[], handles) |
---|
[2] | 132 | |
---|
[12] | 133 | %------------------------------------------------------------------------ |
---|
[2] | 134 | % --- Outputs from this function are returned to the command line. |
---|
| 135 | function varargout = civ_OutputFcn(hObject, eventdata, handles) |
---|
[12] | 136 | %------------------------------------------------------------------------ |
---|
[2] | 137 | % Get default command line output from handles structure |
---|
| 138 | varargout{1} = handles.output; |
---|
| 139 | |
---|
[307] | 140 | %------------------------------------------------------------------------ |
---|
[309] | 141 | % --- Function activated by the Open/Browse... option in the upper menu bar. |
---|
[307] | 142 | function MenuBrowse_Callback(hObject, eventdata, handles) |
---|
| 143 | %------------------------------------------------------------------------ |
---|
[343] | 144 | %% get the current input root file name to initiate the browser |
---|
[371] | 145 | filebase=get(handles.RootPath,'String'); |
---|
[307] | 146 | oldfile=''; %default |
---|
[309] | 147 | if isempty(filebase)|| isequal(filebase,'')%loads the previously stored root file name |
---|
[307] | 148 | dir_perso=prefdir; |
---|
| 149 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
| 150 | if exist(profil_perso,'file') |
---|
| 151 | h=load (profil_perso); |
---|
| 152 | if isfield(h,'filebase')&& ischar(h.filebase) |
---|
| 153 | oldfile=h.filebase; |
---|
| 154 | end |
---|
| 155 | if isfield(h,'RootPath') && ischar(h.RootPath) |
---|
| 156 | oldfile=h.RootPath; |
---|
| 157 | end |
---|
| 158 | end |
---|
| 159 | else |
---|
| 160 | oldfile=filebase; |
---|
| 161 | end |
---|
[360] | 162 | |
---|
| 163 | %% get the new input file with the browser |
---|
[307] | 164 | menu={'*.xml;*.civ;*.png;*.jpg;*.tif;*.avi;*.AVI;*.nc;', ' (*.xml,*.civ,*.png,*.jpg ,.tif, *.avi,*.nc)'; |
---|
[309] | 165 | '*.xml', '.xml files '; ... |
---|
| 166 | '*.civ', '.civ files '; ... |
---|
| 167 | '*.png','.png image files'; ... |
---|
| 168 | '*.jpg',' jpeg image files'; ... |
---|
| 169 | '*.tif','.tif image files'; ... |
---|
| 170 | '*.avi;*.AVI','.avi movie files'; ... |
---|
| 171 | '*.nc','.netcdf files'; ... |
---|
| 172 | '*.*', 'All Files (*.*)'}; |
---|
[307] | 173 | [FileName, PathName, filtindex] = uigetfile( menu, 'Pick a file',oldfile); |
---|
| 174 | fileinput=[PathName FileName];%complete file name |
---|
| 175 | sizf=size(fileinput); |
---|
| 176 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string |
---|
[2] | 177 | |
---|
[343] | 178 | %% case of the xml file opened as input (TODO: check and see whether it is useful) |
---|
[307] | 179 | [path,name,ext]=fileparts(fileinput); |
---|
| 180 | testeditxml=0; |
---|
[360] | 181 | % if isequal(ext,'.xml') |
---|
| 182 | % testeditxml=1; |
---|
| 183 | % t_browse=xmltree(fileinput); |
---|
| 184 | % head_element=get(t_browse,1); |
---|
| 185 | % if isfield(head_element,'name')&& isequal(head_element.name,'ImaDoc') |
---|
| 186 | % testeditxml=0; |
---|
| 187 | % end |
---|
[343] | 188 | % end |
---|
[360] | 189 | % if testeditxml==1 || isequal(ext,'.xls') |
---|
| 190 | % heditxml=editxml({fileinput}); |
---|
| 191 | % set(heditxml,'Tag','browser') |
---|
| 192 | % waitfor(heditxml,'Tag','idle') |
---|
| 193 | % if ~ishandle(heditxml) |
---|
| 194 | % return |
---|
| 195 | % end |
---|
| 196 | % attr=findobj(get(heditxml,'children'),'Tag','CurrentAttributes'); |
---|
| 197 | % set(handles.browse,'UserData',fileinput)% store for future opening with browser |
---|
| 198 | % fileinput=get(attr,'UserData'); |
---|
| 199 | % if ~exist(fileinput,'file') |
---|
| 200 | % return |
---|
| 201 | % end |
---|
[343] | 202 | % end |
---|
[360] | 203 | [tild,tild,tild,i1,i2,j1,j2,FileExt,NomType]=fileparts_uvmat(fileinput); |
---|
[343] | 204 | |
---|
| 205 | %% prepare the GUI with parameters from the input file |
---|
[371] | 206 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[343] | 207 | errormsg=display_file_name(handles,fileinput); |
---|
| 208 | if ~isempty(errormsg) |
---|
| 209 | msgbox_uvmat('ERROR',erromsg) |
---|
[307] | 210 | end |
---|
[371] | 211 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[307] | 212 | |
---|
[309] | 213 | %------------------------------------------------------------------------ |
---|
[273] | 214 | % --- Open again the file whose name has been recorded in MenuFile_1 |
---|
| 215 | function MenuFile_1_Callback(hObject, eventdata, handles) |
---|
[12] | 216 | %------------------------------------------------------------------------ |
---|
[371] | 217 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[273] | 218 | fileinput=get(handles.MenuFile_1,'Label'); |
---|
[298] | 219 | errormsg=display_file_name(handles,fileinput); |
---|
| 220 | if ~isempty(errormsg) |
---|
[355] | 221 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 222 | end |
---|
[371] | 223 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[273] | 224 | |
---|
| 225 | % ----------------------------------------------------------------------- |
---|
| 226 | % --- Open again the file whose name has been recorded in MenuFile_2 |
---|
| 227 | function MenuFile_2_Callback(hObject, eventdata, handles) |
---|
| 228 | %------------------------------------------------------------------------ |
---|
[371] | 229 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[273] | 230 | fileinput=get(handles.MenuFile_2,'Label'); |
---|
[298] | 231 | errormsg=display_file_name(handles,fileinput); |
---|
| 232 | if ~isempty(errormsg) |
---|
[355] | 233 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 234 | end |
---|
[371] | 235 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[309] | 236 | |
---|
[273] | 237 | % ----------------------------------------------------------------------- |
---|
| 238 | % --- Open again the file whose name has been recorded in MenuFile_3 |
---|
| 239 | function MenuFile_3_Callback(hObject, eventdata, handles) |
---|
| 240 | %------------------------------------------------------------------------ |
---|
[371] | 241 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[273] | 242 | fileinput=get(handles.MenuFile_3,'Label'); |
---|
[298] | 243 | errormsg=display_file_name(handles,fileinput); |
---|
| 244 | if ~isempty(errormsg) |
---|
[355] | 245 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 246 | end |
---|
[371] | 247 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[309] | 248 | |
---|
[273] | 249 | % ----------------------------------------------------------------------- |
---|
| 250 | % --- Open again the file whose name has been recorded in MenuFile_4 |
---|
| 251 | function MenuFile_4_Callback(hObject, eventdata, handles) |
---|
| 252 | %------------------------------------------------------------------------ |
---|
[371] | 253 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[273] | 254 | fileinput=get(handles.MenuFile_4,'Label'); |
---|
[298] | 255 | errormsg=display_file_name(handles,fileinput); |
---|
| 256 | if ~isempty(errormsg) |
---|
[355] | 257 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 258 | end |
---|
[371] | 259 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[309] | 260 | |
---|
[273] | 261 | % ----------------------------------------------------------------------- |
---|
| 262 | % --- Open again the file whose name has been recorded in MenuFile_5 |
---|
| 263 | function MenuFile_5_Callback(hObject, eventdata, handles) |
---|
| 264 | %------------------------------------------------------------------------ |
---|
[371] | 265 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
[273] | 266 | fileinput=get(handles.MenuFile_5,'Label'); |
---|
[298] | 267 | errormsg=display_file_name(handles,fileinput); |
---|
| 268 | if ~isempty(errormsg) |
---|
[355] | 269 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 270 | end |
---|
[371] | 271 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[309] | 272 | |
---|
| 273 | % ----------------------------------------------------------------------- |
---|
| 274 | % ----------------------------------------------------------------------- |
---|
| 275 | % --- Open the help html file |
---|
| 276 | function MenuHelp_Callback(hObject, eventdata, handles) |
---|
| 277 | % ----------------------------------------------------------------------- |
---|
| 278 | path_civ=fileparts(which ('civ')); |
---|
| 279 | helpfile=fullfile(path_civ,'uvmat_doc','uvmat_doc.html'); |
---|
| 280 | if isempty(dir(helpfile)) |
---|
| 281 | msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package') |
---|
| 282 | else |
---|
| 283 | addpath (fullfile(path_civ,'uvmat_doc')) |
---|
| 284 | web([helpfile '#civ']) |
---|
| 285 | end |
---|
| 286 | |
---|
[12] | 287 | %------------------------------------------------------------------------ |
---|
[309] | 288 | % --- Function activated when a new filebase (image series) is introduced |
---|
[371] | 289 | function RootPath_Callback(hObject, eventdata, handles) |
---|
[12] | 290 | %------------------------------------------------------------------------ |
---|
[371] | 291 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
| 292 | RootPath=get(handles.RootPath,'String'); |
---|
[494] | 293 | SubDirImages=get(handles.SubDirImages,'String'); |
---|
[371] | 294 | RootFile=get(handles.RootFile,'String'); |
---|
[360] | 295 | ref_i=str2num(get(handles.ref_i,'String')); |
---|
| 296 | ref_j=str2num(get(handles.ref_j,'String')); |
---|
| 297 | NomType=get(handles.NomType,'String'); |
---|
| 298 | ImaExt=get(handles.ImaExt,'String'); |
---|
[494] | 299 | fileinput=fullfile_uvmat(RootPath,SubDirImages,RootFile,ImaExt,NomType,ref_i,[],ref_j); |
---|
[360] | 300 | errormsg=display_file_name(handles,fileinput); |
---|
[298] | 301 | if ~isempty(errormsg) |
---|
[360] | 302 | msgbox_uvmat('ERROR',errormsg) |
---|
[298] | 303 | end |
---|
[371] | 304 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
[384] | 305 | |
---|
[273] | 306 | %------------------------------------------------------------------------ |
---|
[309] | 307 | % --- general function activated for an input file series |
---|
[298] | 308 | function errormsg=display_file_name(handles,fileinput) |
---|
[273] | 309 | %------------------------------------------------------------------------ |
---|
[282] | 310 | set(handles.ListCompareMode,'Visible','on') |
---|
[298] | 311 | errormsg='';%default empty error message |
---|
[355] | 312 | drawnow |
---|
[273] | 313 | |
---|
[298] | 314 | %% enable RUN, BATCH button and 'status' display |
---|
| 315 | set(handles.RUN, 'Enable','On') |
---|
| 316 | set(handles.RUN,'BackgroundColor',[1 0 0])%set RUN button to red color |
---|
| 317 | if isfield(handles,'status') |
---|
| 318 | set(handles.status,'Value',0); %suppress the 'status' display |
---|
| 319 | status_Callback([], [], handles) |
---|
[2] | 320 | end |
---|
| 321 | |
---|
[298] | 322 | %% determine nomenclature types and extension of the input files |
---|
[355] | 323 | [RootPath,SubDir,RootFile,i1,i2,j1,j2,ExtInput,NomTypeInput]=fileparts_uvmat(fileinput); |
---|
[360] | 324 | NomTypeNc='';%default |
---|
| 325 | |
---|
[438] | 326 | %% case of xml file as input, read the civ parameters |
---|
[355] | 327 | ind_opening=0;%default |
---|
[360] | 328 | if strcmp(ExtInput,'.xml') |
---|
[501] | 329 | %reinitialise menus |
---|
| 330 | set(handles.ListPairMode,'Value',1) |
---|
| 331 | set(handles.ListPairMode,'String',{''}) |
---|
| 332 | set(handles.ListPairCiv1,'Value',1) |
---|
| 333 | set(handles.ListPairCiv1,'String',{''}) |
---|
| 334 | set(handles.ListPairCiv2,'Value',1) |
---|
| 335 | set(handles.ListPairCiv2,'String',{''}) |
---|
| 336 | Param=xml2struct(fileinput); %read parameters from the xml input file |
---|
[611] | 337 | fill_GUI(Param,handles.civ);%fill the GUI with the parameters retrieved from the xml file |
---|
[360] | 338 | return |
---|
| 339 | end |
---|
[438] | 340 | |
---|
| 341 | %% case of netcdf file as input, get the civ processing stage and look for a coresponding image |
---|
[493] | 342 | imageinput=fileinput;%default |
---|
[360] | 343 | if strcmp(ExtInput,'.nc') |
---|
| 344 | NomTypeNc=NomTypeInput; |
---|
[494] | 345 | if isempty(regexp(NomTypeInput,'[ab|AB|-]', 'once')) |
---|
[371] | 346 | set(handles.ListCompareMode,'Value',2) %mode displacement advised if the nomencalture does not involve index pairs |
---|
[438] | 347 | set(handles.RootFile_1,'Visible','On'); |
---|
[371] | 348 | else |
---|
[438] | 349 | set(handles.ListCompareMode,'Value',1) |
---|
| 350 | set(handles.RootFile_1,'Visible','Off'); |
---|
[371] | 351 | end |
---|
[493] | 352 | imageinput=''; |
---|
[371] | 353 | Data=nc2struct(fileinput,'ListGlobalAttribute','Conventions','absolut_time_T0','CivStage','Civ2_ImageA','Civ1_ImageA','Civ2_ImageB','Civ1_ImageB','fix','patch','civ2','fix2'); |
---|
[360] | 354 | if isfield(Data,'Txt') |
---|
| 355 | errormsg=Data.Txt; |
---|
| 356 | return |
---|
| 357 | end |
---|
[438] | 358 | % settings for new civ data, |
---|
[360] | 359 | if strcmp(Data.Conventions,'uvmat/civdata')% case of new civ data, |
---|
[500] | 360 | set(handles.Program,'Value',1) %select civ/Matlab by default |
---|
[493] | 361 | Program_Callback([],[], handles) |
---|
[355] | 362 | if ~isempty(Data.CivStage)%test for civ files |
---|
| 363 | ind_opening=Data.CivStage; |
---|
[343] | 364 | end |
---|
[371] | 365 | if ~isempty(Data.Civ2_ImageB)%get the corresponding input image in the netcdf file |
---|
| 366 | imageinput=Data.Civ2_ImageB; |
---|
| 367 | [tild,ImaName,ImaExt]=fileparts(Data.Civ2_ImageA); |
---|
| 368 | set(handles.RootFile_1,'String',[ImaName ImaExt]) |
---|
| 369 | elseif ~isempty(Data.Civ1_ImageB) |
---|
| 370 | imageinput=Data.Civ1_ImageB; |
---|
| 371 | [tild,ImaName,ImaExt]=fileparts(Data.Civ1_ImageA); |
---|
| 372 | set(handles.RootFile_1,'String',[ImaName ImaExt]) |
---|
[298] | 373 | end |
---|
[438] | 374 | % settings for civx data, |
---|
[360] | 375 | elseif ~isempty(Data.absolut_time_T0')% case of civx data, |
---|
[500] | 376 | set(handles.Program,'Value',3) %select Cix by default |
---|
[476] | 377 | Program_Callback([],[], handles) |
---|
[355] | 378 | if ~isempty(Data.fix2) |
---|
| 379 | ind_opening=5; |
---|
| 380 | elseif ~isempty(Data.civ2) |
---|
| 381 | ind_opening=4; |
---|
| 382 | elseif ~isempty(Data.patch) |
---|
| 383 | ind_opening=3; |
---|
| 384 | elseif ~isempty(Data.fix) |
---|
| 385 | ind_opening=2; |
---|
| 386 | end |
---|
[360] | 387 | else |
---|
| 388 | errormsg='the input netcdf file is not civ data'; |
---|
| 389 | return |
---|
| 390 | end |
---|
[438] | 391 | % look for the corresponding input images |
---|
| 392 | check_letter=~isempty(regexp(NomTypeInput,'[ab|AB]$','once'));%detect pair label by letter |
---|
| 393 | NomTypeIma=NomTypeInput; |
---|
| 394 | if check_letter |
---|
| 395 | NomTypeIma=NomTypeInput(1:end-1); |
---|
| 396 | else |
---|
| 397 | r=regexp(NomTypeIma,'.-(?<num2>\d+)$','names'); |
---|
| 398 | if ~isempty(r) |
---|
| 399 | NomTypeIma=regexprep(NomTypeIma,['-' r.num2],''); |
---|
| 400 | end |
---|
| 401 | r=regexp(NomTypeIma,'.-(?<num2>\d+)','names'); |
---|
| 402 | if ~isempty(r) |
---|
| 403 | NomTypeIma=regexprep(NomTypeIma,['-' r.num2],''); |
---|
| 404 | end |
---|
| 405 | end |
---|
[493] | 406 | if ~exist(imageinput,'file') |
---|
[438] | 407 | imageinput=fullfile_uvmat(RootPath,regexprep(SubDir,'.civ(_?)(\d*)$',''),RootFile,'.png',NomTypeIma,i1,[],j1); |
---|
[493] | 408 | end |
---|
[360] | 409 | end |
---|
| 410 | |
---|
[469] | 411 | %% no corresponding image found, select manually with the browser |
---|
[360] | 412 | ImaExt=ExtInput; |
---|
| 413 | if ~isempty(NomTypeNc) |
---|
| 414 | %no corresponding image found, select manually with the browser |
---|
| 415 | if ~exist(imageinput,'file') |
---|
| 416 | menu={'*.png;*.jpg;*.tif;*.avi;*.AVI', '(*.png,*.jpg ,*.tif, *.avi,*.AVI)'; |
---|
| 417 | '*.png','.png image files'; ... |
---|
| 418 | '*.jpg',' jpeg image files'; ... |
---|
| 419 | '*.tif','.tif image files'; ... |
---|
| 420 | '*.avi;*.AVI','.avi movie files'; ... |
---|
| 421 | '*.*', 'All Files (*.*)'}; |
---|
| 422 | [FileName, PathName] = uigetfile( menu, 'Pick an input image file',fileparts(fileparts(fileinput))); |
---|
[493] | 423 | imageinput=[PathName FileName];%complete file name |
---|
| 424 | if ~exist(imageinput,'file') |
---|
[469] | 425 | return %abandon of the browser is cancelled |
---|
| 426 | end |
---|
[360] | 427 | end |
---|
[469] | 428 | %fileinput=imageinput; |
---|
[360] | 429 | end |
---|
[371] | 430 | |
---|
| 431 | %% scan the image file series |
---|
[493] | 432 | [FilePath,FileName,ImaExt]=fileparts(imageinput); |
---|
[398] | 433 | % detect the file type, get the movie object if relevant, and look for the corresponding file series: |
---|
| 434 | % the root name and indices may be corrected by including the first index i1 if a corresponding xml file exists |
---|
[599] | 435 | [RootPath,SubDirImages,RootFile,i1_series,tild,j1_series,tild,NomTypeIma,FileType,FileInfo,MovieObject]=find_file_series(FilePath,[FileName ImaExt]); |
---|
[360] | 436 | switch FileType |
---|
[435] | 437 | case {'image','multimage','video','mmreader'} |
---|
[355] | 438 | otherwise |
---|
[360] | 439 | errormsg='invalid input file: enter an image, a movie or civ .nc file'; |
---|
| 440 | return |
---|
[2] | 441 | end |
---|
[371] | 442 | set(handles.RootPath,'String',RootPath) |
---|
[494] | 443 | set(handles.SubDirImages,'String',SubDirImages) |
---|
[371] | 444 | set(handles.RootFile,'String',RootFile) |
---|
[438] | 445 | if strcmp(ExtInput,'.nc') |
---|
[494] | 446 | SubDirCiv=regexprep(SubDir,['^' SubDirImages],'');%suppress the root SuddirImages; |
---|
[438] | 447 | else |
---|
[441] | 448 | SubDirCiv= '.civ'; |
---|
[438] | 449 | end |
---|
| 450 | set(handles.SubdirCiv1,'String',SubDirCiv) |
---|
| 451 | set(handles.SubdirCiv2,'String',SubDirCiv) |
---|
[371] | 452 | browse=get(handles.RootPath,'UserData'); |
---|
[355] | 453 | browse.incr_pair=[0 0];%default |
---|
| 454 | |
---|
[360] | 455 | %% scan the images if a civ file has been opened |
---|
[370] | 456 | MinIndex_i=min(i1_series(i1_series>0)); |
---|
| 457 | MinIndex_j=min(j1_series(j1_series>0)); |
---|
[360] | 458 | MaxIndex_i=max(i1_series(i1_series>0)); |
---|
| 459 | MaxIndex_j=max(j1_series(j1_series>0)); |
---|
[355] | 460 | |
---|
[298] | 461 | %% look for an image documentation file |
---|
[476] | 462 | XmlFileName=find_imadoc(RootPath,SubDir,RootFile,ImaExt); |
---|
[469] | 463 | if isempty(XmlFileName) |
---|
| 464 | if (strcmp(FileType,'video') || strcmp(FileType,'mmreader')) |
---|
| 465 | ext_imadoc=ImaExt;% the timing from the video movie is used |
---|
| 466 | else |
---|
| 467 | ext_imadoc=''; |
---|
| 468 | end |
---|
| 469 | else |
---|
| 470 | [tild,tild,ext_imadoc]=fileparts(XmlFileName); |
---|
[441] | 471 | end |
---|
[298] | 472 | set(handles.ImaDoc,'String',ext_imadoc)% display the extension name for the image documentation file used |
---|
[343] | 473 | |
---|
| 474 | %% read the time in the image documentation file |
---|
[298] | 475 | time=[]; |
---|
[343] | 476 | TimeUnit=''; %default |
---|
| 477 | CoordUnit='';%default |
---|
[416] | 478 | pxcm_search=1; |
---|
[469] | 479 | if ~isempty(XmlFileName) |
---|
[343] | 480 | set(handles.ImaDoc,'BackgroundColor',[1 1 0]) % set edit box to yellow cloro to indicate that the file reading is beginning |
---|
| 481 | drawnow |
---|
[469] | 482 | [XmlData,warntext]=imadoc2struct(XmlFileName); |
---|
| 483 | nom_type_read=[]; |
---|
| 484 | if isfield(XmlData,'Time') && ~isempty(XmlData.Time) |
---|
| 485 | time=XmlData.Time; |
---|
| 486 | %transform .Time to a column vector if it is a line vector thenomenclature uses a single index: correct possible bug in xml |
---|
| 487 | if isequal(MaxIndex_i,1) && ~isequal(MaxIndex_j,1)% .Time is a line vector |
---|
| 488 | if numel(nom_type_read)>=2 && isempty(regexp(nom_type_read(2:end),'\D','once')) |
---|
| 489 | time=time'; |
---|
| 490 | MaxIndex_i=MaxIndex_j; |
---|
| 491 | MaxIndex_j=1; |
---|
[343] | 492 | end |
---|
[469] | 493 | end |
---|
[84] | 494 | end |
---|
[582] | 495 | if isfield(XmlData,'Camera') && isfield(XmlData.Camera,'TimeUnit') |
---|
| 496 | TimeUnit=XmlData.Camera.TimeUnit; |
---|
[468] | 497 | end |
---|
[469] | 498 | if isfield(XmlData,'GeometryCalib') |
---|
| 499 | tsai=XmlData.GeometryCalib; |
---|
| 500 | if isfield(tsai,'fx_fy') |
---|
| 501 | pxcm_search=max(tsai.fx_fy(1),tsai.fx_fy(2));%pixels:cm estimated for the search range |
---|
| 502 | end |
---|
| 503 | if isfield(tsai,'CoordUnit') |
---|
| 504 | CoordUnit=tsai.CoordUnit; |
---|
| 505 | end |
---|
| 506 | end |
---|
[2] | 507 | end |
---|
[469] | 508 | if isempty(time) && (strcmp(FileType,'video') || strcmp(FileType,'mmreader')) |
---|
[494] | 509 | set(handles.ListPairMode,'Value',1); |
---|
[469] | 510 | dt=1/get(MovieObject,'FrameRate');%time interval between successive frames |
---|
[492] | 511 | if strcmp(NomTypeIma,'*') |
---|
| 512 | set(handles.ListPairMode,'String',{'series(Di)'}) |
---|
| 513 | MaxIndex_i=get(MovieObject,'NumberOfFrames'); |
---|
[621] | 514 | %time=(dt*(0:MaxIndex_i-1))';%list of image times |
---|
| 515 | time=zeros(MaxIndex_i+1,2); |
---|
| 516 | time(:,2)=dt*(0:MaxIndex_i)'; |
---|
[492] | 517 | else |
---|
| 518 | set(handles.ListPairMode,'String',[{'series(Dj)'};{'series(Di)'}]) |
---|
| 519 | MaxIndex_i=max(i1_series(i1_series>0)); |
---|
[494] | 520 | MaxIndex_j=get(MovieObject,'NumberOfFrames'); |
---|
[621] | 521 | %time=ones(MaxIndex_i,1)*(dt*(0:MaxIndex_j-1));%list of image times |
---|
| 522 | time=[0;dt*ones(MaxIndex_j,1)]*(0:MaxIndex_j); |
---|
[492] | 523 | enable_j(handles,'on') |
---|
[494] | 524 | end |
---|
[469] | 525 | TimeUnit='s'; |
---|
| 526 | set(handles.ImaDoc,'BackgroundColor',[1 1 1])% set display box back to whiter |
---|
| 527 | end |
---|
| 528 | |
---|
[298] | 529 | %% timing display |
---|
| 530 | %show the reference image edit box if relevant (not needed for movies or in the absence of time information |
---|
[343] | 531 | if numel(time)>=2 % if there are at least two time values to define dt |
---|
[621] | 532 | if size(time,1)<MaxIndex_i+1; |
---|
[589] | 533 | msgbox_uvmat('WARNING','maximum i index restricted by the timing of the xml file'); |
---|
[621] | 534 | elseif size(time,2)<MaxIndex_j+1 |
---|
[589] | 535 | msgbox_uvmat('WARNING','maximum j index restricted by the timing of the xml file'); |
---|
| 536 | end |
---|
[621] | 537 | MaxIndex_i=min(size(time,1)-1,MaxIndex_i);%possibly adjust the max index according to time data |
---|
| 538 | MaxIndex_j=min(size(time,2)-1,MaxIndex_j); |
---|
[611] | 539 | % time=[zeros(size(time,1),1) time]; %insert a vertical line of zeros (to deal with zero file indices) |
---|
| 540 | % time=[zeros(1,size(time,2)); time]; %insert a horizontal line of zeros |
---|
[343] | 541 | else |
---|
| 542 | set(handles.ImaDoc,'String',''); %xml file not used for timing |
---|
[621] | 543 | time=(i1_series(:,1)+0:size(i1_series,3));% time=index i |
---|
| 544 | time=time'*ones(1,size(i1_series,2)+1,1); %makes a time matrix with the same time for all j indices |
---|
[343] | 545 | TimeUnit='frame'; |
---|
[2] | 546 | end |
---|
[343] | 547 | set(handles.ImaDoc,'UserData',time); %store the matrix of times |
---|
| 548 | set(handles.dt_unit,'String',['dt in m' TimeUnit]);%display dt in unit 10-3 of the time (e.g ms) |
---|
| 549 | set(handles.TimeUnit,'String',TimeUnit); |
---|
| 550 | set(handles.nb_field,'String',num2str(MaxIndex_i)); |
---|
| 551 | set(handles.nb_field2,'String',num2str(MaxIndex_j)); |
---|
[71] | 552 | set(handles.CoordUnit,'String',CoordUnit) |
---|
[415] | 553 | set(handles.SearchRange,'UserData', pxcm_search); |
---|
[360] | 554 | set(handles.ImaExt,'String',ImaExt) |
---|
| 555 | set(handles.NomType,'String',NomTypeIma) |
---|
[370] | 556 | |
---|
[494] | 557 | %% set the reference indices from the input file indices |
---|
| 558 | num_ref_i=str2num(get(handles.ref_i,'String')); |
---|
| 559 | num_ref_j=str2num(get(handles.ref_j,'String')); |
---|
| 560 | % for movies don't modify except if the current ref is outside index bounds |
---|
| 561 | %if strcmp(ExtInput,'.nc')|| ~(strcmp(FileType,'mmreader')||strcmp(FileType,'VideoReader') && num_ref_i<=MaxIndex_i && num_ref_j<=MaxIndex_j) |
---|
| 562 | if ~isempty(i1)% if i1 has been selected by the input |
---|
| 563 | num_ref_i=i1;%default ref index |
---|
| 564 | if ~isempty(i2) |
---|
| 565 | num_ref_i=floor((num_ref_i+i2)/2); |
---|
| 566 | end |
---|
| 567 | if ~isempty(j1) |
---|
| 568 | num_ref_j=j1; |
---|
| 569 | if ~isempty(j2) |
---|
| 570 | num_ref_j=floor((num_ref_j+j2)/2); |
---|
| 571 | end |
---|
| 572 | end |
---|
| 573 | end |
---|
| 574 | if num_ref_i>MaxIndex_i||num_ref_i<MinIndex_i |
---|
| 575 | num_ref_i=round((MinIndex_i+MaxIndex_i)/2); |
---|
| 576 | end |
---|
| 577 | if ~isempty(num_ref_j)&&~isempty(MaxIndex_j)&& ~isempty(MinIndex_j) |
---|
| 578 | if (num_ref_j>MaxIndex_j||num_ref_j<MinIndex_j) |
---|
| 579 | num_ref_j=round((MinIndex_j+MaxIndex_j)/2); |
---|
| 580 | end |
---|
| 581 | end |
---|
| 582 | if isempty(num_ref_j) |
---|
| 583 | num_ref_j=1; |
---|
| 584 | end |
---|
| 585 | |
---|
[370] | 586 | %% update i and j index range if a nc file has been opened or pb withmin max image indices: |
---|
| 587 | % then set first and last to the inputfile index by default |
---|
| 588 | first_i=str2num(get(handles.first_i,'String')); |
---|
| 589 | last_i=str2num(get(handles.last_i,'String')); |
---|
[494] | 590 | if isempty(first_i) || isempty(last_i)||isempty(MinIndex_i)||isempty(MaxIndex_i)||ind_opening~=0 || isempty(first_i) || isempty(last_i)|| first_i<MinIndex_i || last_i>MaxIndex_i |
---|
| 591 | first_i=num_ref_i; |
---|
| 592 | last_i=num_ref_i; |
---|
| 593 | set(handles.first_i,'String',num2str(first_i)); |
---|
| 594 | set(handles.last_i,'String',num2str(last_i));% |
---|
[371] | 595 | end |
---|
[370] | 596 | |
---|
| 597 | %j index range |
---|
| 598 | first_j=str2num(get(handles.first_j,'String')); |
---|
[494] | 599 | last_j=str2num(get(handles.last_j,'String')); |
---|
| 600 | if isempty(first_j) || isempty(last_j)||isempty(MinIndex_j)||isempty(MaxIndex_j)||ind_opening~=0 || first_j<MinIndex_j || last_j>MaxIndex_j |
---|
| 601 | first_j=num_ref_j; |
---|
| 602 | last_j=num_ref_j; |
---|
| 603 | set(handles.first_j,'String',num2str(first_j)); |
---|
| 604 | set(handles.last_j,'String',num2str(last_j));% |
---|
[370] | 605 | end |
---|
[494] | 606 | if num_ref_i>last_i || num_ref_i<first_i |
---|
| 607 | num_ref_i=round((first_i+last_i)/2); |
---|
| 608 | end |
---|
| 609 | if num_ref_j>last_j || num_ref_j<first_j |
---|
| 610 | num_ref_j=round((first_j+last_j)/2); |
---|
| 611 | end |
---|
| 612 | set(handles.ref_i,'String',num2str(num_ref_i)) |
---|
| 613 | set(handles.ref_j,'String',num2str(num_ref_j)) |
---|
[2] | 614 | |
---|
[370] | 615 | %% set the civ options depending on the input file content when a nc file has been opened |
---|
[371] | 616 | ListOptions={'CheckCiv1', 'CheckFix1' 'CheckPatch1', 'CheckCiv2', 'CheckFix2', 'CheckPatch2'}; |
---|
[505] | 617 | checkbox=zeros(size(ListOptions));%default |
---|
| 618 | if ind_opening==0%case of image opening, start with Civ1 |
---|
[501] | 619 | for index=1:numel(ListOptions) |
---|
| 620 | checkbox(index)=get(handles.(ListOptions{index}),'Value'); |
---|
| 621 | end |
---|
[505] | 622 | index_max=find(checkbox, 1, 'last' ); |
---|
| 623 | if isempty(index_max),index_max=1;end |
---|
| 624 | for index=1:index_max |
---|
[501] | 625 | set(handles.(ListOptions{index}),'Value',1)% select all operations starting from CIV1 |
---|
| 626 | end |
---|
| 627 | else |
---|
| 628 | for index = 1:min(ind_opening,5) |
---|
[370] | 629 | set(handles.(ListOptions{index}),'value',0) |
---|
| 630 | end |
---|
[501] | 631 | set(handles.(ListOptions{min(ind_opening+1,6)}),'value',1) |
---|
| 632 | for index = ind_opening+2:6 |
---|
| 633 | set(handles.(ListOptions{index}),'value',0) |
---|
| 634 | end |
---|
[298] | 635 | end |
---|
[501] | 636 | %list_operation={'CheckCiv1','CheckFix1','CheckPatch1','CheckCiv2','CheckFix2','CheckPatch2'}; |
---|
| 637 | |
---|
| 638 | %set(handles.(ListOptions{min(ind_opening+1,6)}),'value',1) |
---|
[438] | 639 | update_CivOptions(handles,ind_opening) |
---|
[298] | 640 | |
---|
[273] | 641 | %% set the menus of image pairs and default selection for civ %%%%%%%%%%%%%%%%%%% |
---|
[362] | 642 | %check_letter=~isempty(regexp(NomTypeIma,'[ab|AB]$'));%detect pair label by letter |
---|
[371] | 643 | if isequal(NomTypeNc,'_1-2')||isempty(MaxIndex_j)|| (MaxIndex_j==1) |
---|
[282] | 644 | set(handles.ListPairMode,'Value',1) |
---|
| 645 | set(handles.ListPairMode,'String',{'series(Di)'}) |
---|
[353] | 646 | elseif MaxIndex_i==1 && MaxIndex_j>1% simple series in j |
---|
[343] | 647 | set(handles.ListPairMode,'String',{'pair j1-j2';'series(Dj)'}) |
---|
| 648 | if MaxIndex_j <= 10 |
---|
| 649 | set(handles.ListPairMode,'Value',1)% advice 'pair j1-j2' except in MaxIndex_j is large |
---|
| 650 | end |
---|
[492] | 651 | elseif ~(strcmp(FileType,'video') || strcmp(FileType,'mmreader')) |
---|
[282] | 652 | set(handles.ListPairMode,'String',{'pair j1-j2';'series(Dj)';'series(Di)'})%multiple choice |
---|
[360] | 653 | if strcmp(NomTypeNc,'_1-2_1') |
---|
| 654 | set(handles.ListPairMode,'Value',3)% advise 'series(Di)' |
---|
| 655 | elseif MaxIndex_j <= 10 |
---|
[343] | 656 | set(handles.ListPairMode,'Value',1)% advice 'pair j1-j2' except in MaxIndex_j is large |
---|
[2] | 657 | end |
---|
| 658 | end |
---|
| 659 | |
---|
[368] | 660 | %% scan files to update the subdirectory list display |
---|
[300] | 661 | listot=dir(RootPath);%directory of RootPath |
---|
[273] | 662 | idir=0; |
---|
| 663 | listdir={''};%default |
---|
[300] | 664 | % get the list of existing civ subdirectories in the path of theinput root file |
---|
[273] | 665 | for ilist=1:length(listot) |
---|
| 666 | if listot(ilist).isdir |
---|
| 667 | name=listot(ilist).name; |
---|
| 668 | if ~isequal(name,'.') && ~isequal(name,'..') |
---|
| 669 | idir=idir+1; |
---|
| 670 | listdir{idir,1}=listot(ilist).name; |
---|
| 671 | end |
---|
| 672 | end |
---|
| 673 | end |
---|
[368] | 674 | |
---|
[300] | 675 | %% store info |
---|
[371] | 676 | set(handles.RootPath,'UserData',browse)% store the nomenclature type |
---|
[273] | 677 | |
---|
[298] | 678 | %% list the possible index pairs, depending on the option set in ListPairMode |
---|
| 679 | ListPairMode_Callback([], [], handles) |
---|
| 680 | |
---|
| 681 | %% store the root input filename for future opening |
---|
| 682 | profil_perso=fullfile(prefdir,'uvmat_perso.mat'); |
---|
| 683 | if exist(profil_perso,'file') |
---|
| 684 | save (profil_perso,'RootPath','-append'); %store the root name for future opening of uvmat |
---|
| 685 | else |
---|
| 686 | txt=ver('MATLAB'); |
---|
| 687 | Release=txt.Release; |
---|
| 688 | relnumb=str2double(Release(3:4)); |
---|
| 689 | if relnumb >= 14 |
---|
| 690 | save (profil_perso,'RootPath','-V6'); %store the root name for future opening of uvmat |
---|
| 691 | else |
---|
| 692 | save (profil_perso,'RootPath'); %store the root name for future opening of uvmat |
---|
| 693 | end |
---|
| 694 | end |
---|
[371] | 695 | set(handles.RootPath,'BackgroundColor',[1 1 1]) |
---|
[298] | 696 | |
---|
[12] | 697 | %------------------------------------------------------------------------ |
---|
[309] | 698 | % --- Executes on carriage return on the subdir checkciv1 edit window |
---|
[363] | 699 | function SubdirCiv1_Callback(hObject, eventdata, handles) |
---|
[12] | 700 | %------------------------------------------------------------------------ |
---|
[363] | 701 | SubDir=get(handles.SubdirCiv1,'String'); |
---|
[309] | 702 | menu_str=get(handles.ListSubdirCiv1,'String');% read the list of subdirectories for update |
---|
[343] | 703 | ichoice=find(strcmp(SubDir,menu_str),1); |
---|
[309] | 704 | if isempty(ichoice) |
---|
| 705 | ilist=numel(menu_str); %select 'new...' in the menu |
---|
[2] | 706 | else |
---|
[309] | 707 | ilist=ichoice; |
---|
[2] | 708 | end |
---|
[309] | 709 | set(handles.ListSubdirCiv1,'Value',ilist)% select the selected subdir in the menu |
---|
| 710 | if get(handles.CheckCiv1,'Value')% if Civ1 is performed |
---|
[363] | 711 | set(handles.SubdirCiv2,'String',SubDir);% set by default civ2 directory the same as civ1 |
---|
[441] | 712 | % set(handles.ListSubdirCiv2,'Value',ilist) |
---|
[309] | 713 | else % if Civ1 data already exist |
---|
[362] | 714 | errormsg=find_netcpair_civ(handles,1); %update the list of available pairs from netcdf files in the new directory |
---|
| 715 | if ~isempty(errormsg) |
---|
| 716 | msgbox_uvmat('ERROR',errormsg) |
---|
| 717 | end |
---|
[112] | 718 | end |
---|
[2] | 719 | |
---|
[12] | 720 | %------------------------------------------------------------------------ |
---|
[343] | 721 | % --- Executes on carriage return on the SubDir checkciv1 edit window |
---|
[363] | 722 | function SubdirCiv2_Callback(hObject, eventdata, handles) |
---|
[12] | 723 | %------------------------------------------------------------------------ |
---|
[363] | 724 | SubDir=get(handles.SubdirCiv1,'String'); |
---|
[309] | 725 | menu_str=get(handles.ListSubdirCiv2,'String');% read the list of subdirectories for update |
---|
[343] | 726 | ichoice=find(strcmp(SubDir,menu_str),1); |
---|
[309] | 727 | if isempty(ichoice) |
---|
| 728 | ilist=numel(menu_str); %select 'new...' in the menu |
---|
[2] | 729 | else |
---|
[309] | 730 | ilist=ichoice; |
---|
[2] | 731 | end |
---|
[309] | 732 | set(handles.ListSubdirCiv2,'Value',ilist)% select the selected subdir in the menu |
---|
| 733 | %update the list of available pairs from netcdf files in the new directory |
---|
| 734 | if ~get(handles.CheckCiv2,'Value') && ~get(handles.CheckCiv1,'Value') && ~get(handles.CheckFix1,'Value') && ~get(handles.CheckPatch1,'Value') |
---|
[362] | 735 | errormsg=find_netcpair_civ(handles,2); |
---|
| 736 | if ~isempty(errormsg) |
---|
| 737 | msgbox_uvmat('ERROR',errormsg) |
---|
| 738 | end |
---|
[2] | 739 | end |
---|
| 740 | |
---|
[309] | 741 | %------------------------------------------------------------------------ |
---|
| 742 | % --- Executes on button press in CheckCiv1. |
---|
| 743 | function CheckCiv1_Callback(hObject, eventdata, handles) |
---|
| 744 | %------------------------------------------------------------------------ |
---|
[343] | 745 | update_CivOptions(handles,0) |
---|
[2] | 746 | |
---|
[309] | 747 | %------------------------------------------------------------------------ |
---|
| 748 | % --- Executes on button press in CheckFix1. |
---|
| 749 | function CheckFix1_Callback(hObject, eventdata, handles) |
---|
| 750 | %------------------------------------------------------------------------ |
---|
[343] | 751 | update_CivOptions(handles,0) |
---|
[2] | 752 | |
---|
[309] | 753 | %------------------------------------------------------------------------ |
---|
| 754 | % --- Executes on button press in CheckPatch1. |
---|
| 755 | function CheckPatch1_Callback(hObject, eventdata, handles) |
---|
| 756 | %------------------------------------------------------------------------ |
---|
[343] | 757 | update_CivOptions(handles,0) |
---|
[2] | 758 | |
---|
[309] | 759 | %------------------------------------------------------------------------ |
---|
| 760 | % --- Executes on button press in CheckCiv2. |
---|
| 761 | function CheckCiv2_Callback(hObject, eventdata, handles) |
---|
| 762 | %------------------------------------------------------------------------ |
---|
[343] | 763 | update_CivOptions(handles,0) |
---|
[301] | 764 | |
---|
[309] | 765 | %------------------------------------------------------------------------ |
---|
| 766 | % --- Executes on button press in CheckFix2. |
---|
| 767 | function CheckFix2_Callback(hObject, eventdata, handles) |
---|
| 768 | %------------------------------------------------------------------------ |
---|
[343] | 769 | update_CivOptions(handles,0) |
---|
[301] | 770 | |
---|
[309] | 771 | %------------------------------------------------------------------------ |
---|
| 772 | % --- Executes on button press in CheckPatch2. |
---|
| 773 | function CheckPatch2_Callback(hObject, eventdata, handles) |
---|
| 774 | %------------------------------------------------------------------------ |
---|
[343] | 775 | update_CivOptions(handles,0) |
---|
[300] | 776 | |
---|
[12] | 777 | %------------------------------------------------------------------------ |
---|
[309] | 778 | % --- activated by any checkbox controling the selection of Civ1,Fix1,Patch1,Civ2,Fix2,Patch2 |
---|
[343] | 779 | function update_CivOptions(handles,opening) |
---|
[12] | 780 | %------------------------------------------------------------------------ |
---|
[309] | 781 | checkbox=zeros(1,6); |
---|
| 782 | checkbox(1)=get(handles.CheckCiv1,'Value'); |
---|
| 783 | checkbox(2)=get(handles.CheckFix1,'Value'); |
---|
| 784 | checkbox(3)=get(handles.CheckPatch1,'Value'); |
---|
| 785 | checkbox(4)=get(handles.CheckCiv2,'Value'); |
---|
| 786 | checkbox(5)=get(handles.CheckFix2,'Value'); |
---|
| 787 | checkbox(6)=get(handles.CheckPatch2,'Value'); |
---|
| 788 | ind_selected=find(checkbox,1); |
---|
| 789 | if ~isempty(ind_selected) |
---|
[371] | 790 | RootPath=get(handles.RootPath,'String'); |
---|
| 791 | if isempty(RootPath) |
---|
[362] | 792 | msgbox_uvmat('ERROR','Please open an image or PIV .nc file with the upper bar menu Open/Browse...') |
---|
| 793 | return |
---|
[270] | 794 | end |
---|
[2] | 795 | end |
---|
[309] | 796 | set(handles.PairIndices,'Visible','on') |
---|
[363] | 797 | set(handles.SubdirCiv1,'Visible','on') |
---|
[371] | 798 | set(handles.TitleSubdirCiv1,'Visible','on') |
---|
[440] | 799 | if opening==0 |
---|
[362] | 800 | errormsg=find_netcpair_civ(handles,1); % select the available netcdf files |
---|
| 801 | if ~isempty(errormsg) |
---|
| 802 | msgbox_uvmat('ERROR',errormsg) |
---|
| 803 | end |
---|
[343] | 804 | end |
---|
[309] | 805 | if max(checkbox(4:6))% case of civ2 pair choice needed |
---|
| 806 | set(handles.TitlePairCiv2,'Visible','on') |
---|
| 807 | set(handles.TitleSubdirCiv2,'Visible','on') |
---|
[363] | 808 | set(handles.SubdirCiv2,'Visible','on') |
---|
[437] | 809 | %set(handles.ListSubdirCiv2,'Visible','on') |
---|
[309] | 810 | set(handles.ListPairCiv2,'Visible','on') |
---|
[343] | 811 | if ~opening |
---|
[362] | 812 | errormsg=find_netcpair_civ(handles,2); % select the available netcdf files |
---|
| 813 | if ~isempty(errormsg) |
---|
| 814 | msgbox_uvmat('ERROR',errormsg) |
---|
| 815 | end |
---|
[343] | 816 | end |
---|
[309] | 817 | else |
---|
| 818 | set(handles.TitleSubdirCiv2,'Visible','off') |
---|
[363] | 819 | set(handles.SubdirCiv2,'Visible','off') |
---|
[309] | 820 | set(handles.ListPairCiv2,'Visible','off') |
---|
[2] | 821 | end |
---|
[309] | 822 | options={'Civ1','Fix1','Patch1','Civ2','Fix2','Patch2'}; |
---|
| 823 | for ilist=1:length(options) |
---|
| 824 | if checkbox(ilist) |
---|
| 825 | set(handles.(options{ilist}),'Visible','on') |
---|
[2] | 826 | else |
---|
[309] | 827 | set(handles.(options{ilist}),'Visible','off') |
---|
[112] | 828 | end |
---|
[2] | 829 | end |
---|
| 830 | |
---|
[12] | 831 | %------------------------------------------------------------------------ |
---|
[177] | 832 | % --- Executes on button press in RUN: processing on local computer |
---|
[67] | 833 | function RUN_Callback(hObject, eventdata, handles) |
---|
| 834 | %------------------------------------------------------------------------ |
---|
[73] | 835 | set(handles.RUN, 'Enable','Off') |
---|
| 836 | set(handles.RUN,'BackgroundColor',[0.831 0.816 0.784]) |
---|
[486] | 837 | set(handles.RUN,'UserData',now)% record the time of launch |
---|
[469] | 838 | errormsg=launch_jobs(hObject, eventdata, handles); |
---|
[73] | 839 | set(handles.RUN, 'Enable','On') |
---|
| 840 | set(handles.RUN,'BackgroundColor',[1 0 0]) |
---|
[36] | 841 | |
---|
[371] | 842 | % display errors or start status callback to visualise results |
---|
[229] | 843 | if ~isempty(errormsg) |
---|
| 844 | display(errormsg) |
---|
| 845 | msgbox_uvmat('ERROR',errormsg) |
---|
[282] | 846 | elseif isfield(handles,'status') %&& ~isequal(get(handles.ListPairMode,'Value'),3) |
---|
[225] | 847 | set(handles.status,'Value',1);%suppress status display |
---|
| 848 | status_Callback(hObject, eventdata, handles) |
---|
[178] | 849 | end |
---|
[177] | 850 | |
---|
[309] | 851 | %------------------------------------------------------------------- |
---|
| 852 | % --- Executes on button press in status. |
---|
| 853 | function status_Callback(hObject, eventdata, handles) |
---|
| 854 | %------------------------------------------------------------------- |
---|
| 855 | val=get(handles.status,'Value'); |
---|
| 856 | if val==0 |
---|
| 857 | set(handles.status,'BackgroundColor',[0 1 0]) |
---|
| 858 | hfig=findobj(allchild(0),'name','civ_status'); |
---|
| 859 | if ~isempty(hfig) |
---|
| 860 | delete(hfig) |
---|
| 861 | end |
---|
| 862 | return |
---|
| 863 | end |
---|
| 864 | set(handles.status,'BackgroundColor',[1 1 0]) |
---|
| 865 | drawnow |
---|
| 866 | listtype={'civ1','fix1','patch1','civ2','fix2','patch2'}; |
---|
| 867 | Param.CheckCiv1=get(handles.CheckCiv1,'Value'); |
---|
| 868 | Param.CheckFix1=get(handles.CheckFix1,'Value'); |
---|
| 869 | Param.CheckPatch1=get(handles.CheckPatch1,'Value'); |
---|
| 870 | Param.CheckCiv2=get(handles.CheckCiv2,'Value'); |
---|
| 871 | Param.CheckFix2=get(handles.CheckFix2,'Value'); |
---|
| 872 | Param.CheckPatch2=get(handles.CheckPatch2,'Value'); |
---|
| 873 | box_test=[Param.CheckCiv1 Param.CheckFix1 Param.CheckPatch1 Param.CheckCiv2 Param.CheckFix2 Param.CheckPatch2]; |
---|
| 874 | |
---|
| 875 | option_civ=find(box_test,1,'last');%last selected option (non-zero index of box_test) |
---|
| 876 | filecell=get(handles.civ,'UserData');%retrieve the list of output files expected for PIV |
---|
| 877 | test_new=0; |
---|
| 878 | if ~isfield(filecell,'nc') |
---|
| 879 | test_new=1; |
---|
| 880 | [ref_i,ref_j,errormsg]=find_ref_indices(handles); |
---|
| 881 | if ~isempty(errormsg) |
---|
| 882 | msgbox_uvmat('ERROR',errormsg) |
---|
| 883 | return |
---|
| 884 | end |
---|
| 885 | filecell=set_civ_filenames(handles,ref_i,ref_j,box_test);%determine the output file expected from the GUI status |
---|
| 886 | end |
---|
| 887 | if ~isequal(box_test(4:6),[0 0 0]) |
---|
| 888 | civ_files=filecell.nc.civ2;%case of civ2 operations |
---|
| 889 | else |
---|
| 890 | civ_files=filecell.nc.civ1; |
---|
| 891 | end |
---|
| 892 | [root,filename,ext]=fileparts(civ_files{1}); |
---|
[343] | 893 | [rootroot,SubDir,extdir]=fileparts(root); |
---|
[309] | 894 | hfig=findobj(allchild(0),'name','civ_status'); |
---|
| 895 | if isempty(hfig) |
---|
| 896 | hfig=figure('DeleteFcn',@stop_status); |
---|
[421] | 897 | set(hfig,'MenuBar','none')% suppress the menu bar |
---|
| 898 | set(hfig,'NumberTitle','off')%suppress the fig number in the title |
---|
[309] | 899 | set(hfig,'name','civ_status') |
---|
[421] | 900 | set(hfig,'tag','civ_status') |
---|
| 901 | set(hfig,'UserData',civ_files) |
---|
[662] | 902 | hlist= uicontrol('Style','listbox','Units','normalized', 'Position',[0.05 0.09 0.9 0.71], 'Callback', {@open_uvmat},'tag','list'); |
---|
[309] | 903 | uicontrol('Style','edit','Units','normalized', 'Position', [0.05 0.87 0.9 0.1],'tag','msgbox','Max',2,'String','checking files...'); |
---|
| 904 | uicontrol('Style','frame','Units','normalized', 'Position', [0.05 0.81 0.9 0.05]); |
---|
[591] | 905 | %uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.7 0.01 0.2 0.07],'String','Close','FontWeight','bold','FontUnits','normalized','FontSize',0.9,'Callback',@close_GUI); |
---|
| 906 | uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.7 0.01 0.2 0.07],'String','Close','FontWeight','bold','FontUnits','normalized','FontSize',0.9,'Callback',@stop_status); |
---|
[421] | 907 | hrefresh=uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.1 0.01 0.2 0.07],'String','Refresh','FontWeight','bold','FontUnits','normalized','FontSize',0.9,'Callback',@refresh_GUI); |
---|
[309] | 908 | BarPosition=[0.05 0.81 0.01 0.05]; |
---|
[421] | 909 | uicontrol('Style','frame','Units','normalized', 'Position',BarPosition ,'BackgroundColor',[1 0 0],'tag','waitbar'); |
---|
| 910 | drawnow |
---|
[309] | 911 | end |
---|
[486] | 912 | StatusData.time_ref=get(handles.RUN,'UserData');% get the time of launch |
---|
[483] | 913 | StatusData.option_civ=option_civ; |
---|
| 914 | set(hrefresh,'UserData',StatusData) |
---|
| 915 | filepath=fileparts(civ_files{1}); |
---|
[421] | 916 | set(hlist,'UserData',fileparts(filepath)) |
---|
| 917 | refresh_GUI(hrefresh,[]) |
---|
| 918 | |
---|
| 919 | %------------------------------------------------------------------------ |
---|
| 920 | % launched by refreshing the status figure |
---|
| 921 | function refresh_GUI(hObject, eventdata) |
---|
| 922 | %------------------------------------------------------------------------ |
---|
[309] | 923 | Tabchar={}; |
---|
[421] | 924 | BarPosition=[0.05 0.81 0.01 0.05]; |
---|
| 925 | hfig=get(hObject,'parent'); |
---|
[483] | 926 | StatusData=get(hObject,'UserData'); |
---|
[421] | 927 | civ_files=get(hfig,'UserData'); |
---|
[483] | 928 | [filepath,filename,ext]=fileparts(civ_files{1}); |
---|
| 929 | [tild,SubDir,extdir]=fileparts(filepath); |
---|
| 930 | SubDir=[SubDir extdir]; |
---|
| 931 | option_civ=StatusData.option_civ; |
---|
[309] | 932 | nbfiles=numel(civ_files); |
---|
[483] | 933 | testrecent=0; |
---|
[309] | 934 | count=0; |
---|
[483] | 935 | datnum=zeros(1,nbfiles); |
---|
| 936 | filefound=cell(1,nbfiles); |
---|
| 937 | for ifile=1:nbfiles |
---|
| 938 | detect=exist(civ_files{ifile},'file'); % check the existence of the file |
---|
| 939 | option=0; |
---|
| 940 | if detect==0 |
---|
| 941 | option_str='not created'; |
---|
| 942 | else |
---|
| 943 | datfile=dir(civ_files{ifile}); |
---|
| 944 | if isfield(datfile,'datenum') |
---|
| 945 | datnum(ifile)=datfile.datenum;%only available in recent matlab versions |
---|
| 946 | testrecent=1; |
---|
| 947 | end |
---|
| 948 | filefound(ifile)={datfile.name}; |
---|
| 949 | |
---|
| 950 | % check the content netcdf file |
---|
| 951 | Data=nc2struct(civ_files{ifile},'ListGlobalAttribute','CivStage','patch2','fix2','civ2','patch','fix'); |
---|
| 952 | option_list={'civ1','fix1','patch1','civ2','fix2','patch2'}; |
---|
| 953 | if ~isempty(Data.CivStage) |
---|
| 954 | option=Data.CivStage;%case of Matlab civ |
---|
[309] | 955 | else |
---|
[483] | 956 | if ~isempty(Data.patch2) && isequal(Data.patch2,1) |
---|
| 957 | option=6; |
---|
| 958 | elseif ~isempty(Data.fix2) && isequal(Data.fix2,1) |
---|
| 959 | option=5; |
---|
| 960 | elseif ~isempty(Data.civ2) && isequal(Data.civ2,1); |
---|
| 961 | option=4; |
---|
| 962 | elseif ~isempty(Data.patch) && isequal(Data.patch,1); |
---|
| 963 | option=3; |
---|
| 964 | elseif ~isempty(Data.fix) && isequal(Data.fix,1); |
---|
| 965 | option=2; |
---|
[309] | 966 | else |
---|
[483] | 967 | option=1; |
---|
[309] | 968 | end |
---|
| 969 | end |
---|
[483] | 970 | option_str=option_list{option}; |
---|
| 971 | if datnum(ifile)<StatusData.time_ref |
---|
| 972 | option_str=[option_str ' --OLD--']; |
---|
[309] | 973 | end |
---|
| 974 | end |
---|
[483] | 975 | if option >= option_civ |
---|
| 976 | count=count+1; |
---|
| 977 | end |
---|
| 978 | [filepath,filename,ext]=fileparts(civ_files{ifile}); |
---|
| 979 | Tabchar{ifile,1}=[fullfile(SubDir,filename) ext '...' option_str]; |
---|
| 980 | end |
---|
| 981 | datnum=datnum(datnum~=0);%keep the non zero values corresponding to existing files |
---|
| 982 | if isempty(datnum) |
---|
| 983 | if testrecent |
---|
| 984 | message='no civ result created yet'; |
---|
[309] | 985 | else |
---|
[483] | 986 | message=''; |
---|
[309] | 987 | end |
---|
[483] | 988 | else |
---|
| 989 | datnum=datnum(datnum~=0);%keep the non zero values corresponding to existing files |
---|
| 990 | [first,ind]=min(datnum); |
---|
| 991 | [last,indlast]=max(datnum); |
---|
| 992 | message={[num2str(count) ' file(s) done over ' num2str(nbfiles)] ;['oldest modification: ' cell2mat(filefound(ind)) ' : ' datestr(first)];... |
---|
| 993 | ['latest modification: ' cell2mat(filefound(indlast)) ' : ' datestr(last)]}; |
---|
| 994 | end |
---|
| 995 | hlist=findobj(hfig,'tag','list'); |
---|
| 996 | hmsgbox=findobj(hfig,'tag','msgbox'); |
---|
| 997 | hwaitbar=findobj(hfig,'tag','waitbar'); |
---|
| 998 | set(hlist,'String',Tabchar) |
---|
| 999 | set(hmsgbox,'String', message) |
---|
| 1000 | if count>0 %&& ~test_new |
---|
| 1001 | BarPosition(3)=0.9*count/nbfiles; |
---|
| 1002 | set(hwaitbar,'Position',BarPosition) |
---|
| 1003 | end |
---|
[309] | 1004 | |
---|
[483] | 1005 | |
---|
[421] | 1006 | %------------------------------------------------------------------------ |
---|
| 1007 | % launched by deleting the status figure |
---|
| 1008 | function stop_status(hObject, eventdata) |
---|
[67] | 1009 | %------------------------------------------------------------------------ |
---|
[421] | 1010 | hciv=findobj(allchild(0),'tag','civ'); |
---|
| 1011 | hhciv=guidata(hciv); |
---|
| 1012 | set(hhciv.status,'value',0) %reset the status uicontrol in the GUI civ |
---|
| 1013 | set(hhciv.status,'BackgroundColor',[0 1 0]) |
---|
| 1014 | |
---|
[591] | 1015 | % %------------------------------------------------------------------------ |
---|
| 1016 | % % launched by pressing OK on the status figure |
---|
| 1017 | % function close_GUI(hObject, eventdata) |
---|
| 1018 | % %------------------------------------------------------------------------ |
---|
| 1019 | % delete(gcbf) |
---|
[421] | 1020 | |
---|
| 1021 | |
---|
[446] | 1022 | %------------------------------------------------------------------------ |
---|
[309] | 1023 | % --- Main lauch command, called by RUN and BATCH |
---|
[469] | 1024 | function errormsg=launch_jobs(hObject, eventdata, handles) |
---|
[446] | 1025 | %------------------------------------------------------------------------ |
---|
[229] | 1026 | errormsg='';%default |
---|
[313] | 1027 | |
---|
| 1028 | %% read the input parameters from the GUI civ |
---|
[309] | 1029 | Param=read_GUI(handles.civ); |
---|
[272] | 1030 | |
---|
[133] | 1031 | %% check the selected list of operations: |
---|
[289] | 1032 | operations={'Civ1','Fix1','Patch1','Civ2','Fix2','Patch2'}; |
---|
[282] | 1033 | box_test=[Param.CheckCiv1 Param.CheckFix1 Param.CheckPatch1 Param.CheckCiv2 Param.CheckFix2 Param.CheckPatch2]; |
---|
[180] | 1034 | index_first=find(box_test==1,1); |
---|
| 1035 | if isempty(index_first) |
---|
[229] | 1036 | errormsg='no selected operation'; |
---|
[2] | 1037 | return |
---|
| 1038 | end |
---|
[180] | 1039 | index_last=find(box_test==1,1,'last'); |
---|
[159] | 1040 | box_used=box_test(index_first : index_last); |
---|
[2] | 1041 | [box_missing,ind_missing]=min(box_used); |
---|
[180] | 1042 | if isequal(box_missing,0); %there is a missing step in the sequence of operations |
---|
[229] | 1043 | errormsg=['missing' cell2mat(operations(ind_missing))]; |
---|
[2] | 1044 | return |
---|
| 1045 | end |
---|
| 1046 | |
---|
[272] | 1047 | %% check mask if selecetd |
---|
| 1048 | %could be included in get_mask callback ? |
---|
[282] | 1049 | if isequal(get(handles.CheckMask,'Value'),1) |
---|
[384] | 1050 | maskname=get(handles.Mask,'String'); |
---|
[12] | 1051 | if ~exist(maskname,'file') |
---|
| 1052 | get_mask_civ1_Callback(hObject, eventdata, handles); |
---|
| 1053 | end |
---|
[2] | 1054 | end |
---|
[282] | 1055 | if isequal(get(handles.CheckMask,'Value'),1) |
---|
[384] | 1056 | maskname=get(handles.Mask,'String'); |
---|
[12] | 1057 | if ~exist(maskname,'file') |
---|
| 1058 | get_mask_fix1_Callback(hObject, eventdata, handles); |
---|
| 1059 | end |
---|
[2] | 1060 | end |
---|
[282] | 1061 | if isequal(get(handles.CheckMask,'Value'),1) |
---|
[384] | 1062 | maskname=get(handles.Mask,'String'); |
---|
[12] | 1063 | if ~exist(maskname,'file') |
---|
[112] | 1064 | get_mask_civ2_Callback(hObject, eventdata, handles); |
---|
[12] | 1065 | end |
---|
[2] | 1066 | end |
---|
[282] | 1067 | if isequal(get(handles.CheckMask,'Value'),1) |
---|
[384] | 1068 | maskname=get(handles.Mask,'String'); |
---|
[12] | 1069 | if ~exist(maskname,'file') |
---|
[112] | 1070 | get_mask_fix2_Callback(hObject, eventdata, handles); |
---|
[12] | 1071 | end |
---|
[2] | 1072 | end |
---|
| 1073 | |
---|
[177] | 1074 | %% reinitialise status callback |
---|
[178] | 1075 | if isfield(handles,'status') |
---|
[180] | 1076 | set(handles.status,'Value',0);%suppress status display |
---|
[446] | 1077 | status_Callback([], [], handles) |
---|
[178] | 1078 | end |
---|
[133] | 1079 | |
---|
[272] | 1080 | %% read the PARAM.xml file to get the binaries (and batch_mode if batch) |
---|
[276] | 1081 | path_civ=fileparts(which('civ')); %path to the source directory of uvmat |
---|
[500] | 1082 | xmlfile=fullfile(path_civ,'PARAM.xml'); |
---|
[483] | 1083 | s=[]; |
---|
[133] | 1084 | if exist(xmlfile,'file')% search parameter xml file in the whole matlab path |
---|
[54] | 1085 | t=xmltree(xmlfile); |
---|
[67] | 1086 | s=convert(t); |
---|
[483] | 1087 | end% default configuration |
---|
| 1088 | if ~isfield(s,'RunParam') |
---|
[493] | 1089 | Param.xml.Civ1Bin=fullfile('bin','civ1'); |
---|
| 1090 | Param.xml.Civ2Bin=fullfile('bin','civ2'); |
---|
| 1091 | Param.xml.FixBin=fullfile('bin','fix_flag'); |
---|
| 1092 | Param.xml.PatchBin=fullfile('bin','patch_up'); |
---|
[2] | 1093 | end |
---|
[469] | 1094 | if strcmp(Param.RunMode,'cluster') %computation dispatched on a cluster |
---|
[67] | 1095 | if isfield(s,'BatchParam') |
---|
[284] | 1096 | Param.xml=s.BatchParam; |
---|
| 1097 | if isfield(Param.xml,'BatchMode') |
---|
| 1098 | batch_mode=Param.xml.BatchMode; |
---|
[257] | 1099 | if ~ismember(batch_mode,{'sge','oar'}) |
---|
| 1100 | errormsg=['batch mode ' batch_mode ' not supported by UVMAT']; |
---|
| 1101 | return |
---|
| 1102 | end |
---|
[67] | 1103 | end |
---|
| 1104 | else |
---|
[493] | 1105 | %default configuration |
---|
| 1106 | Param.xml.Civ1Bin=fullfile('bin','civ1'); |
---|
| 1107 | Param.xml.Civ2Bin=fullfile('bin','civ2'); |
---|
| 1108 | Param.xml.FixBin=fullfile('bin','fix_flag'); |
---|
| 1109 | Param.xml.PatchBin=fullfile('bin','patch_up'); |
---|
[501] | 1110 | % Param.xml.CivmBin=fullfile('bin','civ_matlab'); |
---|
[483] | 1111 | Param.xml.BatchMode='oar';% TODO : allow choice for sge |
---|
[67] | 1112 | end |
---|
[257] | 1113 | else % run |
---|
[67] | 1114 | if isfield(s,'RunParam') |
---|
[284] | 1115 | Param.xml=s.RunParam; |
---|
[493] | 1116 | else %default configuration |
---|
| 1117 | Param.xml.Civ1Bin=fullfile('bin','civ1'); |
---|
| 1118 | Param.xml.Civ2Bin=fullfile('bin','civ2'); |
---|
| 1119 | Param.xml.FixBin=fullfile('bin','fix_flag'); |
---|
| 1120 | Param.xml.PatchBin=fullfile('bin','patch_up'); |
---|
[67] | 1121 | end |
---|
[225] | 1122 | end |
---|
[501] | 1123 | %Param.xml.CivmBin=fullfile('bin','civ_matlab'); |
---|
[238] | 1124 | |
---|
[482] | 1125 | %% check if the binaries exist : to move in civ_opening |
---|
[280] | 1126 | binary_list={}; |
---|
[469] | 1127 | switch Param.Program |
---|
[280] | 1128 | case 'CivX' |
---|
| 1129 | binary_list={'Civ1Bin','Civ2Bin','PatchBin','FixBin'}; |
---|
[371] | 1130 | case 'CivAll'% desactivated option |
---|
[289] | 1131 | binary_list={'Civ'}; |
---|
[501] | 1132 | % case 'civ_matlab.sh'% compiled version of civ_matlab |
---|
| 1133 | % binary_list={'CivmBin'}; |
---|
[225] | 1134 | end |
---|
[309] | 1135 | for bin_name=binary_list %loop on the list of binaries |
---|
| 1136 | if isfield(Param.xml,bin_name{1})% bin_name{1} =current name in the list |
---|
[494] | 1137 | if ~isunix |
---|
| 1138 | Param.xml.(bin_name{1})=[regexprep(Param.xml.(bin_name{1}),'/','\') '.exe']; |
---|
| 1139 | end |
---|
[421] | 1140 | if exist(Param.xml.(bin_name{1}),'file') |
---|
| 1141 | [path,name,ext]=fileparts(Param.xml.(bin_name{1})); |
---|
| 1142 | currentdir=pwd; |
---|
[482] | 1143 | if isempty(path) |
---|
| 1144 | path=fileparts(which('civ.m')); |
---|
| 1145 | end |
---|
[421] | 1146 | if exist(path,'dir') |
---|
| 1147 | cd(path); |
---|
| 1148 | binpath=pwd;%path of the binary |
---|
| 1149 | Param.xml.(bin_name{1})=fullfile(binpath,[name ext]); |
---|
[482] | 1150 | cd(currentdir); |
---|
[421] | 1151 | else |
---|
[501] | 1152 | errormsg=['path ' path ' for binaries specified in PARAM.xml does not exist']; |
---|
| 1153 | return |
---|
[500] | 1154 | end |
---|
[421] | 1155 | else %look for the full path if the file name has been defined with a relative path in PARAM.xm |
---|
[289] | 1156 | fullname=fullfile(path_civ,Param.xml.(bin_name{1})); |
---|
[280] | 1157 | if exist(fullname,'file') |
---|
[284] | 1158 | Param.xml.(bin_name{1})=fullname; |
---|
[280] | 1159 | else |
---|
[501] | 1160 | errormsg=['Binary ' Param.xml.(bin_name{1}) ' specified in PARAM.xml does not exist']; |
---|
| 1161 | return |
---|
[280] | 1162 | end |
---|
| 1163 | end |
---|
| 1164 | end |
---|
| 1165 | end |
---|
[501] | 1166 | if strcmp(Param.Program,'civ_matlab.sh') |
---|
| 1167 | if ~exist(fullfile(path_civ,'civ_matlab.sh'),'file') |
---|
| 1168 | errormsg=[{'no file civ_matlab.sh found'}; {'run compile_functions.m to create it by compiling civ_matlab.m'}]; |
---|
[505] | 1169 | return |
---|
[500] | 1170 | end |
---|
| 1171 | end |
---|
[2] | 1172 | |
---|
[313] | 1173 | %% set the list of files and check them |
---|
| 1174 | display('checking the files...') |
---|
| 1175 | [ref_i,ref_j,errormsg]=find_ref_indices(handles); |
---|
| 1176 | if ~isempty(errormsg) |
---|
| 1177 | return |
---|
| 1178 | end |
---|
[437] | 1179 | [filecell,i1_civ1,i2_civ1,j1_civ1,j2_civ1,i1_civ2,i2_civ2,j1_civ2,j2_civ2,nom_type_nc,tild,tild,compare,errormsg]=... |
---|
[313] | 1180 | set_civ_filenames(handles,ref_i,ref_j,box_test); |
---|
[437] | 1181 | if ~isempty(errormsg) |
---|
| 1182 | return |
---|
| 1183 | end |
---|
[313] | 1184 | set(handles.civ,'UserData',filecell);%store for futur use of status callback |
---|
[494] | 1185 | display('files OK, processing...') |
---|
[465] | 1186 | |
---|
| 1187 | %% create subfolders for log, cmx, nml, xml, bat |
---|
[467] | 1188 | RootBat=fileparts(filecell.nc.civ1{1,1}); |
---|
[501] | 1189 | switch(Param.Program) |
---|
| 1190 | case {'CivX','CivAll'} |
---|
| 1191 | dir_list={'0_BAT','0_CMX','0_LOG'}; |
---|
| 1192 | case {'civ_matlab','civ_matlab.sh'} |
---|
| 1193 | dir_list={'0_BAT','0_XML'}; |
---|
| 1194 | end |
---|
[465] | 1195 | for k=1:length(dir_list) |
---|
| 1196 | if ~exist(fullfile(RootBat,dir_list{k}),'dir') |
---|
| 1197 | mkdir(fullfile(RootBat,dir_list{k})); |
---|
| 1198 | end |
---|
| 1199 | end |
---|
| 1200 | |
---|
[469] | 1201 | %% get information on input images or movies |
---|
[313] | 1202 | nbfield=numel(i1_civ1); |
---|
| 1203 | nbslice=numel(j1_civ1); |
---|
[469] | 1204 | % if strcmp(Param.Program,'civ_matlab') |
---|
[389] | 1205 | if Param.CheckCiv1 |
---|
[469] | 1206 | [Param.Civ1.FileTypeA,ImageInfoA_civ1,Param.Civ1.ImageA]=get_file_type(filecell.ima1.civ1{1}); |
---|
| 1207 | [Param.Civ1.FileTypeB,ImageInfoB_civ1,Param.Civ1.ImageB]=get_file_type(filecell.ima2.civ1{1}); |
---|
[389] | 1208 | end |
---|
| 1209 | if Param.CheckCiv2 |
---|
[476] | 1210 | [Param.Civ2.FileTypeA,ImageInfoA_civ2,Param.Civ2.ImageA]=get_file_type(filecell.ima1.civ2{1}); |
---|
| 1211 | [Param.Civ2.FileTypeB,ImageInfoB_civ2,Param.Civ2.ImageB]=get_file_type(filecell.ima2.civ2{1}); |
---|
[389] | 1212 | end |
---|
[469] | 1213 | % end |
---|
[2] | 1214 | |
---|
[133] | 1215 | %% MAIN LOOP |
---|
[273] | 1216 | time=get(handles.ImaDoc,'UserData'); %get the set of times |
---|
[343] | 1217 | TimeUnit=get(handles.TimeUnit,'String'); |
---|
| 1218 | checkframe=strcmp(TimeUnit,'frame'); |
---|
[322] | 1219 | batch_file_list=[];%should be renamed file_list, can be used for xml or bash files |
---|
[494] | 1220 | NomTypeIma=get(handles.NomType,'String'); |
---|
[2] | 1221 | for ifile=1:nbfield |
---|
| 1222 | for j=1:nbslice |
---|
[313] | 1223 | |
---|
[272] | 1224 | % define output file name |
---|
[282] | 1225 | if Param.CheckCiv2==1 || Param.CheckFix2==1 || Param.CheckPatch2==1 |
---|
[465] | 1226 | Param.OutputFile=filecell.nc.civ2{ifile,j}; |
---|
[272] | 1227 | else |
---|
[465] | 1228 | Param.OutputFile=filecell.nc.civ1{ifile,j}; |
---|
[272] | 1229 | end |
---|
[465] | 1230 | Param.OutputFile=regexprep(Param.OutputFile,'.nc',''); |
---|
| 1231 | |
---|
[282] | 1232 | if Param.CheckCiv1 |
---|
[476] | 1233 | % read image-dependent parameters |
---|
[343] | 1234 | if ~checkframe% && size(time,1)>=i2_civ1(ifile) && size(time,2)>=j2_civ1(j) |
---|
| 1235 | Param.Civ1.Dt=(time(i2_civ1(ifile)+1,j2_civ1(j)+1)-time(i1_civ1(ifile)+1,j1_civ1(j)+1)); |
---|
[301] | 1236 | else |
---|
| 1237 | Param.Civ1.Dt=1; |
---|
| 1238 | end |
---|
[343] | 1239 | Param.Civ1.Time=((time(i2_civ1(ifile)+1,j2_civ1(j)+1)+time(i1_civ1(ifile)+1,j1_civ1(j)+1))/2); |
---|
[469] | 1240 | if strcmp(Param.Program,'CivX') |
---|
[435] | 1241 | Param.Civ1.term_a=num2stra(j1_civ1(j),nom_type_nc);%UTILITE? |
---|
| 1242 | Param.Civ1.term_b=num2stra(j2_civ1(j),nom_type_nc);% |
---|
[399] | 1243 | end |
---|
[469] | 1244 | Param.Civ1.ImageA=filecell.ima1.civ1{ifile,j}; |
---|
| 1245 | Param.Civ1.ImageB=filecell.ima2.civ1{ifile,j}; |
---|
[476] | 1246 | Param.Civ1.ImageBitDepth=ImageInfoA_civ1.BitDepth; |
---|
| 1247 | Param.Civ1.ImageWidth=ImageInfoA_civ1.Width; |
---|
| 1248 | Param.Civ1.ImageHeight=ImageInfoA_civ1.Height; |
---|
[494] | 1249 | if strcmp(NomTypeIma,'*') |
---|
| 1250 | Param.Civ1.FrameIndexA=i1_civ1(ifile); |
---|
| 1251 | Param.Civ1.FrameIndexB=i2_civ1(ifile); |
---|
| 1252 | else% case of movies indexed with i, the frame index is then in j |
---|
| 1253 | Param.Civ1.FrameIndexA=j1_civ1(j); |
---|
| 1254 | Param.Civ1.FrameIndexB=j2_civ1(j); |
---|
| 1255 | end |
---|
[435] | 1256 | % read mask )parameters |
---|
[284] | 1257 | if Param.Civ1.CheckMask % the lines below should be changed with the new gui |
---|
[315] | 1258 | if ~exist(Param.Civ1.Mask,'file') |
---|
| 1259 | maskbase=[filecell.filebase '_' Param.Civ1.Mask]; % |
---|
| 1260 | nbslice_mask=str2double(Param.Civ1.Mask(1:end-4)); % |
---|
[313] | 1261 | i1_mask=mod(i1_civ1(ifile)-1,nbslice_mask)+1; |
---|
[354] | 1262 | [RootPathMask,RootFileMask]=fileparts(maskbase); |
---|
| 1263 | Param.Civ1.Mask=fullfile_uvmat(RootPathMask,[],RootFileMask,'.png','_1',i1_mask); |
---|
[2] | 1264 | end |
---|
| 1265 | end |
---|
[313] | 1266 | % read grid parameters |
---|
[284] | 1267 | if Param.Civ1.CheckGrid |
---|
[315] | 1268 | if numel(Param.Civ1.Grid)>=4 && isequal(Param.Civ1.Grid(end-3:end),'grid') |
---|
| 1269 | nbslice_grid=str2double(Param.Civ1.Grid(1:end-4)); % |
---|
[137] | 1270 | if ~isnan(nbslice_grid) |
---|
[313] | 1271 | i1_grid=mod(i1_civ1(ifile)-1,nbslice_grid)+1; |
---|
[354] | 1272 | Param.Civ1.Grid=[filecell.filebase '_' fullfile_uvmat('','',Param.Civ1.Grid,'.grid','_1',i1_grid)]; |
---|
[285] | 1273 | if ~exist(Param.Civ1.GridName,'file') |
---|
[387] | 1274 | errormsg='grid file absent for civ1'; |
---|
| 1275 | return |
---|
[2] | 1276 | end |
---|
[315] | 1277 | elseif ~exist(Param.Civ1.Grid,'file') |
---|
[387] | 1278 | errormsg='grid file absent for civ1'; |
---|
| 1279 | return |
---|
[2] | 1280 | end |
---|
| 1281 | end |
---|
| 1282 | end |
---|
[257] | 1283 | |
---|
[2] | 1284 | end |
---|
| 1285 | |
---|
[282] | 1286 | if Param.CheckCiv2==1 |
---|
[469] | 1287 | Param.Civ2.ImageA=filecell.ima1.civ2{ifile,j}; |
---|
| 1288 | Param.Civ2.ImageB=filecell.ima2.civ2{ifile,j}; |
---|
[343] | 1289 | if ~checkframe %&& size(time,1)>=i2_civ2(ifile) && size(time,2)>=j2_civ2(j) |
---|
[372] | 1290 | Param.Civ2.Dt=time(i2_civ2(ifile)+1,j2_civ2(j)+1)-time(i1_civ2(ifile)+1,j1_civ2(j)+1); |
---|
[301] | 1291 | else |
---|
| 1292 | Param.Civ2.Dt=1; |
---|
[309] | 1293 | end |
---|
[372] | 1294 | Param.Civ2.Time=(time(i2_civ2(ifile)+1,j2_civ2(j)+1)+time(i1_civ2(ifile)+1,j1_civ2(j)+1))/2; |
---|
[469] | 1295 | if strcmp(Param.Program,'CivX') |
---|
[465] | 1296 | Param.Civ2.term_a=num2stra(j1_civ2(j),nom_type_nc); |
---|
| 1297 | Param.Civ2.term_b=num2stra(j2_civ2(j),nom_type_nc); |
---|
[399] | 1298 | end |
---|
[290] | 1299 | Param.Civ2.filename_nc1=filecell.nc.civ1{ifile,j}; |
---|
| 1300 | Param.Civ2.filename_nc1(end-2:end)=[]; % remove '.nc' |
---|
[315] | 1301 | |
---|
[465] | 1302 | % mask |
---|
[287] | 1303 | if Param.Civ2.CheckMask |
---|
[315] | 1304 | if ~exist(Param.Civ2.Mask,'file') |
---|
| 1305 | maskbase=[filecell.filebase '_' Param.Civ2.Mask]; % |
---|
| 1306 | nbslice_mask=str2double(Param.Civ2.Mask(1:end-4)); % |
---|
[313] | 1307 | i1_mask=mod(i1_civ2(ifile)-1,nbslice_mask)+1; |
---|
[354] | 1308 | [RootPathMask,RootFileMask]=fileparts(maskbase); |
---|
| 1309 | Param.Civ2.Mask=fullfile_uvmat(RootPathMask,[],RootFileMask,'.png','_1',i1_mask); |
---|
[465] | 1310 | % Param.Civ2.Mask=name_generator(maskbase,i1_mask,1,'.png','_i'); |
---|
[2] | 1311 | end |
---|
| 1312 | end |
---|
[315] | 1313 | %grid |
---|
| 1314 | if Param.Civ2.CheckGrid |
---|
| 1315 | if numel(Param.Civ2.Grid)>=4 && isequal(Param.Civ2.Grid(end-3:end),'grid') |
---|
| 1316 | nbslice_grid=str2double(Param.Civ2.Grid(1:end-4)); % |
---|
| 1317 | if ~isnan(nbslice_grid) |
---|
| 1318 | i1_grid=mod(i1_civ2(ifile)-1,nbslice_grid)+1; |
---|
[354] | 1319 | Param.Civ2.Grid=[filecell.filebase '_' fullfile_uvmat('','',gridname,'.grid','_1',i1_grid)]; |
---|
[465] | 1320 | % Param.Civ2.Grid=[filecell.filebase '_' name_generator(gridname,i1_grid,1,'.grid','_i')]; |
---|
[315] | 1321 | end |
---|
[2] | 1322 | end |
---|
| 1323 | end |
---|
[469] | 1324 | |
---|
[476] | 1325 | Param.Civ2.ImageBitDepth=ImageInfoA_civ2.BitDepth; |
---|
| 1326 | Param.Civ2.ImageWidth=ImageInfoA_civ2.Width; |
---|
| 1327 | Param.Civ2.ImageHeight=ImageInfoA_civ2.Height; |
---|
[494] | 1328 | if strcmp(NomTypeIma,'*') |
---|
[498] | 1329 | Param.Civ2.FrameIndexA=i1_civ2(ifile); |
---|
| 1330 | Param.Civ2.FrameIndexB=i2_civ2(ifile); |
---|
[494] | 1331 | else% case of movies indexed with i, the frame index is then in j |
---|
[498] | 1332 | Param.Civ2.FrameIndexA=j1_civ2(j); |
---|
| 1333 | Param.Civ2.FrameIndexB=j2_civ2(j); |
---|
[494] | 1334 | end |
---|
[112] | 1335 | end |
---|
[469] | 1336 | |
---|
[465] | 1337 | % write the command and eventually the cmx, xml or nml files |
---|
[469] | 1338 | cmd=write_cmd(Param); |
---|
[465] | 1339 | write_param(Param); |
---|
[469] | 1340 | |
---|
[591] | 1341 | % create the command file name .m, .bat or .sh depending on the run option |
---|
[469] | 1342 | switch Param.Program |
---|
[482] | 1343 | case {'civ_matlab'} |
---|
[505] | 1344 | filename_bat=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_BAT$2$3.m'); |
---|
| 1345 | [BatRoot,BatFile]=fileparts(filename_bat); |
---|
| 1346 | BatFile=regexprep(BatFile,'-','__');%transform name to suppress'-' (not valid for .m files) |
---|
| 1347 | filename_bat=[fullfile(BatRoot,BatFile) '.m']; |
---|
[482] | 1348 | case {'CivX','CivAll','civ_matlab.sh'} |
---|
| 1349 | switch computer |
---|
| 1350 | case {'PCWIN','PCWIN64'} |
---|
[487] | 1351 | filename_bat=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_BAT$2$3.bat'); |
---|
[482] | 1352 | case {'GLNX86','GLNXA64','MACI64'} |
---|
[487] | 1353 | filename_bat=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_BAT$2$3.sh'); |
---|
[482] | 1354 | end |
---|
[112] | 1355 | end |
---|
| 1356 | |
---|
[486] | 1357 | % print the command in the bat file |
---|
[465] | 1358 | [fid,message]=fopen(filename_bat,'w'); |
---|
| 1359 | if isequal(fid,-1) |
---|
| 1360 | errormsg=['creation of .bat file: ' message]; |
---|
| 1361 | return |
---|
[12] | 1362 | end |
---|
[465] | 1363 | fprintf(fid,cmd); |
---|
| 1364 | fclose(fid); |
---|
[482] | 1365 | |
---|
| 1366 | % special case for civ_matlab on cluster |
---|
| 1367 | if strcmp(Param.Program,'civ_matlab') && strcmp(Param.RunMode,'cluster') |
---|
[487] | 1368 | filename_bat2=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_BAT$2$3.sh'); |
---|
[482] | 1369 | [fid,message]=fopen(filename_bat2,'w'); |
---|
| 1370 | if isequal(fid,-1) |
---|
| 1371 | errormsg=['creation of .bat file: ' message]; |
---|
| 1372 | return |
---|
| 1373 | end |
---|
| 1374 | fprintf(fid,['#!/bin/bash \n' ... |
---|
| 1375 | '/etc/sysprofile \n'... |
---|
| 1376 | 'matlab -nodisplay -nosplash -nojvm <<END_MATLAB \n'... |
---|
| 1377 | 'addpath(''' path_civ ''');\n']); |
---|
[549] | 1378 | % for p=1:length(batch_file_list) |
---|
[482] | 1379 | fprintf(fid,['run ' filename_bat '\n']); |
---|
[549] | 1380 | % end |
---|
[547] | 1381 | fprintf(fid, 'exit\nEND_MATLAB\n'); |
---|
[482] | 1382 | fclose(fid); |
---|
| 1383 | filename_bat=filename_bat2; |
---|
[465] | 1384 | end |
---|
[309] | 1385 | |
---|
[482] | 1386 | switch computer |
---|
| 1387 | case {'GLNX86','GLNXA64','MACI64'} |
---|
| 1388 | system(['chmod +x ' filename_bat]); |
---|
| 1389 | end |
---|
| 1390 | batch_file_list{length(batch_file_list)+1}=filename_bat; |
---|
[112] | 1391 | end |
---|
[2] | 1392 | end |
---|
[134] | 1393 | |
---|
[465] | 1394 | %% start calculation |
---|
[469] | 1395 | %computation on cluster |
---|
| 1396 | %if batch ==3 |
---|
[482] | 1397 | switch Param.RunMode, |
---|
| 1398 | case 'cluster' |
---|
| 1399 | switch batch_mode |
---|
| 1400 | case 'sge' %at the moment only psmn ENS Lyon uses it |
---|
[279] | 1401 | for p=1:length(batch_file_list) |
---|
[482] | 1402 | %cmd=['!qsub -p ' pvalue ' -q civ.q -e ' flname '.errors -o ' flname '.log' ' ' batch_file_list{p}]; |
---|
| 1403 | cmd=['!qsub -q piv1,piv2,piv3 '... |
---|
| 1404 | '-e ' regexprep(batch_file_list{p},'.bat','.errors') ' -o ' regexprep(batch_file_list{p},'.bat','.log ')... |
---|
| 1405 | ' -v ' 'LD_LIBRARY_PATH=/home/sjoubaud/matlab_sylvain/civx/lib ' batch_file_list{p}]; |
---|
| 1406 | display(cmd);eval(cmd); |
---|
| 1407 | end |
---|
| 1408 | case 'oar_old' % to remove |
---|
| 1409 | for p=1:length(batch_file_list) |
---|
[279] | 1410 | oar_command=['!oarsub -n CIVX -q nicejob '... |
---|
[482] | 1411 | '-E ' regexprep(batch_file_list{p},'.bat','.errors') ' -O ' regexprep(batch_file_list{p},'.bat','.log ')... |
---|
| 1412 | '-l "/core=1+{type = ''smalljob''}/licence=1,walltime=00:60:00" ' batch_file_list{p}]; |
---|
| 1413 | display(oar_command);eval(oar_command); |
---|
| 1414 | end |
---|
| 1415 | case 'oar' |
---|
| 1416 | max_walltime=3600*12; % 12h max |
---|
| 1417 | oar_modes={'oar-parexec','oar-dispatch','mpilauncher'}; |
---|
| 1418 | text={'Batch processing on servcalcul3 LEGI';... |
---|
| 1419 | 'Please choose one of the followint modes';... |
---|
| 1420 | '* oar-parexec : default and best choice';... |
---|
| 1421 | '* oar-dispatch : jobs in a container of several cores';... |
---|
| 1422 | '* mpilauncher : one single parallel mpi job using several cores';... |
---|
| 1423 | '**********************************'... |
---|
| 1424 | }; |
---|
| 1425 | [S,v]=listdlg('PromptString',text,'ListString',oar_modes,... |
---|
| 1426 | 'SelectionMode','single','ListSize',[400 100],'Name','LEGI job mode'); |
---|
| 1427 | switch oar_modes{S} |
---|
| 1428 | case 'oar-parexec' %oar-dispatch.pl |
---|
[575] | 1429 | if strcmp(Param.Program,'civ_matlab') |
---|
| 1430 | ncores=1; |
---|
| 1431 | msgbox_uvmat('WARNING','Number of cores =1: select the compiled version civ_matlab.sh for multi-core processing'); |
---|
| 1432 | else |
---|
[482] | 1433 | answer=inputdlg({'Number of cores (max 36)','extra oar options'},'oarsub parameter',1,{'12',''}); |
---|
| 1434 | ncores=str2double(answer{1}); |
---|
| 1435 | end |
---|
[575] | 1436 | |
---|
[482] | 1437 | extra_oar=answer{2}; |
---|
| 1438 | walltime_onejob=600;%seconds |
---|
| 1439 | filename_joblist=fullfile(RootBat,'job_list.txt'); |
---|
| 1440 | fid=fopen(filename_joblist,'w'); |
---|
| 1441 | for p=1:length(batch_file_list) |
---|
| 1442 | fprintf(fid,[batch_file_list{p} '\n']); |
---|
| 1443 | end |
---|
| 1444 | fclose(fid); |
---|
| 1445 | oar_command=['oarsub -n CIVX '... |
---|
| 1446 | '-t idempotent --checkpoint ' num2str(walltime_onejob+60) ' '... |
---|
| 1447 | '-l /core=' num2str(ncores) ','... |
---|
[419] | 1448 | 'walltime=' datestr(min(1.05*walltime_onejob/86400*max(length(batch_file_list),ncores)/ncores,max_walltime/86400),13) ' '... |
---|
[482] | 1449 | '-E ' regexprep(filename_joblist,'\.txt\>','.stderr') ' '... |
---|
| 1450 | '-O ' regexprep(filename_joblist,'\.txt\>','.stdout') ' '... |
---|
| 1451 | extra_oar ' '... |
---|
| 1452 | '"oar-parexec -s -f ' filename_joblist ' '... |
---|
| 1453 | '-l ' filename_joblist '.log"\n']; |
---|
| 1454 | filename_oarcommand=fullfile(RootBat,'oar_command'); |
---|
| 1455 | fid=fopen(filename_oarcommand,'w'); |
---|
| 1456 | fprintf(fid,oar_command); |
---|
| 1457 | fclose(fid); |
---|
| 1458 | fprintf(oar_command);% display in command line |
---|
| 1459 | system(oar_command); |
---|
| 1460 | % eval(['! . ' filename |
---|
| 1461 | % _oarcommand]) |
---|
| 1462 | case 'oar-dispatch' %oar-dispatch.pl |
---|
| 1463 | ncores=str2double(... |
---|
| 1464 | inputdlg('Number of cores (max 36)','oarsub parameter',1,{'6'})... |
---|
| 1465 | ); |
---|
| 1466 | walltime_onejob=600;%seconds |
---|
| 1467 | filename_joblist=fullfile(RootBat,'job_list.txt'); |
---|
| 1468 | fid=fopen(filename_joblist,'w'); |
---|
| 1469 | for p=1:length(batch_file_list) |
---|
| 1470 | oar_command=['oarsub -n CIVX '... |
---|
| 1471 | '-E ' regexprep(batch_file_list{p},'\.bat\>','.stderr') ' -O ' regexprep(batch_file_list{p},'\.bat\>','.stdout ')... |
---|
| 1472 | '-l "/core=1,walltime=' datestr(walltime_onejob/86400,13) '" ' batch_file_list{p}]; |
---|
| 1473 | fprintf(fid,[oar_command '\n']); |
---|
| 1474 | end |
---|
| 1475 | fclose(fid); |
---|
| 1476 | oar_command=['oarsub -t container -n civx-container '... |
---|
| 1477 | '-l /core=' num2str(ncores)... |
---|
| 1478 | ',walltime=' datestr(1.05*walltime_onejob/86400*max(length(batch_file_list),ncores)/ncores,13) ' '... |
---|
| 1479 | '-E ' regexprep(filename_joblist,'\.txt\>','.stderr') ' '... |
---|
| 1480 | '-O ' regexprep(filename_joblist,'\.txt\>','.stdout') ' '... |
---|
| 1481 | '"oar-dispatch -f ' filename_joblist '"']; |
---|
| 1482 | filename_oarcommand=fullfile(RootBat,'oar_command'); |
---|
| 1483 | fid=fopen(filename_oarcommand,'w'); |
---|
[314] | 1484 | fprintf(fid,[oar_command '\n']); |
---|
[482] | 1485 | fclose(fid); |
---|
| 1486 | display(oar_command); |
---|
| 1487 | eval(['! . ' filename_oarcommand]) |
---|
| 1488 | case 'mpilauncher' |
---|
| 1489 | filename_joblist=fullfile(RootBat,'job_list.txt'); |
---|
| 1490 | fid=fopen(filename_joblist,'w'); |
---|
| 1491 | |
---|
| 1492 | for p=1:length(batch_file_list) |
---|
| 1493 | fprintf(fid,[batch_file_list{p} '\n']); |
---|
| 1494 | end |
---|
| 1495 | fclose(fid) |
---|
| 1496 | text_oarscript=[... |
---|
| 1497 | '#!/bin/bash \n'... |
---|
| 1498 | '#OAR -n Mylauncher \n'... |
---|
| 1499 | '#OAR -l node=4/core=5,walltime=0:15:00 \n'... |
---|
| 1500 | '#OAR -E ' fullfile(RootBat,'stderrfile.log') ' \n'... |
---|
| 1501 | '#OAR -O ' fullfile(RootBat,'stdoutfile.log') ' \n'... |
---|
| 1502 | '# ========================================================= \n'... |
---|
| 1503 | '# This simple program launch a multinode parallel OpenMPI mpilauncher \n'... |
---|
| 1504 | '# application for coriolis PIV post-processing. \n'... |
---|
| 1505 | '# OAR uses oarshmost wrapper to propagate the user environement. \n'... |
---|
| 1506 | '# This wrapper assert that the user has the same environment on all the \n'... |
---|
| 1507 | '# allocated nodes (basic behavior needed by most MPI applications). \n'... |
---|
| 1508 | '# \n'... |
---|
| 1509 | '# REQUIREMENT: \n'... |
---|
| 1510 | '# the oarshmost wrapper should be installed in $HOME/bin directory. \n'... |
---|
| 1511 | '# If a different location is used, change the line following the comment "Bidouille" \n'... |
---|
| 1512 | '# ========================================================= \n'... |
---|
| 1513 | '# USER should only modify these 2 lines \n'... |
---|
| 1514 | 'WORKDIR=' pwd ' \n'... |
---|
| 1515 | 'COMMANDE="mpilauncher -f ' filename_joblist '" \n'... |
---|
| 1516 | '# ========================================================= \n'... |
---|
| 1517 | '# DO NOT MODIFY the FOLOWING LINES. (or be carefull) \n'... |
---|
| 1518 | 'echo "job starting on: "`hostname` \n'... |
---|
| 1519 | 'MPINODES="-host `tr [\\\\\\n] [,] <$OAR_NODEFILE |sed -e "s/,$/ /"`" \n'... |
---|
| 1520 | 'NCPUS=`cat $OAR_NODEFILE |wc -l` \n'... |
---|
| 1521 | '#========== Bidouille ============== \n'... |
---|
| 1522 | 'export OMPI_MCA_plm_rsh_agent=oar-envsh \n'...% 'cd $WORKDIR \n'... |
---|
| 1523 | 'CMD="mpirun -np $NCPUS -wdir $WORKDIR $MPINODES $COMMANDE" \n'... |
---|
| 1524 | 'echo "I run: $CMD" \n'... |
---|
| 1525 | '$CMD \n'... |
---|
| 1526 | 'echo "job ending" \n'... |
---|
| 1527 | ]; |
---|
| 1528 | % oarsub -S ./oar.sub |
---|
| 1529 | filename_oarscript=fullfile(RootBat,'oar_command'); |
---|
| 1530 | fid=fopen(filename_oarscript,'w'); |
---|
| 1531 | fprintf(fid,[text_oarscript]); |
---|
| 1532 | fclose(fid); |
---|
| 1533 | eval(['!chmod +x ' filename_oarscript]); |
---|
| 1534 | eval(['!oarsub -S ' filename_oarscript]); |
---|
[465] | 1535 | end |
---|
[482] | 1536 | end |
---|
| 1537 | case {'background','local'} |
---|
| 1538 | switch Param.Program |
---|
| 1539 | case {'civ_matlab'} |
---|
| 1540 | switch Param.RunMode |
---|
| 1541 | case 'background' |
---|
| 1542 | switch computer |
---|
| 1543 | case {'PCWIN','PCWIN64'} |
---|
| 1544 | filename_superbat=fullfile(RootBat,'job_list.bat'); |
---|
| 1545 | fid=fopen(filename_superbat,'w'); |
---|
| 1546 | if fid==-1 |
---|
| 1547 | msgbox_uvmat('ERROR',['cannot create the command file ' filename_superbat]) |
---|
| 1548 | return |
---|
| 1549 | end |
---|
[495] | 1550 | fprintf(fid,['matlab -automation '... |
---|
| 1551 | '-r "addpath(''' regexprep(path_civ,'\\','\\\\') ''');']); |
---|
| 1552 | for p=1:length(batch_file_list) |
---|
| 1553 | fprintf(fid,['run ' regexprep(batch_file_list{p},'\\','\\\\') ';']); |
---|
| 1554 | end |
---|
| 1555 | fprintf(fid, 'exit"'); |
---|
[482] | 1556 | fclose(fid); |
---|
[495] | 1557 | dos([filename_superbat ' &']); |
---|
| 1558 | case {'GLNX86','GLNXA64','MACI64'} |
---|
[482] | 1559 | filename_superbat=fullfile(RootBat,'job_list.sh'); |
---|
| 1560 | fid=fopen(filename_superbat,'w'); |
---|
| 1561 | if fid==-1 |
---|
| 1562 | msgbox_uvmat('ERROR',['cannot create the command file ' filename_superbat]) |
---|
| 1563 | return |
---|
| 1564 | end |
---|
| 1565 | fprintf(fid,['#!/bin/bash \n' ... |
---|
| 1566 | '/etc/sysprofile \n'... |
---|
[498] | 1567 | 'matlab -nodisplay -nosplash -nojvm -logfile <<END_MATLAB \n'... |
---|
[482] | 1568 | 'addpath(''' path_civ ''');\n']); |
---|
| 1569 | for p=1:length(batch_file_list) |
---|
| 1570 | fprintf(fid,['run ' batch_file_list{p} '\n']); |
---|
| 1571 | end |
---|
[547] | 1572 | fprintf(fid, 'exit\nEND_MATLAB\n'); |
---|
[482] | 1573 | fclose(fid); |
---|
| 1574 | system(['chmod +x ' filename_superbat]); |
---|
| 1575 | system([filename_superbat ' &']); |
---|
| 1576 | end |
---|
| 1577 | case 'local' |
---|
| 1578 | for p=1:length(batch_file_list) |
---|
| 1579 | fid=fopen(batch_file_list{p}); |
---|
| 1580 | eval(fscanf(fid,'%s')); |
---|
| 1581 | fclose(fid); |
---|
| 1582 | end |
---|
[465] | 1583 | end |
---|
[482] | 1584 | case {'CivX','CivAll','civ_matlab.sh'} |
---|
| 1585 | switch computer |
---|
| 1586 | case {'PCWIN','PCWIN64'} |
---|
| 1587 | filename_superbat=fullfile(RootBat,'job_list.bat'); |
---|
| 1588 | fid=fopen(filename_superbat,'w'); |
---|
| 1589 | if fid==-1 |
---|
| 1590 | msgbox_uvmat('ERROR',['cannot create the command file ' filename_superbat]) |
---|
| 1591 | return |
---|
| 1592 | end |
---|
| 1593 | for p=1:length(batch_file_list) |
---|
| 1594 | fprintf(fid,['@call "' regexprep(batch_file_list{p},'\\','\\\\') '"' '\n']); |
---|
| 1595 | end |
---|
| 1596 | fclose(fid); |
---|
| 1597 | system(['chmod +x ' filename_superbat]); |
---|
| 1598 | case {'GLNX86','GLNXA64','MACI64'} |
---|
| 1599 | filename_superbat=fullfile(RootBat,'job_list.bat'); |
---|
| 1600 | fid=fopen(filename_superbat,'w'); |
---|
| 1601 | if fid==-1 |
---|
| 1602 | msgbox_uvmat('ERROR',['cannot create the command file ' filename_superbat]) |
---|
| 1603 | return |
---|
| 1604 | end |
---|
| 1605 | for p=1:length(batch_file_list) |
---|
| 1606 | fprintf(fid,['sh ' batch_file_list{p} '\n']); |
---|
| 1607 | end |
---|
| 1608 | fclose(fid); |
---|
| 1609 | system(['chmod +x ' filename_superbat]); |
---|
| 1610 | end |
---|
| 1611 | switch Param.RunMode |
---|
| 1612 | case 'background' |
---|
| 1613 | system([filename_superbat ' &']);% execute main commmand see what it does in dos ? |
---|
| 1614 | case 'local' |
---|
| 1615 | system(filename_superbat); |
---|
[465] | 1616 | end |
---|
[482] | 1617 | end |
---|
[265] | 1618 | end |
---|
| 1619 | |
---|
[2] | 1620 | |
---|
[137] | 1621 | %% save interface state |
---|
[2] | 1622 | if isfield(filecell,'nc') |
---|
| 1623 | if isfield(filecell.nc,'civ2') |
---|
| 1624 | fileresu=filecell.nc.civ2{1,1}; |
---|
| 1625 | else |
---|
| 1626 | fileresu=filecell.nc.civ1{1,1}; |
---|
| 1627 | end |
---|
| 1628 | end |
---|
[343] | 1629 | [RootPath,SubDir,RootFile]=fileparts_uvmat(fileresu); |
---|
| 1630 | namedoc=fullfile(RootPath,SubDir,RootFile); |
---|
[112] | 1631 | detect=1; |
---|
[2] | 1632 | while detect==1 |
---|
| 1633 | namefigfull=[namedoc '.fig']; |
---|
| 1634 | hh=dir(namefigfull); |
---|
| 1635 | if ~isempty(hh) |
---|
| 1636 | detect=1; |
---|
| 1637 | namedoc=[namedoc '.0']; |
---|
| 1638 | else |
---|
| 1639 | detect=0; |
---|
| 1640 | end |
---|
| 1641 | end |
---|
[363] | 1642 | Param=rmfield(Param,'status'); |
---|
| 1643 | Param=rmfield(Param,'xml'); |
---|
[360] | 1644 | t=struct2xml(Param); |
---|
[437] | 1645 | t=set(t,1,'name','Civ');% set the head label |
---|
| 1646 | save(t,[namedoc '.civ.xml']); %save GUI parameters as xml file |
---|
[465] | 1647 | % saveas(gcbf,namefigfull);%save the interface with name namefigfull (A CHANGER EN FICHIER .xml) |
---|
[2] | 1648 | |
---|
[273] | 1649 | %Save info in personal profile (initiate browser next time) TODO |
---|
| 1650 | MenuFile={}; |
---|
| 1651 | dir_perso=prefdir; |
---|
| 1652 | profil_perso=fullfile(dir_perso,'uvmat_perso.mat'); |
---|
| 1653 | if exist(profil_perso,'file') |
---|
| 1654 | hh=load (profil_perso); |
---|
| 1655 | if isfield(hh,'MenuFile') |
---|
| 1656 | MenuFile=hh.MenuFile; |
---|
| 1657 | end |
---|
[289] | 1658 | if isfield(filecell.nc,'civ2') |
---|
| 1659 | MenuFile=[filecell.nc.civ2{1,1}; MenuFile]; |
---|
| 1660 | else |
---|
| 1661 | MenuFile=[filecell.nc.civ1{1,1}; MenuFile]; |
---|
| 1662 | end |
---|
[273] | 1663 | save (profil_perso,'MenuFile','-append'); %store the file names for future opening of uvmat |
---|
| 1664 | else |
---|
| 1665 | MenuFile=filecell.ima1.civ1(1,1); |
---|
| 1666 | save (profil_perso,'MenuFile') |
---|
| 1667 | end |
---|
| 1668 | |
---|
[227] | 1669 | %------------------------------------------------------------------------ |
---|
| 1670 | % --- determine the list of reference indices of processing file |
---|
| 1671 | function [ref_i,ref_j,errormsg]=find_ref_indices(handles) |
---|
| 1672 | %------------------------------------------------------------------------ |
---|
| 1673 | errormsg=''; %default error message |
---|
| 1674 | first_i=str2double(get(handles.first_i,'String'));%first index i |
---|
| 1675 | last_i=str2double(get(handles.last_i,'String'));%last index i |
---|
| 1676 | incr_i=str2double(get(handles.incr_i,'String'));% increment |
---|
| 1677 | if isequal(get(handles.first_j,'Visible'),'on') |
---|
| 1678 | first_j=str2double(get(handles.first_j,'String'));%first index j |
---|
| 1679 | last_j=str2double(get(handles.last_j,'String'));%last index j |
---|
| 1680 | incr_j=str2double(get(handles.incr_j,'String'));% increment |
---|
| 1681 | else |
---|
| 1682 | first_j=1; |
---|
| 1683 | last_j=1; |
---|
| 1684 | incr_j=1; |
---|
| 1685 | end |
---|
| 1686 | ref_i=first_i:incr_i:last_i;% list of i indices (reference values for each pair) |
---|
| 1687 | ref_j=first_j:incr_j:last_j;% list of j indices (reference values for each pair) |
---|
| 1688 | if isnan(first_i)||isnan(first_j) |
---|
| 1689 | errormsg='first field number not defined'; |
---|
| 1690 | elseif isnan(last_i)||isnan(last_j) |
---|
| 1691 | errormsg='last field number not defined'; |
---|
| 1692 | elseif isnan(incr_i)||isnan(incr_j) |
---|
| 1693 | errormsg='increment in field number not defined'; |
---|
| 1694 | elseif last_i < first_i || last_j < first_j |
---|
| 1695 | errormsg='last field number must be larger than the first one'; |
---|
| 1696 | end |
---|
[134] | 1697 | |
---|
[227] | 1698 | %------------------------------------------------------------------------ |
---|
| 1699 | % --- determine the list of filenames and indices needed for launch_job |
---|
[371] | 1700 | %------------------------------------------------------------------------ |
---|
| 1701 | % OUTPUT: |
---|
| 1702 | % filecell: structure of cell arrays {ref_i,ref_j} containing all the filenames involved in the civ process |
---|
| 1703 | % the indices ref_i and ref_j correspond to the list of reference indices |
---|
| 1704 | % .filebase=fullfile(RootPath,RootFile) used to construct mask names, grid names, CivDoc xml file |
---|
| 1705 | % .ima1.civ1,.ima1.civ2: first image for civ1 and civ2 respectively (possibly different) |
---|
| 1706 | % .ima2.civ1,.ima2.civ2: second image for civ1 and civ2 respectively (possibly different) |
---|
| 1707 | % .nc.civ1,.nc.civ2: netcdf files containing civ1 and civ2 data respectively (possibly different) |
---|
| 1708 | % i1_civ1,i2_civ1,j1_civ1,j2_civ1,i1_civ2,i2_civ2,j1_civ2,j2_civ2: arrays of files indices, needed for timing records |
---|
[437] | 1709 | function [filecell,i1_civ1,i2_civ1,j1_civ1,j2_civ1,i1_civ2,i2_civ2,j1_civ2,j2_civ2,NomType_nc,file_ref_fix1,file_ref_fix2,compare,errormsg]=... |
---|
[282] | 1710 | set_civ_filenames(handles,ref_i,ref_j,checkbox) |
---|
[12] | 1711 | %------------------------------------------------------------------------ |
---|
[85] | 1712 | filecell=[];%default |
---|
[437] | 1713 | errormsg=''; |
---|
[469] | 1714 | ListProgram=get(handles.Program,'String'); |
---|
| 1715 | CivMode=ListProgram{get(handles.Program,'Value')};%Program to use , CivX or Matlab |
---|
[136] | 1716 | |
---|
[371] | 1717 | %% get the root name and check dir |
---|
| 1718 | RootPath=get(handles.RootPath,'String'); |
---|
[494] | 1719 | SubDirImages=get(handles.SubDirImages,'String'); |
---|
[371] | 1720 | RootFile=get(handles.RootFile,'String'); |
---|
[494] | 1721 | filecell.filebase=fullfile(RootPath,SubDirImages,RootFile); |
---|
[371] | 1722 | if isempty(filecell.filebase) |
---|
[437] | 1723 | errormsg='please open an image with the upper menu option Open/Browse...'; |
---|
[136] | 1724 | return |
---|
| 1725 | end |
---|
[371] | 1726 | if ~exist(RootPath,'dir') |
---|
[437] | 1727 | errormsg=['path to images ' RootPath ' not found']; |
---|
[371] | 1728 | return |
---|
| 1729 | end |
---|
[388] | 1730 | [tild,message]=fileattrib(RootPath); |
---|
[371] | 1731 | if ~isempty(message) && ~isequal(message.UserWrite,1) |
---|
[623] | 1732 | errormsg=['No writing access to ' RootPath]; |
---|
[371] | 1733 | return |
---|
| 1734 | end |
---|
| 1735 | %check result directory |
---|
[441] | 1736 | subdir_civ1=regexprep(get(handles.SubdirCiv1,'String'),'^.','');%subdirectory subdir_civ1 for the netcdf output data |
---|
| 1737 | subdir_civ2=regexprep(get(handles.SubdirCiv2,'String'),'^.',''); |
---|
| 1738 | if isequal(subdir_civ1,''),subdir_civ1='civ'; end% put default subdir |
---|
| 1739 | % subdir_civ1=[ '.' subdir_civ1]; |
---|
| 1740 | % subdir_civ2=[ '.' subdir_civ2]; |
---|
[371] | 1741 | if isequal(subdir_civ2,''),subdir_civ2=subdir_civ1; end% put default subdir |
---|
[494] | 1742 | subdir_civ1=[SubDirImages '.' subdir_civ1]; |
---|
| 1743 | subdir_civ2=[SubDirImages '.' subdir_civ2]; |
---|
[136] | 1744 | |
---|
[371] | 1745 | %% choose root names depending on ListCompareMode =displacement, shift, PIV or stereo PIV |
---|
| 1746 | ListCompareMode=get(handles.ListCompareMode,'String'); |
---|
| 1747 | compare=ListCompareMode{get(handles.ListCompareMode,'Value')}; |
---|
[136] | 1748 | |
---|
[371] | 1749 | % set the nomenclature type of the nc files depending on the pair mode |
---|
[360] | 1750 | if strcmp(compare,'displacement')||strcmp(compare,'shift') |
---|
[2] | 1751 | mode='displacement'; |
---|
| 1752 | else |
---|
[282] | 1753 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 1754 | mode_value=get(handles.ListPairMode,'Value'); |
---|
[2] | 1755 | mode=mode_list{mode_value}; |
---|
| 1756 | end |
---|
[371] | 1757 | NomType_ima2=get(handles.NomType,'String'); |
---|
| 1758 | NomType_nc=nomtype2pair(NomType_ima2,mode); |
---|
| 1759 | |
---|
| 1760 | % set the rootfile and image indexing |
---|
| 1761 | RootFile_ima2=get(handles.RootFile,'String');%root file for the second image series |
---|
| 1762 | ext_ima=get(handles.ImaExt,'String'); % image extension (the same for all images) |
---|
| 1763 | switch compare |
---|
[591] | 1764 | case {'PIV','PIV volume'} |
---|
[371] | 1765 | RootFile_ima1=RootFile_ima2;% root name of the two image series is the same |
---|
| 1766 | NomType_ima1=NomType_ima2;% the index of the first image follows the index of the second one |
---|
| 1767 | RootFile_nc=RootFile_ima2; |
---|
| 1768 | case 'displacement' |
---|
| 1769 | RootFile_ima1=get(handles.RootFile_1,'String');% root name of the first image series set by handles.RootFile_1 |
---|
| 1770 | NomType_ima1='';% no indexing of the first image, a fixed reference for the whole series |
---|
| 1771 | RootFile_nc=RootFile_ima2; |
---|
| 1772 | case 'shift' |
---|
| 1773 | RootFile_ima1=get(handles.RootFile_1,'String');% root name of the first image series set by handles.RootFile_1 |
---|
| 1774 | NomType_ima1=NomType_ima2;% the index of the first image follows the index of the second one |
---|
| 1775 | RootFile_nc=[RootFile_ima1 '-' RootFile_ima2]; |
---|
[122] | 1776 | end |
---|
[360] | 1777 | |
---|
[371] | 1778 | %determine the list of file indices involved |
---|
| 1779 | [i1_civ1,i2_civ1,j1_civ1,j2_civ1,i1_civ2,i2_civ2,j1_civ2,j2_civ2]=... |
---|
[227] | 1780 | find_pair_indices(handles,ref_i,ref_j,mode); |
---|
[371] | 1781 | |
---|
[282] | 1782 | %determine the new filebase for 'displacement' ListPairMode (comparison of two series) |
---|
[371] | 1783 | %filebase_B=filebase;% root name of the second field series for stereo |
---|
| 1784 | % filebase_A=filebase;%default |
---|
| 1785 | % if strcmp(compare,'PIV') |
---|
| 1786 | % filebase_AB=filebase; |
---|
| 1787 | % else |
---|
| 1788 | % [Path2,Name2]=fileparts(filebase_B); |
---|
| 1789 | % Name1=RootFile_ima1; |
---|
| 1790 | % filebase_AB=fullfile(Path2,[Name2 '-' Name1]); |
---|
| 1791 | % end |
---|
| 1792 | % [RootPath_AB,RootFile_AB]=fileparts(filebase_AB); |
---|
| 1793 | % % [RootPath_ima1,RootFile_ima1]=fileparts(filebase_B); |
---|
| 1794 | % [RootPath_ima2,RootFile_ima2]=fileparts(filebase_B); |
---|
| 1795 | % [RootPath_nc,RootFile_nc]=fileparts(filebase_B);%default |
---|
| 1796 | % if strcmp(compare,'displacement') |
---|
| 1797 | % % [RootPath_ima1,RootFile_ima1]=fileparts(filebase_B); |
---|
| 1798 | % % [RootPath_ima2,RootFile_ima2]=fileparts(filebase_B); |
---|
| 1799 | % [RootPath_nc,RootFile_nc]=fileparts(filebase_B); |
---|
| 1800 | % elseif strcmp(compare,'shift') |
---|
| 1801 | % RootPath_nc=RootPath_AB; |
---|
| 1802 | % RootFile_nc=RootFile_AB; |
---|
| 1803 | % end |
---|
| 1804 | % else |
---|
| 1805 | % filebase_ima1=filebase_B; |
---|
| 1806 | % filebase_ima2=filebase_B; |
---|
| 1807 | % filebase_nc=filebase_B; |
---|
| 1808 | % [RootPath_ima1,RootFile_ima1]=fileparts(filebase_ima1); |
---|
| 1809 | % [RootPath_ima2,RootFile_ima2]=fileparts(filebase_ima2); |
---|
| 1810 | % [RootPath_nc,RootFile_nc]=fileparts(filebase_nc); |
---|
| 1811 | % [RootPath_A,RootFile_A]=fileparts(filebase_A); |
---|
| 1812 | |
---|
[353] | 1813 | |
---|
[371] | 1814 | %% determine reference files for fix: |
---|
[2] | 1815 | file_ref_fix1={};%default |
---|
| 1816 | file_ref_fix2={}; |
---|
[371] | 1817 | nbfield=length(i1_civ1); |
---|
| 1818 | nbslice=length(j1_civ1); |
---|
[282] | 1819 | if checkbox(2)==1% fix1 performed |
---|
[2] | 1820 | ref=get(handles.ref_fix1,'UserData');%read data on the ref file stored by get_ref_fix1_Callback |
---|
| 1821 | if ~isempty(ref) |
---|
[137] | 1822 | first_i=str2double(get(handles.first_i,'String')); |
---|
| 1823 | last_i=str2double(get(handles.last_i,'String')); |
---|
| 1824 | incr_i=str2double(get(handles.incr_i,'String')); |
---|
| 1825 | first_j=str2double(get(handles.first_j,'String')); |
---|
| 1826 | last_j=str2double(get(handles.last_j,'String')); |
---|
| 1827 | incr_j=str2double(get(handles.incr_j,'String')); |
---|
[127] | 1828 | num_i_ref=first_i:incr_i:last_i; |
---|
| 1829 | num_j_ref=first_j:incr_j:last_j; |
---|
[2] | 1830 | if isequal(mode,'displacement') |
---|
| 1831 | num_i1=num_i_ref; |
---|
[371] | 1832 | num_i2=num_i_ref; |
---|
[2] | 1833 | num_j1=num_j_ref; |
---|
| 1834 | num_j2=num_j_ref; |
---|
| 1835 | elseif isequal(mode,'pair j1-j2')% isequal(mode,'st_pair j1-j2') |
---|
| 1836 | num_i1=num_i_ref; |
---|
| 1837 | num_i2=num_i1; |
---|
| 1838 | num_j1=ref.num_a*ones(size(num_i_ref)); |
---|
| 1839 | num_j2=ref.num_b*ones(size(num_i_ref)); |
---|
| 1840 | elseif isequal(mode,'series(Di)') % isequal(mode,'st_series(Di)') |
---|
| 1841 | delta1=floor((ref.num2-ref.num1)/2); |
---|
| 1842 | delta2=ceil((ref.num2-ref.num1)/2); |
---|
| 1843 | num_i1=num_i_ref-delta1*ones(size(num_i_ref)); |
---|
| 1844 | num_i2=num_i_ref+delta2*ones(size(num_i_ref)); |
---|
| 1845 | if isempty(ref.num_a) |
---|
| 1846 | ref.num_a=1; |
---|
| 1847 | end |
---|
| 1848 | num_j1=ref.num_a*ones(size(num_i1)); |
---|
| 1849 | num_j2=num_j1; |
---|
| 1850 | elseif isequal(mode,'series(Dj)')%| isequal(mode,'st_series(Dj)') |
---|
| 1851 | delta1=floor((ref.num_b-ref.num_a)/2); |
---|
| 1852 | delta2=ceil((ref.num_b-ref.num_a)/2); |
---|
| 1853 | num_i1=ref.num1*ones(size(num_i_ref)); |
---|
| 1854 | num_i2=num_i1; |
---|
| 1855 | num_j1=num_j_ref-delta1*ones(size(num_j_ref)); |
---|
| 1856 | num_j2=num_j_ref+delta2*ones(size(num_j_ref)); |
---|
| 1857 | end |
---|
| 1858 | for ifile=1:nbfield |
---|
| 1859 | for j=1:nbslice |
---|
[371] | 1860 | [RootPathRef,RootFile]=fileparts(ref.filebase); |
---|
| 1861 | file_ref=fullfile_uvmat(RootPathRef,ref.subdir,RootFile,'.nc',ref.NomType,num_i1(ifile),num_i2(ifile),num_j1(j),num_j2(j)); |
---|
[2] | 1862 | file_ref_fix1(ifile,j)={file_ref}; |
---|
| 1863 | if ~exist(file_ref,'file') |
---|
[437] | 1864 | errormsg=['reference file ' file_ref ' not found for fix1']; |
---|
[2] | 1865 | return |
---|
| 1866 | end |
---|
| 1867 | end |
---|
| 1868 | end |
---|
| 1869 | end |
---|
| 1870 | end |
---|
| 1871 | |
---|
[371] | 1872 | %% determine reference files for fix2: |
---|
[282] | 1873 | if checkbox(5)==1% fix2 performed |
---|
[2] | 1874 | ref=get(handles.ref_fix2,'UserData'); |
---|
| 1875 | if ~isempty(ref) |
---|
[127] | 1876 | first_i=str2double(get(handles.first_i,'String')); |
---|
| 1877 | last_i=str2double(get(handles.last_i,'String')); |
---|
| 1878 | incr_i=str2double(get(handles.incr_i,'String')); |
---|
| 1879 | first_j=str2double(get(handles.first_j,'String')); |
---|
| 1880 | last_j=str2double(get(handles.last_j,'String')); |
---|
| 1881 | incr_j=str2double(get(handles.incr_j,'String')); |
---|
[229] | 1882 | num_i_ref=first_i:incr_i:last_i; |
---|
| 1883 | num_j_ref=first_j:incr_j:last_j; |
---|
[2] | 1884 | if isequal(mode,'displacement') |
---|
| 1885 | num_i1=num_i_ref; |
---|
| 1886 | num_i2=num_i_ref; |
---|
| 1887 | num_j1=num_j_ref; |
---|
| 1888 | num_j2=num_j_ref; |
---|
| 1889 | elseif isequal(mode,'pair j1-j2') |
---|
| 1890 | num_i1=num_i_ref; |
---|
| 1891 | num_i2=num_i1; |
---|
| 1892 | num_j1=ref.num_a; |
---|
| 1893 | num_j2=ref.num_b; |
---|
| 1894 | elseif isequal(mode,'series(Di)') |
---|
| 1895 | delta1=floor((ref.num2-ref.num1)/2); |
---|
| 1896 | delta2=ceil((ref.num2-ref.num1)/2); |
---|
| 1897 | num_i1=num_i_ref-delta1*ones(size(num_i_ref)); |
---|
| 1898 | num_i2=num_i_ref+delta2*ones(size(num_i_ref)); |
---|
| 1899 | num_j1=ref.num_a*ones(size(num_i1)); |
---|
| 1900 | num_j2=num_j1; |
---|
| 1901 | elseif isequal(mode,'series(Dj)') |
---|
| 1902 | delta1=floor((ref.num_b-ref.num_a)/2); |
---|
| 1903 | delta2=ceil((ref.num_b-ref.num_a)/2); |
---|
| 1904 | num_i1=ref.num1*ones(size(num_i_ref)); |
---|
| 1905 | num_i2=num_i1; |
---|
| 1906 | num_j1=num_j_ref-delta1*ones(size(num_j_ref)); |
---|
| 1907 | num_j2=num_j_ref+delta2*ones(size(num_j_ref)); |
---|
| 1908 | end |
---|
| 1909 | for ifile=1:nbfield |
---|
| 1910 | for j=1:nbslice |
---|
[371] | 1911 | [RootPathRef,RootFile]=fileparts(ref.filebase); |
---|
| 1912 | file_ref=fullfile_uvmat(RootPathRef,ref.subdir,RootFile,'.nc',ref.NomType,num_i1(ifile),num_i2(ifile),num_j1(j),num_j2(j)); |
---|
[2] | 1913 | file_ref_fix2(ifile,j)={file_ref}; |
---|
| 1914 | if ~exist(file_ref,'file') |
---|
[437] | 1915 | errormsg=['reference file ' file_ref ' not found for fix2']; |
---|
[2] | 1916 | return |
---|
| 1917 | end |
---|
| 1918 | end |
---|
| 1919 | end |
---|
| 1920 | end |
---|
| 1921 | end |
---|
| 1922 | |
---|
[371] | 1923 | %% check the existence of the netcdf and image files involved |
---|
[282] | 1924 | % %%%%%%%%%%%% case CheckCiv1 activated %%%%%%%%%%%%% |
---|
| 1925 | if checkbox(1)==1; |
---|
[112] | 1926 | detect=1; |
---|
[127] | 1927 | vers=0; |
---|
| 1928 | subdir_civ1_new=subdir_civ1; |
---|
[482] | 1929 | answer='No'; |
---|
[153] | 1930 | while detect==1 %create a new subdir if the netcdf files already exist |
---|
[122] | 1931 | for ifile=1:nbfield |
---|
[112] | 1932 | for j=1:nbslice |
---|
[371] | 1933 | filename=fullfile_uvmat(RootPath,subdir_civ1_new,RootFile_nc,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j)); |
---|
[112] | 1934 | detect=exist(filename,'file')==2; |
---|
| 1935 | if detect% if a netcdf file already exists |
---|
[482] | 1936 | if strcmp(answer,'No') |
---|
| 1937 | answer=msgbox_uvmat('INPUT_Y-N',['overwrite existing civ files in ' subdir_civ1_new]); |
---|
| 1938 | end |
---|
[452] | 1939 | if strcmp(answer,'Yes') |
---|
| 1940 | detect=0; |
---|
| 1941 | filecell.nc.civ1(ifile,j)={filename}; |
---|
| 1942 | else |
---|
[446] | 1943 | r=regexp(subdir_civ1_new,'(?<root>.*\D)(?<num1>\d+)$','names');%detect whether name ends by a number |
---|
| 1944 | if isempty(r) |
---|
| 1945 | r(1).root=[subdir_civ1_new '_']; |
---|
| 1946 | r(1).num1='0'; |
---|
| 1947 | end |
---|
| 1948 | subdir_civ1_new=[r(1).root num2str(str2num(r(1).num1)+1)];%increment the index by 1 or put 1 |
---|
| 1949 | subdir_civ2=subdir_civ1_new; |
---|
[127] | 1950 | end |
---|
[112] | 1951 | break |
---|
| 1952 | end |
---|
| 1953 | filecell.nc.civ1(ifile,j)={filename}; |
---|
| 1954 | end |
---|
| 1955 | if detect% if a netcdf file already exists |
---|
| 1956 | break |
---|
| 1957 | end |
---|
| 1958 | end |
---|
[134] | 1959 | |
---|
[363] | 1960 | %create the new SubdirCiv1 |
---|
[371] | 1961 | if ~exist(fullfile(RootPath,subdir_civ1_new),'dir') |
---|
| 1962 | [xx,msg1]=mkdir(fullfile(RootPath,subdir_civ1_new)); |
---|
[128] | 1963 | if ~strcmp(msg1,'') |
---|
[437] | 1964 | errormsg=['cannot create ' subdir_civ1_new ': ' msg1];%error message for directory creation |
---|
[122] | 1965 | return |
---|
[163] | 1966 | elseif isunix |
---|
[371] | 1967 | [xx,msg2] = fileattrib(fullfile(RootPath,subdir_civ1_new),'+w','g'); %yield writing access (+w) to user group (g) |
---|
[128] | 1968 | if ~strcmp(msg2,'') |
---|
[437] | 1969 | errormsg=['pb of permission for ' fullfile(RootPath,subdir_civ1_new) ': ' msg2];%error message for directory creation |
---|
[128] | 1970 | return |
---|
| 1971 | end |
---|
[112] | 1972 | end |
---|
| 1973 | end |
---|
| 1974 | if strcmp(compare,'stereo PIV')&&(strcmp(mode,'pair j1-j2')||strcmp(mode,'series(Dj)')||strcmp(mode,'series(Di)'))%check second nc series |
---|
| 1975 | for ifile=1:nbfield |
---|
| 1976 | for j=1:nbslice |
---|
[371] | 1977 | filename=fullfile_uvmat(RootPath,subdir_civ1_new,RootFile_A,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j)); |
---|
[112] | 1978 | detect=exist(filename,'file')==2; |
---|
[2] | 1979 | if detect% if a netcdf file already exists |
---|
[137] | 1980 | indstr=regexp(subdir_civ1_new,'\D'); |
---|
| 1981 | if indstr(end)<length(subdir_civ1_new) %subdir_civ1 ends by a number |
---|
| 1982 | vers=str2double(subdir_civ1_new(indstr(end)+1:end))+1; |
---|
| 1983 | subdir_civ1_new=[subdir_civ1_new(1:indstr(end)) num2str(vers)]; |
---|
[127] | 1984 | else |
---|
| 1985 | vers=vers+1; |
---|
[137] | 1986 | subdir_civ1_new=[subdir_civ1_new '_' num2str(vers)]; |
---|
[127] | 1987 | end |
---|
| 1988 | subdir_civ2=subdir_civ1; |
---|
| 1989 | break |
---|
[2] | 1990 | end |
---|
[112] | 1991 | filecell.ncA.civ1(ifile,j)={filename}; |
---|
| 1992 | end |
---|
| 1993 | if detect% if a netcdf file already exists |
---|
| 1994 | break |
---|
| 1995 | end |
---|
| 1996 | end |
---|
[363] | 1997 | %create the new SubdirCiv1 |
---|
[371] | 1998 | if ~exist(fullfile(RootPath,subdir_civ1_new),'dir') |
---|
| 1999 | [xx,msg1]=mkdir(fullfile(RootPath,subdir_civ1_new)); |
---|
[252] | 2000 | if ~strcmp(msg1,'') |
---|
[437] | 2001 | errormsg=['cannot create ' subdir_civ1_new ': ' msg1]; |
---|
[122] | 2002 | return |
---|
[623] | 2003 | elseif isunix |
---|
[371] | 2004 | [xx,msg2] = fileattrib(fullfile(RootPath,subdir_civ1_new),'+w','g'); %yield writing access (+w) to user group (g) |
---|
[128] | 2005 | if ~strcmp(msg2,'') |
---|
[437] | 2006 | errormsg=['pb of permission for ' subdir_civ1_new ': ' msg2];%error message for directory creation |
---|
[128] | 2007 | return |
---|
| 2008 | end |
---|
[112] | 2009 | end |
---|
| 2010 | end |
---|
| 2011 | end |
---|
| 2012 | end |
---|
[127] | 2013 | subdir_civ1=subdir_civ1_new; |
---|
[2] | 2014 | % get image names |
---|
| 2015 | for ifile=1:nbfield |
---|
[112] | 2016 | for j=1:nbslice |
---|
[494] | 2017 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima1,ext_ima,NomType_ima1,i1_civ1(ifile),[],j1_civ1(j)); |
---|
[2] | 2018 | idetect(j)=exist(filename,'file')==2; |
---|
| 2019 | filecell.ima1.civ1(ifile,j)={filename}; %first image |
---|
[494] | 2020 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima2,ext_ima,NomType_ima2,i2_civ1(ifile),[],j2_civ1(j)); |
---|
[2] | 2021 | idetect_1(j)=exist(filename,'file')==2; |
---|
| 2022 | filecell.ima2.civ1(ifile,j)={filename};%second image |
---|
[112] | 2023 | end |
---|
| 2024 | [idetectmin,indexj]=min(idetect); |
---|
| 2025 | if idetectmin==0, |
---|
[437] | 2026 | errormsg=[filecell.ima1.civ1{ifile,indexj} ' not found']; |
---|
[112] | 2027 | return |
---|
| 2028 | end |
---|
| 2029 | [idetectmin,indexj]=min(idetect_1); |
---|
| 2030 | if idetectmin==0, |
---|
[437] | 2031 | errormsg=[filecell.ima2.civ1{ifile,indexj} ' not found']; |
---|
[112] | 2032 | return |
---|
| 2033 | end |
---|
| 2034 | end |
---|
| 2035 | if strcmp(compare,'stereo PIV') && (strcmp(mode,'pair j1-j2') || strcmp(mode,'series(Dj)') || strcmp(mode,'series(Di)')) |
---|
| 2036 | for ifile=1:nbfield |
---|
| 2037 | for j=1:nbslice |
---|
[371] | 2038 | filename=fullfile_uvmat(RootPath,'',RootFile_A,ext_ima,NomType_ima1,i1_civ1(ifile),[],j1_civ1(j)); |
---|
[112] | 2039 | idetect(j)=exist(filename,'file')==2; |
---|
| 2040 | filecell.imaA1.civ1(ifile,j)={filename} ;%first image |
---|
[371] | 2041 | filename=fullfile_uvmat(RootPath,'',RootFile_A,ext_ima,NomType_ima2,i2_civ1(ifile),[],j2_civ1(j)); |
---|
[112] | 2042 | idetect_1(j)=exist(filename,'file')==2; |
---|
| 2043 | filecell.imaA2.civ1(ifile,j)={filename};%second image |
---|
| 2044 | end |
---|
[2] | 2045 | [idetectmin,indexj]=min(idetect); |
---|
[112] | 2046 | if idetectmin==0, |
---|
[437] | 2047 | errormsg=[filecell.imaA1.civ1{ifile,indexj} ' not found']; |
---|
[2] | 2048 | return |
---|
[112] | 2049 | end |
---|
[2] | 2050 | [idetectmin,indexj]=min(idetect_1); |
---|
[112] | 2051 | if idetectmin==0, |
---|
[437] | 2052 | errormsg=[filecell.imaA2.civ1{ifile,indexj} ' not found']; |
---|
[2] | 2053 | return |
---|
[112] | 2054 | end |
---|
| 2055 | end |
---|
[2] | 2056 | end |
---|
[112] | 2057 | |
---|
[282] | 2058 | %%%%%%%%%%%%% checkfix1 or checkpatch1 activated but no checkciv1 %%%%%%%%%%%%% |
---|
| 2059 | elseif (checkbox(2)==1 || checkbox(3)==1); |
---|
[2] | 2060 | for ifile=1:nbfield |
---|
| 2061 | for j=1:nbslice |
---|
[371] | 2062 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile_nc,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j)); |
---|
[112] | 2063 | detect=exist(filename,'file')==2; |
---|
[122] | 2064 | if detect==0 |
---|
[437] | 2065 | errormsg=[filename ' not found']; |
---|
[122] | 2066 | return |
---|
| 2067 | end |
---|
[2] | 2068 | filecell.nc.civ1(ifile,j)={filename}; |
---|
| 2069 | end |
---|
| 2070 | end |
---|
| 2071 | if strcmp(compare,'stereo PIV') |
---|
[112] | 2072 | for ifile=1:nbfield |
---|
| 2073 | for j=1:nbslice |
---|
[371] | 2074 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile_A,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j)); |
---|
[112] | 2075 | filecell.ncA.civ1(ifile,j)={filename}; |
---|
| 2076 | if ~exist(filename,'file') |
---|
[437] | 2077 | errormsg=['input file ' filename ' not found']; |
---|
[112] | 2078 | return |
---|
[2] | 2079 | end |
---|
| 2080 | end |
---|
[112] | 2081 | end |
---|
[2] | 2082 | end |
---|
| 2083 | end |
---|
| 2084 | |
---|
[282] | 2085 | %%%%%%%%%%%%% if checkciv2 performed with pairs different than checkciv1 %%%%%%%%%%%%% |
---|
[2] | 2086 | testdiff=0; |
---|
[282] | 2087 | if (checkbox(4)==1)&&... |
---|
| 2088 | ((get(handles.ListPairCiv1,'Value')~=get(handles.ListPairCiv2,'Value'))||~strcmp(subdir_civ2,subdir_civ1)) |
---|
[2] | 2089 | testdiff=1; |
---|
[112] | 2090 | detect=1; |
---|
[127] | 2091 | vers=0; |
---|
| 2092 | subdir_civ2_new=subdir_civ2; |
---|
[2] | 2093 | while detect==1 %create a new subdir if the netcdf files already exist |
---|
[112] | 2094 | for ifile=1:nbfield |
---|
| 2095 | for j=1:nbslice |
---|
[371] | 2096 | filename=fullfile_uvmat(RootPath,subdir_civ2_new,RootFile_nc,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[112] | 2097 | detect=exist(filename,'file')==2; |
---|
| 2098 | if detect% if a netcdf file already exists |
---|
[127] | 2099 | indstr=regexp(subdir_civ2,'\D'); |
---|
| 2100 | if indstr(end)<length(subdir_civ2) %subdir_civ1 ends by a number |
---|
| 2101 | vers=str2double(subdir_civ2(indstr(end)+1:end))+1; |
---|
| 2102 | subdir_civ2_new=[subdir_civ2(1:indstr(end)) num2str(vers)]; |
---|
| 2103 | else |
---|
| 2104 | vers=vers+1; |
---|
| 2105 | subdir_civ2_new=[subdir_civ1 '_' num2str(vers)]; |
---|
| 2106 | end |
---|
[112] | 2107 | break |
---|
| 2108 | end |
---|
| 2109 | filecell.nc.civ2(ifile,j)={filename}; |
---|
| 2110 | end |
---|
| 2111 | if detect% if a netcdf file already exists |
---|
| 2112 | break |
---|
| 2113 | end |
---|
| 2114 | end |
---|
[128] | 2115 | %create the new subdir_civ2_new |
---|
[371] | 2116 | if ~exist(fullfile(RootPath,subdir_civ2_new),'dir') |
---|
| 2117 | [xx,m2]=mkdir(fullfile(RootPath,subdir_civ2_new)); |
---|
[623] | 2118 | if isunix |
---|
[371] | 2119 | [xx,msg2] = fileattrib(fullfile(RootPath,subdir_civ2_new),'+w','g'); %yield writing access (+w) to user group (g) |
---|
[112] | 2120 | if ~isequal(m2,'') |
---|
[437] | 2121 | errormsg=['cannot create ' fullfile(RootPath,subdir_civ2_new) ': ' m2]; |
---|
[122] | 2122 | return |
---|
[112] | 2123 | end |
---|
[623] | 2124 | end |
---|
[112] | 2125 | end |
---|
| 2126 | if strcmp(compare,'stereo PIV')%check second nc series |
---|
| 2127 | for ifile=1:nbfield |
---|
| 2128 | for j=1:nbslice |
---|
[371] | 2129 | filename=fullfile_uvmat(RootPath,subdir_civ2_new,RootFile_A,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[112] | 2130 | detect=exist(filename,'file')==2; |
---|
[2] | 2131 | if detect% if a netcdf file already exists |
---|
[127] | 2132 | indstr=regexp(subdir_civ2,'\D'); |
---|
| 2133 | if indstr(end)<length(subdir_civ2) %subdir_civ1 ends by a number |
---|
| 2134 | vers=str2double(subdir_civ2(indstr(end)+1:end))+1; |
---|
| 2135 | subdir_civ2_new=[subdir_civ2(1:indstr(end)) num2str(vers)]; |
---|
| 2136 | else |
---|
| 2137 | vers=vers+1; |
---|
| 2138 | subdir_civ2_new=[subdir_civ1 '_' num2str(vers)]; |
---|
| 2139 | end |
---|
[112] | 2140 | break |
---|
[2] | 2141 | end |
---|
[112] | 2142 | filecell.ncA.civ2(ifile,j)={filename}; |
---|
| 2143 | end |
---|
| 2144 | if detect% if a netcdf file already exists |
---|
| 2145 | break |
---|
| 2146 | end |
---|
| 2147 | end |
---|
[122] | 2148 | subdir_civ2=subdir_civ2_new; |
---|
[363] | 2149 | %create the new SubdirCiv1 |
---|
[371] | 2150 | if ~exist(fullfile(RootPath,subdir_civ2_new),'dir') |
---|
[127] | 2151 | [xx,m2]=mkdir(subdir_civ2_new); |
---|
[623] | 2152 | if isunix |
---|
[371] | 2153 | [xx,msg2] = fileattrib(fullfile(RootPath,subdir_civ2_new),'+w','g'); %yield writing access (+w) to user group (g) |
---|
[112] | 2154 | if ~isequal(m2,'') |
---|
[437] | 2155 | errormsg= ['cannot create ' fullfile(RootPath,subdir_civ2_new) ': ' m2];%error message for directory creation |
---|
[122] | 2156 | return |
---|
[112] | 2157 | end |
---|
[623] | 2158 | end |
---|
[112] | 2159 | end |
---|
| 2160 | end |
---|
| 2161 | end |
---|
[127] | 2162 | subdir_civ2=subdir_civ2_new; |
---|
[2] | 2163 | end |
---|
| 2164 | |
---|
[282] | 2165 | %%%%%%%%%%%%% if checkciv2 results are obtained or used %%%%%%%%%%%%% |
---|
| 2166 | if checkbox(4)==1 || checkbox(5)==1 || checkbox(6)==1 %civ2 |
---|
| 2167 | %check source netcdf file of checkciv1 estimates |
---|
| 2168 | if checkbox(1)==0; %no civ1 performed |
---|
[2] | 2169 | for ifile=1:nbfield |
---|
| 2170 | for j=1:nbslice |
---|
[371] | 2171 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile_nc,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j));% |
---|
[2] | 2172 | filecell.nc.civ1(ifile,j)={filename};% name of the civ1 file |
---|
| 2173 | if ~exist(filename,'file') |
---|
[437] | 2174 | errormsg=['input file ' filename ' not found']; |
---|
[2] | 2175 | return |
---|
| 2176 | end |
---|
| 2177 | if ~testdiff % civ2 or patch2 are written in the same file as civ1 |
---|
[282] | 2178 | if checkbox(4)==0 ; %check the existence of civ2 if it is not calculated |
---|
[248] | 2179 | Data=nc2struct(filename,'ListGlobalAttribute','CivStage','civ2'); |
---|
[364] | 2180 | if isfield(Data,'Txt') |
---|
[437] | 2181 | errormsg=Data.Txt; |
---|
[364] | 2182 | return |
---|
| 2183 | elseif ~isempty(Data.CivStage)% case of new civ files |
---|
| 2184 | if Data.CivStage<4 %test for civ files |
---|
[437] | 2185 | errormsg=['no civ2 data in ' filename]; |
---|
[2] | 2186 | return |
---|
[364] | 2187 | end |
---|
[248] | 2188 | elseif isempty(Data.civ2)||isequal(Data.civ2,0) |
---|
[437] | 2189 | errormsg=['no civ2 data in ' filename]; |
---|
[248] | 2190 | return |
---|
[112] | 2191 | end |
---|
[282] | 2192 | elseif checkbox(3)==0; %check the existence of patch if it is not calculated |
---|
[275] | 2193 | Data=nc2struct(filename,'ListGlobalAttribute','CivStage','patch'); |
---|
[437] | 2194 | if isfield(Data,'Txt') |
---|
| 2195 | errormsg=Data.Txt; |
---|
| 2196 | return |
---|
| 2197 | elseif ~isempty(Data.CivStage) |
---|
[248] | 2198 | if Data.CivStage<3 %test for civ files |
---|
[437] | 2199 | errormsg=['no patch data in ' filename]; |
---|
[248] | 2200 | return |
---|
| 2201 | end |
---|
| 2202 | elseif isempty(Data.patch)||isequal(Data.patch,0) |
---|
[437] | 2203 | errormsg=['no patch data in ' filename]; |
---|
[2] | 2204 | return |
---|
| 2205 | end |
---|
[112] | 2206 | end |
---|
[2] | 2207 | end |
---|
| 2208 | end |
---|
| 2209 | end |
---|
| 2210 | if strcmp(compare,'stereo PIV') |
---|
| 2211 | for ifile=1:nbfield |
---|
| 2212 | for j=1:nbslice |
---|
[371] | 2213 | filename=fullfile_uvmat(RootPath,subdir_civ2,RootFile_A,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[2] | 2214 | filecell.ncA.civ2(ifile,j)={filename}; |
---|
| 2215 | if ~exist(filename,'file') |
---|
[437] | 2216 | errormsg=['input file ' filename ' not found']; |
---|
[2] | 2217 | return |
---|
| 2218 | end |
---|
| 2219 | end |
---|
| 2220 | end |
---|
| 2221 | end |
---|
| 2222 | end |
---|
[112] | 2223 | |
---|
| 2224 | detect=1; |
---|
[282] | 2225 | % while detect==1%creates a new subdir if the netcdf files already contain checkciv2 data |
---|
[112] | 2226 | for ifile=1:nbfield |
---|
| 2227 | for j=1:nbslice |
---|
[371] | 2228 | filename=fullfile_uvmat(RootPath,subdir_civ2,RootFile_nc,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[112] | 2229 | detect=exist(filename,'file')==2; |
---|
| 2230 | filecell.nc.civ2(ifile,j)={filename}; |
---|
[2] | 2231 | end |
---|
[112] | 2232 | end |
---|
[282] | 2233 | %get first image names for checkciv2 |
---|
[371] | 2234 | if checkbox(1)==1 && isequal(i1_civ1,i1_civ2) && isequal(j1_civ1,j1_civ2) |
---|
[2] | 2235 | filecell.ima1.civ2=filecell.ima1.civ1; |
---|
[282] | 2236 | elseif checkbox(4)==1 |
---|
[2] | 2237 | for ifile=1:nbfield |
---|
| 2238 | for j=1:nbslice |
---|
[494] | 2239 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima1,ext_ima,NomType_ima1,i1_civ2(ifile),[],j1_civ2(j)); |
---|
[2] | 2240 | idetect_2(j)=exist(filename,'file')==2; |
---|
| 2241 | filecell.ima1.civ2(ifile,j)={filename};%first image |
---|
| 2242 | end |
---|
[112] | 2243 | [idetectmin,indexj]=min(idetect_2); |
---|
[2] | 2244 | if idetectmin==0, |
---|
[437] | 2245 | errormsg=['input image ' filecell.ima1.civ2{ifile,indexj} ' not found']; |
---|
[112] | 2246 | return |
---|
[2] | 2247 | end |
---|
| 2248 | end |
---|
| 2249 | end |
---|
| 2250 | |
---|
[282] | 2251 | %get second image names for checkciv2 |
---|
[371] | 2252 | if checkbox(1)==1 && isequal(i2_civ1,i2_civ2) && isequal(j2_civ1,j2_civ2) |
---|
[2] | 2253 | filecell.ima2.civ2=filecell.ima2.civ1; |
---|
[282] | 2254 | elseif checkbox(4)==1 |
---|
[2] | 2255 | for ifile=1:nbfield |
---|
| 2256 | for j=1:nbslice |
---|
[494] | 2257 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima2,ext_ima,NomType_ima2,i2_civ2(ifile),[],j2_civ2(j)); |
---|
[2] | 2258 | idetect_3(j)=exist(filename,'file')==2; |
---|
| 2259 | filecell.ima2.civ2(ifile,j)={filename};%first image |
---|
| 2260 | end |
---|
[112] | 2261 | [idetectmin,indexj]=min(idetect_3); |
---|
[2] | 2262 | if idetectmin==0, |
---|
[437] | 2263 | errormsg=['input image ' filecell.ima2.civ2{ifile,indexj} ' not found']; |
---|
[112] | 2264 | return |
---|
[2] | 2265 | end |
---|
| 2266 | end |
---|
| 2267 | end |
---|
| 2268 | end |
---|
[282] | 2269 | if (checkbox(5) || checkbox(6)) && ~checkbox(4) % need to read an existing netcdf civ2 file |
---|
[2] | 2270 | if ~testdiff |
---|
| 2271 | filecell.nc.civ2=filecell.nc.civ1;% file already checked |
---|
[112] | 2272 | else % check the civ2 files |
---|
[2] | 2273 | for ifile=1:nbfield |
---|
| 2274 | for j=1:nbslice |
---|
[371] | 2275 | filename=fullfile_uvmat(RootPath,subdir_civ2,RootFile_nc,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[2] | 2276 | filecell.nc.civ2(ifile,j)={filename}; |
---|
| 2277 | if ~exist(filename,'file') |
---|
[437] | 2278 | errormsg=['input file ' filename ' not found']; |
---|
[2] | 2279 | return |
---|
| 2280 | else |
---|
[248] | 2281 | Data=nc2struct(filename,'ListGlobalAttribute','CivStage','civ2'); |
---|
| 2282 | if ~isempty(Data.CivStage) && Data.CivStage<4 %test for civ files |
---|
[437] | 2283 | errormsg=['no civ2 data in ' filename]; |
---|
[248] | 2284 | return |
---|
| 2285 | elseif isempty(Data.civ2)||isequal(Data.civ2,0) |
---|
[437] | 2286 | errormsg=['no civ2 data in ' filename]; |
---|
[2] | 2287 | return |
---|
| 2288 | end |
---|
| 2289 | end |
---|
| 2290 | end |
---|
| 2291 | end |
---|
| 2292 | end |
---|
| 2293 | end |
---|
| 2294 | |
---|
| 2295 | %%%%%%%%%%%%% if stereo fields are calculated by PATCH %%%%%%%%%%%%% |
---|
| 2296 | if strcmp(compare,'stereo PIV') |
---|
[282] | 2297 | if checkbox(3) && isequal(get(handles.test_stereo1,'Value'),1) |
---|
[2] | 2298 | for ifile=1:nbfield |
---|
| 2299 | for j=1:nbslice |
---|
[371] | 2300 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile_AB,'.nc',NomType_nc,i1_civ1(ifile),i2_civ1(ifile),j1_civ1(j),j2_civ1(j)); |
---|
[2] | 2301 | filecell.st(ifile,j)={filename}; |
---|
| 2302 | end |
---|
| 2303 | end |
---|
| 2304 | end |
---|
[282] | 2305 | if checkbox(6) && isequal(get(handles.CheckStereo,'Value'),1) |
---|
[2] | 2306 | for ifile=1:nbfield |
---|
| 2307 | for j=1:nbslice |
---|
[371] | 2308 | filename=fullfile_uvmat(RootPath,subdir_civ2,RootFile_AB,'.nc',NomType_nc,i1_civ2(ifile),i2_civ2(ifile),j1_civ2(j),j2_civ2(j)); |
---|
[2] | 2309 | filecell.st(ifile,j)={filename}; |
---|
| 2310 | end |
---|
| 2311 | end |
---|
[112] | 2312 | end |
---|
[2] | 2313 | end |
---|
[494] | 2314 | set(handles.SubdirCiv1,'String',regexprep(subdir_civ1,['^' SubDirImages],''));%suppress the root SuddirImages;);%update the edit box |
---|
| 2315 | set(handles.SubdirCiv2,'String',regexprep(subdir_civ2,['^' SubDirImages],''));%update the edit box |
---|
[2] | 2316 | |
---|
[388] | 2317 | % For CivX COPY IMAGES TO THE FORMAT .png IF NEEDED |
---|
| 2318 | if strcmp(CivMode,'CivX') |
---|
[494] | 2319 | NomType_imanew1=NomType_ima1; |
---|
| 2320 | NomType_imanew2=NomType_ima2; |
---|
[388] | 2321 | if ~isequal(ext_ima,'.png') |
---|
[494] | 2322 | if checkbox(1) %if civ1 is performed |
---|
| 2323 | [FileType,FileInfo,MovieObject]=get_file_type(filecell.ima1.civ1{1}); |
---|
| 2324 | check_j=0; |
---|
| 2325 | if strcmp(FileType,'mmreader')||strcmp(FileType,'VideoReader')||strcmp(FileType,'multimage') |
---|
| 2326 | if max(j1_civ1)>1 |
---|
| 2327 | check_j=1; |
---|
| 2328 | NomType_imanew1='_1_1'; |
---|
[388] | 2329 | else |
---|
[494] | 2330 | NomType_imanew1='_1'; |
---|
[388] | 2331 | end |
---|
| 2332 | end |
---|
| 2333 | h = waitbar(0,'copy images to the .png format for civ1');% display a wait bar |
---|
| 2334 | for ifile=1:nbfield |
---|
| 2335 | waitbar(ifile/nbfield); |
---|
| 2336 | for j=1:nbslice |
---|
[494] | 2337 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima1,'.png',NomType_imanew1,i1_civ1(ifile),[],j1_civ1(j)); |
---|
[388] | 2338 | if ~exist(filename,'file') |
---|
[494] | 2339 | if check_j |
---|
| 2340 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,j1_civ1(j)); |
---|
| 2341 | else |
---|
| 2342 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,i1_civ1(ifile)); |
---|
| 2343 | end |
---|
| 2344 | imwrite(uint16(sum(A,3)),filename,'BitDepth',16); |
---|
[388] | 2345 | end |
---|
| 2346 | filecell.ima1.civ1(ifile,j)={filename}; |
---|
[494] | 2347 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima2,'.png',NomType_imanew1,i2_civ1(ifile),[],j2_civ1(j)); |
---|
[388] | 2348 | if ~exist(filename,'file') |
---|
[494] | 2349 | if check_j |
---|
| 2350 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,j2_civ1(j)); |
---|
| 2351 | else |
---|
| 2352 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,i2_civ1(ifile)); |
---|
| 2353 | end |
---|
| 2354 | imwrite(uint16(sum(A,3)),filename,'BitDepth',16); |
---|
[388] | 2355 | end |
---|
| 2356 | filecell.ima2.civ1(ifile,j)={filename}; |
---|
[112] | 2357 | end |
---|
[2] | 2358 | end |
---|
[388] | 2359 | close(h) |
---|
[2] | 2360 | end |
---|
[388] | 2361 | if checkbox(4) %if civ2 is performed |
---|
[494] | 2362 | [FileType,FileInfo,MovieObject]=get_file_type(filecell.ima1.civ2{1}); |
---|
| 2363 | check_j=0; |
---|
| 2364 | if strcmp(FileType,'mmreader')||strcmp(FileType,'VideoReader')||strcmp(FileType,'multimage') |
---|
| 2365 | if max(j1_civ2)>1 |
---|
| 2366 | check_j=1; |
---|
| 2367 | NomType_imanew1='_1_1'; |
---|
| 2368 | else |
---|
| 2369 | NomType_imanew1='_1'; |
---|
| 2370 | end |
---|
| 2371 | end |
---|
[388] | 2372 | h = waitbar(0,'copy images to the .png format for civ2');% display a wait bar |
---|
| 2373 | for ifile=1:nbfield |
---|
| 2374 | waitbar(ifile/nbfield); |
---|
| 2375 | for j=1:nbslice |
---|
[494] | 2376 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima1,'.png',NomType_imanew1,i1_civ2(ifile),[],j1_civ2(j)); |
---|
[388] | 2377 | if ~exist(filename,'file') |
---|
[494] | 2378 | if check_j |
---|
| 2379 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,j1_civ2(j)); |
---|
| 2380 | else |
---|
| 2381 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,i1_civ2(ifile)); |
---|
| 2382 | end |
---|
| 2383 | imwrite(uint16(sum(A,3)),filename,'BitDepth',16); |
---|
[388] | 2384 | end |
---|
| 2385 | filecell.ima1.civ2(ifile,j)={filename}; |
---|
[494] | 2386 | filename=fullfile_uvmat(RootPath,SubDirImages,RootFile_ima2,'.png',NomType_imanew2,i2_civ2(ifile),[],j2_civ2(j)); |
---|
[388] | 2387 | if ~exist(filename,'file') |
---|
[494] | 2388 | if check_j |
---|
| 2389 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,j1_civ2(j)); |
---|
| 2390 | else |
---|
| 2391 | A=read_image(filecell.ima1.civ1{ifile,j},FileType,MovieObject,i1_civ2(ifile)); |
---|
| 2392 | end |
---|
| 2393 | imwrite(uint16(sum(A,3)),filename,'BitDepth',16); |
---|
[388] | 2394 | end |
---|
| 2395 | filecell.ima2.civ2(ifile,j)={filename}; |
---|
[112] | 2396 | end |
---|
[2] | 2397 | end |
---|
[388] | 2398 | close(h); |
---|
[2] | 2399 | end |
---|
| 2400 | end |
---|
| 2401 | end |
---|
| 2402 | |
---|
[12] | 2403 | %------------------------------------------------------------------------ |
---|
[227] | 2404 | % --- determine the list of index pairs of processing file |
---|
[494] | 2405 | function [i1_civ1,i2_civ1,j1_civ1,j2_civ1,i1_civ2,i2_civ2,j1_civ2,j2_civ2]=... |
---|
[227] | 2406 | find_pair_indices(handles,ref_i,ref_j,mode) |
---|
| 2407 | %------------------------------------------------------------------------ |
---|
| 2408 | |
---|
[282] | 2409 | list_civ1=get(handles.ListPairCiv1,'String'); |
---|
| 2410 | index_civ1=get(handles.ListPairCiv1,'Value'); |
---|
[227] | 2411 | str_civ1=list_civ1{index_civ1};%string defining the image pairs for civ1 |
---|
| 2412 | if isempty(str_civ1)||isequal(str_civ1,'') |
---|
| 2413 | msgbox_uvmat('ERROR','no image pair selected for civ1') |
---|
| 2414 | return |
---|
| 2415 | end |
---|
[282] | 2416 | list_civ2=get(handles.ListPairCiv2,'String'); |
---|
| 2417 | index_civ2=get(handles.ListPairCiv2,'Value'); |
---|
[227] | 2418 | if index_civ2>length(list_civ2) |
---|
| 2419 | list_civ2=list_civ1; |
---|
| 2420 | index_civ2=index_civ1; |
---|
| 2421 | end |
---|
| 2422 | str_civ2=list_civ2{index_civ2};%string defining the image pairs for civ2 |
---|
| 2423 | |
---|
| 2424 | if isequal (mode,'series(Di)') |
---|
| 2425 | lastfield=str2double(get(handles.nb_field,'String')); |
---|
[494] | 2426 | i1_civ1=ref_i-floor(index_civ1/2)*ones(size(ref_i));% set of first image numbers |
---|
| 2427 | i2_civ1=ref_i+ceil(index_civ1/2)*ones(size(ref_i)); |
---|
| 2428 | j1_civ1=ref_j; |
---|
| 2429 | j2_civ1=ref_j; |
---|
| 2430 | i1_civ2=ref_i-floor(index_civ2/2)*ones(size(ref_i)); |
---|
| 2431 | i2_civ2=ref_i+ceil(index_civ2/2)*ones(size(ref_i)); |
---|
| 2432 | j1_civ2=ref_j; |
---|
| 2433 | j2_civ2=ref_j; |
---|
[227] | 2434 | |
---|
| 2435 | % adjust the first and last field number |
---|
| 2436 | lastfield=str2double(get(handles.nb_field,'String')); |
---|
| 2437 | if isnan(lastfield) |
---|
[494] | 2438 | indsel=find((i1_civ1 >= 1)&(i1_civ2 >= 1)); |
---|
[227] | 2439 | else |
---|
[494] | 2440 | indsel=find((i2_civ1 <= lastfield)&(i2_civ2 <= lastfield)&(i1_civ1 >= 1)&(i1_civ2 >= 1)); |
---|
[227] | 2441 | end |
---|
| 2442 | if length(indsel)>=1 |
---|
| 2443 | firstind=indsel(1); |
---|
| 2444 | lastind=indsel(end); |
---|
| 2445 | set(handles.first_i,'String',num2str(ref_i(firstind)))%update the display of first and last fields |
---|
| 2446 | set(handles.last_i,'String',num2str(ref_i(lastind))) |
---|
| 2447 | ref_i=ref_i(indsel); |
---|
[494] | 2448 | i1_civ1=i1_civ1(indsel); |
---|
| 2449 | i1_civ2=i1_civ2(indsel); |
---|
| 2450 | i2_civ1=i2_civ1(indsel); |
---|
| 2451 | i2_civ2=i2_civ2(indsel); |
---|
[227] | 2452 | end |
---|
| 2453 | elseif isequal (mode,'series(Dj)') |
---|
| 2454 | lastfield_j=str2double(get(handles.nb_field2,'String')); |
---|
[494] | 2455 | i1_civ1=ref_i;% set of first image numbers |
---|
| 2456 | i2_civ1=ref_i; |
---|
| 2457 | j1_civ1=ref_j-floor(index_civ1/2)*ones(size(ref_j)); |
---|
| 2458 | j2_civ1=ref_j+ceil(index_civ1/2)*ones(size(ref_j)); |
---|
| 2459 | i1_civ2=ref_i; |
---|
| 2460 | i2_civ2=ref_i; |
---|
| 2461 | j1_civ2=ref_j-floor(index_civ2/2)*ones(size(ref_j)); |
---|
| 2462 | j2_civ2=ref_j+ceil(index_civ2/2)*ones(size(ref_j)); |
---|
[227] | 2463 | % adjust the first and last field number |
---|
| 2464 | if isnan(lastfield_j) |
---|
[494] | 2465 | indsel=find((j1_civ1 >= 1)&(j1_civ2 >= 1)); |
---|
[227] | 2466 | else |
---|
[494] | 2467 | indsel=find((j2_civ1 <= lastfield_j)&(j2_civ2 <= lastfield_j)&(j1_civ1 >= 1)&(j1_civ2 >= 1)); |
---|
[227] | 2468 | end |
---|
| 2469 | if length(indsel)>=1 |
---|
| 2470 | firstind=indsel(1); |
---|
| 2471 | lastind=indsel(end); |
---|
| 2472 | set(handles.first_j,'String',num2str(ref_j(firstind)))%update the display of first and last fields |
---|
| 2473 | set(handles.last_j,'String',num2str(ref_j(lastind))) |
---|
| 2474 | ref_j=ref_j(indsel); |
---|
[494] | 2475 | j1_civ1=j1_civ1(indsel); |
---|
| 2476 | j2_civ1=j2_civ1(indsel); |
---|
| 2477 | j1_civ2=j1_civ2(indsel); |
---|
| 2478 | j2_civ2=j2_civ2(indsel); |
---|
[227] | 2479 | end |
---|
| 2480 | elseif isequal(mode,'pair j1-j2') %case of bursts (png_old or png_2D) |
---|
[282] | 2481 | displ_num=get(handles.ListPairCiv1,'UserData'); |
---|
[494] | 2482 | i1_civ1=ref_i; |
---|
| 2483 | i2_civ1=ref_i; |
---|
| 2484 | j1_civ1=displ_num(1,index_civ1); |
---|
| 2485 | j2_civ1=displ_num(2,index_civ1); |
---|
| 2486 | i1_civ2=ref_i; |
---|
| 2487 | i2_civ2=ref_i; |
---|
| 2488 | j1_civ2=displ_num(1,index_civ2); |
---|
| 2489 | j2_civ2=displ_num(2,index_civ2); |
---|
[227] | 2490 | elseif isequal(mode,'displacement') |
---|
[494] | 2491 | i1_civ1=ref_i; |
---|
| 2492 | i2_civ1=ref_i; |
---|
| 2493 | j1_civ1=ref_j; |
---|
| 2494 | j2_civ1=ref_j; |
---|
| 2495 | i1_civ2=ref_i; |
---|
| 2496 | i2_civ2=ref_i; |
---|
| 2497 | j1_civ2=ref_j; |
---|
| 2498 | j2_civ2=ref_j; |
---|
[227] | 2499 | end |
---|
| 2500 | |
---|
| 2501 | %------------------------------------------------------------------------ |
---|
[309] | 2502 | % --- Executes on button press in ListCompareMode. |
---|
| 2503 | function ListCompareMode_Callback(hObject, eventdata, handles) |
---|
[12] | 2504 | %------------------------------------------------------------------------ |
---|
[371] | 2505 | ListCompareMode=get(handles.ListCompareMode,'String'); |
---|
| 2506 | option=ListCompareMode{get(handles.ListCompareMode,'Value')}; |
---|
[591] | 2507 | switch option |
---|
| 2508 | case 'PIV' |
---|
| 2509 | set(handles.RootFile_1,'Visible','Off'); |
---|
| 2510 | set(handles.sub_txt,'Visible','off') |
---|
| 2511 | set(handles.RootFile_1,'String',[]); |
---|
| 2512 | mode_store=get(handles.ListCompareMode,'UserData'); |
---|
| 2513 | set(handles.ListPairMode,'Visible','on') |
---|
| 2514 | set(handles.ListPairMode,'Value',1) |
---|
| 2515 | set(handles.ListPairMode,'String',mode_store) |
---|
| 2516 | set(handles.CheckStereo,'Value',0) |
---|
| 2517 | case 'PIV volume' |
---|
| 2518 | set(handles.RootFile_1,'Visible','Off'); |
---|
| 2519 | set(handles.sub_txt,'Visible','off') |
---|
| 2520 | set(handles.RootFile_1,'String',[]); |
---|
| 2521 | mode_store=get(handles.ListCompareMode,'UserData'); |
---|
| 2522 | set(handles.ListPairMode,'Visible','on') |
---|
| 2523 | set(handles.ListPairMode,'Value',1) |
---|
| 2524 | set(handles.ListPairMode,'String',{'series(Di)'}) |
---|
| 2525 | set(handles.CheckStereo,'Value',0) |
---|
| 2526 | set(handles.last_j,'String',get(handles.nb_field2,'String'))% select the whole volume scan by default |
---|
| 2527 | set(handles.incr_i,'String',num2str(2))% |
---|
| 2528 | otherwise |
---|
| 2529 | filebase=get(handles.RootPath,'String'); |
---|
| 2530 | set(handles.sub_txt,'Visible','on') |
---|
| 2531 | set(handles.RootFile_1,'Visible','On');%mkes the second file input window visible |
---|
| 2532 | mode_store=get(handles.ListPairMode,'String');%get the present 'mode' |
---|
| 2533 | set(handles.ListCompareMode,'UserData',mode_store);%store the mode display |
---|
| 2534 | set(handles.ListPairMode,'Visible','off') |
---|
| 2535 | |
---|
| 2536 | %% open an image file with the browser |
---|
| 2537 | ind_opening=1;%default |
---|
| 2538 | browse.incr_pair=[0 0]; %default |
---|
| 2539 | oldfile=get(handles.RootPath,'String'); |
---|
| 2540 | menu={'*.png;*.jpg;*.tif;*.avi;*.AVI;', ' (*.png,*.jpg ,.tif, *.avi,*.AVI)'; |
---|
| 2541 | '*.png','.png image files'; ... |
---|
| 2542 | '*.jpg',' jpeg image files'; ... |
---|
| 2543 | '*.tif','.tif image files'; ... |
---|
| 2544 | '*.avi;*.AVI','.avi movie files'; ... |
---|
| 2545 | '*.*', 'All Files (*.*)'}; |
---|
| 2546 | if strcmp(option,'displacement') |
---|
| 2547 | comment='Pick the reference file for displacements'; |
---|
| 2548 | else |
---|
| 2549 | comment='Pick a file of the second series'; |
---|
[371] | 2550 | end |
---|
[591] | 2551 | [FileName, PathName] = uigetfile( menu, comment,oldfile); |
---|
| 2552 | fileinput=[PathName FileName];%complete file name |
---|
| 2553 | sizf=size(fileinput); |
---|
| 2554 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string |
---|
| 2555 | [path,name,ext]=fileparts(fileinput); |
---|
| 2556 | [path1]=fileparts(filebase); |
---|
| 2557 | if isunix |
---|
| 2558 | [status,path]=system(['readlink ' path]); |
---|
| 2559 | [status,path1]=system(['readlink ' path1]);% look for the true path in case of symbolic paths |
---|
| 2560 | end |
---|
| 2561 | if ~strcmp(path1,path) |
---|
| 2562 | msgbox_uvmat('ERROR','The second image or series must be in the same directory as the first one') |
---|
| 2563 | return |
---|
| 2564 | end |
---|
| 2565 | if strcmp(option,'displacement') |
---|
| 2566 | [tild,RootFile_1]=fileparts(name); |
---|
| 2567 | else |
---|
| 2568 | [FilePath,FileName,Ext]=fileparts(fileinput); |
---|
| 2569 | % detect the file type, get the movie object if relevant, and look for the corresponding file series: |
---|
| 2570 | % the root name and indices may be corrected by including the first index i1 if a corresponding xml file exists |
---|
[599] | 2571 | [RootPath,SubDir,RootFile_1,i1_series,i2_series,j1_series,j2_series,nom_type_1,FileType,FileInfo,Object,i1,i2,j1,j2]=find_file_series(FilePath,[FileName Ext]); |
---|
[591] | 2572 | |
---|
| 2573 | %check image nom type |
---|
| 2574 | if ~strcmp(nom_type_1,get(handles.NomType,'String')) |
---|
| 2575 | msgbox_uvmat('ERROR','The second image series must have the same indexing type as the first one, or use the option displacement for a fixed image') |
---|
| 2576 | return |
---|
| 2577 | end |
---|
| 2578 | end |
---|
| 2579 | %check image extension |
---|
| 2580 | if ~strcmp(ext,get(handles.ImaExt,'String')) |
---|
| 2581 | msgbox_uvmat('ERROR','The second image series must have the same extension name as the first one') |
---|
| 2582 | return |
---|
| 2583 | end |
---|
| 2584 | set(handles.RootFile_1,'String',RootFile_1); |
---|
| 2585 | |
---|
[309] | 2586 | end |
---|
[319] | 2587 | ListPairMode_Callback(hObject, eventdata, handles) |
---|
[2] | 2588 | |
---|
[309] | 2589 | |
---|
| 2590 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 2591 | % Callbacks in the uipanel Pair Indices |
---|
| 2592 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[12] | 2593 | %------------------------------------------------------------------------ |
---|
[309] | 2594 | % --- Executes on button press in ListPairMode. |
---|
| 2595 | function ListPairMode_Callback(hObject, eventdata, handles) |
---|
[12] | 2596 | %------------------------------------------------------------------------ |
---|
[309] | 2597 | compare_list=get(handles.ListCompareMode,'String'); |
---|
| 2598 | val=get(handles.ListCompareMode,'Value'); |
---|
| 2599 | compare=compare_list{val}; |
---|
[360] | 2600 | if strcmp(compare,'displacement')||strcmp(compare,'shift') |
---|
[309] | 2601 | mode='displacement'; |
---|
| 2602 | else |
---|
| 2603 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2604 | if ischar(mode_list) |
---|
| 2605 | mode_list={mode_list}; |
---|
| 2606 | end |
---|
| 2607 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2608 | mode=mode_list{mode_value}; |
---|
| 2609 | end |
---|
| 2610 | displ_num=[];%default |
---|
| 2611 | ref_i=str2double(get(handles.ref_i,'String')); |
---|
| 2612 | % last_i=str2num(get(handles.last_i,'String')); |
---|
| 2613 | time=get(handles.ImaDoc,'UserData'); %get the set of times |
---|
[343] | 2614 | TimeUnit=get(handles.TimeUnit,'String'); |
---|
| 2615 | checkframe=strcmp(TimeUnit,'frame'); |
---|
[309] | 2616 | siztime=size(time); |
---|
[343] | 2617 | nbfield=siztime(1)-1; |
---|
| 2618 | nbfield2=siztime(2)-1; |
---|
[309] | 2619 | indchosen=1; %%first pair selected by default |
---|
| 2620 | %displ_num used to define the indices of the civ pairs |
---|
| 2621 | % in mode 'pair j1-j2', j1 and j2 are the file indices, else the indices |
---|
| 2622 | % are relative to the reference indices ref_i and ref_j respectively. |
---|
| 2623 | if isequal(mode,'pair j1-j2')%| isequal(mode,'st_pair j1-j2') |
---|
| 2624 | dt=1; |
---|
| 2625 | displ=''; |
---|
| 2626 | index=0; |
---|
| 2627 | numlist_a=[]; |
---|
| 2628 | numlist_B=[]; |
---|
| 2629 | %get all the time intervals in bursts |
---|
| 2630 | displ_dt=1;%default |
---|
| 2631 | nbfield2=min(nbfield2,10);%limitate the number of pairs to 10x10 |
---|
| 2632 | for numod_a=1:nbfield2-1 %nbfield2 always >=2 for 'pair j1-j2' mode |
---|
| 2633 | for numod_b=(numod_a+1):nbfield2 |
---|
| 2634 | index=index+1; |
---|
| 2635 | numlist_a(index)=numod_a; |
---|
| 2636 | numlist_b(index)=numod_b; |
---|
[343] | 2637 | if size(time,2)>1 && ~checkframe |
---|
| 2638 | dt(numod_a,numod_b)=time(ref_i+1,numod_b+1)-time(ref_i+1,numod_a+1);%first time interval dt |
---|
[309] | 2639 | displ_dt(index)=dt(numod_a,numod_b); |
---|
| 2640 | else |
---|
| 2641 | displ_dt(index)=1; |
---|
| 2642 | end |
---|
| 2643 | end |
---|
| 2644 | end |
---|
| 2645 | [dtsort,indsort]=sort(displ_dt); |
---|
| 2646 | if ~isempty(numlist_a) |
---|
| 2647 | displ_num(1,:)=numlist_a(indsort); |
---|
| 2648 | displ_num(2,:)=numlist_b(indsort); |
---|
| 2649 | end |
---|
| 2650 | displ_num(3,:)=0; |
---|
| 2651 | displ_num(4,:)=0; |
---|
[360] | 2652 | enable_j(handles, 'off') |
---|
[309] | 2653 | elseif isequal(mode,'series(Dj)') %| isequal(mode,'st_series(Dj)') |
---|
| 2654 | index=1:200; |
---|
| 2655 | displ_num(1,index)=-floor(index/2); |
---|
| 2656 | displ_num(2,index)=ceil(index/2); |
---|
| 2657 | displ_num(3:4,index)=zeros(2,200); |
---|
[360] | 2658 | enable_j(handles, 'on') |
---|
[309] | 2659 | elseif isequal(mode,'series(Di)') %| isequal(mode,'st_series(Di)') |
---|
| 2660 | index=1:200; |
---|
| 2661 | displ_num(1:2,index)=zeros(2,200); |
---|
| 2662 | displ_num(3,index)=-floor(index/2); |
---|
| 2663 | displ_num(4,index)=ceil(index/2); |
---|
[360] | 2664 | enable_i(handles, 'on') |
---|
[309] | 2665 | if nbfield2 > 1 |
---|
[360] | 2666 | enable_j(handles, 'on') |
---|
[309] | 2667 | else |
---|
[360] | 2668 | enable_j(handles, 'off') |
---|
[309] | 2669 | end |
---|
| 2670 | elseif isequal(mode,'displacement')%the pairs have the same indices |
---|
| 2671 | displ_num(1,1)=0; |
---|
| 2672 | displ_num(2,1)=0; |
---|
| 2673 | displ_num(3,1)=0; |
---|
| 2674 | displ_num(4,1)=0; |
---|
[319] | 2675 | if nbfield > 1 || nbfield==0 |
---|
[360] | 2676 | enable_i(handles, 'on') |
---|
[309] | 2677 | else |
---|
[360] | 2678 | enable_j(handles, 'off') |
---|
[309] | 2679 | end |
---|
| 2680 | if nbfield2 > 1 |
---|
[360] | 2681 | enable_j(handles, 'on') |
---|
[309] | 2682 | else |
---|
[360] | 2683 | enable_j(handles, 'off') |
---|
[309] | 2684 | end |
---|
| 2685 | end |
---|
| 2686 | set(handles.ListPairCiv1,'UserData',displ_num); |
---|
[362] | 2687 | errormsg=find_netcpair_civ( handles,1); |
---|
| 2688 | if ~isempty(errormsg) |
---|
| 2689 | msgbox_uvmat('ERROR',errormsg) |
---|
| 2690 | end |
---|
[360] | 2691 | % find_netcpair_civ2(handles) |
---|
[2] | 2692 | |
---|
[360] | 2693 | function enable_i(handles, state) |
---|
| 2694 | set(handles.itext,'Visible',state) |
---|
| 2695 | set(handles.first_i,'Visible',state) |
---|
| 2696 | set(handles.last_i,'Visible',state) |
---|
| 2697 | set(handles.incr_i,'Visible',state) |
---|
| 2698 | set(handles.nb_field,'Visible',state) |
---|
| 2699 | set(handles.ref_i,'Visible',state) |
---|
| 2700 | |
---|
| 2701 | function enable_j(handles, state) |
---|
| 2702 | set(handles.jtext,'Visible',state) |
---|
| 2703 | set(handles.first_j,'Visible',state) |
---|
| 2704 | set(handles.last_j,'Visible',state) |
---|
| 2705 | set(handles.incr_j,'Visible',state) |
---|
| 2706 | set(handles.nb_field2,'Visible',state) |
---|
| 2707 | set(handles.ref_j,'Visible',state) |
---|
| 2708 | |
---|
| 2709 | |
---|
[12] | 2710 | %------------------------------------------------------------------------ |
---|
[309] | 2711 | % --- Executes on selection change in ListPairCiv1. |
---|
| 2712 | function ListPairCiv1_Callback(hObject, eventdata, handles) |
---|
[12] | 2713 | %------------------------------------------------------------------------ |
---|
[309] | 2714 | %reproduce by default the chosen pair in the checkciv2 menu |
---|
| 2715 | list_pair=get(handles.ListPairCiv1,'String');%get the menu of image pairs |
---|
| 2716 | index_pair=get(handles.ListPairCiv1,'Value'); |
---|
| 2717 | displ_num=get(handles.ListPairCiv1,'UserData'); |
---|
| 2718 | list_pair2=get(handles.ListPairCiv2,'String');%get the menu of image pairs |
---|
| 2719 | if index_pair<=length(list_pair2) |
---|
| 2720 | set(handles.ListPairCiv2,'Value',index_pair); |
---|
| 2721 | end |
---|
[2] | 2722 | |
---|
[309] | 2723 | %update first_i and last_i according to the chosen image pairs |
---|
| 2724 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2725 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2726 | mode=mode_list{mode_value}; |
---|
| 2727 | if isequal(mode,'series(Di)') |
---|
| 2728 | first_i=str2double(get(handles.first_i,'String')); |
---|
| 2729 | last_i=str2double(get(handles.last_i,'String')); |
---|
| 2730 | incr_i=str2double(get(handles.incr_i,'String')); |
---|
[582] | 2731 | num_i=first_i:incr_i:last_i; |
---|
[309] | 2732 | lastfield=str2double(get(handles.nb_field,'String')); |
---|
| 2733 | if ~isnan(lastfield) |
---|
[582] | 2734 | test_find=(num_i-floor(index_pair/2)*ones(size(num_i))>0)& ... |
---|
| 2735 | (num_i+ceil(index_pair/2)*ones(size(num_i))<=lastfield); |
---|
| 2736 | num_i=num_i(test_find); |
---|
[309] | 2737 | end |
---|
[582] | 2738 | set(handles.first_i,'String',num2str(num_i(1))); |
---|
| 2739 | set(handles.last_i,'String',num2str(num_i(end))); |
---|
[309] | 2740 | elseif isequal(mode,'series(Dj)') |
---|
| 2741 | first_j=str2double(get(handles.first_j,'String')); |
---|
| 2742 | last_j=str2double(get(handles.last_j,'String')); |
---|
| 2743 | incr_j=str2double(get(handles.incr_j,'String')); |
---|
| 2744 | num_j=first_j:incr_j:last_j; |
---|
| 2745 | lastfield2=str2double(get(handles.nb_field2,'String')); |
---|
| 2746 | if ~isnan(lastfield2) |
---|
| 2747 | test_find=(num_j-floor(index_pair/2)*ones(size(num_j))>0)& ... |
---|
| 2748 | (num_j+ceil(index_pair/2)*ones(size(num_j))<=lastfield2); |
---|
[582] | 2749 | num_j=num_j(test_find); |
---|
[309] | 2750 | end |
---|
[582] | 2751 | set(handles.first_j,'String',num2str(num_j(1))); |
---|
| 2752 | set(handles.last_j,'String',num2str(num_j(end))); |
---|
[309] | 2753 | end |
---|
| 2754 | |
---|
[12] | 2755 | %------------------------------------------------------------------------ |
---|
[309] | 2756 | % --- Executes on selection change in ListPairCiv2. |
---|
| 2757 | function ListPairCiv2_Callback(hObject, eventdata, handles) |
---|
[12] | 2758 | %------------------------------------------------------------------------ |
---|
[309] | 2759 | index_pair=get(handles.ListPairCiv2,'Value');%get the selected position index in the menu |
---|
[2] | 2760 | |
---|
[309] | 2761 | %update first_i and last_i according to the chosen image pairs |
---|
| 2762 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2763 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2764 | mode=mode_list{mode_value}; |
---|
| 2765 | if isequal(mode,'series(Di)') |
---|
| 2766 | first_i=str2double(get(handles.first_i,'String')); |
---|
| 2767 | last_i=str2double(get(handles.last_i,'String')); |
---|
| 2768 | incr_i=str2double(get(handles.incr_i,'String')); |
---|
[582] | 2769 | num_i=first_i:incr_i:last_i; |
---|
[309] | 2770 | lastfield=str2double(get(handles.nb_field,'String')); |
---|
| 2771 | if ~isnan(lastfield) |
---|
[582] | 2772 | test_find=(num_i-floor(index_pair/2)*ones(size(num_i))>0)& ... |
---|
| 2773 | (num_i+ceil(index_pair/2)*ones(size(num_i))<=lastfield); |
---|
| 2774 | num_i=num_i(test_find); |
---|
[309] | 2775 | end |
---|
[582] | 2776 | set(handles.first_i,'String',num2str(num_i(1))); |
---|
| 2777 | set(handles.last_i,'String',num2str(num_i(end))); |
---|
[309] | 2778 | elseif isequal(mode,'series(Dj)') |
---|
| 2779 | first_j=str2double(get(handles.first_j,'String')); |
---|
| 2780 | last_j=str2double(get(handles.last_j,'String')); |
---|
| 2781 | incr_j=str2double(get(handles.incr_j,'String')); |
---|
| 2782 | num_j=first_j:incr_j:last_j; |
---|
| 2783 | lastfield2=str2double(get(handles.nb_field2,'String')); |
---|
| 2784 | if ~isnan(lastfield2) |
---|
| 2785 | test_find=(num_j-floor(index_pair/2)*ones(size(num_j))>0)& ... |
---|
| 2786 | (num_j+ceil(index_pair/2)*ones(size(num_j))<=lastfield2); |
---|
[582] | 2787 | num_j=num_j(test_find); |
---|
[309] | 2788 | end |
---|
[582] | 2789 | set(handles.first_j,'String',num2str(num_j(1))); |
---|
| 2790 | set(handles.last_j,'String',num2str(num_j(end))); |
---|
[309] | 2791 | end |
---|
| 2792 | |
---|
[12] | 2793 | %------------------------------------------------------------------------ |
---|
[309] | 2794 | function ref_i_Callback(hObject, eventdata, handles) |
---|
[12] | 2795 | %------------------------------------------------------------------------ |
---|
[309] | 2796 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2797 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2798 | mode=mode_list{mode_value}; |
---|
[362] | 2799 | errormsg=find_netcpair_civ(handles,1);% update the menu of pairs depending on the available netcdf files |
---|
[309] | 2800 | if isequal(mode,'series(Di)') || ...% we do patch2 only |
---|
| 2801 | (get(handles.CheckCiv2,'Value')==0 && get(handles.CheckCiv1,'Value')==0 && get(handles.CheckFix1,'Value')==0 && get(handles.CheckPatch1,'Value')==0) |
---|
[362] | 2802 | errormsg=find_netcpair_civ( handles,2); |
---|
[309] | 2803 | end |
---|
[362] | 2804 | if ~isempty(errormsg) |
---|
| 2805 | msgbox_uvmat('ERROR',errormsg) |
---|
| 2806 | end |
---|
[2] | 2807 | |
---|
[12] | 2808 | %------------------------------------------------------------------------ |
---|
[309] | 2809 | function ref_j_Callback(hObject, eventdata, handles) |
---|
[12] | 2810 | %------------------------------------------------------------------------ |
---|
[309] | 2811 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2812 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2813 | mode=mode_list{mode_value}; |
---|
| 2814 | if isequal(get(handles.CheckCiv1,'Value'),0)|| isequal(mode,'series(Dj)') |
---|
[362] | 2815 | errormsg=find_netcpair_civ(handles,1);% update the menu of pairs depending on the available netcdf files |
---|
[309] | 2816 | end |
---|
| 2817 | if isequal(mode,'series(Dj)') || ... |
---|
| 2818 | (get(handles.CheckCiv2,'Value')==0 && get(handles.CheckCiv1,'Value')==0 && get(handles.CheckFix1,'Value')==0 && get(handles.CheckPatch1,'Value')==0) |
---|
[362] | 2819 | errormsg=find_netcpair_civ(handles,2); |
---|
[309] | 2820 | end |
---|
[362] | 2821 | if ~isempty(errormsg) |
---|
| 2822 | msgbox_uvmat('ERROR',errormsg) |
---|
| 2823 | end |
---|
[360] | 2824 | |
---|
[12] | 2825 | %------------------------------------------------------------------------ |
---|
[309] | 2826 | % determine the menu for checkciv1 pairs depending on existing netcdf file at the middle of |
---|
| 2827 | % the field series set by first_i, incr, last_i |
---|
[389] | 2828 | % index=1: look for pairs for civ1 |
---|
| 2829 | % index=2: look for pairs for civ2 |
---|
[362] | 2830 | function errormsg=find_netcpair_civ(handles,index) |
---|
[12] | 2831 | %------------------------------------------------------------------------ |
---|
[362] | 2832 | set(gcf,'Pointer','watch')% set the mouse pointer to 'watch' (clock) |
---|
| 2833 | |
---|
| 2834 | %% initialisation |
---|
| 2835 | errormsg=''; |
---|
[371] | 2836 | browse=get(handles.RootPath,'UserData'); |
---|
[309] | 2837 | compare_list=get(handles.ListCompareMode,'String'); |
---|
| 2838 | val=get(handles.ListCompareMode,'Value'); |
---|
| 2839 | compare=compare_list{val}; |
---|
[371] | 2840 | if strcmp(compare,'displacement')||strcmp(compare,'shift') |
---|
[309] | 2841 | mode='displacement'; |
---|
| 2842 | else |
---|
| 2843 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 2844 | mode_value=get(handles.ListPairMode,'Value'); |
---|
| 2845 | if isempty(mode_list) |
---|
| 2846 | return |
---|
| 2847 | end |
---|
| 2848 | mode=mode_list{mode_value}; |
---|
| 2849 | end |
---|
[360] | 2850 | nom_type_ima=get(handles.NomType,'String'); |
---|
[289] | 2851 | |
---|
[360] | 2852 | %% determine nom_type_nc, nomenclature type of the .nc files: |
---|
[389] | 2853 | [nom_type_nc]=nomtype2pair(nom_type_ima,mode); |
---|
[309] | 2854 | |
---|
[362] | 2855 | %% reads .nc subdirectoy and image numbers from the interface |
---|
[494] | 2856 | SubDirImages=get(handles.SubDirImages,'String'); |
---|
[493] | 2857 | subdir_civ1=[SubDirImages get(handles.SubdirCiv1,'String')];%subdirectory subdir_civ1 for the netcdf data |
---|
| 2858 | subdir_civ2=[SubDirImages get(handles.SubdirCiv2,'String')];%subdirectory subdir_civ2 for the netcdf data |
---|
[309] | 2859 | ref_i=str2double(get(handles.ref_i,'String')); |
---|
[494] | 2860 | ref_j=[]; |
---|
[309] | 2861 | if isequal(mode,'pair j1-j2')%|isequal(mode,'st_pair j1-j2') |
---|
| 2862 | ref_j=0; |
---|
[494] | 2863 | elseif strcmp(get(handles.ref_j,'Visible'),'on') |
---|
[309] | 2864 | ref_j=str2double(get(handles.ref_j,'String')); |
---|
| 2865 | end |
---|
[494] | 2866 | if isempty(ref_j) |
---|
| 2867 | ref_j=1; |
---|
| 2868 | end |
---|
[309] | 2869 | time=get(handles.ImaDoc,'UserData');%get the set of times |
---|
[343] | 2870 | TimeUnit=get(handles.TimeUnit,'String'); |
---|
| 2871 | checkframe=strcmp(TimeUnit,'frame'); |
---|
[309] | 2872 | displ_num=get(handles.ListPairCiv1,'UserData'); |
---|
| 2873 | |
---|
[362] | 2874 | %% eliminate the first pairs inconsistent with the position |
---|
[309] | 2875 | if isempty(displ_num) |
---|
| 2876 | nbpair=0; |
---|
| 2877 | else |
---|
| 2878 | nbpair=length(displ_num(1,:));%nbre of displayed pairs |
---|
| 2879 | if isequal(mode,'series(Di)') %| isequal(mode,'st_series(Di)') |
---|
| 2880 | nbpair=min(2*ref_i-1,nbpair);%limit the number of pairs with positive first index |
---|
| 2881 | elseif isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)') |
---|
| 2882 | nbpair=min(2*ref_j-1,nbpair);%limit the number of pairs with positive first index |
---|
| 2883 | end |
---|
| 2884 | end |
---|
| 2885 | nbpair=min(200,nbpair);%limit the number of displayed pairs to 200 |
---|
| 2886 | |
---|
[362] | 2887 | %% case with no Civ1 operation, netcdf files need to exist for reading |
---|
[309] | 2888 | displ_pair={''}; |
---|
| 2889 | select=ones(size(1:nbpair));%flag for displayed pairs =1 for display |
---|
| 2890 | testpair=0; |
---|
[371] | 2891 | RootPath=get(handles.RootPath,'String'); |
---|
| 2892 | RootFile=get(handles.RootFile,'String'); |
---|
[360] | 2893 | if index==1 % case civ1 |
---|
[362] | 2894 | if ~get(handles.CheckCiv1,'Value') % |
---|
[371] | 2895 | if ~exist(fullfile(RootPath,subdir_civ1),'dir') |
---|
[362] | 2896 | errormsg=['no civ1 file available: subdirectory ' subdir_civ1 ' does not exist']; |
---|
| 2897 | set(handles.ListPairCiv1,'String',{}); |
---|
| 2898 | return |
---|
| 2899 | end |
---|
| 2900 | for ipair=1:nbpair |
---|
| 2901 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile,'.nc',nom_type_nc,... |
---|
| 2902 | ref_i+displ_num(3,ipair),ref_i+displ_num(4,ipair),ref_j+displ_num(1,ipair),ref_j+displ_num(2,ipair)); |
---|
| 2903 | select(ipair)=exist(filename,'file')==2;% put flag to 0 if the file does not exist |
---|
| 2904 | end |
---|
| 2905 | % case of no displayed pair |
---|
| 2906 | if isequal(select,zeros(size(1:nbpair))) |
---|
| 2907 | if isfield(browse,'incr_pair') && ~isequal(browse.incr_pair,[0 0]) |
---|
| 2908 | num_i1=ref_i-floor(browse.incr_pair(1)/2); |
---|
| 2909 | num_i2=ref_i+ceil(browse.incr_pair(1)/2); |
---|
| 2910 | num_j1=ref_j-floor(browse.incr_pair(2)/2); |
---|
| 2911 | num_j2=ref_j+ceil(browse.incr_pair(2)/2); |
---|
| 2912 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile,'.nc',nom_type_nc,num_i1,num_i2,num_j1,num_j2); |
---|
| 2913 | select(1)=exist(filename,'file')==2; |
---|
| 2914 | testpair=1; |
---|
[309] | 2915 | else |
---|
[494] | 2916 | % if isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)') |
---|
| 2917 | % errormsg=['no civ1 file available for the selected reference index j=' num2str(ref_j) ' and subdirectory ' subdir_civ1]; |
---|
| 2918 | % else |
---|
[389] | 2919 | errormsg=['no civ1 file available for the selected reference indices (i,j)= ' num2str(ref_i) ', ' num2str(ref_j) ' and subdirectory ' subdir_civ1]; |
---|
[494] | 2920 | % end |
---|
[362] | 2921 | set(handles.ListPairCiv1,'String',{''}); |
---|
| 2922 | %COMPLETER CAS STEREO |
---|
| 2923 | return |
---|
[309] | 2924 | end |
---|
| 2925 | end |
---|
| 2926 | end |
---|
[362] | 2927 | else %case civ2 alone |
---|
| 2928 | if ~get(handles.CheckCiv2,'Value') && ~get(handles.CheckCiv1,'Value') && ~get(handles.CheckFix1,'Value') && ~get(handles.CheckPatch1,'Value') |
---|
[438] | 2929 | if ~exist(fullfile(RootPath,subdir_civ2),'dir') |
---|
| 2930 | msgbox_uvmat('ERROR',['no civ2 file available: subdirectory ' subdir_civ2 ' does not exist']) |
---|
[360] | 2931 | set(handles.ListPairCiv2,'Value',1); |
---|
| 2932 | set(handles.ListPairCiv2,'String',{''}); |
---|
| 2933 | return |
---|
| 2934 | end |
---|
[362] | 2935 | for ipair=1:nbpair |
---|
| 2936 | filename=fullfile_uvmat(RootPath,subdir_civ1,RootFile,'.nc',nom_type_nc,... |
---|
| 2937 | ref_i+displ_num(3,ipair),ref_i+displ_num(4,ipair),ref_j+displ_num(1,ipair),ref_j+displ_num(2,ipair)); |
---|
| 2938 | select(ipair)=exist(filename,'file')==2; |
---|
| 2939 | end |
---|
| 2940 | if isequal(select,zeros(size(1:nbpair))) |
---|
| 2941 | if isfield(browse,'incr_pair') |
---|
| 2942 | num_i1=ref_i-floor(browse.incr_pair(1)/2); |
---|
| 2943 | num_i2=ref_i+floor((browse.incr_pair(1)+1)/2); |
---|
| 2944 | num_j1=ref_j-floor(browse.incr_pair(2)/2); |
---|
| 2945 | num_j2=ref_j+floor((browse.incr_pair(2)+1)/2); |
---|
| 2946 | filename=fullfile_uvmat(RootPath,subdir_civ2,RootFile,'.nc',nom_type_nc,num_i1,num_i2,num_j1,num_j2); |
---|
| 2947 | select(1)=exist(filename,'file')==2; |
---|
| 2948 | else |
---|
| 2949 | if isequal(mode,'series(Dj)')% | isequal(mode,'st_series(Dj)') |
---|
| 2950 | errormsg=['no civ2 file available for the selected reference index j=' num2str(ref_j) ' and subdirectory ' subdir_civ2]; |
---|
| 2951 | else |
---|
| 2952 | errormsg=['no civ2 file available for the selected reference index i=' num2str(ref_i) ' and subdirectory ' subdir_civ2]; |
---|
| 2953 | end |
---|
| 2954 | set(handles.ListPairCiv2,'Value',1); |
---|
| 2955 | set(handles.ListPairCiv2,'String',{''}); |
---|
| 2956 | return |
---|
| 2957 | end |
---|
| 2958 | end |
---|
[360] | 2959 | end |
---|
| 2960 | end |
---|
[309] | 2961 | |
---|
| 2962 | %% determine the menu display in .ListPairCiv1 |
---|
| 2963 | % the menu depends on the mode defined in ListPairMode_callback through the array displ_num: |
---|
| 2964 | % displ_num(1,:)=indices j1 |
---|
| 2965 | % displ_num(2,:)=indices j2 |
---|
| 2966 | % displ_num(3,:)=indices i1 |
---|
| 2967 | % displ_num(4,:)=indices i2 |
---|
| 2968 | % in mode 'pair j1-j2', j1 and j2 are the file indices, else the indices |
---|
| 2969 | % are relative to the reference indices ref_i and ref_j respectively. |
---|
| 2970 | if isequal(mode,'series(Di)') |
---|
| 2971 | if testpair |
---|
| 2972 | displ_pair{1}=['Di= ' num2str(-floor(browse.incr_pair(1)/2)) '|' num2str(ceil(browse.incr_pair(1)/2))]; |
---|
| 2973 | else |
---|
| 2974 | for ipair=1:nbpair |
---|
| 2975 | if select(ipair) |
---|
| 2976 | displ_pair{ipair}=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2))]; |
---|
[389] | 2977 | %if ~checkframe && size(time,1)>=ref_i+1+displ_num(4,ipair) && size(time,2)>=ref_j+1+displ_num(2,ipair)&&displ_num(2,ipair)>=1 &&displ_num(1,ipair)>=1 |
---|
| 2978 | % dt=time(ref_i+1+displ_num(4,ipair),ref_j+1+displ_num(2,ipair))-time(ref_i+1+displ_num(3,ipair),ref_j+1+displ_num(1,ipair));%time interval dt |
---|
| 2979 | if ~checkframe && size(time,1)>=ref_i+1+ceil(ipair/2) && size(time,2)>=ref_j+1&& ref_i-floor(ipair/2)>=0 && ref_j>=0 |
---|
| 2980 | dt=time(ref_i+1+ceil(ipair/2),ref_j+1)-time(ref_i+1-floor(ipair/2),ref_j+1);%time interval dtref_j+1 |
---|
[343] | 2981 | else |
---|
| 2982 | dt=1; |
---|
[309] | 2983 | end |
---|
[343] | 2984 | displ_pair{ipair}=[displ_pair{ipair} ' :dt= ' num2str(dt*1000)]; |
---|
[309] | 2985 | else |
---|
| 2986 | displ_pair{ipair}='...'; %pair not displayed in the menu |
---|
| 2987 | end |
---|
| 2988 | end |
---|
| 2989 | end |
---|
| 2990 | elseif isequal(mode,'series(Dj)') |
---|
| 2991 | if testpair |
---|
| 2992 | displ_pair{1}=['Dj= ' num2str(-floor(browse.incr_pair(1)/2)) '|' num2str(ceil(browse.incr_pair(1)/2))]; |
---|
| 2993 | else |
---|
| 2994 | for ipair=1:nbpair |
---|
| 2995 | if select(ipair) |
---|
| 2996 | displ_pair{ipair}=['Dj= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2))]; |
---|
[343] | 2997 | if ~checkframe && size(time,1)>=ref_i+1+displ_num(4,ipair) && size(time,2)>=ref_j+1+displ_num(2,ipair) |
---|
| 2998 | dt=time(ref_i+1+displ_num(4,ipair),ref_j+1+displ_num(2,ipair))-time(ref_i+1+displ_num(3,ipair),ref_j+1+displ_num(1,ipair));%time interval dt |
---|
[309] | 2999 | displ_pair{ipair}=[displ_pair{ipair} ' :dt= ' num2str(dt*1000)]; |
---|
| 3000 | end |
---|
| 3001 | else |
---|
| 3002 | displ_pair{ipair}='...'; %pair not displayed in the menu |
---|
| 3003 | end |
---|
| 3004 | end |
---|
| 3005 | end |
---|
| 3006 | elseif isequal(mode,'pair j1-j2')%case of pairs |
---|
| 3007 | for ipair=1:nbpair |
---|
| 3008 | if select(ipair) |
---|
[343] | 3009 | if ~checkframe && size(time,2)>1 |
---|
| 3010 | dt=time(ref_i+1+displ_num(4,ipair),displ_num(2,ipair)+1)-time(ref_i+1+displ_num(3,ipair),displ_num(1,ipair)+1);%time interval dt |
---|
| 3011 | else % time set by default to i index |
---|
| 3012 | dt=1; |
---|
| 3013 | end |
---|
[309] | 3014 | displ_pair{ipair}=['j= ' num2stra(displ_num(1,ipair),nom_type_ima) '-' num2stra(displ_num(2,ipair),nom_type_ima) ... |
---|
| 3015 | ' :dt= ' num2str(dt*1000)]; |
---|
| 3016 | else |
---|
| 3017 | displ_pair{ipair}='...'; %pair not displayed in the menu |
---|
| 3018 | end |
---|
| 3019 | end |
---|
| 3020 | elseif isequal(mode,'displacement') |
---|
| 3021 | displ_pair={'Di=Dj=0'}; |
---|
| 3022 | end |
---|
[362] | 3023 | if index==1 |
---|
[309] | 3024 | set(handles.ListPairCiv1,'String',displ_pair'); |
---|
[362] | 3025 | end |
---|
[309] | 3026 | |
---|
| 3027 | %% determine the default selection in the pair menu |
---|
| 3028 | ichoice=find(select,1);% index of selected pair |
---|
| 3029 | if (isempty(ichoice) || ichoice < 1); ichoice=1; end; |
---|
| 3030 | initial=get(handles.ListPairCiv1,'Value');%initial choice of pair |
---|
| 3031 | if initial>nbpair || (numel(select)>=initial && ~isequal(select(initial),1)) |
---|
| 3032 | set(handles.ListPairCiv1,'Value',ichoice);% first valid pair proposed by default in the menu |
---|
| 3033 | end |
---|
| 3034 | initial=get(handles.ListPairCiv2,'Value'); |
---|
| 3035 | if initial>length(displ_pair')%|~isequal(select(initial),1) |
---|
| 3036 | if ichoice <= length(displ_pair') |
---|
| 3037 | set(handles.ListPairCiv2,'Value',ichoice);% same pair proposed by default for civ2 |
---|
| 3038 | else |
---|
| 3039 | set(handles.ListPairCiv2,'Value',1);% same pair proposed by default for civ2 |
---|
| 3040 | end |
---|
| 3041 | end |
---|
| 3042 | set(handles.ListPairCiv2,'String',displ_pair'); |
---|
| 3043 | set(gcf,'Pointer','arrow') |
---|
| 3044 | |
---|
[415] | 3045 | |
---|
[315] | 3046 | |
---|
[415] | 3047 | % %------------------------------------------------------------------------ |
---|
| 3048 | % % call 'view_field.fig' to display the field selected in the list of 'status' |
---|
| 3049 | % function open_view_field(hObject, eventdata) |
---|
| 3050 | % %------------------------------------------------------------------------ |
---|
| 3051 | % list=get(hObject,'String'); |
---|
| 3052 | % index=get(hObject,'Value'); |
---|
| 3053 | % rootroot=get(hObject,'UserData'); |
---|
| 3054 | % filename=list{index}; |
---|
| 3055 | % ind_dot=strfind(filename,'...'); |
---|
| 3056 | % filename=filename(1:ind_dot-1); |
---|
| 3057 | % filename=fullfile(rootroot,filename); |
---|
| 3058 | % delete(get(hObject,'parent'))%delete the display figure to stop the check process |
---|
| 3059 | % if exist(filename,'file')%visualise the vel field if it exists |
---|
| 3060 | % uvmat(filename) |
---|
| 3061 | % set(gcbo,'Value',1) |
---|
| 3062 | % end |
---|
[309] | 3063 | |
---|
| 3064 | |
---|
| 3065 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 3066 | % Callbacks in the uipanel Reference Indices |
---|
| 3067 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[12] | 3068 | %------------------------------------------------------------------------ |
---|
| 3069 | function first_i_Callback(hObject, eventdata, handles) |
---|
| 3070 | %------------------------------------------------------------------------ |
---|
[137] | 3071 | first_i=str2double(get(handles.first_i,'String')); |
---|
[12] | 3072 | set(handles.ref_i,'String', num2str(first_i))% reference index for pair dt = first index |
---|
| 3073 | ref_i_Callback(hObject, eventdata, handles)%refresh dispaly of dt for pairs (in case of non constant dt) |
---|
[2] | 3074 | |
---|
[12] | 3075 | %------------------------------------------------------------------------ |
---|
| 3076 | function first_j_Callback(hObject, eventdata, handles) |
---|
| 3077 | %------------------------------------------------------------------------ |
---|
| 3078 | first_j=str2num(get(handles.first_j,'String')); |
---|
| 3079 | set(handles.ref_j,'String', num2str(first_j))% reference index for pair dt = first index |
---|
| 3080 | ref_j_Callback(hObject, eventdata, handles)%refresh dispaly of dt for pairs (in case of non constant dt) |
---|
[2] | 3081 | |
---|
[309] | 3082 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 3083 | % Callbacks in the uipanel Civ1 |
---|
| 3084 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[12] | 3085 | %------------------------------------------------------------------------ |
---|
[437] | 3086 | % --- Executes on button press in SearchRange: determine the search range num_SearchBoxSize_1,num_SearchBoxSize_2 |
---|
[273] | 3087 | function SearchRange_Callback(hObject, eventdata, handles) |
---|
[12] | 3088 | %------------------------------------------------------------------------ |
---|
[2] | 3089 | %determine pair numbers |
---|
[415] | 3090 | if strcmp(get(handles.num_UMin,'Visible'),'off') |
---|
[273] | 3091 | set(handles.u_title,'Visible','on') |
---|
| 3092 | set(handles.v_title,'Visible','on') |
---|
[415] | 3093 | set(handles.num_UMin,'Visible','on') |
---|
| 3094 | set(handles.num_UMax,'Visible','on') |
---|
| 3095 | set(handles.num_VMin,'Visible','on') |
---|
| 3096 | set(handles.num_VMax,'Visible','on') |
---|
[273] | 3097 | set(handles.CoordUnit,'Visible','on') |
---|
| 3098 | set(handles.TimeUnit,'Visible','on') |
---|
| 3099 | set(handles.slash_title,'Visible','on') |
---|
| 3100 | set(handles.min_title,'Visible','on') |
---|
| 3101 | set(handles.max_title,'Visible','on') |
---|
| 3102 | set(handles.unit_title,'Visible','on') |
---|
| 3103 | else |
---|
| 3104 | get_search_range(hObject, eventdata, handles) |
---|
[2] | 3105 | end |
---|
| 3106 | |
---|
[12] | 3107 | %------------------------------------------------------------------------ |
---|
[437] | 3108 | % --- determine the search range num_SearchBoxSize_1,num_SearchBoxSize_2 and shift |
---|
[273] | 3109 | function get_search_range(hObject, eventdata, handles) |
---|
[415] | 3110 | %------------------------------------------------------------------------ |
---|
| 3111 | param_civ1=read_GUI(handles.Civ1); |
---|
| 3112 | umin=param_civ1.UMin; |
---|
| 3113 | umax=param_civ1.UMax; |
---|
| 3114 | vmin=param_civ1.VMin; |
---|
| 3115 | vmax=param_civ1.VMax; |
---|
[273] | 3116 | %switch min_title and max_title in case of error |
---|
| 3117 | if umax<=umin |
---|
| 3118 | umin_old=umin; |
---|
| 3119 | umin=umax; |
---|
| 3120 | umax=umin_old; |
---|
[415] | 3121 | set(handles.num_UMin,'String', num2str(umin)) |
---|
| 3122 | set(handles.num_UMax,'String', num2str(umax)) |
---|
[273] | 3123 | end |
---|
| 3124 | if vmax<=vmin |
---|
| 3125 | vmin_old=vmin; |
---|
| 3126 | vmin=vmax; |
---|
| 3127 | vmax=vmin_old; |
---|
[415] | 3128 | set(handles.num_VMin,'String', num2str(vmin)) |
---|
| 3129 | set(handles.num_VMax,'String', num2str(vmax)) |
---|
[273] | 3130 | end |
---|
[415] | 3131 | if ~(isempty(umin)||isempty(umax)||isempty(vmin)||isempty(vmax)) |
---|
[282] | 3132 | list_pair=get(handles.ListPairCiv1,'String');%get the menu of image pairs |
---|
| 3133 | index=get(handles.ListPairCiv1,'Value'); |
---|
[415] | 3134 | pair_string=list_pair{index}; |
---|
[273] | 3135 | time=get(handles.ImaDoc,'UserData'); %get the set of times |
---|
[415] | 3136 | pxcm=get(handles.SearchRange,'UserData'); |
---|
[282] | 3137 | mode_list=get(handles.ListPairMode,'String'); |
---|
| 3138 | mode_value=get(handles.ListPairMode,'Value'); |
---|
[415] | 3139 | mode=mode_list{mode_value}; |
---|
[273] | 3140 | if isequal (mode, 'series(Di)' ) |
---|
| 3141 | ref_i=str2double(get(handles.ref_i,'String')); |
---|
| 3142 | num1=ref_i-floor(index/2);% first image numbers |
---|
| 3143 | num2=ref_i+ceil(index/2); |
---|
| 3144 | num_a=1; |
---|
| 3145 | num_b=1; |
---|
| 3146 | elseif isequal (mode, 'series(Dj)') |
---|
| 3147 | num1=1; |
---|
| 3148 | num2=1; |
---|
| 3149 | ref_j=str2double(get(handles.ref_j,'String')); |
---|
| 3150 | num_a=ref_j-floor(index/2);% first image numbers |
---|
| 3151 | num_b=ref_j+ceil(index/2); |
---|
[415] | 3152 | elseif isequal(mode,'pair j1-j2') %case of bursts (png_old or png_2D) |
---|
[273] | 3153 | ref_i=str2double(get(handles.ref_i,'String')); |
---|
| 3154 | num1=ref_i; |
---|
| 3155 | num2=ref_i; |
---|
[415] | 3156 | r=regexp(pair_string,'(?<mode>(Di=)|(Dj=)) -*(?<num1>\d+)\|(?<num2>\d+)','names'); |
---|
| 3157 | if isempty(r) |
---|
| 3158 | r=regexp(pair_string,'(?<num1>\d+)(?<mode>-)(?<num2>\d+)','names'); |
---|
| 3159 | end |
---|
| 3160 | num_a=str2num(r.num1); |
---|
| 3161 | num_b=str2num(r.num2); |
---|
[273] | 3162 | end |
---|
[415] | 3163 | dt=time(num2+1,num_b+1)-time(num1+1,num_a+1); |
---|
[437] | 3164 | ibx=str2double(get(handles.num_CorrBoxSize_1,'String')); |
---|
| 3165 | iby=str2double(get(handles.num_CorrBoxSize_2,'String')); |
---|
[415] | 3166 | umin=dt*pxcm*umin; |
---|
| 3167 | umax=dt*pxcm*umax; |
---|
| 3168 | vmin=dt*pxcm*vmin; |
---|
| 3169 | vmax=dt*pxcm*vmax; |
---|
[273] | 3170 | shiftx=round((umin+umax)/2); |
---|
| 3171 | shifty=round((vmin+vmax)/2); |
---|
[415] | 3172 | isx=(umax+2-shiftx)*2+param_civ1.Bx; |
---|
[273] | 3173 | isx=2*ceil(isx/2)+1; |
---|
[415] | 3174 | isy=(vmax+2-shifty)*2+param_civ1.Bx; |
---|
[273] | 3175 | isy=2*ceil(isy/2)+1; |
---|
[437] | 3176 | set(handles.num_SearchBoxShift_1,'String',num2str(shiftx)); |
---|
| 3177 | set(handles.num_SearchBoxShift_2,'String',num2str(shifty)); |
---|
| 3178 | set(handles.num_SearchBoxSize_1,'String',num2str(isx)); |
---|
| 3179 | set(handles.num_SearchBoxSize_2,'String',num2str(isy)); |
---|
[273] | 3180 | end |
---|
| 3181 | |
---|
[315] | 3182 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 3183 | % Callbacks in the uipanel Fix1 |
---|
| 3184 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[12] | 3185 | %------------------------------------------------------------------------ |
---|
[282] | 3186 | % --- Executes on button press in CheckMask. |
---|
[2] | 3187 | function get_mask_fix1_Callback(hObject, eventdata, handles) |
---|
[12] | 3188 | %------------------------------------------------------------------------ |
---|
[282] | 3189 | maskval=get(handles.CheckMask,'Value'); |
---|
[2] | 3190 | if isequal(maskval,0) |
---|
[384] | 3191 | set(handles.Mask,'String','') |
---|
[2] | 3192 | else |
---|
[112] | 3193 | mask_displ='no mask'; %default |
---|
[371] | 3194 | filebase=get(handles.RootPath,'String'); |
---|
[112] | 3195 | [nbslice, flag_mask]=get_mask(filebase,handles); |
---|
| 3196 | if isequal(flag_mask,1) |
---|
| 3197 | mask_displ=[num2str(nbslice) 'mask']; |
---|
[282] | 3198 | elseif get(handles.ListCompareMode,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series |
---|
[371] | 3199 | filebase_a=get(handles.RootFile_1,'String'); |
---|
[2] | 3200 | [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles); |
---|
[229] | 3201 | if isequal(flag_mask_a,0) || ~isequal(nbslice_a,nbslice) |
---|
[2] | 3202 | mask_displ='no mask'; |
---|
| 3203 | end |
---|
[112] | 3204 | end |
---|
| 3205 | if isequal(mask_displ,'no mask') |
---|
| 3206 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
| 3207 | {'*.png', ' (*.png)'; |
---|
[12] | 3208 | '*.png', '.png files '; ... |
---|
| 3209 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3210 | 'Pick a mask file *.png',filebase); |
---|
[112] | 3211 | mask_displ=fullfile(PathName,FileName); |
---|
| 3212 | if ~exist(mask_displ,'file') |
---|
| 3213 | mask_displ='no mask'; |
---|
| 3214 | end |
---|
[12] | 3215 | end |
---|
[112] | 3216 | if isequal(mask_displ,'no mask') |
---|
[282] | 3217 | set(handles.CheckMask,'Value',0) |
---|
| 3218 | set(handles.CheckMask,'Value',0) |
---|
| 3219 | set(handles.CheckMask,'Value',0) |
---|
[112] | 3220 | else |
---|
[282] | 3221 | %set(handles.CheckMask,'Value',1) |
---|
| 3222 | set(handles.CheckMask,'Value',1) |
---|
[112] | 3223 | end |
---|
[384] | 3224 | set(handles.Mask,'String',mask_displ) |
---|
| 3225 | set(handles.Mask,'String',mask_displ) |
---|
| 3226 | set(handles.Mask,'String',mask_displ) |
---|
[12] | 3227 | end |
---|
| 3228 | |
---|
| 3229 | %------------------------------------------------------------------------ |
---|
[282] | 3230 | % --- Executes on button press in CheckMask: select box for mask option |
---|
[2] | 3231 | function get_mask_civ2_Callback(hObject, eventdata, handles) |
---|
[12] | 3232 | %------------------------------------------------------------------------ |
---|
[282] | 3233 | maskval=get(handles.CheckMask,'Value'); |
---|
[2] | 3234 | if isequal(maskval,0) |
---|
[384] | 3235 | set(handles.Mask,'String','') |
---|
[2] | 3236 | else |
---|
[112] | 3237 | mask_displ='no mask'; %default |
---|
[371] | 3238 | filebase=get(handles.RootPath,'String'); |
---|
[112] | 3239 | [nbslice, flag_mask]=get_mask(filebase,handles); |
---|
| 3240 | if isequal(flag_mask,1) |
---|
| 3241 | mask_displ=[num2str(nbslice) 'mask']; |
---|
[282] | 3242 | elseif get(handles.ListCompareMode,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series |
---|
[371] | 3243 | filebase_a=get(handles.RootFile_1,'String'); |
---|
[2] | 3244 | [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles); |
---|
[229] | 3245 | if isequal(flag_mask_a,0) || ~isequal(nbslice_a,nbslice) |
---|
[2] | 3246 | mask_displ='no mask'; |
---|
| 3247 | end |
---|
[112] | 3248 | end |
---|
| 3249 | if isequal(mask_displ,'no mask') |
---|
| 3250 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
| 3251 | {'*.png', ' (*.png)'; |
---|
[12] | 3252 | '*.png', '.png files '; ... |
---|
| 3253 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3254 | 'Pick a mask file *.png',filebase); |
---|
[112] | 3255 | mask_displ=fullfile(PathName,FileName); |
---|
| 3256 | if ~exist(mask_displ,'file') |
---|
| 3257 | mask_displ='no mask'; |
---|
| 3258 | end |
---|
[12] | 3259 | end |
---|
[112] | 3260 | if isequal(mask_displ,'no mask') |
---|
[282] | 3261 | set(handles.CheckMask,'Value',0) |
---|
| 3262 | set(handles.CheckMask,'Value',0) |
---|
[112] | 3263 | else |
---|
[282] | 3264 | set(handles.CheckMask,'Value',1) |
---|
[112] | 3265 | end |
---|
[384] | 3266 | set(handles.Mask,'String',mask_displ) |
---|
| 3267 | set(handles.Mask,'String',mask_displ) |
---|
[12] | 3268 | end |
---|
| 3269 | |
---|
| 3270 | %------------------------------------------------------------------------ |
---|
[282] | 3271 | % --- Executes on button press in CheckMask. |
---|
[2] | 3272 | function get_mask_fix2_Callback(hObject, eventdata, handles) |
---|
[12] | 3273 | %------------------------------------------------------------------------ |
---|
[282] | 3274 | maskval=get(handles.CheckMask,'Value'); |
---|
[2] | 3275 | if isequal(maskval,0) |
---|
[384] | 3276 | set(handles.Mask,'String','') |
---|
[2] | 3277 | else |
---|
[12] | 3278 | mask_displ='no mask'; %default |
---|
[371] | 3279 | filebase=get(handles.RootPath,'String'); |
---|
[12] | 3280 | [nbslice, flag_mask]=get_mask(filebase,handles); |
---|
| 3281 | if isequal(flag_mask,1) |
---|
[112] | 3282 | mask_displ=[num2str(nbslice) 'mask']; |
---|
[282] | 3283 | elseif get(handles.ListCompareMode,'Value')>1 & ~isequal(mask_displ,'no mask')% look for the second mask series |
---|
[371] | 3284 | filebase_a=get(handles.RootFile_1,'String'); |
---|
[112] | 3285 | [nbslice_a, flag_mask_a]=get_mask(filebase_a,handles); |
---|
[229] | 3286 | if isequal(flag_mask_a,0) || ~isequal(nbslice_a,nbslice) |
---|
[112] | 3287 | mask_displ='no mask'; |
---|
| 3288 | end |
---|
[12] | 3289 | end |
---|
| 3290 | if isequal(mask_displ,'no mask') |
---|
| 3291 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
[112] | 3292 | {'*.png', ' (*.png)'; |
---|
| 3293 | '*.png', '.png files '; ... |
---|
| 3294 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3295 | 'Pick a mask file *.png',filebase); |
---|
| 3296 | mask_displ=fullfile(PathName,FileName); |
---|
[12] | 3297 | if ~exist(mask_displ,'file') |
---|
[2] | 3298 | mask_displ='no mask'; |
---|
| 3299 | end |
---|
[12] | 3300 | end |
---|
| 3301 | if isequal(mask_displ,'no mask') |
---|
[282] | 3302 | set(handles.CheckMask,'Value',0) |
---|
[112] | 3303 | end |
---|
[384] | 3304 | set(handles.Mask,'String',mask_displ) |
---|
[2] | 3305 | end |
---|
| 3306 | |
---|
[12] | 3307 | %------------------------------------------------------------------------ |
---|
| 3308 | % --- function called to look for mask files |
---|
[2] | 3309 | function [nbslice, flag_mask]=get_mask(filebase,handles) |
---|
[12] | 3310 | %------------------------------------------------------------------------ |
---|
[112] | 3311 | %detect mask files, images with appropriate file base |
---|
[2] | 3312 | %[filebase '_' xx 'mask'], xx=nbslice |
---|
| 3313 | %flag_mask=1 indicates detection |
---|
| 3314 | |
---|
| 3315 | flag_mask=0;%default |
---|
| 3316 | nbslice=1; |
---|
| 3317 | |
---|
[363] | 3318 | % subdir=get(handles.SubdirCiv1,'String'); |
---|
[2] | 3319 | [Path,Name]=fileparts(filebase); |
---|
[12] | 3320 | if ~isdir(Path) |
---|
| 3321 | msgbox_uvmat('ERROR','no path for input files') |
---|
| 3322 | return |
---|
| 3323 | end |
---|
[272] | 3324 | % currentdir=pwd; |
---|
| 3325 | % cd(Path);%move in the dir of the root name filebase |
---|
| 3326 | maskfiles=dir(fullfile(Path,[Name '_*mask_*.png']));%look for mask files |
---|
| 3327 | % cd(currentdir);%come back to the current working directory |
---|
[12] | 3328 | if ~isempty(maskfiles) |
---|
[112] | 3329 | % msgbox_uvmat('ERROR','no mask available, to create it use Tools/Make mask in the upper menu bar of uvmat') |
---|
| 3330 | % else |
---|
[2] | 3331 | flag_mask=1; |
---|
| 3332 | maskname=maskfiles(1).name;% take the first mask file in the list |
---|
| 3333 | [Path2,Name,ext]=fileparts(maskname); |
---|
| 3334 | Namedouble=double(Name); |
---|
| 3335 | val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters |
---|
| 3336 | ind_mask=findstr('mask',Name); |
---|
| 3337 | i=ind_mask-1; |
---|
[137] | 3338 | while val(i)==0 && i>0 |
---|
[112] | 3339 | i=i-1; |
---|
[2] | 3340 | end |
---|
[137] | 3341 | nbslice=str2double(Name(i+1:ind_mask-1)); |
---|
| 3342 | if ~isnan(nbslice) && Name(i)=='_' |
---|
[112] | 3343 | flag_mask=1; |
---|
[2] | 3344 | else |
---|
[112] | 3345 | msgbox_uvmat('ERROR',['bad mask file ' Name ext ' found in ' Path2]) |
---|
| 3346 | return |
---|
| 3347 | nbslice=1; |
---|
[2] | 3348 | end |
---|
[112] | 3349 | end |
---|
[2] | 3350 | |
---|
[12] | 3351 | %------------------------------------------------------------------------ |
---|
| 3352 | % --- function called to look for grid files |
---|
[576] | 3353 | function [nbslice, flag_grid]=get_grid(filebase,handles) |
---|
[12] | 3354 | %------------------------------------------------------------------------ |
---|
[576] | 3355 | flag_grid=0;%default |
---|
[2] | 3356 | nbslice=1; |
---|
| 3357 | [Path,Name]=fileparts(filebase); |
---|
| 3358 | currentdir=pwd; |
---|
| 3359 | cd(Path);%move in the dir of the root name filebase |
---|
[576] | 3360 | gridfiles=dir([Name '_*grid_*.grid']);%look for grid files |
---|
[2] | 3361 | cd(currentdir);%come back to the current working directory |
---|
[576] | 3362 | if ~isempty(gridfiles) |
---|
| 3363 | flag_grid=1; |
---|
| 3364 | gridname=gridfiles(1).name;% take the first grid file in the list |
---|
| 3365 | [Path2,Name,ext]=fileparts(gridname); |
---|
[2] | 3366 | Namedouble=double(Name); |
---|
| 3367 | val=(48>Namedouble)|(Namedouble>57);% select the non-numerical characters |
---|
[576] | 3368 | ind_grid=findstr('grid',Name); |
---|
| 3369 | i=ind_grid-1; |
---|
[137] | 3370 | while val(i)==0 && i>0 |
---|
[112] | 3371 | i=i-1; |
---|
[2] | 3372 | end |
---|
[576] | 3373 | nbslice=str2double(Name(i+1:ind_grid-1)); |
---|
[137] | 3374 | if ~isnan(nbslice) && Name(i)=='_' |
---|
[576] | 3375 | flag_grid=1; |
---|
[2] | 3376 | else |
---|
[112] | 3377 | msgbox_uvmat('ERROR',['bad grid file ' Name ext ' found in ' Path2]) |
---|
| 3378 | return |
---|
| 3379 | nbslice=1; |
---|
[2] | 3380 | end |
---|
[12] | 3381 | end |
---|
[2] | 3382 | |
---|
[12] | 3383 | %------------------------------------------------------------------------ |
---|
| 3384 | % --- transform numbers to letters |
---|
[122] | 3385 | function str=num2stra(num,nom_type) |
---|
[12] | 3386 | %------------------------------------------------------------------------ |
---|
[122] | 3387 | if isempty(nom_type) |
---|
| 3388 | str=''; |
---|
| 3389 | elseif strcmp(nom_type(end),'a') |
---|
[2] | 3390 | str=char(96+num); |
---|
[122] | 3391 | elseif strcmp(nom_type(end),'A') |
---|
| 3392 | str=char(96+num); |
---|
| 3393 | elseif isempty(nom_type(2:end))%a single index |
---|
[2] | 3394 | str=''; |
---|
| 3395 | else |
---|
| 3396 | str=num2str(num); |
---|
| 3397 | end |
---|
[12] | 3398 | |
---|
[441] | 3399 | % %------------------------------------------------------------------------ |
---|
| 3400 | % % --- Executes on button press in ListSubdirCiv1. |
---|
| 3401 | % function ListSubdirCiv1_Callback(hObject, eventdata, handles) |
---|
| 3402 | % %------------------------------------------------------------------------ |
---|
| 3403 | % list_subdir_civ1=get(handles.ListSubdirCiv1,'String'); |
---|
| 3404 | % val=get(handles.ListSubdirCiv1,'Value'); |
---|
| 3405 | % SubDir=list_subdir_civ1{val}; |
---|
| 3406 | % if strcmp(SubDir,'new...') |
---|
| 3407 | % if get(handles.CheckCiv1,'Value') |
---|
| 3408 | % SubDir='CIV'; %default subdirectory |
---|
| 3409 | % else |
---|
| 3410 | % msgbox_uvmat('ERROR','select CheckCiv1 to perform a new Civ operation') |
---|
| 3411 | % return |
---|
| 3412 | % end |
---|
| 3413 | % end |
---|
| 3414 | % set(handles.SubdirCiv1,'String',SubDir); |
---|
| 3415 | % errormsg=find_netcpair_civ(handles,1); |
---|
| 3416 | % if ~isempty(errormsg) |
---|
| 3417 | % msgbox_uvmat('ERROR',errormsg) |
---|
| 3418 | % end |
---|
| 3419 | % |
---|
[12] | 3420 | %------------------------------------------------------------------------ |
---|
[441] | 3421 | % % --- Executes on button press in ListSubdirCiv2. |
---|
| 3422 | % function ListSubdirCiv2_Callback(hObject, eventdata, handles) |
---|
| 3423 | % %------------------------------------------------------------------------ |
---|
| 3424 | % list_subdir_civ2=get(handles.ListSubdirCiv2,'String'); |
---|
| 3425 | % val=get(handles.ListSubdirCiv2,'Value'); |
---|
| 3426 | % SubDir=list_subdir_civ2{val}; |
---|
| 3427 | % if strcmp(SubDir,'new...') |
---|
| 3428 | % if get(handles.CheckCiv2,'Value') |
---|
| 3429 | % SubDir='CIV'; %default subdirectory |
---|
| 3430 | % else |
---|
| 3431 | % msgbox_uvmat('ERROR','select CheckCiv2 to perform a new Civ operation') |
---|
| 3432 | % return |
---|
| 3433 | % end |
---|
| 3434 | % end |
---|
| 3435 | % set(handles.SubdirCiv2,'String',SubDir); |
---|
[2] | 3436 | |
---|
[12] | 3437 | %------------------------------------------------------------------------ |
---|
[282] | 3438 | % --- Executes on button press in CheckGrid. |
---|
| 3439 | function CheckGrid_Callback(hObject, eventdata, handles) |
---|
[12] | 3440 | %------------------------------------------------------------------------ |
---|
[276] | 3441 | value=get(hObject,'Value'); |
---|
[576] | 3442 | hparent=get(hObject,'parent');%handles of the parent panel |
---|
[276] | 3443 | hchildren=get(hparent,'children'); |
---|
[576] | 3444 | handle_txtbox=findobj(hchildren,'tag','Grid');% look for the grid name box in the same panel |
---|
[276] | 3445 | handle_dx=findobj(hchildren,'tag','num_Dx'); |
---|
| 3446 | handle_dy=findobj(hchildren,'tag','num_Dy'); |
---|
[315] | 3447 | handle_title_dx=findobj(hchildren,'tag','title_Dx'); |
---|
| 3448 | handle_title_dy=findobj(hchildren,'tag','title_Dy'); |
---|
[2] | 3449 | testgrid=0; |
---|
[276] | 3450 | filegrid=''; |
---|
[2] | 3451 | if value |
---|
[371] | 3452 | filebase=get(handles.RootPath,'String'); |
---|
[276] | 3453 | [nbslice, flag_grid]=get_grid(filebase,handles);% look for a grid with appropriate name |
---|
[2] | 3454 | if isequal(flag_grid,1) |
---|
[112] | 3455 | filegrid=[num2str(nbslice) 'grid']; |
---|
| 3456 | testgrid=1; |
---|
[276] | 3457 | else % browse for a grid |
---|
| 3458 | filegrid=get(hObject,'UserData');%look for previous grid name stored as UserData |
---|
| 3459 | if exist(filegrid,'file') |
---|
| 3460 | filebase=filegrid; |
---|
| 3461 | end |
---|
[576] | 3462 | [FileName, PathName] = uigetfile( ... |
---|
[112] | 3463 | {'*.grid', ' (*.grid)'; |
---|
| 3464 | '*.grid', '.grid files '; ... |
---|
| 3465 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3466 | 'Pick a file',filebase); |
---|
[2] | 3467 | filegrid=fullfile(PathName,FileName); |
---|
[276] | 3468 | set(hObject,'UserData',filegrid);%store for future use |
---|
[2] | 3469 | if ~(isempty(FileName)||isempty(PathName)||isequal(FileName,0)||~exist(filegrid,'file')) |
---|
| 3470 | testgrid=1; |
---|
| 3471 | end |
---|
[112] | 3472 | end |
---|
[2] | 3473 | end |
---|
| 3474 | if testgrid |
---|
[276] | 3475 | set(handle_dx,'Visible','off'); |
---|
| 3476 | set(handle_dy,'Visible','off'); |
---|
[315] | 3477 | set(handle_title_dy,'Visible','off'); |
---|
| 3478 | set(handle_title_dx,'Visible','off'); |
---|
[276] | 3479 | set(handle_txtbox,'Visible','on') |
---|
| 3480 | set(handle_txtbox,'String',filegrid) |
---|
[112] | 3481 | else |
---|
[276] | 3482 | set(hObject,'Value',0); |
---|
[315] | 3483 | set(handle_dx,'Visible','on'); |
---|
[276] | 3484 | set(handle_dy,'Visible','on'); |
---|
[315] | 3485 | set(handle_title_dy,'Visible','on'); |
---|
| 3486 | set(handle_title_dx,'Visible','on'); |
---|
[276] | 3487 | set(handle_txtbox,'Visible','off') |
---|
[2] | 3488 | end |
---|
| 3489 | |
---|
[282] | 3490 | %% if hObject is on the checkciv1 frame, duplicate action for checkciv2 frame |
---|
[319] | 3491 | PanelName=get(hparent,'tag'); |
---|
[315] | 3492 | if strcmp(PanelName,'Civ1') |
---|
[282] | 3493 | hchildren=get(handles.Civ2,'children'); |
---|
[315] | 3494 | handle_checkbox=findobj(hchildren,'tag','CheckGrid'); |
---|
[576] | 3495 | handle_txtbox=findobj(hchildren,'tag','Grid'); |
---|
[276] | 3496 | handle_dx=findobj(hchildren,'tag','num_Dx'); |
---|
| 3497 | handle_dy=findobj(hchildren,'tag','num_Dy'); |
---|
[315] | 3498 | handle_title_dx=findobj(hchildren,'tag','title_Dx'); |
---|
| 3499 | handle_title_dy=findobj(hchildren,'tag','title_Dy'); |
---|
[276] | 3500 | set(handle_checkbox,'UserData',filegrid);%store for future use |
---|
| 3501 | if testgrid |
---|
| 3502 | set(handle_checkbox,'Value',1); |
---|
| 3503 | set(handle_dx,'Visible','off'); |
---|
| 3504 | set(handle_dy,'Visible','off'); |
---|
[315] | 3505 | set(handle_title_dx,'Visible','off'); |
---|
| 3506 | set(handle_title_dy,'Visible','off'); |
---|
[276] | 3507 | set(handle_txtbox,'Visible','on') |
---|
| 3508 | set(handle_txtbox,'String',filegrid) |
---|
| 3509 | end |
---|
| 3510 | end |
---|
[387] | 3511 | |
---|
[12] | 3512 | %------------------------------------------------------------------------ |
---|
[387] | 3513 | % --- Executes on button press in CheckMask: common to all panels (civ1, Civ2..) |
---|
[282] | 3514 | function CheckMask_Callback(hObject, eventdata, handles) |
---|
[276] | 3515 | %------------------------------------------------------------------------ |
---|
| 3516 | value=get(hObject,'Value'); |
---|
[315] | 3517 | hparent=get(hObject,'parent'); |
---|
| 3518 | parent_tag=get(hparent,'Tag'); |
---|
| 3519 | hchildren=get(hparent,'children'); |
---|
[387] | 3520 | handle_txtbox=findobj(hchildren,'tag','Mask');% look for the mask name box in the same panel |
---|
[276] | 3521 | testmask=0; |
---|
| 3522 | if value |
---|
[371] | 3523 | filebase=get(handles.RootPath,'String'); |
---|
[276] | 3524 | [nbslice, flag_mask]=get_mask(filebase,handles);% look for a mask with appropriate name |
---|
| 3525 | if isequal(flag_mask,1) |
---|
| 3526 | filemask=[num2str(nbslice) 'mask']; |
---|
| 3527 | testmask=1; |
---|
| 3528 | else % browse for a mask |
---|
[315] | 3529 | filemask=get(hObject,'UserData');%look for previous mask name stored as UserData |
---|
[276] | 3530 | if exist(filemask,'file') |
---|
| 3531 | filebase=filemask; |
---|
| 3532 | end |
---|
[315] | 3533 | [FileName, PathName] = uigetfile( ... |
---|
[276] | 3534 | {'*.png', ' (*.png)'; |
---|
| 3535 | '*.png', '.png files '; ... |
---|
| 3536 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3537 | 'Pick a mask file *.png',filebase); |
---|
| 3538 | filemask=fullfile(PathName,FileName); |
---|
[315] | 3539 | set(hObject,'UserData',filemask);%store for future use |
---|
[276] | 3540 | if ~(isempty(FileName)||isempty(PathName)||isequal(FileName,0)||~exist(filemask,'file')) |
---|
| 3541 | testmask=1; |
---|
| 3542 | end |
---|
| 3543 | end |
---|
| 3544 | end |
---|
| 3545 | if testmask |
---|
[316] | 3546 | if strcmp(parent_tag,'Civ1') |
---|
[387] | 3547 | set(handles.Mask,'Visible','on') |
---|
[384] | 3548 | set(handles.Mask,'String',filemask) |
---|
[316] | 3549 | set(handles.CheckMask,'Value',1) |
---|
[315] | 3550 | end |
---|
[276] | 3551 | else |
---|
[315] | 3552 | set(hObject,'Value',0); |
---|
| 3553 | set(handle_txtbox,'Visible','off') |
---|
[276] | 3554 | end |
---|
| 3555 | |
---|
[576] | 3556 | %------------------------------------------------------------------------ |
---|
[2] | 3557 | % --- Executes on button press in get_gridpatch1. |
---|
| 3558 | function get_gridpatch1_Callback(hObject, eventdata, handles) |
---|
[576] | 3559 | %------------------------------------------------------------------------ |
---|
[371] | 3560 | filebase=get(handles.RootPath,'String'); |
---|
[2] | 3561 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
[112] | 3562 | {'*.grid', ' (*.grid)'; |
---|
| 3563 | '*.grid', '.grid files '; ... |
---|
| 3564 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3565 | 'Pick a file',filebase); |
---|
[2] | 3566 | filegrid=fullfile(PathName,FileName); |
---|
| 3567 | set(handles.grid_patch1,'string',filegrid); |
---|
| 3568 | |
---|
[371] | 3569 | |
---|
[12] | 3570 | %------------------------------------------------------------------------ |
---|
[2] | 3571 | % --- Executes on button press in get_gridpatch2. |
---|
| 3572 | function get_gridpatch2_Callback(hObject, eventdata, handles) |
---|
[12] | 3573 | %------------------------------------------------------------------------ |
---|
[2] | 3574 | |
---|
| 3575 | |
---|
[12] | 3576 | %------------------------------------------------------------------------ |
---|
[309] | 3577 | % --- STEREO Interp |
---|
| 3578 | function 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] | 3579 | %------------------------------------------------------------------------ |
---|
[309] | 3580 | namelog=[filename_nc(1:end-3) '_stinterp.log']; |
---|
| 3581 | cmd=[stinterpBin ' -f1 ' filename_A_nc ' -f2 ' filename_B_nc ' -f ' filename_nc ... |
---|
| 3582 | ' -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 |
---|
[273] | 3583 | |
---|
[494] | 3584 | % %------------------------------------------------------------------------ |
---|
| 3585 | % %--read images and convert them to the uint16 format used for PIV |
---|
| 3586 | % function A=read_image(filename,type_ima,num,movieobject) |
---|
| 3587 | % %------------------------------------------------------------------------ |
---|
| 3588 | % %num is the view number needed for an avi movie |
---|
| 3589 | % switch type_ima |
---|
| 3590 | % case 'movie' |
---|
| 3591 | % A=read(movieobject,num); |
---|
| 3592 | % case 'avi' |
---|
| 3593 | % mov=aviread(filename,num); |
---|
| 3594 | % A=frame2im(mov(1)); |
---|
| 3595 | % case 'multimage' |
---|
| 3596 | % A=imread(filename,num); |
---|
| 3597 | % case 'image' |
---|
| 3598 | % A=imread(filename); |
---|
| 3599 | % end |
---|
| 3600 | % siz=size(A); |
---|
| 3601 | % if length(siz)==3;%color images |
---|
| 3602 | % A=sum(double(A),3); |
---|
| 3603 | % A=uint16(A); |
---|
| 3604 | % end |
---|
[2] | 3605 | |
---|
| 3606 | |
---|
[12] | 3607 | %------------------------------------------------------------------------ |
---|
[2] | 3608 | % --- Executes on button press in get_ref_fix1. |
---|
| 3609 | function get_ref_fix1_Callback(hObject, eventdata, handles) |
---|
[12] | 3610 | %------------------------------------------------------------------------ |
---|
[371] | 3611 | filebase=get(handles.RootPath,'String'); |
---|
[2] | 3612 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
[112] | 3613 | {'*.nc', ' (*.nc)'; |
---|
| 3614 | '*.nc', 'netcdf files '; ... |
---|
| 3615 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3616 | 'Pick a file',filebase); |
---|
| 3617 | |
---|
[2] | 3618 | fileinput=[PathName FileName]; |
---|
| 3619 | sizf=size(fileinput); |
---|
[122] | 3620 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string |
---|
[343] | 3621 | %[Path,File,field_count,str2,str_a,str_b,ref.ext,ref.nom_type,ref.subdir]=name2display(fileinput); |
---|
| 3622 | [Path,ref.subdir,File,ref.num1,ref.num2,ref.num_a,ref.num_b,ref.ext,ref.nom_type]=fileparts_uvmat(fileinput); |
---|
[2] | 3623 | ref.filebase=fullfile(Path,File); |
---|
[343] | 3624 | % ref.num_a=stra2num(str_a); |
---|
| 3625 | % ref.num_b=stra2num(str_b); |
---|
| 3626 | % ref.num1=str2double(field_count); |
---|
| 3627 | % ref.num2=str2double(str2); |
---|
[2] | 3628 | browse=[];%initialisation |
---|
| 3629 | if ~isequal(ref.ext,'.nc') |
---|
| 3630 | msgbox_uvmat('ERROR','the reference file must be in netcdf format (*.nc)') |
---|
| 3631 | return |
---|
| 3632 | end |
---|
| 3633 | set(handles.ref_fix1,'String',[fullfile(ref.subdir,File) '....nc']); |
---|
| 3634 | set(handles.ref_fix1,'UserData',ref) |
---|
| 3635 | menu_field{1}='civ1'; |
---|
| 3636 | Data=nc2struct(fileinput,[]); |
---|
[45] | 3637 | if isfield(Data,'patch') && isequal(Data.patch,1) |
---|
[2] | 3638 | menu_field{2}='filter1'; |
---|
| 3639 | end |
---|
[45] | 3640 | if isfield(Data,'civ2') && isequal(Data.civ2,1) |
---|
[2] | 3641 | menu_field{3}='civ2'; |
---|
| 3642 | end |
---|
[45] | 3643 | if isfield(Data,'patch2') && isequal(Data.patch2,1) |
---|
[2] | 3644 | menu_field{4}='filter2'; |
---|
| 3645 | end |
---|
| 3646 | set(handles.field_ref1,'String',menu_field); |
---|
| 3647 | set(handles.field_ref1,'Value',length(menu_field)); |
---|
[287] | 3648 | set(handles.num_MinVel,'Value',2); |
---|
| 3649 | set(handles.num_MinVel,'String','1');%default threshold |
---|
[2] | 3650 | set(handles.ref_fix1,'Enable','on') |
---|
[12] | 3651 | |
---|
| 3652 | %------------------------------------------------------------------------ |
---|
[2] | 3653 | % --- Executes on button press in get_ref_fix2. |
---|
| 3654 | function get_ref_fix2_Callback(hObject, eventdata, handles) |
---|
[12] | 3655 | %------------------------------------------------------------------------ |
---|
[2] | 3656 | if isequal(get(handles.get_ref_fix2,'Value'),1) |
---|
[371] | 3657 | filebase=get(handles.RootPath,'String'); |
---|
[2] | 3658 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
[112] | 3659 | {'*.nc', ' (*.nc)'; |
---|
| 3660 | '*.nc', 'netcdf files '; ... |
---|
| 3661 | '*.*', 'All Files (*.*)'}, ... |
---|
| 3662 | 'Pick a file',filebase); |
---|
[2] | 3663 | fileinput=[PathName FileName]; |
---|
| 3664 | sizf=size(fileinput); |
---|
[45] | 3665 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end %stop if fileinput not a character string |
---|
[343] | 3666 | %[Path,File,field_count,str2,str_a,str_b,ref.ext,ref.nom_type,ref.subdir]=name2display(fileinput); |
---|
| 3667 | [Path,ref.subdir,File,ref.num1,ref.num2,ref.num_a,ref.num_b,ref.ext,ref.nom_type]=fileparts_uvmat(fileinput); |
---|
[2] | 3668 | ref.filebase=fullfile(Path,File); |
---|
[343] | 3669 | % ref.num_a=stra2num(str_a); |
---|
| 3670 | % ref.num_b=stra2num(str_b); |
---|
| 3671 | % ref.num1=str2num(field_count); |
---|
| 3672 | % ref.num2=str2num(str2); |
---|
[2] | 3673 | browse=[];%initialisation |
---|
| 3674 | if ~isequal(ref.ext,'.nc') |
---|
| 3675 | msgbox_uvmat('ERROR','the reference file must be in netcdf format (*.nc)') |
---|
| 3676 | return |
---|
| 3677 | end |
---|
| 3678 | set(handles.ref_fix2,'String',[fullfile(ref.subdir,File) '....nc']); |
---|
[112] | 3679 | set(handles.ref_fix2,'UserData',ref) |
---|
[2] | 3680 | menu_field{1}='civ1'; |
---|
| 3681 | Data=nc2struct(fileinput,[]); |
---|
[301] | 3682 | if isfield(Data,'patch') && isequal(Data.patch,1) |
---|
[2] | 3683 | menu_field{2}='filter1'; |
---|
| 3684 | end |
---|
[301] | 3685 | if isfield(Data,'civ2') && isequal(Data.civ2,1) |
---|
[2] | 3686 | menu_field{3}='civ2'; |
---|
| 3687 | end |
---|
[301] | 3688 | if isfield(Data,'patch2') && isequal(Data.patch2,1) |
---|
[2] | 3689 | menu_field{4}='filter2'; |
---|
| 3690 | end |
---|
| 3691 | set(handles.field_ref2,'String',menu_field); |
---|
| 3692 | set(handles.field_ref2,'Value',length(menu_field)); |
---|
[287] | 3693 | set(handles.num_MinVel,'Value',2); |
---|
| 3694 | set(handles.num_MinVel,'String','1');%default threshold |
---|
[2] | 3695 | set(handles.ref_fix2,'Enable','on') |
---|
| 3696 | set(handles.ref_fix2,'Visible','on') |
---|
| 3697 | set(handles.field_ref2,'Visible','on') |
---|
| 3698 | else |
---|
| 3699 | set(handles.ref_fix2,'Visible','off') |
---|
| 3700 | set(handles.field_ref2,'Visible','off') |
---|
| 3701 | end |
---|
| 3702 | |
---|
[12] | 3703 | %------------------------------------------------------------------------ |
---|
[2] | 3704 | function ref_fix1_Callback(hObject, eventdata, handles) |
---|
[12] | 3705 | %------------------------------------------------------------------------ |
---|
[287] | 3706 | set(handles.num_MinVel,'Value',1); |
---|
[12] | 3707 | set(handles.field_ref1,'Value',1) |
---|
| 3708 | set(handles.field_ref1,'String',{' '}) |
---|
| 3709 | set(handles.ref_fix1,'UserData',[]); |
---|
| 3710 | set(handles.ref_fix1,'String',''); |
---|
| 3711 | set(handles.thresh_vel1,'String','0'); |
---|
[112] | 3712 | |
---|
[12] | 3713 | %------------------------------------------------------------------------ |
---|
[2] | 3714 | function ref_fix2_Callback(hObject, eventdata, handles) |
---|
[12] | 3715 | %------------------------------------------------------------------------ |
---|
[287] | 3716 | set(handles.num_MinVel,'Value',1); |
---|
[12] | 3717 | set(handles.field_ref2,'Value',1) |
---|
| 3718 | set(handles.field_ref2,'String',{' '}) |
---|
| 3719 | set(handles.ref_fix2,'UserData',[]); |
---|
| 3720 | set(handles.ref_fix2,'String',''); |
---|
[287] | 3721 | set(handles.num_MinVel,'String','0'); |
---|
[2] | 3722 | |
---|
[12] | 3723 | %------------------------------------------------------------------------ |
---|
[371] | 3724 | % --- TO ABANDON Executes on button press in test_stereo1. |
---|
| 3725 | function CheckStereo_Callback(hObject, eventdata, handles) |
---|
[12] | 3726 | %------------------------------------------------------------------------ |
---|
[371] | 3727 | hparent=get(hObject,'parent'); |
---|
| 3728 | parent_tag=get(hparent,'Tag'); |
---|
| 3729 | hchildren=get(hparent,'children'); |
---|
| 3730 | handle_txtbox=findobj(hchildren,'tag','txt_Mask'); |
---|
| 3731 | if isequal(get(hObject,'Value'),0) |
---|
[581] | 3732 | set(handles.num_SubDomainSize,'Visible','on') |
---|
[437] | 3733 | set(handles.num_FieldSmooth,'Visible','on') |
---|
[2] | 3734 | else |
---|
[581] | 3735 | set(handles.num_SubDomainSize,'Visible','off') |
---|
[437] | 3736 | set(handles.num_FieldSmooth,'Visible','off') |
---|
[2] | 3737 | end |
---|
| 3738 | |
---|
[371] | 3739 | % %------------------------------------------------------------------------ |
---|
| 3740 | % % --- Executes on button press in CheckStereo. |
---|
| 3741 | % function StereoCheck_Callback(hObject, eventdata, handles) |
---|
| 3742 | % %------------------------------------------------------------------------ |
---|
| 3743 | % if isequal(get(handles.CheckStereo,'Value'),0) |
---|
[581] | 3744 | % set(handles.num_subdomainsize,'Visible','on') |
---|
[437] | 3745 | % set(handles.num_FieldSmooth,'Visible','on') |
---|
[371] | 3746 | % else |
---|
[581] | 3747 | % set(handles.num_subdomainsize,'Visible','off') |
---|
[437] | 3748 | % set(handles.num_FieldSmooth,'Visible','off') |
---|
[371] | 3749 | % end |
---|
| 3750 | |
---|
[12] | 3751 | %------------------------------------------------------------------------ |
---|
[413] | 3752 | % --- Executes on button press in TestCiv1: prepare the image correlation function |
---|
| 3753 | % activated by mouse motion |
---|
[150] | 3754 | function TestCiv1_Callback(hObject, eventdata, handles) |
---|
[224] | 3755 | %------------------------------------------------------------------------ |
---|
[233] | 3756 | drawnow |
---|
[309] | 3757 | if get(handles.TestCiv1,'Value') |
---|
[413] | 3758 | set(handles.TestCiv1,'BackgroundColor',[0.7 0.7 0.7])% paint TestCiv1 button to grey to confirm civ launch |
---|
| 3759 | ref_i=str2double(get(handles.ref_i,'String'));% read reference i index |
---|
[227] | 3760 | if strcmp(get(handles.ref_j,'Visible'),'on') |
---|
[413] | 3761 | ref_j=str2double(get(handles.ref_j,'String'));% read reference j index if relevant |
---|
[227] | 3762 | else |
---|
[413] | 3763 | ref_j=1;%default j index |
---|
[227] | 3764 | end |
---|
[437] | 3765 | [filecell,i1,i2]=set_civ_filenames(handles,ref_i,ref_j,[1 0 0 0 0 0]);% get the corresponding file name and indices |
---|
[224] | 3766 | Data.ListVarName={'ny','nx','A'}; |
---|
[315] | 3767 | Data.VarDimName= {'ny','nx',{'ny','nx'}}; |
---|
[444] | 3768 | |
---|
[413] | 3769 | Data.A=imread(filecell.ima1.civ1{1}); % read the first image |
---|
[387] | 3770 | if ndims(Data.A)==3 %case of color image |
---|
| 3771 | Data.VarDimName= {'ny','nx',{'ny','nx','rgb'}}; |
---|
| 3772 | end |
---|
[224] | 3773 | Data.ny=[size(Data.A,1) 1]; |
---|
| 3774 | Data.nx=[1 size(Data.A,2)]; |
---|
[413] | 3775 | Data.CoordUnit='pixel';% used to set equal scaling for x and y in image dispaly |
---|
[309] | 3776 | par_civ1=read_GUI(handles.Civ1); |
---|
[444] | 3777 | par_civ1.FileTypeA=get_file_type(filecell.ima1.civ1{1}); |
---|
[388] | 3778 | par_civ1.ImageWidth=size(Data.A,2); |
---|
| 3779 | par_civ1.ImageHeight=size(Data.A,1); |
---|
[315] | 3780 | par_civ1.Mask='all';% will provide only the grid set for PIV, no image correlation |
---|
[435] | 3781 | par_civ1.FrameIndexA=num2str(i1); |
---|
| 3782 | par_civ1.FrameIndexB=num2str(i2); |
---|
[246] | 3783 | Param.Civ1=par_civ1; |
---|
[315] | 3784 | Grid=civ_matlab(Param);% get the grid of x, y positions set for PIV |
---|
[387] | 3785 | hview_field=view_field(Data); %view the image in the GUI view_field |
---|
[231] | 3786 | set(0,'CurrentFigure',hview_field) |
---|
| 3787 | hhview_field=guihandles(hview_field); |
---|
[548] | 3788 | set(hview_field,'CurrentAxes',hhview_field.PlotAxes) |
---|
[231] | 3789 | ViewData=get(hview_field,'UserData'); |
---|
| 3790 | ViewData.CivHandle=handles.civ;% indicate the handle of the civ GUI in view_field |
---|
[548] | 3791 | ViewData.PlotAxes.B=imread(filecell.ima2.civ1{1});%store the second image in the UserData of the GUI view_field |
---|
| 3792 | ViewData.PlotAxes.X=Grid.Civ1_X; %keep the set of points in memeory |
---|
| 3793 | ViewData.PlotAxes.Y=Grid.Civ1_Y; |
---|
[231] | 3794 | set(hview_field,'UserData',ViewData) |
---|
[224] | 3795 | corrfig=findobj(allchild(0),'tag','corrfig');% look for a current figure for image correlation display |
---|
| 3796 | if isempty(corrfig) |
---|
| 3797 | corrfig=figure; |
---|
| 3798 | set(corrfig,'tag','corrfig') |
---|
| 3799 | set(corrfig,'name','image correlation') |
---|
| 3800 | set(corrfig,'DeleteFcn',{@closeview_field})% |
---|
| 3801 | end |
---|
[233] | 3802 | set(handles.TestCiv1,'BackgroundColor',[1 0 0]) |
---|
[224] | 3803 | else |
---|
[413] | 3804 | set(handles.TestCiv1,'BackgroundColor',[1 0 0])% paint button to red |
---|
[224] | 3805 | corrfig=findobj(allchild(0),'tag','corrfig');% look for a current figure for image correlation display |
---|
| 3806 | if ~isempty(corrfig) |
---|
| 3807 | delete(corrfig) |
---|
| 3808 | end |
---|
| 3809 | hview_field=findobj(allchild(0),'tag','view_field');% look for view_field |
---|
| 3810 | if ~isempty(hview_field) |
---|
| 3811 | delete(hview_field) |
---|
| 3812 | end |
---|
[150] | 3813 | end |
---|
[71] | 3814 | |
---|
[415] | 3815 | %------------------------------------------------------------------------ |
---|
| 3816 | %----function introduced for the correlation window figure, activated by deleting this window |
---|
| 3817 | function closeview_field(gcbo,eventdata) |
---|
| 3818 | %------------------------------------------------------------------------ |
---|
| 3819 | hview_field=findobj(allchild(0),'tag','view_field');% look for view_field |
---|
| 3820 | if ~isempty(hview_field) |
---|
| 3821 | delete(hview_field) |
---|
| 3822 | end |
---|
[150] | 3823 | |
---|
[252] | 3824 | %------------------------------------------------------------------------ |
---|
[315] | 3825 | % --- Executes on button press in CheckThreshold. |
---|
| 3826 | function CheckThreshold_Callback(hObject, eventdata, handles) |
---|
[252] | 3827 | %------------------------------------------------------------------------ |
---|
[315] | 3828 | huipanel=get(hObject,'parent'); |
---|
| 3829 | obj(1)=findobj(huipanel,'Tag','num_MinIma'); |
---|
| 3830 | obj(2)=findobj(huipanel,'Tag','num_MaxIma'); |
---|
| 3831 | obj(3)=findobj(huipanel,'Tag','title_Threshold'); |
---|
| 3832 | if get(hObject,'Value') |
---|
| 3833 | set(obj,'Visible','on') |
---|
| 3834 | else |
---|
| 3835 | set(obj,'Visible','off') |
---|
| 3836 | end |
---|
[220] | 3837 | |
---|
[465] | 3838 | |
---|
| 3839 | |
---|
| 3840 | |
---|
| 3841 | %'nomtype2pair': creates nomencalture for index pairs knowing the image nomenclature |
---|
| 3842 | %--------------------------------------------------------------------- |
---|
| 3843 | function NomTypeNc=nomtype2pair(NomTypeIma,mode) |
---|
| 3844 | %--------------------------------------------------------------------- |
---|
| 3845 | % OUTPUT: |
---|
| 3846 | % NomTypeNc |
---|
| 3847 | %--------------------------------------------------------------------- |
---|
| 3848 | % INPUT: |
---|
| 3849 | % 'NomTypeIma': string defining the kind of nomenclature used for images |
---|
| 3850 | |
---|
| 3851 | NomTypeNc=NomTypeIma;%default |
---|
| 3852 | switch mode |
---|
| 3853 | case 'pair j1-j2' |
---|
| 3854 | if ~isempty(regexp(NomTypeIma,'a$')) |
---|
| 3855 | NomTypeNc=[NomTypeIma 'b']; |
---|
| 3856 | elseif ~isempty(regexp(NomTypeIma,'A$')) |
---|
| 3857 | NomTypeNc=[NomTypeIma 'B']; |
---|
| 3858 | else |
---|
| 3859 | r=regexp(NomTypeIma,'(?<num1>\d+)_(?<num2>\d+)$','names'); |
---|
| 3860 | if ~isempty(r) |
---|
| 3861 | NomTypeNc='_1_1-2'; |
---|
| 3862 | end |
---|
| 3863 | end |
---|
| 3864 | case 'series(Dj)' |
---|
[492] | 3865 | % r=regexp(NomTypeIma,'(?<num1>\d+)_(?<num2>\d+)$','names'); |
---|
| 3866 | % if ~isempty(r) |
---|
[465] | 3867 | NomTypeNc='_1_1-2'; |
---|
[492] | 3868 | % end |
---|
[465] | 3869 | case 'series(Di)' |
---|
| 3870 | r=regexp(NomTypeIma,'(?<num1>\d+)_(?<num2>\d+)$','names'); |
---|
| 3871 | if ~isempty(r) |
---|
| 3872 | NomTypeNc='_1-2_1'; |
---|
| 3873 | else |
---|
| 3874 | NomTypeNc='_1-2'; |
---|
| 3875 | end |
---|
| 3876 | end |
---|
| 3877 | |
---|
| 3878 | function NomType_Callback(hObject, eventdata, handles) |
---|
| 3879 | set(handles.RootPath,'BackgroundColor',[1 1 0])%paint RootName edit box in yellow to indicate that the file input is proceeding |
---|
| 3880 | RootPath=get(handles.RootPath,'String'); |
---|
| 3881 | RootFile=get(handles.RootFile,'String'); |
---|
[494] | 3882 | SubDirImages=get(handles.SubDirImages,'String'); |
---|
[465] | 3883 | ref_i=str2num(get(handles.ref_i,'String')); |
---|
| 3884 | ref_j=str2num(get(handles.ref_j,'String')); |
---|
| 3885 | NomType=get(handles.NomType,'String'); |
---|
| 3886 | ImaExt=get(handles.ImaExt,'String'); |
---|
[494] | 3887 | fileinput=fullfile_uvmat(RootPath,SubDirImages,RootFile,ImaExt,NomType,ref_i,[],ref_j); |
---|
[465] | 3888 | errormsg=display_file_name(handles,fileinput); |
---|
| 3889 | if ~isempty(errormsg) |
---|
| 3890 | msgbox_uvmat('ERROR',errormsg) |
---|
| 3891 | end |
---|
| 3892 | set(handles.RootPath,'BackgroundColor',[1 1 1])%paint RootName back to white to indicate that the file input is finished |
---|
| 3893 | |
---|
[469] | 3894 | % --- Executes on selection change in Program. |
---|
| 3895 | function Program_Callback(hObject, eventdata, handles) |
---|
| 3896 | ListProgram=get(handles.Program,'String'); |
---|
| 3897 | Program=ListProgram{get(handles.Program,'value')}; |
---|
[465] | 3898 | switch Program |
---|
| 3899 | case 'CivX' |
---|
| 3900 | set(handles.num_MaxDiff,'Visible','off') |
---|
| 3901 | set(handles.num_MaxVel,'Visible','off') |
---|
| 3902 | set(handles.title_MaxVel,'Visible','off') |
---|
| 3903 | set(handles.num_Nx,'Visible','on') |
---|
| 3904 | set(handles.num_Ny,'Visible','on') |
---|
| 3905 | set(handles.title_Nx,'Visible','on') |
---|
| 3906 | set(handles.title_Ny,'Visible','on') |
---|
| 3907 | set(handles.title_MaxDiff,'Visible','off') |
---|
| 3908 | set(handles.num_CorrSmooth,'Style','edit') |
---|
| 3909 | set(handles.num_CorrSmooth,'String','1') |
---|
| 3910 | set(handles.BATCH,'Enable','on') |
---|
| 3911 | set(handles.CheckThreshold,'Visible','off') |
---|
| 3912 | set(handles.CheckDeformation,'Value',1) |
---|
| 3913 | set(handles.CheckDecimal,'Value',1) |
---|
[469] | 3914 | case {'civ_matlab','civ_matlab.sh'} |
---|
[465] | 3915 | set(handles.num_MaxDiff,'Visible','on') |
---|
| 3916 | set(handles.num_MaxVel,'Visible','on') |
---|
| 3917 | set(handles.title_MaxVel,'Visible','on') |
---|
| 3918 | set(handles.title_MaxDiff,'Visible','on') |
---|
| 3919 | set(handles.num_Nx,'Visible','off') |
---|
| 3920 | set(handles.num_Ny,'Visible','off') |
---|
| 3921 | set(handles.title_Nx,'Visible','off') |
---|
| 3922 | set(handles.title_Ny,'Visible','off') |
---|
| 3923 | set(handles.num_CorrSmooth,'Style','popupmenu') |
---|
| 3924 | set(handles.num_CorrSmooth,'Value',1) |
---|
| 3925 | set(handles.num_CorrSmooth,'String',{'1';'2'}) |
---|
| 3926 | set(handles.CheckThreshold,'Visible','on') |
---|
| 3927 | set(handles.CheckDeformation,'Value',0)% desactivate (work in progress) |
---|
| 3928 | set(handles.CheckDecimal,'Value',0)% desactivate (work in progress) |
---|
| 3929 | end |
---|
| 3930 | |
---|
| 3931 | % --- Executes on button press in TestPatch1. |
---|
| 3932 | function TestPatch1_Callback(hObject, eventdata, handles) |
---|
| 3933 | set(handles.TestPatch1,'BackgroundColor',[1 1 0]) |
---|
| 3934 | drawnow |
---|
| 3935 | if get(handles.TestPatch1,'Value') |
---|
| 3936 | ref_i=str2double(get(handles.ref_i,'String')); |
---|
| 3937 | if strcmp(get(handles.ref_j,'Visible'),'on') |
---|
| 3938 | ref_j=str2double(get(handles.ref_j,'String')); |
---|
| 3939 | else |
---|
| 3940 | ref_j=1;%default |
---|
| 3941 | end |
---|
| 3942 | filecell=set_civ_filenames(handles,ref_i,ref_j,[0 0 1 0 0 0]); |
---|
| 3943 | Data.ListVarName={'ny','nx','A'}; |
---|
| 3944 | Data.VarDimName= {'ny','nx',{'ny','nx'}}; |
---|
| 3945 | param_patch1=read_GUI(handles.Patch1); |
---|
| 3946 | param_patch1.CivFile=filecell.nc.civ1{1}; |
---|
| 3947 | Param.Patch1=param_patch1; |
---|
| 3948 | for irho=1:7 |
---|
| 3949 | [Data,errormsg]=civ_matlab(Param);% get the grid of x, y positions set for PIV |
---|
| 3950 | if ~isempty(errormsg) |
---|
| 3951 | msgbox_uvmat('ERROR',errormsg) |
---|
| 3952 | return |
---|
| 3953 | end |
---|
| 3954 | SmoothingParam(irho)=Param.Patch1.FieldSmooth; |
---|
| 3955 | Data.Civ1_U_Diff=Data.Civ1_U_Diff(Data.Civ1_FF==0); |
---|
| 3956 | Data.Civ1_V_Diff=Data.Civ1_V_Diff(Data.Civ1_FF==0); |
---|
| 3957 | DiffVel(irho)=sqrt(mean(Data.Civ1_U_Diff.*Data.Civ1_U_Diff+Data.Civ1_V_Diff.*Data.Civ1_V_Diff)) |
---|
| 3958 | NbSites(irho,:)=Data.Civ1_NbSites*numel(Data.Civ1_NbSites)/numel(Data.Civ1_U_Diff); |
---|
| 3959 | Param.Patch1.SmoothingParam=2*Param.Patch1.FieldSmooth; |
---|
| 3960 | end |
---|
| 3961 | figure |
---|
| 3962 | plot(SmoothingParam,DiffVel,'b',SmoothingParam,NbSites,'r') |
---|
| 3963 | set(handles.TestPatch1,'BackgroundColor',[1 0 0]) |
---|
| 3964 | else |
---|
| 3965 | corrfig=findobj(allchild(0),'tag','corrfig');% look for a current figure for image correlation display |
---|
| 3966 | if ~isempty(corrfig) |
---|
| 3967 | delete(corrfig) |
---|
| 3968 | end |
---|
| 3969 | hview_field=findobj(allchild(0),'tag','view_field');% look for view_field |
---|
| 3970 | if ~isempty(hview_field) |
---|
| 3971 | delete(hview_field) |
---|
| 3972 | end |
---|
| 3973 | end |
---|
| 3974 | |
---|
| 3975 | |
---|
| 3976 | % --- Executes on button press in TestCiv2. |
---|
| 3977 | function TestCiv2_Callback(hObject, eventdata, handles) |
---|
| 3978 | |
---|
| 3979 | function RootFile_Callback(hObject, eventdata, handles) |
---|
| 3980 | |
---|
[494] | 3981 | function SubDirImages_Callback(hObject, eventdata, handles) |
---|
[465] | 3982 | |
---|
| 3983 | |
---|
| 3984 | |
---|
| 3985 | function errormsg=write_param(Param) |
---|
[252] | 3986 | %------------------------------------------------------------------------ |
---|
[284] | 3987 | %pixels per cm and matrix of the image times, read from the .civ file by uvmat |
---|
| 3988 | %changes : filename_cmx -> filename ( no extension ) |
---|
[465] | 3989 | errormsg=''; |
---|
[469] | 3990 | switch Param.Program |
---|
[465] | 3991 | case 'CivX' |
---|
| 3992 | if Param.CheckCiv1 |
---|
[487] | 3993 | filename=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_CMX$2$3.civ1.cmx'); |
---|
[465] | 3994 | if isequal(Param.Civ1.Dt,0) |
---|
| 3995 | Param.Civ1.Dt=1 ;%case of 'displacement' mode |
---|
| 3996 | end |
---|
| 3997 | Param.Civ1.ImageA=regexprep(Param.Civ1.ImageA,'.png',''); |
---|
| 3998 | Param.Civ1.ImageB=regexprep(Param.Civ1.ImageB,'.png',''); |
---|
| 3999 | [fid,errormsg]=fopen(filename,'w'); |
---|
| 4000 | if isequal(fid,-1) |
---|
| 4001 | errormsg=['cmd file ' filename ' cannot be created: ' errormsg]; |
---|
| 4002 | return |
---|
| 4003 | end |
---|
| 4004 | fprintf(fid,['############## CMX file' '\n' ]); |
---|
| 4005 | fprintf(fid, ['FirstImage ' regexprep(Param.Civ1.ImageA,'\\','\\\\') '\n' ]);% for windows compatibility |
---|
| 4006 | fprintf(fid, ['LastImage ' regexprep(Param.Civ1.ImageB,'\\','\\\\') '\n' ]);% for windows compatibility |
---|
| 4007 | fprintf(fid, ['XX' '\n' ]); |
---|
| 4008 | if isfield(Param.Civ1,'Mask') |
---|
| 4009 | fprintf(fid, ['Mask ' 'y' '\n' ]); |
---|
| 4010 | fprintf(fid, ['MaskName ' regexprep(Param.Civ1.Mask,'\\','\\\\') '\n' ]); |
---|
| 4011 | else |
---|
| 4012 | fprintf(fid, ['Mask ' 'n' '\n' ]); |
---|
| 4013 | fprintf(fid, ['MaskName ' 'noFile use default' '\n' ]); |
---|
| 4014 | end |
---|
| 4015 | fprintf(fid, ['ImageSize ' num2str(Param.Civ1.ImageWidth) ' ' num2str(Param.Civ1.ImageHeight) '\n' ]); %VERIFIER CAS GENERAL ? |
---|
| 4016 | fprintf(fid, ['CorrelationBoxesSize ' num2str(Param.Civ1.CorrBoxSize(1)) ' ' num2str(Param.Civ1.CorrBoxSize(2)) '\n' ]); |
---|
| 4017 | fprintf(fid, ['SearchBoxeSize ' num2str(Param.Civ1.SearchBoxSize(1)) ' ' num2str(Param.Civ1.SearchBoxSize(2)) '\n' ]); |
---|
| 4018 | fprintf(fid, ['RO ' num2str(Param.Civ1.CorrSmooth) '\n' ]); |
---|
| 4019 | if isfield(Param.Civ1,'Grid') |
---|
| 4020 | fprintf(fid, ['GridSpacing ' '25' ' ' '25' '\n' ]); |
---|
| 4021 | else |
---|
| 4022 | fprintf(fid, ['GridSpacing ' num2str(Param.Civ1.Dx) ' ' num2str(Param.Civ1.Dy) '\n' ]); |
---|
| 4023 | end |
---|
| 4024 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4025 | fprintf(fid, ['Dt_TO ' num2str(Param.Civ1.Dt) ' ' num2str(Param.Civ1.Time) '\n' ]); |
---|
| 4026 | fprintf(fid, ['PixCmXY ' '1' ' ' '1' '\n' ]); |
---|
| 4027 | fprintf(fid, ['XX 1' '\n' ]); |
---|
| 4028 | fprintf(fid, ['ShiftXY ' num2str(Param.Civ1.SearchBoxShift(1)) ' ' num2str(Param.Civ1.SearchBoxShift(2)) '\n' ]); |
---|
| 4029 | if isfield(Param.Civ1,'Grid') |
---|
| 4030 | fprintf(fid, ['Grid ' 'y' '\n' ]); |
---|
| 4031 | fprintf(fid, ['GridName ' regexprep(Param.Civ1.Grid,'\\','\\\\') '\n' ]); |
---|
| 4032 | else |
---|
| 4033 | fprintf(fid, ['Grid ' 'n' '\n' ]); |
---|
| 4034 | fprintf(fid, ['GridName ' 'noFile use default' '\n' ]); |
---|
| 4035 | end |
---|
| 4036 | fprintf(fid, ['XX 85' '\n' ]); |
---|
| 4037 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4038 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4039 | fprintf(fid, ['Hart 1' '\n' ]); |
---|
| 4040 | fprintf(fid, [ 'DecimalShift 0' '\n' ]); |
---|
| 4041 | fprintf(fid, ['Deformation 0' '\n' ]); |
---|
| 4042 | fprintf(fid, ['CorrelationMin 0' '\n' ]); |
---|
| 4043 | fprintf(fid, ['IntensityMin 0' '\n' ]); |
---|
| 4044 | if ~isfield(Param.Civ1,'MinIma')% Image threshold not activated |
---|
| 4045 | fprintf(fid, ['SeuilImage n' '\n' ]); |
---|
| 4046 | fprintf(fid, ['SeuilImageValues 0 4096' '\n' ]);%not used in principle |
---|
| 4047 | else% Image threshold activated |
---|
| 4048 | if isempty(Param.Civ1.MaxIma)||isnan(Param.Civ1.MaxIma) |
---|
| 4049 | Param.Civ1.MaxIma=2^Param.Civ1.ImageBitDepth;%take the max image value as upper bound by default |
---|
| 4050 | end |
---|
| 4051 | fprintf(fid, ['SeuilImage y' '\n' ]); |
---|
| 4052 | fprintf(fid, ['SeuilImageValues ' num2str(Param.Civ1.MinIma) ' ' num2str(Param.Civ1.MaxIma) '\n' ]); |
---|
| 4053 | end |
---|
| 4054 | fprintf(fid, ['ImageToUse ' Param.Civ1.term_a ' ' Param.Civ1.term_b '\n' ]); % VERIFIER ? |
---|
| 4055 | fprintf(fid, ['ImageUsedBefore null null' '\n' ]); |
---|
| 4056 | fclose(fid); |
---|
| 4057 | end |
---|
| 4058 | |
---|
| 4059 | if Param.CheckCiv2 |
---|
[487] | 4060 | filename=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_CMX$2$3.civ2.cmx'); |
---|
[465] | 4061 | |
---|
| 4062 | if isequal(Param.Civ2.Dt,'0') |
---|
| 4063 | Param.Civ2.Dt='1' ;%case of 'displacement' mode |
---|
| 4064 | end |
---|
| 4065 | Param.Civ2.ImageA=regexprep(Param.Civ2.ImageA,'.png',''); |
---|
| 4066 | Param.Civ2.ImageB=regexprep(Param.Civ2.ImageB,'.png','');% bug : .png appears two times ? |
---|
| 4067 | [fid,errormsg]=fopen(filename,'w'); |
---|
| 4068 | if isequal(fid,-1) |
---|
| 4069 | return |
---|
| 4070 | end |
---|
| 4071 | fprintf(fid,['############## CMX file' '\n' ]); |
---|
| 4072 | fprintf(fid, ['FirstImage ' regexprep(Param.Civ2.ImageA,'\\','\\\\') '\n' ]);% for windows compatibility |
---|
| 4073 | fprintf(fid, ['LastImage ' regexprep(Param.Civ2.ImageB,'\\','\\\\') '\n' ]);% for windows compatibility |
---|
| 4074 | fprintf(fid, ['XX' '\n' ]); |
---|
| 4075 | if isfield(Param.Civ2,'Mask') |
---|
| 4076 | fprintf(fid, ['Mask ' 'y' '\n' ]); |
---|
| 4077 | fprintf(fid, ['MaskName ' regexprep(Param.Civ2.Mask,'\\','\\\\') '\n' ]); |
---|
| 4078 | else |
---|
| 4079 | fprintf(fid, ['Mask ' 'n' '\n' ]); |
---|
| 4080 | fprintf(fid, ['MaskName ' 'noFile use default' '\n' ]); |
---|
| 4081 | end |
---|
| 4082 | % fprintf(fid, ['Mask ' Param.Civ2.MaskFlag '\n' ]); |
---|
| 4083 | % fprintf(fid, ['MaskName ' regexprep(Param.Civ2.MaskName,'\\','\\\\') '\n' ]);% for windows compatibility |
---|
| 4084 | fprintf(fid, ['ImageSize ' num2str(Param.Civ2.ImageWidth) ' ' num2str(Param.Civ2.ImageHeight) '\n' ]); |
---|
| 4085 | % fprintf(fid, ['ImageSize ' num2str(Param.Civ2.npx) ' ' num2str(Param.Civ2.npy) '\n' ]); %VERIFIER CAS GENERAL ? |
---|
| 4086 | fprintf(fid, ['CorrelationBoxesSize ' num2str(Param.Civ2.CorrBoxSize(1)) ' ' num2str(Param.Civ2.CorrBoxSize(2)) '\n' ]); |
---|
| 4087 | fprintf(fid, ['SearchBoxeSize ' num2str(Param.Civ2.CorrBoxSize(1)) ' ' num2str(Param.Civ2.CorrBoxSize(2)) '\n']); |
---|
| 4088 | fprintf(fid, ['RO ' num2str(Param.Civ2.CorrSmooth) '\n']); |
---|
| 4089 | if isfield(Param.Civ2,'Grid') |
---|
| 4090 | fprintf(fid, ['GridSpacing ' '25' ' ' '25' '\n' ]); |
---|
| 4091 | else |
---|
| 4092 | fprintf(fid, ['GridSpacing ' num2str(Param.Civ2.Dx) ' ' num2str(Param.Civ2.Dy) '\n' ]); |
---|
| 4093 | end |
---|
| 4094 | % fprintf(fid, ['GridSpacing ' num2str(Param.Civ2.Dx) ' ' num2str(Param.Civ2.Dy) '\n']); |
---|
| 4095 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4096 | fprintf(fid, ['Dt_TO ' num2str(Param.Civ2.Dt) ' ' num2str(Param.Civ2.Time) '\n' ]); |
---|
| 4097 | fprintf(fid, ['PixCmXY ' '1' ' ' '1' '\n' ]); |
---|
| 4098 | fprintf(fid, ['XX 1' '\n' ]); |
---|
| 4099 | fprintf(fid, 'ShiftXY 0 0\n'); |
---|
| 4100 | if isfield(Param.Civ2,'Grid') |
---|
| 4101 | fprintf(fid, ['Grid ' 'y' '\n' ]); |
---|
| 4102 | fprintf(fid, ['GridName ' regexprep(Param.Civ2.Grid,'\\','\\\\') '\n' ]); |
---|
| 4103 | else |
---|
| 4104 | fprintf(fid, ['Grid ' 'n' '\n' ]); |
---|
| 4105 | fprintf(fid, ['GridName ' 'noFile use default' '\n' ]); |
---|
| 4106 | end |
---|
| 4107 | % fprintf(fid, ['Grid ' Param.Civ2.GridFlag '\n' ]); |
---|
| 4108 | % fprintf(fid, ['GridName ' regexprep(Param.Civ2.GridName,'\\','\\\\') '\n']); |
---|
| 4109 | fprintf(fid, ['XX 85' '\n' ]); |
---|
| 4110 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4111 | fprintf(fid, ['XX 1.0' '\n' ]); |
---|
| 4112 | fprintf(fid, ['Hart 1' '\n' ]); |
---|
| 4113 | fprintf(fid, ['DecimalShift ' num2str(Param.Civ2.CheckDecimal) '\n']); |
---|
| 4114 | fprintf(fid, ['Deformation ' num2str(Param.Civ2.CheckDeformation) '\n']); |
---|
| 4115 | fprintf(fid, ['CorrelationMin 0' '\n' ]); |
---|
| 4116 | fprintf(fid, ['IntensityMin 0' '\n' ]); |
---|
| 4117 | |
---|
| 4118 | if ~isfield(Param.Civ2,'MinIma')% Image threshold not activated |
---|
| 4119 | fprintf(fid, ['SeuilImage n' '\n' ]); |
---|
| 4120 | fprintf(fid, ['SeuilImageValues 0 4096' '\n' ]);%not used in principle |
---|
| 4121 | else% Image threshold activated |
---|
| 4122 | if isempty(Param.Civ2.MaxIma)||isnan(Param.Civ2.MaxIma) |
---|
| 4123 | Param.Civ2.MaxIma=2^Param.Civ2.ImageBitDepth;%take the max image value as upper bound by default |
---|
| 4124 | end |
---|
| 4125 | fprintf(fid, ['SeuilImage y' '\n' ]); |
---|
| 4126 | fprintf(fid, ['SeuilImageValues ' num2str(Param.Civ2.MinIma) ' ' num2str(Param.Civ2.MaxIma) '\n' ]); |
---|
| 4127 | end |
---|
| 4128 | fprintf(fid, ['ImageToUse ' Param.Civ2.term_a ' ' Param.Civ2.term_b '\n' ]); % VERIFIER ? |
---|
| 4129 | fprintf(fid, ['ImageUsedBefore ' regexprep(Param.Civ2.filename_nc1,'\\','\\\\') '\n']); |
---|
| 4130 | fclose(fid); |
---|
| 4131 | end |
---|
[469] | 4132 | case {'civ_matlab','civ_matlab.sh'} |
---|
[487] | 4133 | filename=regexprep(Param.OutputFile,'(.+)([/\\])(.+$)','$1$20_XML$2$3.xml'); |
---|
[623] | 4134 | if isunix |
---|
[595] | 4135 | fileattrib(fileparts(filename),'+w +x','o g');% set writting access |
---|
[623] | 4136 | end |
---|
[465] | 4137 | save(struct2xml(Param),filename); |
---|
[284] | 4138 | end |
---|
[465] | 4139 | |
---|
| 4140 | |
---|
[469] | 4141 | function cmd=write_cmd(Param) |
---|
[465] | 4142 | |
---|
| 4143 | % initiate system command |
---|
| 4144 | cmd=[]; |
---|
| 4145 | |
---|
[469] | 4146 | switch Param.Program |
---|
[465] | 4147 | case 'CivX' |
---|
| 4148 | if isunix % check: necessaire aussi en RUN? |
---|
[487] | 4149 | cmd=[cmd '#!/bin/bash \n'... |
---|
| 4150 | '#$ -cwd \n'... |
---|
| 4151 | 'hostname && date \n'... |
---|
[465] | 4152 | 'umask 002 \n'];%allow writting access to created files for user group |
---|
| 4153 | end |
---|
| 4154 | case 'CivAll' |
---|
| 4155 | if isunix % check: necessaire aussi en RUN? |
---|
[487] | 4156 | cmd=[cmd '#!/bin/bash \n'... |
---|
| 4157 | '#$ -cwd \n'... |
---|
| 4158 | 'hostname && date \n'... |
---|
[465] | 4159 | 'umask 002 \n'];%allow writting access to created files for user group |
---|
| 4160 | end |
---|
[319] | 4161 | end |
---|
[465] | 4162 | |
---|
| 4163 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
| 4164 | |
---|
| 4165 | if Param.CheckCiv1 |
---|
[469] | 4166 | switch Param.Program |
---|
[465] | 4167 | case 'CivX' |
---|
| 4168 | if(isunix) %unix (or Mac) system |
---|
[487] | 4169 | cmd=[cmd 'cp -f ' regexprep(filename,'(.+)/(.+$)','$1/0_CMX/$2.civ1.cmx ') regexprep(filename,'(.+)/(.+$)','$1/$2.cmx \n')...% the cmx file gives the name to the nc file |
---|
| 4170 | Param.xml.Civ1Bin ' -f ' regexprep(filename,'(.+)/(.+$)','$1/$2.cmx >') regexprep(filename,'(.+)/(.+$)','$1/0_LOG/$2.civ1.log \n')... % redirect standard output to the log file, the result file is named [filename '.nc'] by CIVx |
---|
| 4171 | 'rm ' regexprep(filename,'(.+)/(.+$)','$1/$2.cmx \n')]; |
---|
[465] | 4172 | else %Windows system |
---|
| 4173 | filename=regexprep(filename,'\\','\\\\'); |
---|
[494] | 4174 | cmd=['copy /Y ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\0_CMX\\\\$2.civ1.cmx" ') regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" \n')... |
---|
[487] | 4175 | '"' regexprep(Param.xml.Civ1Bin,'\\','\\\\') '" -f ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" > ')... |
---|
| 4176 | regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\0_LOG\\\\$2.civ1.log" \n')... % redirect standard output to the log file |
---|
| 4177 | 'del ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" \n')]; |
---|
[465] | 4178 | end |
---|
| 4179 | case 'CivAll' |
---|
| 4180 | CivAllCmd=[CivAllCmd ' civ1 ']; |
---|
| 4181 | str=CIV1_CMD_Unified(filecell.nc.civ1{ifile,j},'',Param.Civ1); |
---|
| 4182 | fieldnames=fields(str); |
---|
| 4183 | [CivAllxml,uid_civ1]=add(CivAllxml,1,'element','civ1'); |
---|
| 4184 | for ilist=1:length(fieldnames) |
---|
| 4185 | val=eval(['str.' fieldnames{ilist}]); |
---|
| 4186 | if ischar(val) |
---|
| 4187 | [CivAllxml,uid_t]=add(CivAllxml,uid_civ1,'element',fieldnames{ilist}); |
---|
| 4188 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4189 | end |
---|
| 4190 | end |
---|
| 4191 | end |
---|
[315] | 4192 | end |
---|
[465] | 4193 | |
---|
| 4194 | if Param.CheckFix1 |
---|
[469] | 4195 | switch Param.Program |
---|
[465] | 4196 | case 'CivX' |
---|
| 4197 | cmd=[cmd... |
---|
| 4198 | cmd_fix(Param,'Fix1') '\n']; |
---|
| 4199 | case 'CivAll'%to abandon |
---|
| 4200 | fix1.inputFileName=filecell.nc.civ1{ifile,j} ; |
---|
| 4201 | fix1.fi1=num2str(param.fix1.flagindex1(1)); |
---|
| 4202 | fix1.fi2=num2str(param.fix1.flagindex1(2)); |
---|
| 4203 | fix1.fi3=num2str(param.fix1.flagindex1(3)); |
---|
| 4204 | fix1.threshC=num2str(param.fix1.thresh_vecC1); |
---|
| 4205 | fix1.threshV=num2str(param.fix1.thresh_vel1); |
---|
| 4206 | fieldnames=fields(fix1); |
---|
| 4207 | [CivAllxml,uid_fix1]=add(CivAllxml,1,'element','fix1'); |
---|
| 4208 | for ilist=1:length(fieldnames) |
---|
| 4209 | val=eval(['fix1.' fieldnames{ilist}]); |
---|
| 4210 | if ischar(val) |
---|
| 4211 | [CivAllxml,uid_t]=add(CivAllxml,uid_fix1,'element',fieldnames{ilist}); |
---|
| 4212 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4213 | end |
---|
| 4214 | end |
---|
| 4215 | CivAllCmd=[CivAllCmd ' fix1 ']; |
---|
| 4216 | end |
---|
[313] | 4217 | end |
---|
[465] | 4218 | |
---|
| 4219 | |
---|
| 4220 | %CheckPatch1 |
---|
| 4221 | if Param.CheckPatch1 |
---|
[469] | 4222 | switch Param.Program |
---|
[465] | 4223 | case 'CivX' |
---|
| 4224 | cmd=[cmd... |
---|
| 4225 | cmd_patch(Param,'Patch1') '\n']; |
---|
| 4226 | case 'CivAll' |
---|
| 4227 | patch1.inputFileName=filecell.nc.civ1{ifile,j} ; |
---|
| 4228 | patch1.nopt=subdomain_patch1; |
---|
| 4229 | patch1.maxdiff=thresh_patch1; |
---|
| 4230 | patch1.ro=rho_patch1; |
---|
| 4231 | test_grid=get(handles.get_gridpatch1,'Value'); |
---|
| 4232 | if test_grid |
---|
| 4233 | patch1.gridflag='y'; |
---|
| 4234 | gridname=get(handles.grid_patch1,'String'); |
---|
| 4235 | if isequal(gridname(end-3:end),'grid') |
---|
| 4236 | nbslice_grid=str2double(gridname(1:end-4)); % |
---|
| 4237 | if ~isnan(nbslice_grid) |
---|
| 4238 | i1_grid=mod(i1_civ1(ifile)-1,nbslice_grid)+1; |
---|
| 4239 | patch1.gridPatch=[filecell.filebase '_' fullfile_uvmat('','',gridname,'.grid','_1',i1_grid)]; |
---|
| 4240 | % patch1.gridPatch=[filecell.filebase '_' name_generator(gridname,i1_grid,1,'.grid','_i')]; |
---|
| 4241 | if ~exist(patch1.gridPatch,'file') |
---|
| 4242 | errormsg='grid file absent for patch1'; |
---|
| 4243 | return |
---|
| 4244 | end |
---|
| 4245 | elseif exist(gridname,'file') |
---|
| 4246 | patch1.gridPatch=gridname; |
---|
| 4247 | else |
---|
| 4248 | errormsg='grid file absent for patch1'; |
---|
| 4249 | return |
---|
| 4250 | end |
---|
| 4251 | end |
---|
| 4252 | else |
---|
| 4253 | patch1.gridPatch='none'; |
---|
| 4254 | patch1.gridflag='n'; |
---|
| 4255 | patch1.m=nx_patch1; |
---|
| 4256 | patch1.n=ny_patch1; |
---|
| 4257 | end |
---|
| 4258 | patch1.convectFlow='n'; |
---|
| 4259 | fieldnames=fields(patch1); |
---|
| 4260 | [CivAllxml,uid_patch1]=add(CivAllxml,1,'element','patch1'); |
---|
| 4261 | for ilist=1:length(fieldnames) |
---|
| 4262 | val=eval(['patch1.' fieldnames{ilist}]); |
---|
| 4263 | if ischar(val) |
---|
| 4264 | [CivAllxml,uid_t]=add(CivAllxml,uid_patch1,'element',fieldnames{ilist}); |
---|
| 4265 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4266 | end |
---|
| 4267 | end |
---|
| 4268 | CivAllCmd=[CivAllCmd ' patch1 ']; |
---|
| 4269 | end |
---|
[313] | 4270 | end |
---|
[465] | 4271 | |
---|
| 4272 | if Param.CheckCiv2 |
---|
[469] | 4273 | switch Param.Program |
---|
[465] | 4274 | case 'CivX' |
---|
| 4275 | if(isunix) |
---|
[487] | 4276 | cmd=[cmd 'cp -f ' regexprep(filename,'(.+)/(.+$)','$1/0_CMX/$2.civ2.cmx ') regexprep(filename,'(.+)/(.+$)','$1/$2.cmx \n')... |
---|
| 4277 | Param.xml.Civ2Bin ' -f ' regexprep(filename,'(.+)/(.+$)','$1/$2.cmx >') regexprep(filename,'(.+)/(.+$)','$1/0_LOG/$2.civ2.log \n')...% redirect standard output to the log file, the result file is named [filename '.nc'] by CIVx |
---|
| 4278 | 'rm ' regexprep(filename,'(.+)/(.+$)','$1/$2.cmx \n')];%rename .cmx as .checkciv2.cmx, the result file is named [filename '.nc'] by CIVx |
---|
[465] | 4279 | else |
---|
[494] | 4280 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
[465] | 4281 | filename=regexprep(filename,'\\','\\\\'); |
---|
[487] | 4282 | cmd=[cmd 'copy /Y ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\0_CMX\\\\$2.civ2.cmx" ') regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" \n')... |
---|
[494] | 4283 | '"' regexprep(Param.xml.Civ2Bin,'\\','\\\\') '" -f ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" > ')... |
---|
[487] | 4284 | regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\0_LOG\\\\$2.civ2.log" \n')... % redirect standard output to the log file |
---|
[494] | 4285 | 'del ' regexprep(filename,'(.+)\\\\(.+$)','"$1\\\\$2.cmx" \n')]; |
---|
[465] | 4286 | end |
---|
[494] | 4287 | |
---|
[465] | 4288 | case 'CivAll' |
---|
| 4289 | CivAllCmd=[CivAllCmd ' civ2 ']; |
---|
| 4290 | str=CIV2_CMD_Unified(filecell.nc.civ2{ifile,j},'',Param.Civ2); |
---|
| 4291 | fieldnames=fields(str); |
---|
| 4292 | [CivAllxml,uid_civ2]=add(CivAllxml,1,'element','civ2'); |
---|
| 4293 | for ilist=1:length(fieldnames) |
---|
| 4294 | val=eval(['str.' fieldnames{ilist}]); |
---|
| 4295 | if ischar(val) |
---|
| 4296 | [CivAllxml,uid_t]=add(CivAllxml,uid_civ2,'element',fieldnames{ilist}); |
---|
| 4297 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4298 | end |
---|
| 4299 | end |
---|
[309] | 4300 | end |
---|
| 4301 | end |
---|
[284] | 4302 | |
---|
[465] | 4303 | % CheckFix2 |
---|
| 4304 | if Param.CheckFix2==1 |
---|
[469] | 4305 | switch Param.Program |
---|
[465] | 4306 | case 'CivX' |
---|
| 4307 | cmd=[cmd... |
---|
| 4308 | cmd_fix(Param,'Fix2') '\n']; |
---|
| 4309 | case 'CivAll' |
---|
| 4310 | fix2.inputFileName=filecell.nc.civ2{ifile,j} ; |
---|
| 4311 | fix2.fi1=num2str(flagindex2(1)); |
---|
| 4312 | fix2.fi2=num2str(flagindex2(2)); |
---|
| 4313 | fix2.fi3=num2str(flagindex2(3)); |
---|
| 4314 | fix2.threshC=num2str(thresh_vec2C); |
---|
| 4315 | fix2.threshV=num2str(thresh_vel2); |
---|
| 4316 | fieldnames=fields(fix2); |
---|
| 4317 | [CivAllxml,uid_fix2]=add(CivAllxml,1,'element','fix2'); |
---|
| 4318 | for ilist=1:length(fieldnames) |
---|
| 4319 | val=eval(['fix2.' fieldnames{ilist}]); |
---|
| 4320 | if ischar(val) |
---|
| 4321 | [CivAllxml,uid_t]=add(CivAllxml,uid_fix2,'element',fieldnames{ilist}); |
---|
| 4322 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4323 | end |
---|
| 4324 | end |
---|
| 4325 | CivAllCmd=[CivAllCmd ' fix2 ']; |
---|
| 4326 | end |
---|
[284] | 4327 | end |
---|
[285] | 4328 | |
---|
[465] | 4329 | %CheckPatch2 |
---|
| 4330 | if Param.CheckPatch2==1 |
---|
| 4331 | |
---|
[469] | 4332 | switch Param.Program |
---|
[465] | 4333 | |
---|
| 4334 | case 'CivX' |
---|
| 4335 | cmd=[cmd... |
---|
| 4336 | cmd_patch(Param,'Patch2') '\n']; |
---|
| 4337 | case 'CivAll' |
---|
| 4338 | patch2.inputFileName=filecell.nc.civ1{ifile,j} ; |
---|
| 4339 | patch2.nopt=subdomain_patch2; |
---|
| 4340 | patch2.maxdiff=thresh_patch2; |
---|
| 4341 | patch2.ro=rho_patch2; |
---|
| 4342 | test_grid=get(handles.get_gridpatch2,'Value'); |
---|
| 4343 | if test_grid |
---|
| 4344 | patch2.gridflag='y'; |
---|
| 4345 | gridname=get(handles.grid_patch2,'String'); |
---|
| 4346 | if isequal(gridname(end-3:end),'grid') |
---|
| 4347 | nbslice_grid=str2double(gridname(1:end-4)); % |
---|
| 4348 | if ~isnan(nbslice_grid) |
---|
| 4349 | i1_grid=mod(i1_civ2(ifile)-1,nbslice_grid)+1; |
---|
| 4350 | patch2.gridPatch=[filecell.filebase '_' fullfile_uvmat('','',gridname,'.grid','_1',i1_grid)]; |
---|
| 4351 | % patch2.gridPatch=[filecell.filebase '_' name_generator(gridname,i1_grid,1,'.grid','_i')]; |
---|
| 4352 | if ~exist(patch2.gridPatch,'file') |
---|
| 4353 | errormsg='grid file absent for patch2'; |
---|
| 4354 | return |
---|
| 4355 | end |
---|
| 4356 | elseif exist(gridname,'file') |
---|
| 4357 | patch2.gridPatch=gridname; |
---|
| 4358 | else |
---|
| 4359 | errormsg='grid file absent for patch2'; |
---|
| 4360 | return |
---|
| 4361 | end |
---|
| 4362 | end |
---|
| 4363 | else |
---|
| 4364 | patch2.gridPatch='none'; |
---|
| 4365 | patch2.gridflag='n'; |
---|
| 4366 | patch2.m=nx_patch2; |
---|
| 4367 | patch2.n=ny_patch2; |
---|
| 4368 | end |
---|
| 4369 | patch2.convectFlow='n'; |
---|
| 4370 | fieldnames=fields(patch2); |
---|
| 4371 | [CivAllxml,uid_patch2]=add(CivAllxml,1,'element','patch2'); |
---|
| 4372 | for ilist=1:length(fieldnames) |
---|
| 4373 | val=eval(['patch2.' fieldnames{ilist}]); |
---|
| 4374 | if ischar(val) |
---|
| 4375 | [CivAllxml,uid_t]=add(CivAllxml,uid_patch2,'element',fieldnames{ilist}); |
---|
| 4376 | [CivAllxml,uid_t2]=add(CivAllxml,uid_t,'chardata',val); |
---|
| 4377 | end |
---|
| 4378 | end |
---|
| 4379 | CivAllCmd=[CivAllCmd ' patch2 ']; |
---|
| 4380 | end |
---|
| 4381 | end |
---|
[285] | 4382 | |
---|
[482] | 4383 | switch Param.Program |
---|
| 4384 | case 'CivAll' |
---|
| 4385 | save(CivAllxml,[Param.OutputFile '.xml']); |
---|
| 4386 | cmd=[cmd sparam.CivBin ' -f ' Param.OutputFile '.xml ' CivAllCmd ' >' Param.OutputFile '.log' '\n']; |
---|
| 4387 | case 'civ_matlab' |
---|
[486] | 4388 | switch computer |
---|
| 4389 | case {'PCWIN','PCWIN64'} |
---|
| 4390 | filename=regexprep(filename,'\\','\\\\');% add '\' so that '\' are left as characters |
---|
[492] | 4391 | cmd=['civ_matlab(''' regexprep(filename,'(.+)([/\\])(.+$)','$1$20_XML\\$2$3.xml') ''','''... |
---|
| 4392 | filename '.nc'');']; |
---|
[486] | 4393 | case {'GLNX86','GLNXA64','MACI64'} |
---|
[492] | 4394 | cmd=['civ_matlab(''' regexprep(filename,'(.+)([/\\])(.+$)','$1$20_XML$2$3.xml') ''','''... |
---|
| 4395 | filename '.nc'');']; |
---|
[486] | 4396 | end |
---|
[492] | 4397 | |
---|
| 4398 | |
---|
[482] | 4399 | case 'civ_matlab.sh' |
---|
[505] | 4400 | CivmBin=fullfile(fileparts(which('civ')),'civ_matlab.sh'); %path to the source directory of uvmat |
---|
[486] | 4401 | switch computer |
---|
| 4402 | case {'PCWIN','PCWIN64'} |
---|
| 4403 | filename=regexprep(filename,'\\','\\\\');% add '\' so that '\' are left as characters |
---|
| 4404 | % TODO launch command in DOS |
---|
| 4405 | case {'GLNX86','GLNXA64','MACI64'} |
---|
| 4406 | cmd=['#!/bin/bash \n '... |
---|
| 4407 | '#$ -cwd \n '... |
---|
| 4408 | 'hostname && date \n '... |
---|
| 4409 | 'umask 002 \n'... |
---|
[505] | 4410 | CivmBin ' ' Param.xml.RunTime ' ' regexprep(filename,'(.+)([/\\])(.+$)','$1$20_XML$2$3.xml') ' ' Param.OutputFile '.nc'];%allow writting access to created files for user group |
---|
[486] | 4411 | end |
---|
[482] | 4412 | end |
---|
[465] | 4413 | |
---|
| 4414 | |
---|
| 4415 | function cmd=cmd_fix(Param,fixname) |
---|
[285] | 4416 | %% |
---|
[291] | 4417 | switch fixname |
---|
| 4418 | case 'Fix1' |
---|
| 4419 | fi2_value=num2str(Param.(fixname).CheckF2); |
---|
[465] | 4420 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
[291] | 4421 | case 'Fix2' |
---|
| 4422 | fi2_value=num2str(Param.(fixname).CheckF4);%need to understand why... |
---|
[465] | 4423 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
[291] | 4424 | end |
---|
[465] | 4425 | |
---|
| 4426 | % filename=regexprep(Param.(fixname).OutFileName,'.nc',''); |
---|
[287] | 4427 | MaskName_string='';%default |
---|
| 4428 | MaxVel_string='';%default |
---|
[427] | 4429 | if ~isempty(Param.(fixname).MinVel) |
---|
| 4430 | MaxVel_string=[' -threshV ' num2str(Param.(fixname).MinVel)]; |
---|
[287] | 4431 | end |
---|
[285] | 4432 | if isunix |
---|
[287] | 4433 | cmd=[Param.xml.FixBin ' -f ' filename '.nc -fi1 ' num2str(Param.(fixname).CheckFmin2) ... |
---|
[291] | 4434 | ' -fi2 ' fi2_value ' -fi3 ' num2str(Param.(fixname).CheckF3) ... |
---|
[287] | 4435 | ' -threshC ' num2str(Param.(fixname).MinCorr) MaxVel_string MaskName_string... |
---|
[487] | 4436 | ' >' regexprep(filename,'(.+)/(.+$)','$1/0_LOG/$2.') lower(fixname) '.log 2>&1']; |
---|
[285] | 4437 | else |
---|
| 4438 | cmd=['"' Param.xml.FixBin '" -f "' filename '.nc" -fi1 ' num2str(Param.(fixname).CheckFmin2)... |
---|
[291] | 4439 | ' -fi2 ' fi2_value ' -fi3 ' num2str(Param.(fixname).CheckF3) ... |
---|
[288] | 4440 | ' -threshC ' num2str(Param.(fixname).MinCorr) MaxVel_string MaskName_string... |
---|
[465] | 4441 | ' > "' regexprep(filename,'(\w+)\\(\w+$)','$1\\0_LOG\\$2.') lower(fixname) '.log"']; |
---|
[285] | 4442 | cmd=regexprep(cmd,'\\','\\\\'); |
---|
| 4443 | end |
---|
[286] | 4444 | |
---|
| 4445 | |
---|
[465] | 4446 | function cmd=cmd_patch(Param,patchname) |
---|
[286] | 4447 | %% ------------------------------------------------------------------------ |
---|
[465] | 4448 | switch patchname |
---|
| 4449 | case 'Patch1' |
---|
| 4450 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
| 4451 | case 'Patch2' |
---|
| 4452 | filename=regexprep(Param.OutputFile,'.nc',''); |
---|
| 4453 | end |
---|
| 4454 | % filename=regexprep(Param.(patchname).OutFileName,'.nc',''); |
---|
[286] | 4455 | if isunix |
---|
| 4456 | cmd=[Param.xml.PatchBin... |
---|
| 4457 | ' -f ' filename '.nc -m ' num2str(Param.(patchname).Nx)... |
---|
[437] | 4458 | ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).FieldSmooth)... |
---|
[596] | 4459 | ' -nopt ' num2str(Param.(patchname).SubDomainSize) ... |
---|
[487] | 4460 | ' > ' regexprep(filename,'(.+)/(.+$)','$1/0_LOG/$2.') lower(patchname) '.log 2>&1']; % redirect standard output to the log file |
---|
[286] | 4461 | else |
---|
| 4462 | cmd=['"' Param.xml.PatchBin... |
---|
| 4463 | '" -f "' filename '.nc" -m ' num2str(Param.(patchname).Nx)... |
---|
[437] | 4464 | ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).FieldSmooth)... |
---|
[596] | 4465 | ' -nopt ' num2str(Param.(patchname).SubDomainSize)... |
---|
[286] | 4466 | ' > "' filename '.' lower(patchname) '.log" 2>&1']; % redirect standard output to the log file |
---|
| 4467 | cmd=regexprep(cmd,'\\','\\\\'); |
---|
| 4468 | end |
---|
[290] | 4469 | |
---|
[309] | 4470 | |
---|
[465] | 4471 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 4472 | % USELESS FUNCTIONS BELOW HERE, TO CLEAN |
---|
| 4473 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 4474 | |
---|
[309] | 4475 | %------------------------------------------------------------------------ |
---|
| 4476 | % --- CheckCiv1 Unified: TO ABADON |
---|
| 4477 | function xml_civ1_parameters=CIV1_CMD_Unified(filename,namelog,par) |
---|
| 4478 | %------------------------------------------------------------------------ |
---|
| 4479 | %pixels per cm and matrix of the image times, read from the .civ file by uvmat |
---|
| 4480 | %global CivBin%name of the executable for checkciv1 calculation |
---|
| 4481 | |
---|
[315] | 4482 | civ1.image1=par.ImageA; |
---|
| 4483 | civ1.image2=par.ImageB; |
---|
[309] | 4484 | civ1.imageSize_X=par.npx; |
---|
| 4485 | civ1.imageSize_Y=par.npy; |
---|
| 4486 | civ1.outputFileName=[filename '.nc']; |
---|
| 4487 | civ1.correlationBoxesSize_X=par.ibx; |
---|
| 4488 | civ1.correlationBoxesSize_Y=par.iby; |
---|
| 4489 | civ1.searchBoxesSize_X=par.isx; |
---|
| 4490 | civ1.searchBoxesSize_Y=par.isy; |
---|
| 4491 | civ1.globalShift_X=par.shiftx; |
---|
| 4492 | civ1.globalShift_Y=par.shifty; |
---|
| 4493 | civ1.ro=par.rho; |
---|
| 4494 | civ1.hart='y'; |
---|
| 4495 | if isequal(par.gridflag,'y') |
---|
| 4496 | civ1.grid=par.gridname; |
---|
| 4497 | else |
---|
| 4498 | civ1.grid='n'; |
---|
| 4499 | civ1.gridSpacing_X=par.dx; |
---|
| 4500 | civ1.gridSpacing_Y=par.dy; |
---|
| 4501 | end |
---|
| 4502 | if isequal(par.maskflag,'y') |
---|
| 4503 | civ1.mask=par.maskname; |
---|
| 4504 | end |
---|
| 4505 | civ1.dt=par.Dt; |
---|
| 4506 | civ1.unit='pixel'; |
---|
[315] | 4507 | civ1.absolut_time_T0=par.Time; |
---|
| 4508 | civ1.pixcmx='1'; |
---|
| 4509 | civ1.pixcmy='1'; |
---|
[309] | 4510 | civ1.convectFlow='n'; |
---|
| 4511 | |
---|
| 4512 | xml_civ1_parameters=civ1; |
---|
| 4513 | |
---|
| 4514 | %------------------------------------------------------------------------ |
---|
| 4515 | % --- CheckCiv2 Unified: TO ABADON |
---|
| 4516 | function civ2=CIV2_CMD_Unified(filename,namelog,par) |
---|
| 4517 | %------------------------------------------------------------------------ |
---|
| 4518 | %pixels per cm and matrix of the image times, read from the .civ file by uvmat |
---|
| 4519 | %global CivBin%name of the executable for checkciv1 calculation |
---|
| 4520 | |
---|
| 4521 | filename=regexprep(filename,'.nc',''); |
---|
| 4522 | |
---|
[315] | 4523 | civ2.image1=par.ImageA; |
---|
| 4524 | civ2.image2=par.ImageB; |
---|
[309] | 4525 | civ2.imageSize_X=par.npx; |
---|
| 4526 | civ2.imageSize_Y=par.npy; |
---|
| 4527 | civ2.inputFileName=[par.filename_nc1 '.nc']; |
---|
| 4528 | civ2.outputFileName=[filename '.nc']; |
---|
| 4529 | civ2.correlationBoxesSize_X=par.ibx; |
---|
| 4530 | civ2.correlationBoxesSize_Y=par.iby; |
---|
| 4531 | civ2.ro=par.rho; |
---|
| 4532 | %checkciv2.decimalShift=par.CheckDecimal; |
---|
| 4533 | %checkciv2.CheckDeformation=par.CheckDeformation; |
---|
| 4534 | if isequal(par.decimal,'1') |
---|
| 4535 | civ2.decimalShift='y'; |
---|
| 4536 | else |
---|
| 4537 | civ2.decimalShift='n'; |
---|
| 4538 | end |
---|
| 4539 | if isequal(par.deformation,'1') |
---|
| 4540 | civ2.deformation='y'; |
---|
| 4541 | else |
---|
| 4542 | civ2.deformation='n'; |
---|
| 4543 | end |
---|
| 4544 | if isequal(par.gridflag,'y') |
---|
| 4545 | civ2.grid=par.gridname; |
---|
| 4546 | else |
---|
| 4547 | civ2.grid='n'; |
---|
| 4548 | civ2.gridSpacing_X=par.dx; |
---|
| 4549 | civ2.gridSpacing_Y=par.dy; |
---|
| 4550 | end |
---|
| 4551 | civ2.gridSpacing_X='10'; |
---|
| 4552 | civ2.gridSpacing_Y='10';%NOTE: faut mettre gridSpacing pourque ca tourne, meme si c'est la grille qui est utilisee |
---|
| 4553 | if isequal(par.maskflag,'y') |
---|
| 4554 | civ2.mask=par.maskname; |
---|
| 4555 | else |
---|
| 4556 | civ2.mask='n'; |
---|
| 4557 | end |
---|
| 4558 | civ2.dt=par.Dt; |
---|
| 4559 | civ2.unit='pixel'; |
---|
[315] | 4560 | civ2.absolut_time_T0=par.Time; |
---|
| 4561 | civ2.pixcmx='1'; |
---|
| 4562 | civ2.pixcmy='1'; |
---|
[309] | 4563 | civ2.convectFlow='n'; |
---|
[317] | 4564 | |
---|
[648] | 4565 | % 'open_uvmat': open with uvmat the field selected in the list of 'civ/status' |
---|
| 4566 | %------------------------------------------------------------------------ |
---|
| 4567 | %function open_uvmat(hObject, eventdata) |
---|
| 4568 | % |
---|
| 4569 | % INPUT: |
---|
| 4570 | % hObject: handle of uicontrol object containing the list |
---|
| 4571 | % eventdata: not used |
---|
| 4572 | function open_uvmat(hObject, eventdata) |
---|
| 4573 | %------------------------------------------------------------------------ |
---|
| 4574 | list=get(hObject,'String'); |
---|
| 4575 | index=get(hObject,'Value'); |
---|
| 4576 | rootroot=get(hObject,'UserData'); |
---|
| 4577 | filename=list{index}; |
---|
| 4578 | ind_dot=strfind(filename,'...'); |
---|
| 4579 | if ~isempty(ind_dot) |
---|
| 4580 | filename=filename(1:ind_dot-1); |
---|
| 4581 | end |
---|
| 4582 | filename=fullfile(rootroot,filename); |
---|
| 4583 | if exist(filename,'file')%visualise the vel field if it exists |
---|
| 4584 | uvmat(filename) |
---|
| 4585 | set(gcbo,'Value',1) |
---|
| 4586 | end |
---|
[317] | 4587 | |
---|
[648] | 4588 | % |
---|
| 4589 | % % --- Executes on selection change in RunMode. |
---|
| 4590 | % function RunMode_Callback(hObject, eventdata, handles) |
---|
| 4591 | % |
---|
| 4592 | % |
---|
| 4593 | % function nb_field2_Callback(hObject, eventdata, handles) |
---|
| 4594 | % |
---|
| 4595 | % |
---|
| 4596 | % function last_j_Callback(hObject, eventdata, handles) |
---|
| 4597 | % |
---|
| 4598 | % |
---|
| 4599 | % function last_i_Callback(hObject, eventdata, handles) |
---|