[169] | 1 | %'aver_stat': calculate field average, used with series.fig |
---|
[457] | 2 | % this function can be used as a template for applying a global operation (here averaging) on a series of input fields |
---|
[169] | 3 | %------------------------------------------------------------------------ |
---|
[457] | 4 | % function ParamOut=aver_stat(Param) |
---|
[169] | 5 | % |
---|
[447] | 6 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[457] | 7 | % |
---|
| 8 | % This function is used in four modes by the GUI series: |
---|
| 9 | % 1) config GUI: with no input argument, the function determine the suitable GUI configuration |
---|
| 10 | % 2) interactive input: the function is used to interactively introduce input parameters, and then stops |
---|
| 11 | % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced. |
---|
| 12 | % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input. |
---|
| 13 | % |
---|
| 14 | % This function is used in four modes by the GUI series: |
---|
| 15 | % 1) config GUI: with no input argument, the function determine the suitable GUI configuration |
---|
| 16 | % 2) interactive input: the function is used to interactively introduce input parameters, and then stops |
---|
| 17 | % 3) RUN: the function itself runs, when an appropriate input structure Param has been introduced. |
---|
| 18 | % 4) BATCH: the function itself proceeds in BATCH mode, using an xml file 'Param' as input. |
---|
| 19 | % |
---|
[169] | 20 | %OUTPUT |
---|
| 21 | % GUI_input=list of options in the GUI series.fig needed for the function |
---|
| 22 | % |
---|
| 23 | %INPUT: |
---|
[447] | 24 | % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. |
---|
| 25 | % In batch mode, Param is the name of the corresponding xml file containing the same information |
---|
| 26 | % In the absence of input (as activated when the current Action is selected |
---|
| 27 | % in series), the function ouput GUI_input set the activation of the needed GUI elements |
---|
[169] | 28 | % |
---|
[447] | 29 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) |
---|
| 30 | % .InputTable: cell of input file names, (several lines for multiple input) |
---|
| 31 | % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} |
---|
| 32 | % .OutputSubDir: name of the subdirectory for data outputs |
---|
| 33 | % .OutputDir: directory for data outputs, including path |
---|
| 34 | % .Action: .ActionName: name of the current activated function |
---|
| 35 | % .ActionPath: path of the current activated function |
---|
| 36 | % .IndexRange: set the file or frame indices on which the action must be performed |
---|
| 37 | % .FieldTransform: .TransformName: name of the selected transform function |
---|
| 38 | % .TransformPath: path of the selected transform function |
---|
| 39 | % .TransformHandle: corresponding function handle |
---|
| 40 | % .InputFields: sub structure describing the input fields withfields |
---|
| 41 | % .FieldName: name of the field |
---|
| 42 | % .VelType: velocity type |
---|
| 43 | % .FieldName_1: name of the second field in case of two input series |
---|
| 44 | % .VelType_1: velocity type of the second field in case of two input series |
---|
| 45 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 46 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 47 | |
---|
[457] | 48 | function ParamOut=aver_stat(Param) |
---|
[447] | 49 | |
---|
| 50 | %% set the input elements needed on the GUI series when the action is selected in the menu ActionName |
---|
| 51 | if ~exist('Param','var') % case with no input parameter |
---|
[457] | 52 | ParamOut={'NbViewMax';2;...% max nbre of input file series (default='' , no limitation) |
---|
[447] | 53 | 'AllowInputSort';'off';...% allow alphabetic sorting of the list of input files (options 'off'/'on', 'off' by default) |
---|
[457] | 54 | 'WholeIndexRange';'off';...% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
[27] | 55 | 'NbSlice';'on'; ...%nbre of slices ('off' by default) |
---|
[447] | 56 | 'VelType';'two';...% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 57 | 'FieldName';'two';...% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 58 | 'FieldTransform'; 'on';...%can use a transform function |
---|
| 59 | 'ProjObject';'on';...%can use projection object(option 'off'/'on', |
---|
| 60 | 'Mask';'off';...%can use mask option (option 'off'/'on', 'off' by default) |
---|
| 61 | 'OutputDirExt';'.stat';...%set the output dir extension |
---|
[27] | 62 | ''}; |
---|
| 63 | return |
---|
| 64 | end |
---|
| 65 | |
---|
[447] | 66 | %%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[457] | 67 | %% select different modes, RUN, parameter input, BATCH |
---|
[447] | 68 | % BATCH case: read the xml file for batch case |
---|
[457] | 69 | if ischar(Param) |
---|
| 70 | Param=xml2struct(Param); |
---|
| 71 | checkrun=0; |
---|
| 72 | % RUN case: parameters introduced as the input structure Param |
---|
| 73 | else |
---|
[374] | 74 | hseries=guidata(Param.hseries);%handles of the GUI series |
---|
[447] | 75 | WaitbarPos=get(hseries.waitbar_frame,'Position');%position of the waitbar on the GUI series |
---|
[462] | 76 | if isfield(Param,'Specific')&& strcmp(Param.Specific,'?') |
---|
| 77 | checkrun=1;% will only search interactive input parameters (preparation of BATCH mode) |
---|
| 78 | else |
---|
| 79 | checkrun=2; % indicate the RUN option is used |
---|
| 80 | end |
---|
[361] | 81 | end |
---|
[462] | 82 | ParamOut=Param; %default output |
---|
[457] | 83 | |
---|
| 84 | %% root input file(s) and type |
---|
| 85 | RootPath=Param.InputTable(:,1); |
---|
| 86 | RootFile=Param.InputTable(:,3); |
---|
| 87 | SubDir=Param.InputTable(:,2); |
---|
| 88 | NomType=Param.InputTable(:,4); |
---|
| 89 | FileExt=Param.InputTable(:,5); |
---|
| 90 | |
---|
[447] | 91 | % get the set of input file names (cell array filecell), and the lists of |
---|
| 92 | % input file or frame indices i1_series,i2_series,j1_series,j2_series |
---|
[374] | 93 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); |
---|
[447] | 94 | % filecell{iview,fileindex}: cell array representing the list of file names |
---|
| 95 | % iview: line in the table corresponding to a given file series |
---|
| 96 | % fileindex: file index within the file series, |
---|
| 97 | % 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 |
---|
| 98 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices |
---|
| 99 | % set of frame indices used for movie or multimage input |
---|
[457] | 100 | % numbers of slices and file indices |
---|
[41] | 101 | |
---|
[447] | 102 | NbSlice=1;%default |
---|
[457] | 103 | if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice) |
---|
[447] | 104 | NbSlice=Param.IndexRange.NbSlice; |
---|
[27] | 105 | end |
---|
[454] | 106 | nbview=numel(i1_series);%number of input file series (lines in InputTable) |
---|
[457] | 107 | nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) |
---|
| 108 | nbfield_i=size(i1_series{1},2); %nb of fields for the i index |
---|
| 109 | nbfield=nbfield_j*nbfield_i; %total number of fields |
---|
[454] | 110 | nbfield_i=floor(nbfield/NbSlice);%total number of indexes in a slice (adjusted to an integer number of slices) |
---|
| 111 | nbfield=nbfield_i*NbSlice; %total number of fields after adjustement |
---|
[43] | 112 | |
---|
[447] | 113 | %determine the file type on each line from the first input file |
---|
| 114 | ImageTypeOptions={'image','multimage','mmreader','video'}; |
---|
| 115 | NcTypeOptions={'netcdf','civx','civdata'}; |
---|
[27] | 116 | for iview=1:nbview |
---|
[451] | 117 | if ~exist(filecell{iview,1}','file') |
---|
| 118 | msgbox_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist']) |
---|
| 119 | return |
---|
| 120 | end |
---|
| 121 | [FileType{iview},FileInfo{iview},MovieObject{iview}]=get_file_type(filecell{iview,1}); |
---|
[447] | 122 | CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images |
---|
| 123 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files |
---|
[454] | 124 | if ~isempty(j1_series{iview}) |
---|
| 125 | frame_index{iview}=j1_series{iview}; |
---|
| 126 | else |
---|
| 127 | frame_index{iview}=i1_series{iview}; |
---|
| 128 | end |
---|
[27] | 129 | end |
---|
| 130 | |
---|
[451] | 131 | %% calibration data and timing: read the ImaDoc files |
---|
[27] | 132 | mode=''; %default |
---|
| 133 | timecell={}; |
---|
| 134 | itime=0; |
---|
| 135 | NbSlice_calib={}; |
---|
[457] | 136 | XmlData=cell(1,nbview);%initiate the structures containing the data from the xml file (calibration and timing) |
---|
[27] | 137 | for iview=1:nbview%Loop on views |
---|
[457] | 138 | SubDirBase=regexprep(SubDir{iview},'\..*','');%take the root part of SubDir, before the first dot '.' |
---|
| 139 | filexml=[fullfile(RootPath{iview},SubDirBase) '.xml'];%new convention: xml at the level of the image folder |
---|
| 140 | if ~exist(filexml,'file') |
---|
| 141 | filexml=[fullfile(RootPath{iview},SubDir{iview},RootFile{iview}) '.xml']; % old convention: xml inside the image folder |
---|
| 142 | if ~exist(filexml,'file') |
---|
| 143 | filexml=[fullfile(RootPath{iview},SubDir{iview},RootFile{iview}) '.civ']; % very old convention: .civ file |
---|
| 144 | if ~exist(filexml,'file') |
---|
| 145 | filexml=''; |
---|
| 146 | end |
---|
[27] | 147 | end |
---|
[457] | 148 | end |
---|
| 149 | if ~isempty(filexml) |
---|
| 150 | [XmlData{iview},error]=imadoc2struct(filexml); |
---|
| 151 | end |
---|
| 152 | if isfield(XmlData{iview},'Time') |
---|
[27] | 153 | itime=itime+1; |
---|
[457] | 154 | timecell{itime}=XmlData{iview}.Time; |
---|
| 155 | end |
---|
| 156 | if isfield(XmlData{iview},'GeometryCalib') && isfield(XmlData{iview}.GeometryCalib,'SliceCoord') |
---|
| 157 | NbSlice_calib{iview}=size(XmlData{iview}.GeometryCalib.SliceCoord,1);%nbre of slices for Zindex in phys transform |
---|
| 158 | if ~isequal(NbSlice_calib{iview},NbSlice_calib{1}) |
---|
| 159 | msgbox_uvmat('WARNING','inconsistent number of Z indices for the two field series'); |
---|
[27] | 160 | end |
---|
| 161 | end |
---|
| 162 | end |
---|
| 163 | |
---|
[392] | 164 | %% check coincidence in time for several input file series |
---|
[27] | 165 | multitime=0; |
---|
[55] | 166 | if isempty(timecell) |
---|
[27] | 167 | time=[]; |
---|
| 168 | elseif length(timecell)==1 |
---|
| 169 | time=timecell{1}; |
---|
| 170 | elseif length(timecell)>1 |
---|
| 171 | multitime=1; |
---|
| 172 | for icell=1:length(timecell) |
---|
| 173 | if ~isequal(size(timecell{icell}),size(timecell{1})) |
---|
| 174 | msgbox_uvmat('WARNING','inconsistent time array dimensions in ImaDoc fields, the time for the first series is used') |
---|
| 175 | time=timecell{1}; |
---|
| 176 | multitime=0; |
---|
| 177 | break |
---|
| 178 | end |
---|
| 179 | end |
---|
| 180 | end |
---|
| 181 | if multitime |
---|
| 182 | for icell=1:length(timecell) |
---|
| 183 | time(icell,:,:)=timecell{icell}; |
---|
| 184 | end |
---|
| 185 | diff_time=max(max(diff(time))); |
---|
| 186 | if diff_time>0 |
---|
[447] | 187 | msgbox_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)]) |
---|
[27] | 188 | end |
---|
| 189 | end |
---|
[457] | 190 | if size(time,2) < i2_series{1}(end) ||( ~isempty(j2_series{1}) && size(time,3) < j2_series{1}(end))% time array absent or too short in ImaDoc xml file' |
---|
[27] | 191 | time=[]; |
---|
| 192 | end |
---|
| 193 | |
---|
[447] | 194 | %% coordinate transform or other user defined transform |
---|
| 195 | transform_fct='';%default |
---|
| 196 | if isfield(Param,'FieldTransform')&&isfield(Param.FieldTransform,'TransformHandle') |
---|
| 197 | transform_fct=Param.FieldTransform.TransformHandle; |
---|
[27] | 198 | end |
---|
[447] | 199 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 200 | % EDIT FROM HERE |
---|
| 201 | |
---|
| 202 | %% check the validity of input file types |
---|
| 203 | if CheckImage{1} |
---|
| 204 | FileExtOut='.png'; % write result as .png images for image inputs |
---|
| 205 | elseif CheckNc{1} |
---|
| 206 | FileExtOut='.nc';% write result as .nc files for netcdf inputs |
---|
| 207 | else |
---|
| 208 | msgbox_uvmat('ERROR',['invalid file type input ' FileType{1}]) |
---|
| 209 | return |
---|
| 210 | end |
---|
| 211 | if nbview==2 && ~isequal(CheckImage{1},CheckImage{2}) |
---|
| 212 | msgbox_uvmat('ERROR','input must be two image series or two netcdf file series') |
---|
| 213 | return |
---|
| 214 | end |
---|
| 215 | NomTypeOut='_1-2_1';% output file index will indicate the first and last ref index in the series |
---|
| 216 | if NbSlice~=nbfield_j |
---|
| 217 | answer=msgbox_uvmat('INPUT_Y-N',['will not average slice by slice: for so cancel and set NbSlice= ' num2str(nbfield_j)]); |
---|
| 218 | if ~strcmp(answer,'Yes') |
---|
| 219 | return |
---|
[255] | 220 | end |
---|
[218] | 221 | end |
---|
[442] | 222 | |
---|
[447] | 223 | %% Set field names and velocity types |
---|
| 224 | InputFields{1}=[];%default (case of images) |
---|
| 225 | if isfield(Param,'InputFields') |
---|
| 226 | InputFields{1}=Param.InputFields; |
---|
| 227 | end |
---|
| 228 | if nbview==2 |
---|
| 229 | InputFields{2}=[];%default (case of images) |
---|
| 230 | if isfield(Param,'InputFields') |
---|
| 231 | InputFields{2}=Param.InputFields{1};%default |
---|
| 232 | if isfield(Param.InputFields,'FieldName_1') |
---|
| 233 | InputFields{2}.FieldName=Param.InputFields.FieldName_1; |
---|
| 234 | if isfield(Param.InputFields,'VelType_1') |
---|
| 235 | InputFields{2}.VelType=Param.InputFields.VelType_1; |
---|
| 236 | end |
---|
| 237 | end |
---|
[255] | 238 | end |
---|
| 239 | end |
---|
[447] | 240 | |
---|
| 241 | %% Initiate output fields |
---|
[462] | 242 | % %initiate the output structure as a copy of the first input one (reproduce fields) |
---|
| 243 | % [DataOut,ParamOut,errormsg] = read_field(filecell{1,1},FileType{1},InputFields{1},1); |
---|
| 244 | % if ~isempty(errormsg) |
---|
| 245 | % msgbox_uvmat('ERROR',['error reading ' filecell{1,1} ': ' errormsg]) |
---|
| 246 | % return |
---|
| 247 | % end |
---|
| 248 | % time_1=[]; |
---|
| 249 | % if isfield(DataOut,'Time') |
---|
| 250 | % time_1=DataOut.Time(1); |
---|
| 251 | % end |
---|
| 252 | % if CheckNc{iview} |
---|
| 253 | % if isempty(strcmp('Conventions',DataOut.ListGlobalAttribute)) |
---|
| 254 | % DataOut.ListGlobalAttribute=['Conventions' DataOut.ListGlobalAttribute]; |
---|
| 255 | % end |
---|
| 256 | % DataOut.Conventions='uvmat'; |
---|
| 257 | % DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {Param.Action}]; |
---|
| 258 | % ActionKey='Action'; |
---|
| 259 | % while isfield(DataOut,ActionKey) |
---|
| 260 | % ActionKey=[ActionKey '_1']; |
---|
| 261 | % end |
---|
| 262 | % DataOut.(ActionKey)=Param.Action; |
---|
| 263 | % DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {ActionKey}]; |
---|
| 264 | % if isfield(DataOut,'Time') |
---|
| 265 | % DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {'Time','Time_end'}]; |
---|
| 266 | % end |
---|
| 267 | % end |
---|
[27] | 268 | |
---|
[447] | 269 | %% MAIN LOOP ON SLICES |
---|
| 270 | %%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[27] | 271 | for i_slice=1:NbSlice |
---|
[447] | 272 | index_slice=i_slice:NbSlice:nbfield;% select file indices of the slice |
---|
[255] | 273 | nbfiles=0; |
---|
| 274 | nbmissing=0; |
---|
[447] | 275 | |
---|
[462] | 276 | %initiate result fields |
---|
| 277 | % for ivar=1:length(DataOut.ListVarName) |
---|
| 278 | % DataOut.(DataOut.ListVarName{ivar})=0; % initialise all fields to zero |
---|
| 279 | % end |
---|
| 280 | |
---|
[447] | 281 | %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%% |
---|
| 282 | for index=index_slice |
---|
| 283 | if checkrun |
---|
| 284 | update_waitbar(hseries.waitbar_frame,WaitbarPos,index/(nbfield)) |
---|
| 285 | stopstate=get(hseries.RUN,'BusyAction'); |
---|
| 286 | else |
---|
| 287 | stopstate='queue'; |
---|
| 288 | end |
---|
| 289 | |
---|
| 290 | %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 291 | for iview=1:nbview |
---|
[255] | 292 | % reading input file(s) |
---|
[464] | 293 | [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},InputFields{iview},frame_index{iview}(index)); |
---|
[447] | 294 | if ~isempty(errormsg) |
---|
| 295 | errormsg=['error of input reading: ' errormsg]; |
---|
| 296 | break |
---|
[255] | 297 | end |
---|
[447] | 298 | if ~isempty(NbSlice_calib) |
---|
[454] | 299 | Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform |
---|
[447] | 300 | end |
---|
| 301 | end |
---|
| 302 | Field=[]; % initiate the current input field structure |
---|
| 303 | %%%%%%%%%%%%%%%% end loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 304 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 305 | % EDIT FROM HERE |
---|
[462] | 306 | |
---|
| 307 | if isempty(errormsg) |
---|
[255] | 308 | % coordinate transform (or other user defined transform) |
---|
| 309 | if ~isempty(transform_fct) |
---|
[27] | 310 | if nbview==2 |
---|
[41] | 311 | [Data{1},Data{2}]=transform_fct(Data{1},XmlData{1},Data{2},XmlData{2}); |
---|
[27] | 312 | if isempty(Data{2}) |
---|
| 313 | Data(2)=[]; |
---|
| 314 | end |
---|
| 315 | else |
---|
[80] | 316 | Data{1}=transform_fct(Data{1},XmlData{1}); |
---|
[27] | 317 | end |
---|
[255] | 318 | end |
---|
| 319 | |
---|
| 320 | % field calculation (vort, div...) |
---|
[447] | 321 | if strcmp(FileType{1},'civx')||strcmp(FileType{1},'civ') |
---|
| 322 | Data{1}=calc_field(InputFields{1}.FieldName,Data{1});%calculate field (vort..) |
---|
[27] | 323 | end |
---|
[255] | 324 | |
---|
| 325 | % field substration (for two input file series) |
---|
[27] | 326 | if length(Data)==2 |
---|
[447] | 327 | if strcmp(FileType{2},'civx')||strcmp(FileType{2},'civ') |
---|
| 328 | Data{2}=calc_field(InputFields{2}.FieldName,Data{2});%calculate field (vort..) |
---|
| 329 | end |
---|
[27] | 330 | [Field,errormsg]=sub_field(Data{1},Data{2}); %substract the two fields |
---|
| 331 | if ~isempty(errormsg) |
---|
| 332 | msgbox_uvmat('ERROR',['error in aver_stat/sub_field:' errormsg]) |
---|
| 333 | return |
---|
| 334 | end |
---|
| 335 | else |
---|
| 336 | Field=Data{1}; |
---|
| 337 | end |
---|
[451] | 338 | |
---|
| 339 | %field projection on an object |
---|
[447] | 340 | if Param.CheckObject |
---|
[462] | 341 | [Field,errormsg]=proj_field(Field,Param.ProjObject); |
---|
[255] | 342 | if ~isempty(errormsg) |
---|
[27] | 343 | msgbox_uvmat('ERROR',['error in aver_stat/proj_field:' errormsg]) |
---|
| 344 | return |
---|
| 345 | end |
---|
[255] | 346 | end |
---|
| 347 | nbfiles=nbfiles+1; |
---|
[447] | 348 | |
---|
| 349 | %%%%%%%%%%%% MAIN RUNNING OPERATIONS %%%%%%%%%%%% |
---|
| 350 | %update sum |
---|
[462] | 351 | if nbfiles==1 %first field |
---|
| 352 | time_1=[]; |
---|
| 353 | if isfield(Field,'Time') |
---|
| 354 | time_1=Field.Time(1); |
---|
[255] | 355 | end |
---|
[462] | 356 | DataOut=Field;%default |
---|
| 357 | for ivar=1:length(Field.ListVarName) |
---|
| 358 | VarName=Field.ListVarName{ivar}; |
---|
| 359 | DataOut.(VarName)=double(DataOut.(VarName)); |
---|
| 360 | end |
---|
| 361 | else %current field |
---|
| 362 | for ivar=1:length(Field.ListVarName) |
---|
| 363 | VarName=Field.ListVarName{ivar}; |
---|
| 364 | sizmean=size(DataOut.(VarName)); |
---|
| 365 | siz=size(Field.(VarName)); |
---|
| 366 | if ~isequal(DataOut.(VarName),0)&& ~isequal(siz,sizmean) |
---|
| 367 | msgbox_uvmat('ERROR',['unequal size of input field ' VarName ', need to project on a grid']) |
---|
| 368 | return |
---|
| 369 | else |
---|
| 370 | DataOut.(VarName)=DataOut.(VarName)+ double(Field.(VarName)); % update the sum |
---|
| 371 | end |
---|
| 372 | end |
---|
[255] | 373 | end |
---|
[447] | 374 | %%%%%%%%%%%% END MAIN RUNNING OPERATIONS %%%%%%%%%%%% |
---|
| 375 | else |
---|
[462] | 376 | display(errormsg) |
---|
[447] | 377 | end |
---|
[255] | 378 | end |
---|
[447] | 379 | %%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%% |
---|
| 380 | |
---|
[27] | 381 | for ivar=1:length(Field.ListVarName) |
---|
| 382 | VarName=Field.ListVarName{ivar}; |
---|
[447] | 383 | DataOut.(VarName)=DataOut.(VarName)/nbfiles; % normalize the mean |
---|
[27] | 384 | end |
---|
| 385 | if nbmissing~=0 |
---|
| 386 | msgbox_uvmat('WARNING',[num2str(nbmissing) ' input files are missing or skipted']) |
---|
| 387 | end |
---|
[462] | 388 | if isempty(time) % time is read from files |
---|
[27] | 389 | if isfield(Field,'Time') |
---|
| 390 | time_end=Field.Time(1);%last time read |
---|
| 391 | if ~isempty(time_1) |
---|
[447] | 392 | DataOut.Time=time_1; |
---|
| 393 | DataOut.Time_end=time_end; |
---|
[27] | 394 | end |
---|
| 395 | end |
---|
[457] | 396 | else % time from ImaDoc prevails if it exists |
---|
| 397 | j1=1;%default |
---|
| 398 | if ~isempty(j1_series{1}) |
---|
| 399 | j1=j1_series{1}; |
---|
| 400 | end |
---|
| 401 | DataOut.Time=time(1,i1_series{1}(1),j1filexml); |
---|
[454] | 402 | DataOut.Time_end=time(end,i1_series{end}(end),j1_series{end}(end)); |
---|
[27] | 403 | end |
---|
[255] | 404 | |
---|
[27] | 405 | %writing the result file |
---|
[454] | 406 | OutputFile=fullfile_uvmat(RootPath{1},Param.OutputSubDir,RootFile{1},FileExtOut,NomTypeOut,i1_series{1}(1),i1_series{1}(end),i_slice,[]); |
---|
[447] | 407 | if CheckImage{1} %case of images |
---|
| 408 | if isequal(FileInfo{1}.BitDepth,16)||(numel(FileInfo)==2 &&isequal(FileInfo{2}.BitDepth,16)) |
---|
| 409 | DataOut.A=uint16(DataOut.A); |
---|
| 410 | imwrite(DataOut.A,OutputFile,'BitDepth',16); % case of 16 bit images |
---|
[27] | 411 | else |
---|
[447] | 412 | DataOut.A=uint8(DataOut.A); |
---|
| 413 | imwrite(DataOut.A,OutputFile,'BitDepth',8); % case of 16 bit images |
---|
[27] | 414 | end |
---|
[447] | 415 | display([OutputFile ' written']); |
---|
[55] | 416 | else %case of netcdf input file , determine global attributes |
---|
[447] | 417 | errormsg=struct2nc(OutputFile,DataOut); %save result file |
---|
[27] | 418 | if isempty(errormsg) |
---|
[447] | 419 | display([OutputFile ' written']); |
---|
[27] | 420 | else |
---|
| 421 | msgbox_uvmat('ERROR',['error in writting result file: ' errormsg]) |
---|
| 422 | display(errormsg) |
---|
| 423 | end |
---|
[255] | 424 | end % end averaging loop |
---|
[447] | 425 | end |
---|
| 426 | %%%%%%%%%%%%%%%% end loop on slices %%%%%%%%%%%%%%%% |
---|
[255] | 427 | |
---|
[451] | 428 | %% open the result file with uvmat (in RUN mode) |
---|
| 429 | if checkrun |
---|
| 430 | hget_field=findobj(allchild(0),'name','get_field');%find the get_field... GUI |
---|
| 431 | delete(hget_field) |
---|
| 432 | uvmat(OutputFile)% open the last result file with uvmat |
---|
| 433 | end |
---|