[573] | 1 | %'aver_stat': calculate field average over a time series |
---|
[169] | 2 | %------------------------------------------------------------------------ |
---|
[457] | 3 | % function ParamOut=aver_stat(Param) |
---|
[169] | 4 | % |
---|
[447] | 5 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[457] | 6 | % |
---|
[169] | 7 | %OUTPUT |
---|
[596] | 8 | % ParamOut: sets options in the GUI series.fig needed for the function |
---|
[169] | 9 | % |
---|
| 10 | %INPUT: |
---|
[447] | 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) |
---|
[447] | 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 |
---|
[447] | 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 | % |
---|
[447] | 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 |
---|
[447] | 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 |
---|
[447] | 38 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 39 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 40 | |
---|
[457] | 41 | function ParamOut=aver_stat(Param) |
---|
[447] | 42 | |
---|
| 43 | %% set the input elements needed on the GUI series when the action is selected in the menu ActionName |
---|
[592] | 44 | if isstruct(Param) && isequal(Param.Action.RUN,0) |
---|
[605] | 45 | ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
| 46 | ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
| 47 | ParamOut.NbSlice='on'; %nbre of slices ('off' by default) |
---|
| 48 | ParamOut.VelType='two';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 49 | ParamOut.FieldName='two';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 50 | ParamOut.FieldTransform = 'on';%can use a transform function |
---|
| 51 | ParamOut.ProjObject='on';%can use projection object(option 'off'/'on', |
---|
| 52 | ParamOut.Mask='off';%can use mask option (option 'off'/'on', 'off' by default) |
---|
[592] | 53 | ParamOut.OutputDirExt='.stat';%set the output dir extension |
---|
[605] | 54 | ParamOut.OutputFileMode='NbSlice';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice |
---|
| 55 | filecell=get_file_series(Param);%check existence of the first input file |
---|
| 56 | if ~exist(filecell{1,1},'file') |
---|
| 57 | msgbox_uvmat('WARNING','the first input file does not exist') |
---|
| 58 | end |
---|
| 59 | return |
---|
[27] | 60 | end |
---|
| 61 | |
---|
[474] | 62 | %%%%%%%%%%%% STANDARD PART %%%%%%%%%%%% |
---|
[594] | 63 | ParamOut=[]; |
---|
[592] | 64 | %% read input parameters from an xml file if input is a file name (batch mode) |
---|
| 65 | checkrun=1; |
---|
[457] | 66 | if ischar(Param) |
---|
[592] | 67 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 68 | checkrun=0; |
---|
[361] | 69 | end |
---|
[592] | 70 | |
---|
| 71 | |
---|
[462] | 72 | ParamOut=Param; %default output |
---|
[474] | 73 | OutputDir=[Param.OutputSubDir Param.OutputDirExt]; |
---|
| 74 | |
---|
[609] | 75 | %% root input file(s) name, type and index series |
---|
[457] | 76 | RootPath=Param.InputTable(:,1); |
---|
| 77 | RootFile=Param.InputTable(:,3); |
---|
| 78 | SubDir=Param.InputTable(:,2); |
---|
| 79 | NomType=Param.InputTable(:,4); |
---|
| 80 | FileExt=Param.InputTable(:,5); |
---|
[374] | 81 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); |
---|
[474] | 82 | %%%%%%%%%%%% |
---|
| 83 | % The cell array filecell is the list of input file names, while |
---|
| 84 | % filecell{iview,fileindex}: |
---|
[447] | 85 | % iview: line in the table corresponding to a given file series |
---|
| 86 | % fileindex: file index within the file series, |
---|
| 87 | % 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 |
---|
| 88 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices |
---|
[474] | 89 | %%%%%%%%%%%% |
---|
[454] | 90 | nbview=numel(i1_series);%number of input file series (lines in InputTable) |
---|
[457] | 91 | nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) |
---|
| 92 | nbfield_i=size(i1_series{1},2); %nb of fields for the i index |
---|
| 93 | nbfield=nbfield_j*nbfield_i; %total number of fields |
---|
[609] | 94 | [first_i,tild,last_i,first_j,tild,last_j,errormsg]=get_index_range(Param.IndexRange); |
---|
| 95 | if ~isempty(errormsg),display(errormsg),return,end |
---|
[43] | 96 | |
---|
[609] | 97 | %% determine the file type on each line from the first input file |
---|
[447] | 98 | ImageTypeOptions={'image','multimage','mmreader','video'}; |
---|
| 99 | NcTypeOptions={'netcdf','civx','civdata'}; |
---|
[27] | 100 | for iview=1:nbview |
---|
[451] | 101 | if ~exist(filecell{iview,1}','file') |
---|
| 102 | msgbox_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist']) |
---|
| 103 | return |
---|
| 104 | end |
---|
| 105 | [FileType{iview},FileInfo{iview},MovieObject{iview}]=get_file_type(filecell{iview,1}); |
---|
[447] | 106 | CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images |
---|
| 107 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files |
---|
[454] | 108 | if ~isempty(j1_series{iview}) |
---|
| 109 | frame_index{iview}=j1_series{iview}; |
---|
| 110 | else |
---|
| 111 | frame_index{iview}=i1_series{iview}; |
---|
| 112 | end |
---|
[27] | 113 | end |
---|
| 114 | |
---|
[451] | 115 | %% calibration data and timing: read the ImaDoc files |
---|
[470] | 116 | [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series); |
---|
| 117 | if size(time,1)>1 |
---|
[27] | 118 | diff_time=max(max(diff(time))); |
---|
| 119 | if diff_time>0 |
---|
[447] | 120 | msgbox_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)]) |
---|
[27] | 121 | end |
---|
| 122 | end |
---|
| 123 | |
---|
[447] | 124 | %% coordinate transform or other user defined transform |
---|
| 125 | transform_fct='';%default |
---|
[478] | 126 | if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName) |
---|
[474] | 127 | addpath(Param.FieldTransform.TransformPath) |
---|
| 128 | transform_fct=str2func(Param.FieldTransform.TransformName); |
---|
| 129 | rmpath(Param.FieldTransform.TransformPath) |
---|
[27] | 130 | end |
---|
[474] | 131 | |
---|
[447] | 132 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 133 | % EDIT FROM HERE |
---|
| 134 | |
---|
| 135 | %% check the validity of input file types |
---|
| 136 | if CheckImage{1} |
---|
| 137 | FileExtOut='.png'; % write result as .png images for image inputs |
---|
| 138 | elseif CheckNc{1} |
---|
| 139 | FileExtOut='.nc';% write result as .nc files for netcdf inputs |
---|
| 140 | else |
---|
| 141 | msgbox_uvmat('ERROR',['invalid file type input ' FileType{1}]) |
---|
| 142 | return |
---|
| 143 | end |
---|
| 144 | if nbview==2 && ~isequal(CheckImage{1},CheckImage{2}) |
---|
| 145 | msgbox_uvmat('ERROR','input must be two image series or two netcdf file series') |
---|
| 146 | return |
---|
| 147 | end |
---|
[609] | 148 | %NomTypeOut='_1-2_1';% output file index will indicate the first and last ref index in the series |
---|
| 149 | NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file |
---|
[442] | 150 | |
---|
[447] | 151 | %% Set field names and velocity types |
---|
| 152 | InputFields{1}=[];%default (case of images) |
---|
| 153 | if isfield(Param,'InputFields') |
---|
| 154 | InputFields{1}=Param.InputFields; |
---|
| 155 | end |
---|
| 156 | if nbview==2 |
---|
| 157 | InputFields{2}=[];%default (case of images) |
---|
| 158 | if isfield(Param,'InputFields') |
---|
| 159 | InputFields{2}=Param.InputFields{1};%default |
---|
| 160 | if isfield(Param.InputFields,'FieldName_1') |
---|
| 161 | InputFields{2}.FieldName=Param.InputFields.FieldName_1; |
---|
| 162 | if isfield(Param.InputFields,'VelType_1') |
---|
| 163 | InputFields{2}.VelType=Param.InputFields.VelType_1; |
---|
| 164 | end |
---|
| 165 | end |
---|
[255] | 166 | end |
---|
| 167 | end |
---|
[447] | 168 | |
---|
[595] | 169 | % for i_slice=1:NbSlice |
---|
[598] | 170 | % index_slice=i_slice:NbSlice:nbfield;% select file indices of the slice |
---|
| 171 | nbfiles=0; |
---|
| 172 | nbmissing=0; |
---|
[474] | 173 | |
---|
[598] | 174 | %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%% |
---|
| 175 | for index=1:nbfield |
---|
| 176 | %for index=index_slice |
---|
| 177 | if checkrun |
---|
| 178 | stopstate=get(Param.RUNHandle,'BusyAction'); |
---|
| 179 | update_waitbar(Param.WaitbarHandle,index/nbfield) |
---|
| 180 | else |
---|
| 181 | stopstate='queue'; |
---|
| 182 | end |
---|
| 183 | if isequal(stopstate,'queue')% enable STOP command |
---|
| 184 | |
---|
| 185 | %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 186 | for iview=1:nbview |
---|
| 187 | % reading input file(s) |
---|
| 188 | [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},InputFields{iview},frame_index{iview}(index)); |
---|
| 189 | if ~isempty(errormsg) |
---|
| 190 | errormsg=['error of input reading: ' errormsg]; |
---|
| 191 | break |
---|
[447] | 192 | end |
---|
[598] | 193 | if ~isempty(NbSlice_calib) |
---|
| 194 | Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform |
---|
[526] | 195 | end |
---|
[598] | 196 | end |
---|
| 197 | else |
---|
| 198 | errormsg='stop'; |
---|
| 199 | end |
---|
| 200 | %%%%%%%%%%%%%%%% end loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 201 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 202 | % EDIT FROM HERE |
---|
| 203 | |
---|
| 204 | if isempty(errormsg) |
---|
| 205 | Field=Data{1}; % default input field structure |
---|
| 206 | %% coordinate transform (or other user defined transform) |
---|
| 207 | if ~isempty(transform_fct) |
---|
| 208 | switch nargin(transform_fct) |
---|
| 209 | case 4 |
---|
| 210 | if length(Data)==2 |
---|
| 211 | Field=transform_fct(Data{1},XmlData{1},Data{2},XmlData{2}); |
---|
| 212 | else |
---|
[526] | 213 | Field=transform_fct(Data{1},XmlData{1}); |
---|
[598] | 214 | end |
---|
| 215 | case 3 |
---|
| 216 | if length(Data)==2 |
---|
| 217 | Field=transform_fct(Data{1},XmlData{1},Data{2}); |
---|
| 218 | else |
---|
| 219 | Field=transform_fct(Data{1},XmlData{1}); |
---|
| 220 | end |
---|
| 221 | case 2 |
---|
| 222 | Field=transform_fct(Data{1},XmlData{1}); |
---|
| 223 | case 1 |
---|
| 224 | Field=transform_fct(Data{1}); |
---|
[255] | 225 | end |
---|
[598] | 226 | end |
---|
| 227 | |
---|
| 228 | %% calculate tps coefficients if needed |
---|
| 229 | if isfield(Param,'ProjObject')&&isfield(Param.ProjObject,'ProjMode')&& strcmp(Param.ProjObject.ProjMode,'interp_tps') |
---|
| 230 | Field=tps_coeff_field(Field,check_proj_tps); |
---|
| 231 | end |
---|
| 232 | |
---|
| 233 | %field projection on an object |
---|
| 234 | if Param.CheckObject |
---|
| 235 | [Field,errormsg]=proj_field(Field,Param.ProjObject); |
---|
| 236 | if ~isempty(errormsg) |
---|
| 237 | msgbox_uvmat('ERROR',['error in aver_stat/proj_field:' errormsg]) |
---|
| 238 | return |
---|
[494] | 239 | end |
---|
[598] | 240 | end |
---|
| 241 | nbfiles=nbfiles+1; |
---|
[526] | 242 | |
---|
[598] | 243 | %%%%%%%%%%%% MAIN RUNNING OPERATIONS %%%%%%%%%%%% |
---|
| 244 | %update sum |
---|
| 245 | if nbfiles==1 %first field |
---|
| 246 | time_1=[]; |
---|
| 247 | if isfield(Field,'Time') |
---|
| 248 | time_1=Field.Time(1); |
---|
| 249 | end |
---|
| 250 | DataOut=Field;%default |
---|
| 251 | for ivar=1:length(Field.ListVarName) |
---|
| 252 | VarName=Field.ListVarName{ivar}; |
---|
| 253 | DataOut.(VarName)=double(DataOut.(VarName)); |
---|
| 254 | end |
---|
| 255 | else %current field |
---|
| 256 | for ivar=1:length(Field.ListVarName) |
---|
| 257 | VarName=Field.ListVarName{ivar}; |
---|
| 258 | sizmean=size(DataOut.(VarName)); |
---|
| 259 | siz=size(Field.(VarName)); |
---|
| 260 | if ~isequal(DataOut.(VarName),0)&& ~isequal(siz,sizmean) |
---|
| 261 | msgbox_uvmat('ERROR',['unequal size of input field ' VarName ', need to project on a grid']) |
---|
[27] | 262 | return |
---|
[598] | 263 | else |
---|
| 264 | DataOut.(VarName)=DataOut.(VarName)+ double(Field.(VarName)); % update the sum |
---|
[27] | 265 | end |
---|
[255] | 266 | end |
---|
[447] | 267 | end |
---|
[598] | 268 | %%%%%%%%%%%% END MAIN RUNNING OPERATIONS %%%%%%%%%%%% |
---|
| 269 | else |
---|
[609] | 270 | disp(errormsg) |
---|
[255] | 271 | end |
---|
[598] | 272 | end |
---|
| 273 | %%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%% |
---|
| 274 | |
---|
| 275 | for ivar=1:length(Field.ListVarName) |
---|
| 276 | VarName=Field.ListVarName{ivar}; |
---|
| 277 | DataOut.(VarName)=DataOut.(VarName)/nbfiles; % normalize the mean |
---|
| 278 | end |
---|
| 279 | if nbmissing~=0 |
---|
| 280 | msgbox_uvmat('WARNING',[num2str(nbmissing) ' input files are missing or skipted']) |
---|
| 281 | end |
---|
| 282 | if isempty(time) % time is read from files |
---|
| 283 | if isfield(Field,'Time') |
---|
| 284 | time_end=Field.Time(1);%last time read |
---|
| 285 | if ~isempty(time_1) |
---|
| 286 | DataOut.Time=time_1; |
---|
| 287 | DataOut.Time_end=time_end; |
---|
| 288 | end |
---|
[27] | 289 | end |
---|
[598] | 290 | else % time from ImaDoc prevails if it exists |
---|
[565] | 291 | % j1=1;%default |
---|
| 292 | % if ~isempty(j1_series{1}) |
---|
| 293 | % j1=j1_series{1}; |
---|
| 294 | % end |
---|
[598] | 295 | %DataOut.Time=time(1,i1_series{1}(1),j1); |
---|
| 296 | %DataOut.Time_end=time(end,i1_series{end}(end),j1_series{end}(end)); |
---|
| 297 | DataOut.Time=time(1); |
---|
| 298 | DataOut.Time_end=time(end); |
---|
| 299 | end |
---|
| 300 | |
---|
[609] | 301 | %% writing the result file |
---|
| 302 | OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},FileExtOut,NomTypeOut,first_i,last_i,first_j,last_j); |
---|
[598] | 303 | if CheckImage{1} %case of images |
---|
| 304 | if isequal(FileInfo{1}.BitDepth,16)||(numel(FileInfo)==2 &&isequal(FileInfo{2}.BitDepth,16)) |
---|
| 305 | DataOut.A=uint16(DataOut.A); |
---|
| 306 | imwrite(DataOut.A,OutputFile,'BitDepth',16); % case of 16 bit images |
---|
| 307 | else |
---|
| 308 | DataOut.A=uint8(DataOut.A); |
---|
| 309 | imwrite(DataOut.A,OutputFile,'BitDepth',8); % case of 16 bit images |
---|
[27] | 310 | end |
---|
[609] | 311 | disp([OutputFile ' written']); |
---|
[598] | 312 | else %case of netcdf input file , determine global attributes |
---|
| 313 | errormsg=struct2nc(OutputFile,DataOut); %save result file |
---|
| 314 | if isempty(errormsg) |
---|
[609] | 315 | disp([OutputFile ' written']); |
---|
[598] | 316 | else |
---|
[609] | 317 | disp(['error in writting result file: ' errormsg]) |
---|
[598] | 318 | end |
---|
| 319 | end % end averaging loop |
---|
[595] | 320 | % end |
---|
[447] | 321 | %%%%%%%%%%%%%%%% end loop on slices %%%%%%%%%%%%%%%% |
---|
[255] | 322 | |
---|
[451] | 323 | %% open the result file with uvmat (in RUN mode) |
---|
| 324 | if checkrun |
---|
[526] | 325 | % hget_field=findobj(allchild(0),'name','get_field');%find the get_field... GUI |
---|
| 326 | % delete(hget_field) |
---|
[451] | 327 | uvmat(OutputFile)% open the last result file with uvmat |
---|
| 328 | end |
---|