source: trunk/src/series/aver_stat.m @ 871

Last change on this file since 871 was 871, checked in by sommeria, 9 years ago

histo improved

File size: 20.6 KB
RevLine 
[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
[810]41%=======================================================================
42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
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
[457]59function ParamOut=aver_stat(Param)
[447]60
61%% set the input elements needed on the GUI series when the action is selected in the menu ActionName
[716]62if isstruct(Param) && isequal(Param.Action.RUN,0)% function activated from the GUI series but not RUN
[605]63    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
64    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
65    ParamOut.NbSlice='on'; %nbre of slices ('off' by default)
66    ParamOut.VelType='two';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
67    ParamOut.FieldName='two';% 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.ProjObject='on';%can use projection object(option 'off'/'on',
70    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
[592]71    ParamOut.OutputDirExt='.stat';%set the output dir extension
[605]72    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
[871]73     % check for selection of a projection object
74    hseries=findobj(allchild(0),'Tag','series');% handles of the GUI series
75    if  ~isfield(Param,'ProjObject')
76        answer=msgbox_uvmat('INPUT_Y-N','use a projection object?');
77        if strcmp(answer,'Yes')
78            hhseries=guidata(hseries);
79            set(hhseries.CheckObject,'Visible','on')
80            set(hhseries.CheckObject,'Value',1)
81            Param.CheckObject=1;
82            series('CheckObject_Callback',hseries,[],hhseries); %file input with xml reading  in uvmat, show the image in phys coordinates
83        end
84    end
85    % introduce bin size for histograms
86    if Param.CheckObject
87        SeriesData=get(hseries,'UserData');
88        if ismember(SeriesData.ProjObject.ProjMode,{'inside','outside'})
89            answer=msgbox_uvmat('INPUT_TXT','set bin size for histograms (or keep ''auto'' by default)?','auto');
90            ParamOut.ActionInput.VarMesh=str2double(answer);
91        end
92    end
93    % check the existence of the first and last file in the series
[716]94    first_j=[];
95    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
96    last_j=[];
97    if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
98    PairString='';
99    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
100    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
101    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
102        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
103    if ~exist(FirstFileName,'file')
104        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
105    else
106        [i1,i2,j1,j2] = get_file_index(Param.IndexRange.last_i,last_j,PairString);
107        LastFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
108        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
[871]109        if ~exist(LastFileName,'file')
[716]110             msgbox_uvmat('WARNING',['the last input file ' LastFileName ' does not exist'])
111        end
[605]112    end
113    return
[27]114end
115
[474]116%%%%%%%%%%%%  STANDARD PART  %%%%%%%%%%%%
[624]117ParamOut=[];%default output
[592]118%% read input parameters from an xml file if input is a file name (batch mode)
119checkrun=1;
[457]120if ischar(Param)
[592]121    Param=xml2struct(Param);% read Param as input file (batch case)
122    checkrun=0;
[361]123end
[624]124hseries=findobj(allchild(0),'Tag','series');
125RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
126WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
[592]127
[624]128%% define the directory for result file (with path=RootPath{1})
[474]129OutputDir=[Param.OutputSubDir Param.OutputDirExt];
130   
[609]131%% root input file(s) name, type and index series
[457]132RootPath=Param.InputTable(:,1);
133RootFile=Param.InputTable(:,3);
134SubDir=Param.InputTable(:,2);
135NomType=Param.InputTable(:,4);
136FileExt=Param.InputTable(:,5);
[751]137hdisp=disp_uvmat('WAITING...','checking the file series',checkrun);
[374]138[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
[751]139if ~isempty(hdisp),delete(hdisp),end;
[474]140%%%%%%%%%%%%
141% The cell array filecell is the list of input file names, while
142% filecell{iview,fileindex}:
[447]143%        iview: line in the table corresponding to a given file series
144%        fileindex: file index within  the file series,
145% 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
146% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
[474]147%%%%%%%%%%%%
[673]148NbView=numel(i1_series);%number of input file series (lines in InputTable)
149NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
150NbField_i=size(i1_series{1},2); %nb of fields for the i index
151NbField=NbField_j*NbField_i; %total number of fields
[43]152
[609]153%% determine the file type on each line from the first input file
[447]154ImageTypeOptions={'image','multimage','mmreader','video'};
155NcTypeOptions={'netcdf','civx','civdata'};
[673]156for iview=1:NbView
[451]157    if ~exist(filecell{iview,1}','file')
[867]158        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
[451]159        return
160    end
[784]161    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
[783]162    FileType{iview}=FileInfo{iview}.FileType;
[447]163    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
164    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
[454]165    if ~isempty(j1_series{iview})
166        frame_index{iview}=j1_series{iview};
167    else
168        frame_index{iview}=i1_series{iview};
169    end
[27]170end
171
[451]172%% calibration data and timing: read the ImaDoc files
[470]173[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
174if size(time,1)>1
[27]175    diff_time=max(max(diff(time)));
176    if diff_time>0
[867]177        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)],checkrun)
[27]178    end   
179end
180
[447]181%% coordinate transform or other user defined transform
182transform_fct='';%default
[478]183if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
[474]184    addpath(Param.FieldTransform.TransformPath)
185    transform_fct=str2func(Param.FieldTransform.TransformName);
186    rmpath(Param.FieldTransform.TransformPath)
[27]187end
[474]188
[447]189%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
190 % EDIT FROM HERE
191
[871]192%% check the validity of  input file types and set the output file type
[447]193if CheckImage{1}
194    FileExtOut='.png'; % write result as .png images for image inputs
195elseif CheckNc{1}
196    FileExtOut='.nc';% write result as .nc files for netcdf inputs
[635]197else
[867]198    disp_uvmat('ERROR',['invalid file type input ' FileType{1}],checkrun)
[447]199    return
200end
[673]201if NbView==2 && ~isequal(CheckImage{1},CheckImage{2})
[867]202    disp_uvmat('ERROR','input must be two image series or two netcdf file series',checkrun)
[447]203    return
204end
[871]205if isfield(Param,'ProjObject') && ~strcmp(Param.ProjObject.Type,'plane')
206      FileExtOut='.nc';% write result as .nc files (even for image input)
207end
[635]208
209%% settings for the output file
[609]210NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file
[635]211first_i=i1_series{1}(1);
212last_i=i1_series{1}(end);
213if isempty(j1_series{1})% if there is no second index j
214    first_j=1;last_j=1;
215else
216    first_j=j1_series{1}(1);
217    last_j=j1_series{1}(end);
218end
[442]219
[447]220%% Set field names and velocity types
221InputFields{1}=[];%default (case of images)
[869]222if NbView==2
223    InputFields{2}=[];%default (case of images)
224end
[447]225if isfield(Param,'InputFields')
226    InputFields{1}=Param.InputFields;
[869]227    if NbView==2
228        InputFields{2}=Param.InputFields;%default
[447]229        if isfield(Param.InputFields,'FieldName_1')
230            InputFields{2}.FieldName=Param.InputFields.FieldName_1;
231            if isfield(Param.InputFields,'VelType_1')
232                InputFields{2}.VelType=Param.InputFields.VelType_1;
233            end
234        end
[255]235    end
236end
[871]237nbfiles=0;%counter of the successfully read files (bad files are skipped)
238VarMesh=NaN;
239if isfield(Param,'ProjObject') && ismember(Param.ProjObject.ProjMode,{'inside','outside'})&& isfield(Param.ActionInput,'VarMesh')%case of histograms
240     VarMesh=Param.ActionInput.VarMesh;
241end
[598]242%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
[673]243for index=1:NbField
244    update_waitbar(WaitbarHandle,index/NbField)
[635]245    if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
[624]246        disp('program stopped by user')
247        break
248    end
249   
[598]250    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
[673]251    for iview=1:NbView
[598]252        % reading input file(s)
253        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},InputFields{iview},frame_index{iview}(index));
254        if ~isempty(errormsg)
255            errormsg=['error of input reading: ' errormsg];
256            break
[447]257        end
[598]258        if ~isempty(NbSlice_calib)
259            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
[526]260        end
[598]261    end
262    %%%%%%%%%%%%%%%% end loop on views (input lines) %%%%%%%%%%%%%%%%
263    %%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
264    % EDIT FROM HERE
[624]265   
[598]266    if isempty(errormsg)
267        Field=Data{1}; % default input field structure
[871]268        nbfiles=nbfiles+1; %increment the file counter
[598]269        %% coordinate transform (or other user defined transform)
270        if ~isempty(transform_fct)
271            switch nargin(transform_fct)
272                case 4
273                    if length(Data)==2
274                        Field=transform_fct(Data{1},XmlData{1},Data{2},XmlData{2});
275                    else
[526]276                        Field=transform_fct(Data{1},XmlData{1});
[598]277                    end
278                case 3
279                    if length(Data)==2
280                        Field=transform_fct(Data{1},XmlData{1},Data{2});
281                    else
282                        Field=transform_fct(Data{1},XmlData{1});
283                    end
284                case 2
285                    Field=transform_fct(Data{1},XmlData{1});
286                case 1
287                    Field=transform_fct(Data{1});
[255]288            end
[598]289        end
[624]290       
[871]291        %% field projection on an object
[598]292        if Param.CheckObject
[871]293            if strcmp(Param.ProjObject.ProjMode,'interp_tps')
294                Field=tps_coeff_field(Field,check_proj_tps);% calculate tps coefficients if needed
295            end
296            [Field,errormsg]=proj_field(Field,Param.ProjObject,VarMesh);
[598]297            if ~isempty(errormsg)
[867]298                disp_uvmat('ERROR',['error in aver_stat/proj_field:' errormsg],checkrun)
[598]299                return
[494]300            end
[598]301        end
[871]302             
[598]303        %%%%%%%%%%%% MAIN RUNNING OPERATIONS  %%%%%%%%%%%%
304        if nbfiles==1 %first field
305            time_1=[];
306            if isfield(Field,'Time')
307                time_1=Field.Time(1);
308            end
[871]309            DataOut=Field;%outcome reproduces the first (projected) field by default
310            DataOut.Conventions='uvmat'; %suppress Conventions='uvmat/civdata' for civ input files         
311            if ismember(Param.ProjObject.ProjMode,{'inside','outside'})%case of histograms
312                for ivar=1:numel(Field.ListVarName)% list of variable names before projection (histogram)
313                    VarName=Field.ListVarName{ivar};
314                    if isfield(Data{1},VarName)
315                        DataOut.(VarName)=Field.(VarName);
316                        DataOut.([VarName 'Histo'])=zeros(size(DataOut.(VarName)));
317                        VarMesh=DataOut.(VarName)(2)-DataOut.(VarName)(1);
[867]318                    end
319                end
[871]320                disp(['mesh for histogram = ' num2str(VarMesh)])
321            else
322                errorvar=zeros(numel(Field.ListVarName));%index of errorflag associated to each variable
323                for ivar=1:numel(Field.ListVarName)
324                    VarName=Field.ListVarName{ivar};
325                    DataOut.(VarName)=zeros(size(DataOut.(VarName)));% initiate each field to zero
326                    NbData.(VarName)=zeros(size(DataOut.(VarName)));% initiate the nbre of good data to zero
327                    for iivar=1:length(Field.VarAttribute)
328                        if isequal(Field.VarDimName{iivar},Field.VarDimName{ivar})&& isfield(Field.VarAttribute{iivar},'Role')...
329                                && strcmp(Field.VarAttribute{iivar}.Role,'errorflag')
330                            errorvar(ivar)=iivar; % index of the errorflag variable corresponding to ivar
331                        end
332                    end
333                end
334                DataOut.ListVarName(errorvar(errorvar~=0))=[]; %remove errorflag from result
335                DataOut.VarDimName(errorvar(errorvar~=0))=[]; %remove errorflag from result
336                DataOut.VarAttribute(errorvar(errorvar~=0))=[]; %remove errorflag from result
[598]337            end
[867]338        end   %current field
339        for ivar=1:length(DataOut.ListVarName)
[871]340            VarName=DataOut.ListVarName{ivar};
[867]341            sizmean=size(DataOut.(VarName));
342            siz=size(Field.(VarName));
[871]343            if ismember(Param.ProjObject.ProjMode,{'inside','outside'})
344                if isfield(Data{1},VarName)
345                    MaxValue=max(DataOut.(VarName));% current max of histogram absissa
346                    MinValue=min(DataOut.(VarName));% current min of histogram absissa
347%                     VarMesh=Field.VarAttribute{ivar}.Mesh;
348                    MaxIndex=round(MaxValue/VarMesh);
349                    MinIndex=round(MinValue/VarMesh);
350                    MaxIndex_new=round(max(Field.(VarName)/VarMesh));% max of the current field
351                    MinIndex_new=round(min(Field.(VarName)/VarMesh));
352                    if MaxIndex_new>MaxIndex% the variable max for the current field exceeds the previous one
353                        DataOut.(VarName)=[DataOut.(VarName) VarMesh*(MaxIndex+1:MaxIndex_new)];% append the new variable values
354                        DataOut.([VarName 'Histo'])=[DataOut.([VarName 'Histo']) zeros(1,MaxIndex_new-MaxIndex)]; % append the new histo values                   
355                    end
356                    if MinIndex_new <= MinIndex-1
357                        DataOut.(VarName)=[VarMesh*(MinIndex_new:MinIndex-1) DataOut.(VarName)];% insert the new variable values
358                        DataOut.([VarName 'Histo'])=[zeros(1,MinIndex-MinIndex_new) DataOut.([VarName 'Histo'])];% insert the new histo values
359                        ind_start=1;
360                    else
361                        ind_start=MinIndex_new-MinIndex+1;
362                    end
363                    DataOut.([VarName 'Histo'])(ind_start:ind_start+MaxIndex_new-MinIndex_new)=...
364                        DataOut.([VarName 'Histo'])(ind_start:ind_start+MaxIndex_new-MinIndex_new)+Field.([VarName 'Histo']);   
365                end
366            elseif ~isequal(DataOut.(VarName),0)&& ~isequal(siz,sizmean)
[867]367                disp_uvmat('ERROR',['unequal size of input field ' VarName ', need to project  on a grid'],checkrun)
368                return
369            else
370                if errorvar(ivar)==0
371                    check_bad=isnan(Field.(VarName));%=0 for NaN data values, 1 else
[598]372                else
[867]373                    check_bad=isnan(Field.(VarName)) | Field.(Field.ListVarName{errorvar(ivar)})~=0;%=0 for NaN or error flagged data values, 1 else
[27]374                end
[867]375                Field.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
376                DataOut.(VarName)=DataOut.(VarName)+ double(Field.(VarName)); % update the sum
377                NbData.(VarName)=NbData.(VarName)+ ~check_bad;% records the number of data for each point
[255]378            end
[447]379        end
[598]380        %%%%%%%%%%%%   END MAIN RUNNING OPERATIONS  %%%%%%%%%%%%
381    else
[609]382        disp(errormsg)
[255]383    end
[598]384end
385%%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%%
[871]386if ~ismember(Param.ProjObject.ProjMode,{'inside','outside'})
387    for ivar=1:length(Field.ListVarName)
388        VarName=Field.ListVarName{ivar};
389        DataOut.(VarName)=DataOut.(VarName)./NbData.(VarName); % normalize the mean
390    end
[598]391end
[867]392nbmissing=NbField-nbfiles;
[598]393if nbmissing~=0
[871]394    disp_uvmat('WARNING',[num2str(nbmissing) ' input files are missing or skipped'],checkrun)
[598]395end
396if isempty(time) % time is read from files
397    if isfield(Field,'Time')
398        time_end=Field.Time(1);%last time read
399        if ~isempty(time_1)
400            DataOut.Time=time_1;
401            DataOut.Time_end=time_end;
402        end
[27]403    end
[598]404else  % time from ImaDoc prevails if it exists
405    DataOut.Time=time(1);
406    DataOut.Time_end=time(end);
407end
408
[609]409%% writing the result file
410OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},FileExtOut,NomTypeOut,first_i,last_i,first_j,last_j);
[871]411if strcmp(FileExtOut,'.png') %case of images
[598]412    if isequal(FileInfo{1}.BitDepth,16)||(numel(FileInfo)==2 &&isequal(FileInfo{2}.BitDepth,16))
413        DataOut.A=uint16(DataOut.A);
414        imwrite(DataOut.A,OutputFile,'BitDepth',16); % case of 16 bit images
415    else
416        DataOut.A=uint8(DataOut.A);
417        imwrite(DataOut.A,OutputFile,'BitDepth',8); % case of 16 bit images
[27]418    end
[609]419    disp([OutputFile ' written']);
[871]420else %case of netcdf  file , determine global attributes
[598]421    errormsg=struct2nc(OutputFile,DataOut); %save result file
422    if isempty(errormsg)
[609]423        disp([OutputFile ' written']);
[598]424    else
[609]425        disp(['error in writting result file: ' errormsg])
[598]426    end
427end  % end averaging  loop
[255]428
[451]429%% open the result file with uvmat (in RUN mode)
430if checkrun
431    uvmat(OutputFile)% open the last result file with uvmat
[810]432end
Note: See TracBrowser for help on using the repository browser.