source: trunk/src/series/merge_proj.m @ 106

Last change on this file since 106 was 106, checked in by sommeria, 14 years ago

merge_proj and series.m: bug for use of mmreader corrected
struct2nc: bug for regularly meshed coordinates corrected (builtin netcdf lib)

File size: 17.3 KB
RevLine 
[89]1function GUI_input=merge_proj(num_i1,num_i2,num_j1,num_j2,Series)
[29]2
3%requests for the visibility of input windows in the GUI series  (activated directly by the selection in the menu ACTION)
4if ~exist('num_i1','var')
5    GUI_input={'RootPath';'two';...%nbre of possible input series (options 'on'/'two'/'many', default:'one')
6        'SubDir';'on';... % subdirectory of derived files (PIV fields), ('on' by default)
7        'RootFile';'on';... %root input file name ('on' by default)
8        'FileExt';'on';... %input file extension ('on' by default)
9        'NomType';'on';...%type of file indexing ('on' by default)
10        'NbSlice';'on'; ...%nbre of slices ('off' by default)
11        'VelTypeMenu';'one';...% menu for selecting the velocity type (civ1,..) options 'off'/'one'/'two', 'off' by default)
12        'FieldMenu';'one';...% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
13        'CoordType';'on';...%can use a transform function 'off' by default
14        'GetObject';'on';...%can use projection object ,'off' by default
15        %'GetMask';'on'...%can use mask option   ,'off' by default
16        %'PARAMETER'; options: name of the user defined parameter',repeat a line for each parameter
17               ''};
18    return %exit the function
19end
20
21%-------------------------------------------------
22hseries=guidata(Series.hseries);%handles of the GUI series
23WaitbarPos=get(hseries.waitbar_frame,'Position'); %positiopn of waitbar frame
24%-------------------------------------------------
25
[41]26%projection object
27test_object=get(hseries.GetObject,'Value');
28if test_object
[76]29    hset_object=findobj(allchild(0),'tag','set_object');
[41]30    ProjObject=read_set_object(guidata(hset_object));
31    if ~isfield(ProjObject,'Style')
32            msgbox_uvmat('ERROR','Undefined projection object style')
33            return
34    end
35    if ~isequal(ProjObject.Style,'plane')
36            msgbox_uvmat('ERROR','The projection object must be a plane')
37            return
38    end
39    %answeryes=questdlg({['field series projected on ' Series.ProjObject.Style]});
40    answeryes=msgbox_uvmat('INPUT_Y-N',['field series projected on ' ProjObject.Style]);
41    if ~isequal(answeryes,'Yes')
42        return
43    end
44end
45
[29]46%numbers of view fields (nbre of inputs in RootPath)
47testcell=iscell(Series.RootFile);
48if ~testcell
49    Series.RootPath={Series.RootPath};
50    Series.RootFile={Series.RootFile};
51    Series.SubDir={Series.SubDir};
52    Series.FileExt={Series.FileExt};
53    Series.NomType={Series.NomType};
54    num_i1={num_i1};
55    num_i2={num_i2};
56    num_j1={num_j1};
57    num_j2={num_j2};
58end
59nbview=length(Series.RootFile);%number of views (file series to merge)
60nbfield=size(num_i1{1},1)*size(num_i1{1},2);%number of fields in the time series
61transform=Series.CoordType; %  field transform function
62hhh=which('mmreader');
63for iview=1:nbview
64    test_movie(iview)=0;
65    if ~isequal(hhh,'')&& mmreader.isPlatformSupported()
[106]66        if isequal(lower(Series.FileExt{iview}),'.avi')
[89]67            MovieObject{iview}=mmreader(fullfile(Series.RootPath{iview},[Series.RootFile{iview} Series.FileExt{iview}]));
[29]68            test_movie(iview)=1;
69        end
70    end
71end
72
73%Calibration data and timing: read the ImaDoc files
74mode=''; %default
75timecell={};
76itime=0;
77NbSlice_calib={}; %test for z index
78for iview=1:nbview%Loop on views
79    XmlData{iview}=[];%default
80    filebase{iview}=fullfile(Series.RootPath{iview},Series.RootFile{iview});
81    if exist([filebase{iview} '.xml'],'file')
82        [XmlData{iview},error]=imadoc2struct([filebase{iview} '.xml']);
83        if isfield(XmlData{iview},'Time')
84            itime=itime+1;
85            timecell{itime}=XmlData{iview}.Time;
86        end
87        if isfield(XmlData{iview},'GeometryCalib') && isfield(XmlData{iview}.GeometryCalib,'SliceCoord')
88            NbSlice_calib{iview}=size(XmlData{iview}.GeometryCalib.SliceCoord,1);
89            if ~isequal(NbSlice_calib{iview},NbSlice_calib{1})
90                msgbox_uvmat('WARNING','inconsistent number of Z indices for the two field series');
91            end
92        end   
93    elseif exist([filebase{iview} '.civ'],'file')
94        [error,time,TimeUnit,mode,npx,npy,pxcmx,pxcmy]=read_imatext([filebase{iview} '.civ']);
95        itime=itime+1;
96        timecell{itime}=time;
97        XmlData{iview}.Time=time;
98        GeometryCalib.R=[pxcmx 0 0; 0 pxcmy 0;0 0 0];
99        GeometryCalib.Tx=0;
100        GeometryCalib.Ty=0;
101        GeometryCalib.Tz=1;
102        GeometryCalib.dpx=1;
103        GeometryCalib.dpy=1;
104        GeometryCalib.sx=1;
105        GeometryCalib.Cx=0;
106        GeometryCalib.Cy=0;
107        GeometryCalib.f=1;
108        GeometryCalib.kappa1=0;
109        GeometryCalib.CoordUnit='cm';
110        XmlData{iview}.GeometryCalib=GeometryCalib;
111        if error==1
112            msgbox_uvmat('WARNING','inconsistent number of fields in the .civ file');
113        end
114    end
115end
116
117%check coincidence in time
118multitime=0;
[89]119if isempty(timecell)
[29]120    time=[];
121elseif length(timecell)==1
122    time=timecell{1};
123elseif length(timecell)>1
124    multitime=1;
125    for icell=1:length(timecell)
126        if ~isequal(size(timecell{icell}),size(timecell{1}))
127            msgbox_uvmat('WARNING','inconsistent time array dimensions in ImaDoc fields, the time for the first series is used')
128            time=timecell{1};
129            multitime=0;
130            break
131        end
132    end
133end
134if multitime
135    for icell=1:length(timecell)
136        time(icell,:,:)=timecell{icell};
137    end
138    diff_time=max(max(diff(time)));
139    if diff_time>0
140        msgbox_uvmat('WARNING',['times of series differ by more than ' num2str(diff_time)])
141    end   
142end
143if size(time,2) < num_i2{1}(end) || size(time,3) < num_j2{1}(end)% ime array absent or too short in ImaDoc xml file'
144    time=[];
145end
146
[41]147% coordinate transform or other user defined transform
148transform_fct=[];%default
149if isfield(Series,'transform_fct')
150    transform_fct=Series.transform_fct;
151end
152
[29]153% Field and velocity type (the same for all views)
154Field_str=get(hseries.FieldMenu,'String');
155val=get(hseries.FieldMenu,'Value');
156FieldName=Field_str(val);%the same set of fields for all views
157VelType_str=get(hseries.VelTypeMenu,'String');
158VelType_val=get(hseries.VelTypeMenu,'Value');
159VelType=VelType_str{VelType_val}; %the same for all views
[106]160if strcmp(FieldName,'')
161    msgbox_uvmat('ERROR','no input field defined in FieldMenu')
162elseif strcmp(FieldName,'get_field...')
[29]163    hget_field=findobj(allchild(0),'Name','get_field');%find the get_field... GUI
164    SubField=get_field('read_get_field',hObject,eventdata,hget_field); %read the names of the variables to plot in the get_field GUI
165end
166%detect whether all the files are 'images' or 'netcdf'
167testima=0;
168testvol=0;
169testcivx=0;
170testnc=0;
171FileExt=get(hseries.FileExt,'String');
172for iview=1:nbview
173     ext=FileExt{iview};
[89]174     form=imformats(ext(2:end));
[29]175     if isequal(lower(ext),'.vol')
176         testvol=testvol+1;
177     elseif ~isempty(form)||isequal(lower(ext),'.avi')% if the extension corresponds to an image format recognized by Matlab
178         testima=testima+1;
179     elseif isequal(ext,'.nc')
180         testnc=testnc+1;
181     end
182end
183if testvol
184    msgbox_uvmat('ERROR','volume images not implemented yet')
185    return
186end
187if testnc~=nbview && testima~=nbview && testvol~=nbview
188    msgbox_uvmat('ERROR','need a set of images or a set of netcdf files with the same fields as input')
189    return
190end
191if ~isequal(FieldName,'get_field...')
192    testcivx=testnc;
193end
[41]194
[29]195%name of output files and directory:
196% res_subdir=fullfile(Series.RootPath{1},[Series.SubDir{1} '_STAT']);
197ProjectDir=fileparts(fileparts(Series.RootPath{1}));% preoject directory (GERK)
198prompt={['result directory (in' ProjectDir ')']};
199RootPath=get(hseries.RootPath,'String');
200SubDir=get(hseries.SubDir,'String');
201if isequal(length(RootPath),1)
202    fulldir=RootPath{1};
[41]203    subdir='merge_proj';
[29]204    res_subdir=fullfile(fulldir,subdir);
205else
206    def={fullfile(ProjectDir,'0_RESULTS')};
207    dlgTitle='result directory';
208    lineNo=1;
209    answer=msgbox_uvmat('INPUT_TXT',dlgTitle,def);
210    fulldir=answer{1};
211    subdir=[];
212    dirlist=sort(Series.RootFile);
213    for iview=1:nbview
214        if ~isempty(subdir)
215            subdir=[subdir '-'];
216        end
217        subdir=[subdir dirlist{iview}];
218    end 
219    res_subdir=fullfile(fulldir,subdir);
220end
221ext=FileExt{1};
222if ~exist(fulldir,'dir')
223    msgbox_uvmat('ERROR',['directory ' fulldir ' needs to be created'])
224    return
225end
226if ~exist(res_subdir,'dir')
227    dircur=pwd;
228    cd(fulldir)
229    error=mkdir(subdir);
230    cd(dircur)
231end
232filebasesub=fullfile(res_subdir,Series.RootFile{1});
233filebase_merge=fullfile(res_subdir,'merged');%root name for the merged files
234
235    %MAIN LOOP
236for ifile=1:nbfield               
237    stopstate=get(hseries.RUN,'BusyAction');
238    if isequal(stopstate,'queue')% enable STOP command from the 'series' interface
239         update_waitbar(hseries.waitbar,WaitbarPos,ifile/nbfield)
240         Amerge=0;
241         
242         %----------LOOP ON VIEWS----------------------
243        nbtime=0;
244        for iview=1:nbview
245            %name of the current file
246            filename=name_generator(filebase{iview},num_i1{iview}(ifile),num_j1{iview}(ifile),Series.FileExt{iview},Series.NomType{iview},1,num_i2{iview}(ifile),num_j2{iview}(ifile),SubDir{iview});
247            if ~exist(filename,'file')
248                msgbox_uvmat('ERROR',['missing input file' filename])
249                break
250            end
251
252            %reading the current file
253            if testima
254                if test_movie(iview)
255                    Field{iview}.A=read(MovieObject{iview},num_i1{iview}(ifile));
256                else
[78]257                    Field{iview}.A=imread(filename);
[29]258                end % TODO: introduce ListVarName
259                npxy=size(Field{iview}.A);
260                Field{iview}.AX=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers
261                Field{iview}.AY=[npxy(1)-0.5 0.5];
262                Field{iview}.CoordType='px';
263                Field{iview}.AName='image';
264            else
265                if testcivx
266                    [Field{iview},VelTypeOut]=read_civxdata(filename,FieldName,VelType);
267                else
268                    [Field{iview},var_detect]=nc2struct(filename,SubField.ListVarName); %read the corresponding input data               
269                    Field{iview}.VarAttribute=SubField.VarAttribute;
270                end
[93]271                if isfield(Field{iview},'Txt')
272                    msgbox_uvmat('ERROR',Field{iview}.Txt)
273                    return
274                end
[29]275                if isfield(Field{iview},'Time')
276                    timeread(iview)=Field{iview}.Time;
277                    nbtime=nbtime+1;
278                end
279            end
280            % coord transform
281            % z index
282            if ~isempty(NbSlice_calib)
283                Field{iview}.ZIndex=mod(num_i1{iview}(ifile)-1,NbSlice_calib{1})+1;
284            end
[41]285            if ~isempty(transform_fct)
286                Field{iview}=transform_fct(Field{iview},XmlData{iview});%transform to phys if requested
[29]287            end
288            if testcivx
289                    Field{iview}=calc_field(FieldName,Field{iview});
290            end
291
292            %projection on object (gridded plane)
[41]293            if test_object
294                Field{iview}=proj_field(Field{iview},ProjObject);
[29]295            end
296        end   
297       
298         %----------END LOOP ON VIEWS----------------------
299         
300        %merge the nbview fields
301        MergeData=merge_field(Field);
302        if isfield(MergeData,'Txt')
303            msgbox_uvmat('ERROR',MergeData.Txt)
304            return
305        end
306       
307        % generating the name of the merged field
308        mergename=name_generator(filebase_merge,num_i1{iview}(ifile),num_j1{iview}(ifile),Series.FileExt{iview},Series.NomType{iview},1,num_i2{iview}(ifile),num_j2{iview}(ifile));
309       
310        % time:
311        time_i=0;%default
312        if isempty(time)% time from ImaDoc prevails
313            time_i=sum(timeread)/nbtime;
314        else
315            time_i=(time(iview,num_i1{iview}(ifile),num_j1{iview}(ifile))+time(iview,num_i2{iview}(ifile),num_j2{iview}(ifile)))/2;
316        end
317       
318        % recording the merged field
319        if testima    %in case of input images an image is produced   
320            if isa(MergeData.A,'uint8')
321                bitdepth=8;
322            elseif isa(MergeData.A,'uint16')
323                bitdepth=16;
324            end
325            imwrite(MergeData.A,mergename,'BitDepth',bitdepth);
326            %write xml calibration file
327            siz=size(MergeData.A);
328            npy=siz(1);
329            npx=siz(2);
330            if isfield(MergeData,'VarAttribute')&&isfield(MergeData.VarAttribute{1},'Coord_2')&&isfield(MergeData.VarAttribute{1},'Coord_1')
331                Rangx=MergeData.VarAttribute{1}.Coord_2;
332                Rangy=MergeData.VarAttribute{1}.Coord_1;
333            elseif isfield(MergeData,'AX')&& isfield(MergeData,'AY')
334                Rangx=[MergeData.AX(1) MergeData.AX(end)];
335                Rangy=[MergeData.AY(1) MergeData.AY(end)];
336            else
337                Rangx=[0.5 npx-0.5];
338                Rangy=[npy-0.5 0.5];%default
339            end
340            pxcmx=(npx-1)/(Rangx(2)-Rangx(1));
341            pxcmy=(npy-1)/(Rangy(1)-Rangy(2));
342            T_x=-pxcmx*Rangx(1)+0.5;
343            T_y=-pxcmy*Rangy(2)+0.5;
344            GeometryCal.focal=1;
345            GeometryCal.R=[pxcmx,0,0;0,pxcmy,0;0,0,1];
346            GeometryCal.Tx_Ty_Tz=[T_x T_y 1];
347            ImaDoc.GeometryCalib=GeometryCal;
348            t=struct2xml(ImaDoc);
349            t=set(t,1,'name','ImaDoc');
350            save(t,[filebase_merge '.xml'])     
351            display([filebase_merge '.xml saved'])
352        else
353            MergeData.ListGlobalAttribute={'Project','InputFile_1','InputFile_end','nb_coord','nb_dim','dt','Time','civ'};       
354            MergeData.nb_coord=2;
355            MergeData.nb_dim=2;
[93]356            dt=[];
357            if isfield(Field{1},'dt')&& isnumeric(Field{1}.dt)
358                dt=Field{1}.dt;
359            end
360            for iview =2:numel(Field)
361                if ~(isfield(Field{iview},'dt')&& isequal(Field{iview}.dt,dt))
362                    dt=[];%dt not the same for all fields
363                end
364            end
365            if isempty(dt)
366                MergeData.ListGlobalAttribute(6)=[];
367            else
368               MergeData.dt=dt;
369            end
370            %MergeData.dt=1;
[29]371            MergeData.Time=time_i;
372            error=struct2nc(mergename,MergeData); %save result file
373            if isempty(error)
374                display(['output file ' mergename ' written'])
375            else
376                display(error)
377            end
378        end
379    end
380end
381
382%--------------------------------------------------------------------------   
383function MergeData=merge_field(Data)
384% initiate Matlab  structure for physical field
385if isempty(Data)||~iscell(Data)
386    MergeData=[];
387    return
388end
389MergeData=Data{1};%default
390error=0;
391nbview=length(Data);
392if nbview==1
393    return
394end
395for iview=1:nbview
396    if ~isequal(MergeData.ListDimName,Data{iview}.ListDimName)
397        error=1;
398    end
399    if ~isequal(MergeData.ListVarName,Data{iview}.ListVarName)
400        error=1;
401    end
402end
403if error
404    MergeData.Txt='ERROR: attempt at merging fields of incompatible type';
405    return
406end
[89]407
[93]408
409
410
[89]411%group the variables (fields of 'FieldData') in cells of variables with the same dimensions
412[CellVarIndex,NbDim,VarTypeCell]=find_field_indices(Data{1});
413%LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
414% CellVarIndex=cells of variable index arrays
415ivar_new=0; % index of the current variable in the projected field
416icoord=0;
417for icell=1:length(CellVarIndex)
418    if NbDim(icell)==1
419        continue
420    end
421    VarIndex=CellVarIndex{icell};%  indices of the selected variables in the list FieldData.ListVarName
422    VarType=VarTypeCell{icell};
423    ivar_X=VarType.coord_x;
424    ivar_Y=VarType.coord_y;
425    ivar_FF=VarType.errorflag;
426    if isempty(ivar_X)
427        test_grid=1;%test for input data on regular grid (e.g. image)coordinates
428    else
429        if length(ivar_Y)~=1
430                msgbox_uvmat('ERROR','y coordinate missing in proj_field.m')
431                return
432        end
433        test_grid=0;
434    end
435    %case of input fields with unstructured coordinates
436    if ~test_grid
437        for ivar=VarIndex
438            VarName=MergeData.ListVarName{ivar};
439            for iview=1:nbview
440                eval(['MergeData.' VarName '=[MergeData.' VarName '; Data{iview}.' VarName '];'])
441            end
442        end
443    %case of fields defined on a structured  grid
444    else 
445        testFF=0;
446        for iview=2:nbview
447            for ivar=VarIndex
448                VarName=MergeData.ListVarName{ivar};
449                if isfield(MergeData,'VarAttribute')
450                    if length(MergeData.VarAttribute)>=ivar && isfield(MergeData.VarAttribute{ivar},'Role') && isequal(MergeData.VarAttribute{ivar}.Role,'errorflag')
451                        testFF=1;
452                    end
453                end
454                eval(['MergeData.' VarName '=MergeData.' VarName '+ Data{iview}.' VarName ';'])
455            end
456        end
457        if testFF
458            nbaver=nbview-MergeData.FF;
459            indgood=find(nbaver>0);
460            for ivar=VarIndex
461                VarName=MergeData.ListVarName{ivar};
462                eval(['MergeData.' VarName '(indgood)=double(MergeData.' VarName '(indgood))./nbaver(indgood);'])
463            end
464        else
465            for ivar=VarIndex
466                VarName=MergeData.ListVarName{ivar};
467                eval(['MergeData.' VarName '=double(MergeData.' VarName ')./nbview;'])
468            end   
469        end
470    end
471end
472   
Note: See TracBrowser for help on using the repository browser.