[573] | 1 | %'merge_proj': concatene several fields from series, can project them on a regular grid in phys coordinates |
---|
[457] | 2 | %------------------------------------------------------------------------ |
---|
[464] | 3 | % function ParamOut=merge_proj(Param) |
---|
[457] | 4 | %------------------------------------------------------------------------ |
---|
| 5 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[169] | 6 | % |
---|
| 7 | %OUTPUT |
---|
[596] | 8 | % ParamOut: sets options in the GUI series.fig needed for the function |
---|
[169] | 9 | % |
---|
| 10 | %INPUT: |
---|
[457] | 11 | % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. |
---|
| 12 | % In batch mode, Param is the name of the corresponding xml file containing the same information |
---|
[596] | 13 | % when Param.Action.RUN=0 (as activated when the current Action is selected |
---|
| 14 | % in series), the function ouput paramOut set the activation of the needed GUI elements |
---|
[169] | 15 | % |
---|
[596] | 16 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to |
---|
| 17 | % see the current structure Param) |
---|
[457] | 18 | % .InputTable: cell of input file names, (several lines for multiple input) |
---|
| 19 | % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} |
---|
| 20 | % .OutputSubDir: name of the subdirectory for data outputs |
---|
[474] | 21 | % .OutputDirExt: directory extension for data outputs |
---|
[457] | 22 | % .Action: .ActionName: name of the current activated function |
---|
| 23 | % .ActionPath: path of the current activated function |
---|
[596] | 24 | % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct |
---|
| 25 | % .RUN =0 for GUI input, =1 for function activation |
---|
| 26 | % .RunMode='local','background', 'cluster': type of function use |
---|
| 27 | % |
---|
[457] | 28 | % .IndexRange: set the file or frame indices on which the action must be performed |
---|
| 29 | % .FieldTransform: .TransformName: name of the selected transform function |
---|
| 30 | % .TransformPath: path of the selected transform function |
---|
| 31 | % .InputFields: sub structure describing the input fields withfields |
---|
[596] | 32 | % .FieldName: name(s) of the field |
---|
[457] | 33 | % .VelType: velocity type |
---|
| 34 | % .FieldName_1: name of the second field in case of two input series |
---|
| 35 | % .VelType_1: velocity type of the second field in case of two input series |
---|
[596] | 36 | % .Coord_y: name of y coordinate variable |
---|
| 37 | % .Coord_x: name of x coordinate variable |
---|
[457] | 38 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 39 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 40 | |
---|
[810] | 41 | %======================================================================= |
---|
[1107] | 42 | % Copyright 2008-2022, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France |
---|
[810] | 43 | % http://www.legi.grenoble-inp.fr |
---|
| 44 | % Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr |
---|
| 45 | % |
---|
| 46 | % This file is part of the toolbox UVMAT. |
---|
| 47 | % |
---|
| 48 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 49 | % it under the terms of the GNU General Public License as published |
---|
| 50 | % by the Free Software Foundation; either version 2 of the license, |
---|
| 51 | % or (at your option) any later version. |
---|
| 52 | % |
---|
| 53 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 54 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 55 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 56 | % GNU General Public License (see LICENSE.txt) for more details. |
---|
| 57 | %======================================================================= |
---|
| 58 | |
---|
[462] | 59 | function ParamOut=merge_proj(Param) |
---|
[29] | 60 | |
---|
[606] | 61 | %% set the input elements needed on the GUI series when the function is selected in the menu ActionName or InputTable refreshed |
---|
[592] | 62 | if isstruct(Param) && isequal(Param.Action.RUN,0) |
---|
[606] | 63 | ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
[632] | 64 | ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
[606] | 65 | ParamOut.NbSlice='off'; %nbre of slices ('off' by default) |
---|
| 66 | ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 67 | ParamOut.FieldName='one';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 68 | ParamOut.FieldTransform = 'on';%can use a transform function |
---|
| 69 | ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only) |
---|
| 70 | ParamOut.ProjObject='on';%can use projection object(option 'off'/'on', |
---|
[635] | 71 | ParamOut.Mask='on';%can use mask option (option 'off'/'on', 'off' by default) |
---|
[592] | 72 | ParamOut.OutputDirExt='.mproj';%set the output dir extension |
---|
[605] | 73 | ParamOut.OutputFileMode='NbInput';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice |
---|
[716] | 74 | %check the input files |
---|
[905] | 75 | ParamOut.CheckOverwriteVisible='on'; % manage the overwrite of existing files (default=1) |
---|
[716] | 76 | first_j=[]; |
---|
| 77 | if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end |
---|
| 78 | PairString=''; |
---|
| 79 | if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end |
---|
| 80 | [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString); |
---|
| 81 | FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},... |
---|
| 82 | Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2); |
---|
| 83 | if ~exist(FirstFileName,'file') |
---|
| 84 | msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist']) |
---|
[605] | 85 | end |
---|
[606] | 86 | return |
---|
[29] | 87 | end |
---|
[1115] | 88 | if 0==1 |
---|
| 89 | phys; % used to include phys when compiling is done |
---|
| 90 | end |
---|
[457] | 91 | %%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[632] | 92 | ParamOut=[]; %default output |
---|
[905] | 93 | RUNHandle=[]; |
---|
| 94 | WaitbarHandle=[]; |
---|
[592] | 95 | %% read input parameters from an xml file if input is a file name (batch mode) |
---|
| 96 | checkrun=1; |
---|
[457] | 97 | if ischar(Param) |
---|
[592] | 98 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 99 | checkrun=0; |
---|
[905] | 100 | else |
---|
| 101 | hseries=findobj(allchild(0),'Tag','series'); |
---|
| 102 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series |
---|
| 103 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series |
---|
[374] | 104 | end |
---|
[959] | 105 | |
---|
[624] | 106 | %% define the directory for result file (with path=RootPath{1}) |
---|
| 107 | OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files |
---|
| 108 | |
---|
[550] | 109 | if ~isfield(Param,'InputFields') |
---|
| 110 | Param.InputFields.FieldName=''; |
---|
| 111 | end |
---|
[457] | 112 | |
---|
[960] | 113 | %% root input file(s) name, type and index series |
---|
[457] | 114 | RootPath=Param.InputTable(:,1); |
---|
| 115 | RootFile=Param.InputTable(:,3); |
---|
| 116 | SubDir=Param.InputTable(:,2); |
---|
[1114] | 117 | % NomType=Param.InputTable(:,4); |
---|
[457] | 118 | FileExt=Param.InputTable(:,5); |
---|
[960] | 119 | |
---|
| 120 | hdisp=disp_uvmat('WAITING...','checking the file series',checkrun); |
---|
| 121 | % gives the series of input file names and indices set by the input parameters: |
---|
[374] | 122 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); |
---|
[474] | 123 | % filecell{iview,fileindex}: |
---|
[457] | 124 | % iview: line in the table corresponding to a given file series |
---|
[960] | 125 | % fileindex: file index with i and j reshaped as a 1D array |
---|
[457] | 126 | % i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j |
---|
| 127 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices |
---|
[960] | 128 | if ~isempty(hdisp),delete(hdisp),end;%end the waiting display |
---|
| 129 | |
---|
[606] | 130 | NbView=numel(i1_series);%number of input file series (lines in InputTable) |
---|
| 131 | NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) |
---|
| 132 | NbField_i=size(i1_series{1},2); %nb of fields for the i index |
---|
| 133 | NbField=NbField_j*NbField_i; %total number of fields |
---|
[457] | 134 | |
---|
[673] | 135 | %% determine the file type on each line from the first input file |
---|
[462] | 136 | NcTypeOptions={'netcdf','civx','civdata'}; |
---|
[606] | 137 | for iview=1:NbView |
---|
[462] | 138 | if ~exist(filecell{iview,1}','file') |
---|
[668] | 139 | disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun) |
---|
[462] | 140 | return |
---|
| 141 | end |
---|
[784] | 142 | [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1}); |
---|
[783] | 143 | FileType{iview}=FileInfo{iview}.FileType; |
---|
[1030] | 144 | if strcmp(FileType{iview},'civdata')&& ~isfield(Param.InputFields,'VelType') |
---|
| 145 | FileType{iview}='netcdf'; |
---|
| 146 | end |
---|
[1033] | 147 | CheckImage{iview}=strcmp(FileInfo{iview}.FieldType,'image');% =1 for images |
---|
[880] | 148 | if CheckImage{iview} |
---|
| 149 | ParamIn{iview}=MovieObject{iview}; |
---|
| 150 | else |
---|
| 151 | ParamIn{iview}=Param.InputFields; |
---|
| 152 | end |
---|
[462] | 153 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files |
---|
| 154 | if ~isempty(j1_series{iview}) |
---|
| 155 | frame_index{iview}=j1_series{iview}; |
---|
| 156 | else |
---|
| 157 | frame_index{iview}=i1_series{iview}; |
---|
| 158 | end |
---|
[457] | 159 | end |
---|
[739] | 160 | if NbView >1 && max(cell2mat(CheckImage))>0 && ~isfield(Param,'ProjObject') |
---|
| 161 | disp_uvmat('ERROR','projection on a common grid is needed to concatene images: use a Projection Object of type ''plane'' with ProjMode=''interp_lin''',checkrun) |
---|
| 162 | return |
---|
| 163 | end |
---|
[457] | 164 | |
---|
| 165 | %% calibration data and timing: read the ImaDoc files |
---|
[470] | 166 | [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series); |
---|
| 167 | if size(time,1)>1 |
---|
[457] | 168 | diff_time=max(max(diff(time))); |
---|
[474] | 169 | if diff_time>0 |
---|
[676] | 170 | disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun) |
---|
[457] | 171 | end |
---|
| 172 | end |
---|
[676] | 173 | if ~isempty(errormsg) |
---|
[829] | 174 | disp_uvmat('WARNING',errormsg,checkrun) |
---|
[676] | 175 | end |
---|
| 176 | time=mean(time,1); %averaged time taken for the merged field |
---|
[457] | 177 | |
---|
[409] | 178 | %% coordinate transform or other user defined transform |
---|
[606] | 179 | transform_fct='';%default fct handle |
---|
[478] | 180 | if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName) |
---|
[986] | 181 | currentdir=pwd; |
---|
| 182 | cd(Param.FieldTransform.TransformPath) |
---|
| 183 | transform_fct=str2func(Param.FieldTransform.TransformName); |
---|
| 184 | cd (currentdir) |
---|
| 185 | if isfield(Param,'TransformInput') |
---|
| 186 | for iview=1:NbView |
---|
[883] | 187 | XmlData{iview}.TransformInput=Param.TransformInput; |
---|
[986] | 188 | end |
---|
| 189 | end |
---|
[374] | 190 | end |
---|
[457] | 191 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 192 | % EDIT FROM HERE |
---|
[116] | 193 | |
---|
[457] | 194 | %% check the validity of input file types |
---|
[606] | 195 | for iview=1:NbView |
---|
[673] | 196 | if ~isequal(CheckImage{iview},1)&&~isequal(CheckNc{iview},1) |
---|
[668] | 197 | disp_uvmat('ERROR','input set of input series: need either netcdf either image series',checkrun) |
---|
[632] | 198 | return |
---|
[464] | 199 | end |
---|
[457] | 200 | end |
---|
[673] | 201 | |
---|
| 202 | %% output file type |
---|
| 203 | if min(cell2mat(CheckImage))==1 && (~Param.CheckObject || strcmp(Param.ProjObject.Type,'plane')) |
---|
| 204 | FileExtOut='.png'; %image output (input and proj result = image) |
---|
| 205 | else |
---|
| 206 | FileExtOut='.nc'; %netcdf output |
---|
| 207 | end |
---|
[880] | 208 | if isempty(j1_series{1}) |
---|
| 209 | NomTypeOut='_1'; |
---|
| 210 | else |
---|
| 211 | NomTypeOut='_1_1'; |
---|
| 212 | end |
---|
[867] | 213 | %NomTypeOut=NomType;% output file index will indicate the first and last ref index in the series |
---|
[673] | 214 | RootFileOut=RootFile{1}; |
---|
| 215 | for iview=2:NbView |
---|
| 216 | if ~strcmp(RootFile{iview},RootFile{1}) |
---|
| 217 | RootFileOut='mproj'; |
---|
| 218 | break |
---|
| 219 | end |
---|
| 220 | end |
---|
[457] | 221 | |
---|
[642] | 222 | %% mask (TODO: case of multilevels) |
---|
[668] | 223 | MaskData=cell(NbView,1); |
---|
[642] | 224 | if Param.CheckMask |
---|
[676] | 225 | if ischar(Param.MaskTable)% case of a single mask (char chain) |
---|
| 226 | Param.MaskTable={Param.MaskTable}; |
---|
| 227 | end |
---|
[668] | 228 | for iview=1:numel(Param.MaskTable) |
---|
[673] | 229 | if exist(Param.MaskTable{iview},'file') |
---|
| 230 | [MaskData{iview},tild,errormsg] = read_field(Param.MaskTable{iview},'image'); |
---|
| 231 | if ~isempty(transform_fct) && nargin(transform_fct)>=2 |
---|
| 232 | MaskData{iview}=transform_fct(MaskData{iview},XmlData{iview}); |
---|
| 233 | end |
---|
[642] | 234 | end |
---|
| 235 | end |
---|
| 236 | end |
---|
| 237 | |
---|
[457] | 238 | %% Set field names and velocity types |
---|
[462] | 239 | %use Param.InputFields for all views |
---|
[457] | 240 | |
---|
[640] | 241 | %% MAIN LOOP ON FIELDS |
---|
[457] | 242 | %%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[474] | 243 | |
---|
[457] | 244 | %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%% |
---|
[880] | 245 | tstart=tic; %used to record the computing time |
---|
[938] | 246 | CheckOverwrite=1;%default |
---|
| 247 | if isfield(Param,'CheckOverwrite') |
---|
| 248 | CheckOverwrite=Param.CheckOverwrite; |
---|
| 249 | end |
---|
[1096] | 250 | OutputPath=fullfile(Param.OutputPath,num2str(Param.Experiment),num2str(Param.Device)); |
---|
[1094] | 251 | |
---|
[606] | 252 | for index=1:NbField |
---|
[626] | 253 | update_waitbar(WaitbarHandle,index/NbField) |
---|
[642] | 254 | if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
[624] | 255 | disp('program stopped by user') |
---|
[606] | 256 | return |
---|
| 257 | end |
---|
[938] | 258 | |
---|
| 259 | %% generating the name of the merged field |
---|
| 260 | i1=i1_series{1}(index); |
---|
| 261 | if ~isempty(i2_series{end}) |
---|
| 262 | i2=i2_series{end}(index); |
---|
| 263 | else |
---|
| 264 | i2=i1; |
---|
| 265 | end |
---|
| 266 | j1=1; |
---|
| 267 | j2=1; |
---|
| 268 | if ~isempty(j1_series{1}) |
---|
| 269 | j1=j1_series{1}(index); |
---|
| 270 | if ~isempty(j2_series{end}) |
---|
| 271 | j2=j2_series{end}(index); |
---|
| 272 | else |
---|
| 273 | j2=j1; |
---|
| 274 | end |
---|
| 275 | end |
---|
[1090] | 276 | OutputFile=fullfile_uvmat(OutputPath,OutputDir,RootFileOut,FileExtOut,NomTypeOut,i1,i2,j1,j2); |
---|
[938] | 277 | if ~CheckOverwrite && exist(OutputFile,'file') |
---|
| 278 | disp(['existing output file ' OutputFile ' already exists, skip to next field']) |
---|
| 279 | continue% skip iteration if the mode overwrite is desactivated and the result file already exists |
---|
| 280 | end |
---|
| 281 | |
---|
[606] | 282 | %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 283 | Data=cell(1,NbView);%initiate the set Data |
---|
[676] | 284 | timeread=zeros(1,NbView); |
---|
[606] | 285 | for iview=1:NbView |
---|
[880] | 286 | %% reading input file(s) |
---|
| 287 | [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},ParamIn{iview},frame_index{iview}(index)); |
---|
[1062] | 288 | if isempty(errormsg) |
---|
[1084] | 289 | disp([filecell{iview,index} ' read OK']) |
---|
[1062] | 290 | else |
---|
[746] | 291 | disp_uvmat('ERROR',['ERROR in merge_proj/read_field/' errormsg],checkrun) |
---|
[614] | 292 | return |
---|
[457] | 293 | end |
---|
[938] | 294 | |
---|
[857] | 295 | ListVar=Data{iview}.ListVarName; |
---|
| 296 | for ilist=1:numel(ListVar) |
---|
| 297 | Data{iview}.(ListVar{ilist})=double(Data{iview}.(ListVar{ilist}));% transform all fields in double before all operations |
---|
| 298 | end |
---|
[676] | 299 | % get the time defined in the current file if not already defined from the xml file |
---|
[975] | 300 | if isempty(time) && isfield(Data{iview},'Time') |
---|
[606] | 301 | timeread(iview)=Data{iview}.Time; |
---|
[595] | 302 | end |
---|
[606] | 303 | if ~isempty(NbSlice_calib) |
---|
| 304 | Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform |
---|
| 305 | end |
---|
[642] | 306 | |
---|
[632] | 307 | %% transform the input field (e.g; phys) if requested (no transform involving two input fields) |
---|
[606] | 308 | if ~isempty(transform_fct) |
---|
| 309 | if nargin(transform_fct)>=2 |
---|
| 310 | Data{iview}=transform_fct(Data{iview},XmlData{iview}); |
---|
| 311 | else |
---|
| 312 | Data{iview}=transform_fct(Data{iview}); |
---|
[29] | 313 | end |
---|
[606] | 314 | end |
---|
[632] | 315 | |
---|
[642] | 316 | %% calculate tps coefficients if needed |
---|
[1030] | 317 | |
---|
| 318 | check_proj_tps= strcmp(FileType{iview},'civdata') && isfield(Param,'ProjObject')&&~isempty(Param.ProjObject)... |
---|
| 319 | && strcmp(Param.ProjObject.ProjMode,'interp_tps')&&~isfield(Data{iview},'Coord_tps'); |
---|
[1078] | 320 | if check_proj_tps |
---|
[606] | 321 | Data{iview}=tps_coeff_field(Data{iview},check_proj_tps); |
---|
[1078] | 322 | end |
---|
[642] | 323 | |
---|
[606] | 324 | %% projection on object (gridded plane) |
---|
| 325 | if Param.CheckObject |
---|
| 326 | [Data{iview},errormsg]=proj_field(Data{iview},Param.ProjObject); |
---|
| 327 | if ~isempty(errormsg) |
---|
[746] | 328 | disp_uvmat('ERROR',['ERROR in merge_proge/proj_field: ' errormsg],checkrun) |
---|
[606] | 329 | return |
---|
[29] | 330 | end |
---|
[464] | 331 | end |
---|
[640] | 332 | |
---|
| 333 | %% mask |
---|
[642] | 334 | if Param.CheckMask && ~isempty(MaskData{iview}) |
---|
| 335 | [Data{iview},errormsg]=mask_proj(Data{iview},MaskData{iview}); |
---|
[640] | 336 | end |
---|
[606] | 337 | end |
---|
[673] | 338 | %%%%%%%%%%%%%%%% END LOOP ON VIEWS %%%%%%%%%%%%%%%% |
---|
[606] | 339 | |
---|
| 340 | %% merge the NbView fields |
---|
[739] | 341 | [MergeData,errormsg]=merge_field(Data); |
---|
| 342 | if ~isempty(errormsg) |
---|
| 343 | disp_uvmat('ERROR',errormsg,checkrun); |
---|
[606] | 344 | return |
---|
| 345 | end |
---|
| 346 | |
---|
[673] | 347 | %% time of the merged field: take the average of the different views |
---|
[676] | 348 | if ~isempty(time) |
---|
| 349 | timeread=time(index); |
---|
| 350 | elseif ~isempty(find(timeread))% time defined from ImaDoc |
---|
| 351 | timeread=mean(timeread(timeread~=0));% take average over times form the files (when defined) |
---|
| 352 | else |
---|
| 353 | timeread=index;% take time=file index |
---|
[606] | 354 | end |
---|
| 355 | |
---|
[938] | 356 | |
---|
[673] | 357 | %% recording the merged field |
---|
| 358 | if strcmp(FileExtOut,'.png') %output as image |
---|
| 359 | if index==1 |
---|
[956] | 360 | if strcmp(class(MergeData.A),'uint8') |
---|
| 361 | BitDepth=8; |
---|
| 362 | else |
---|
| 363 | BitDepth=16; |
---|
| 364 | end |
---|
[673] | 365 | %write xml calibration file, using the first file |
---|
| 366 | siz=size(MergeData.A); |
---|
| 367 | npy=siz(1); |
---|
| 368 | npx=siz(2); |
---|
[880] | 369 | if isfield(MergeData,'Coord_x') && isfield(MergeData,'Coord_y') |
---|
| 370 | Rangx=MergeData.Coord_x; |
---|
| 371 | Rangy=MergeData.Coord_y; |
---|
[673] | 372 | elseif isfield(MergeData,'AX')&& isfield(MergeData,'AY') |
---|
| 373 | Rangx=[MergeData.AX(1) MergeData.AX(end)]; |
---|
| 374 | Rangy=[MergeData.AY(1) MergeData.AY(end)]; |
---|
| 375 | else |
---|
| 376 | Rangx=[0.5 npx-0.5]; |
---|
| 377 | Rangy=[npy-0.5 0.5];%default |
---|
| 378 | end |
---|
| 379 | pxcmx=(npx-1)/(Rangx(2)-Rangx(1)); |
---|
| 380 | pxcmy=(npy-1)/(Rangy(1)-Rangy(2)); |
---|
| 381 | T_x=-pxcmx*Rangx(1)+0.5; |
---|
| 382 | T_y=-pxcmy*Rangy(2)+0.5; |
---|
| 383 | GeometryCal.CalibrationType='rescale'; |
---|
| 384 | GeometryCal.CoordUnit=MergeData.CoordUnit; |
---|
| 385 | GeometryCal.focal=1; |
---|
| 386 | GeometryCal.R=[pxcmx,0,0;0,pxcmy,0;0,0,1]; |
---|
| 387 | GeometryCal.Tx_Ty_Tz=[T_x T_y 1]; |
---|
| 388 | ImaDoc.GeometryCalib=GeometryCal; |
---|
| 389 | t=struct2xml(ImaDoc); |
---|
| 390 | t=set(t,1,'name','ImaDoc'); |
---|
| 391 | save(t,[fileparts(OutputFile) '.xml']) |
---|
| 392 | end |
---|
[956] | 393 | if BitDepth==8 |
---|
| 394 | imwrite(uint8(MergeData.A),OutputFile,'BitDepth',8) |
---|
| 395 | else |
---|
| 396 | imwrite(uint16(MergeData.A),OutputFile,'BitDepth',16) |
---|
| 397 | end |
---|
[937] | 398 | else %output as netcdf files |
---|
| 399 | MergeData.ListGlobalAttribute={'Conventions','Project','InputFile_1','InputFile_end','NbCoord','NbDim'}; |
---|
[606] | 400 | MergeData.Conventions='uvmat'; |
---|
[937] | 401 | MergeData.NbCoord=2; |
---|
| 402 | MergeData.NbDim=2; |
---|
| 403 | % time interval of PIV |
---|
| 404 | Dt=[]; |
---|
| 405 | if isfield(Data{1},'Dt')&& isnumeric(Data{1}.Dt) |
---|
| 406 | Dt=Data{1}.Dt; |
---|
[606] | 407 | end |
---|
| 408 | for iview =2:numel(Data) |
---|
[937] | 409 | if ~(isfield(Data{iview},'Dt')&& isequal(Data{iview}.Dt,Dt)) |
---|
| 410 | Dt=[];%dt not the same for all fields |
---|
[464] | 411 | end |
---|
| 412 | end |
---|
[676] | 413 | if ~isempty(timeread) |
---|
| 414 | MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'Time'}]; |
---|
| 415 | MergeData.Time=timeread; |
---|
| 416 | end |
---|
[937] | 417 | % position of projection plane |
---|
| 418 | if isfield(Data{1},'ProjObjectCoord')&& isfield(Data{1},'ProjObjectAngle') |
---|
| 419 | ProjObjectCoord=Data{1}.ProjObjectCoord; |
---|
| 420 | ProjObjectAngle=Data{1}.ProjObjectAngle; |
---|
| 421 | for iview =2:numel(Data) |
---|
| 422 | if ~(isfield(Data{iview},'ProjObjectCoord')&& isequal(Data{iview}.ProjObjectCoord,ProjObjectCoord))... |
---|
| 423 | ||~(isfield(Data{iview},'ProjObjectAngle')&& isequal(Data{iview}.ProjObjectAngle,ProjObjectAngle)) |
---|
| 424 | ProjObjectCoord=[];%dt not the same for all fields |
---|
| 425 | end |
---|
| 426 | end |
---|
| 427 | if ~isempty(ProjObjectCoord) |
---|
| 428 | MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'ProjObjectCoord'} {'ProjObjectAngle'}]; |
---|
| 429 | MergeData.ProjObjectCoord=ProjObjectCoord; |
---|
| 430 | MergeData.ProjObjectAngle=ProjObjectAngle; |
---|
| 431 | end |
---|
[29] | 432 | end |
---|
[937] | 433 | % coord unit |
---|
| 434 | if isfield(Data{1},'CoordUnit') |
---|
| 435 | CoordUnit=Data{1}.CoordUnit; |
---|
| 436 | for iview =2:numel(Data) |
---|
| 437 | if ~(isfield(Data{iview},'CoordUnit')&& isequal(Data{iview}.CoordUnit,CoordUnit)) |
---|
| 438 | CoordUnit=[];%CoordUnit not the same for all fields |
---|
| 439 | end |
---|
| 440 | end |
---|
| 441 | if ~isempty(CoordUnit) |
---|
| 442 | MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'CoordUnit'}]; |
---|
| 443 | MergeData.CoordUnit=CoordUnit; |
---|
| 444 | end |
---|
| 445 | end |
---|
| 446 | % time unit |
---|
| 447 | if isfield(Data{1},'TimeUnit') |
---|
| 448 | TimeUnit=Data{1}.TimeUnit; |
---|
| 449 | for iview =2:numel(Data) |
---|
| 450 | if ~(isfield(Data{iview},'TimeUnit')&& isequal(Data{iview}.TimeUnit,TimeUnit)) |
---|
| 451 | TimeUnit=[];%TimeUnit not the same for all fields |
---|
| 452 | end |
---|
| 453 | end |
---|
| 454 | if ~isempty(TimeUnit) |
---|
| 455 | MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'TimeUnit'}]; |
---|
| 456 | MergeData.TimeUnit=TimeUnit; |
---|
| 457 | end |
---|
| 458 | end |
---|
[606] | 459 | error=struct2nc(OutputFile,MergeData);%save result file |
---|
| 460 | if isempty(error) |
---|
[739] | 461 | disp(['output file ' OutputFile ' written']) |
---|
[606] | 462 | else |
---|
[739] | 463 | disp(error) |
---|
[606] | 464 | end |
---|
[29] | 465 | end |
---|
| 466 | end |
---|
[905] | 467 | ellapsed_time=toc(tstart); |
---|
| 468 | disp(['total ellapsed time ' num2str(ellapsed_time/60,2) ' minutes']) |
---|
| 469 | disp([ num2str(ellapsed_time/(60*NbField),3) ' minutes per iteration']) |
---|
[29] | 470 | |
---|
[222] | 471 | %'merge_field': concatene fields |
---|
| 472 | %------------------------------------------------------------------------ |
---|
[739] | 473 | function [MergeData,errormsg]=merge_field(Data) |
---|
[222] | 474 | %% default output |
---|
[29] | 475 | if isempty(Data)||~iscell(Data) |
---|
| 476 | MergeData=[]; |
---|
| 477 | return |
---|
| 478 | end |
---|
[739] | 479 | errormsg=''; |
---|
[867] | 480 | MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field |
---|
[606] | 481 | NbView=length(Data); |
---|
[867] | 482 | if NbView==1% if there is only one field, just reproduce it in MergeData |
---|
| 483 | return |
---|
[29] | 484 | end |
---|
[222] | 485 | |
---|
[522] | 486 | %% group the variables (fields of 'Data') in cells of variables with the same dimensions |
---|
[668] | 487 | [CellInfo,NbDim,errormsg]=find_field_cells(Data{1}); |
---|
[739] | 488 | if ~isempty(errormsg) |
---|
| 489 | return |
---|
| 490 | end |
---|
[670] | 491 | |
---|
[89] | 492 | %LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS |
---|
[668] | 493 | for icell=1:length(CellInfo) |
---|
[670] | 494 | if NbDim(icell)~=1 % skip field cells which are of dim 1 |
---|
| 495 | switch CellInfo{icell}.CoordType |
---|
[867] | 496 | case 'scattered' %case of input fields with unstructured coordinates: just concatene data |
---|
[670] | 497 | for ivar=CellInfo{icell}.VarIndex % indices of the selected variables in the list FieldData.ListVarName |
---|
| 498 | VarName=Data{1}.ListVarName{ivar}; |
---|
| 499 | for iview=2:NbView |
---|
| 500 | MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)]; |
---|
[89] | 501 | end |
---|
| 502 | end |
---|
[670] | 503 | case 'grid' %case of fields defined on a structured grid |
---|
| 504 | FFName=''; |
---|
[676] | 505 | if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag) |
---|
[670] | 506 | FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable |
---|
[867] | 507 | MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead) |
---|
| 508 | MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[]; |
---|
| 509 | MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[]; |
---|
[670] | 510 | end |
---|
| 511 | % select good data on each view |
---|
| 512 | for ivar=CellInfo{icell}.VarIndex % indices of the selected variables in the list FieldData.ListVarName |
---|
| 513 | VarName=Data{1}.ListVarName{ivar}; |
---|
| 514 | for iview=1:NbView |
---|
| 515 | if isempty(FFName) |
---|
| 516 | check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else |
---|
| 517 | else |
---|
| 518 | check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else |
---|
| 519 | end |
---|
[867] | 520 | Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag |
---|
[670] | 521 | if iview==1 |
---|
[867] | 522 | %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field |
---|
[874] | 523 | MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag |
---|
[670] | 524 | NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point |
---|
[739] | 525 | elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName)) |
---|
| 526 | errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object'; |
---|
| 527 | return |
---|
[867] | 528 | else |
---|
| 529 | MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data |
---|
[670] | 530 | NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else |
---|
| 531 | end |
---|
| 532 | end |
---|
| 533 | MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point |
---|
[867] | 534 | MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data |
---|
[670] | 535 | end |
---|
[89] | 536 | end |
---|
| 537 | end |
---|
| 538 | end |
---|
[222] | 539 | |
---|
[670] | 540 | |
---|
[810] | 541 | |
---|