source: trunk/src/series/civ_series.m @ 861

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

bugsrepaired

File size: 60.6 KB
Line 
1%'civ_series': PIV function activated by the general GUI series
2% --- call the sub-functions:
3%   civ: PIV function itself
4%   fix: removes false vectors after detection by various criteria
5%   filter_tps: make interpolation-smoothing
6%------------------------------------------------------------------------
7% function [Data,errormsg,result_conv]= civ_series(Param)
8%
9%OUTPUT
10% Data=structure containing the PIV results and information on the processing parameters
11% errormsg=error message char string, default=''
12% resul_conv: image inter-correlation function for the last grid point (used for tests)
13%
14%INPUT:
15% Param: Matlab structure of input  parameters
16%     Param contains info of the GUI series using the fct read_GUI.
17%     Param.Action.RUN = 0 (to set the status of the GUI series) or =1 to RUN the computation
18%     Param.InputTable: sets the input file(s)
19%           if absent, the fct looks for input data in Param.ActionInput     (test mode)
20%     Param.OutputSubDir: sets the folder name of output file(s,
21%           if absent no file is produced, result in the output structure Data (test mode)
22%     Param.ActionInput: substructure with the parameters provided by the GUI civ_input
23%                      .Civ1: parameters for civ1
24%                      .Fix1: parameters for fix1
25%                      .Patch1:
26%                      .Civ2: for civ2
27%                      .Fix2:
28%                      .Patch2:
29
30%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
31%  Copyright 2011-2014, LEGI / CNRS UJF G-INP, Joel.Sommeria@legi.grenoble-inp.fr
32%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
33%     This is part of the toolbox UVMAT.
34%
35%     UVMAT is free software; you can redistribute it and/or modify
36%     it under the terms of the GNU General Public License as published by
37%     the Free Software Foundation; either version 2 of the License, or
38%     (at your option) any later version.
39%
40%     UVMAT is distributed in the hope that it will be useful,
41%     but WITHOUT ANY WARRANTY; without even the implied warranty of
42%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
43%     GNU General Public License (open UVMAT/COPYING.txt) for more details.
44%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
45
46function [Data,errormsg,result_conv]= civ_series(Param)
47errormsg='';
48
49%% set the input elements needed on the GUI series when the action is selected in the menu ActionName or InputTable refreshed
50if isstruct(Param) && isequal(Param.Action.RUN,0)% function activated from the GUI series but not RUN
51    path_series=fileparts(which('series'));
52    addpath(fullfile(path_series,'series'))
53    Data=civ_input(Param);% introduce the civ parameters using the GUI civ_input
54    if isempty(Data)
55        Data=Param;% if  civ_input has been cancelled, keep previous parameters
56    end
57    Data.Program=mfilename;%gives the name of the current function
58    Data.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
59    Data.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
60    if isfield(Data,'ActionInput') && isfield(Data.ActionInput,'PairIndices')&& strcmp(Data.ActionInput.PairIndices.ListPairMode,'pair j1-j2')
61        Data.Desable_j_index='on';% hide the j index in series (set by the pair choice in civ_input)
62    end
63    Data.NbSlice='off'; %nbre of slices ('off' by default)
64    Data.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
65    Data.FieldName='on';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
66    Data.FieldTransform = 'off';%can use a transform function
67    Data.ProjObject='off';%can use projection object(option 'off'/'on',
68    Data.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
69    Data.OutputDirExt='.civ';%set the output dir extension
70    Data.OutputSubDirMode='last'; %select the last subDir in the input table as root of the output subdir name (option 'all'/'first'/'last', 'all' by default)
71    Data.OutputFileMode='NbInput_i';% one output file expected per value of i index (used for waitbar)
72    return
73end
74
75%% read input parameters from an xml file if input is a file name (batch mode)
76checkrun=1;
77if ischar(Param)
78    Param=xml2struct(Param);% read Param as input file (batch case)
79    checkrun=0;
80end
81
82%% test input
83if ~isfield(Param,'ActionInput')
84    disp_uvmat('ERROR','no parameter set for PIV',checkrun)
85    return
86end
87iview_A=0;%default values
88NbField=1;
89RUNHandle=[];
90CheckInputFile=isfield(Param,'InputTable');%= 1 in test use for TestCiv (no nc file involved)
91CheckOutputFile=isfield(Param,'OutputSubDir');%= 1 in test use for TestPatch (no nc file produced)
92
93%% input files and indexing (skipped in Test mode)
94if CheckInputFile
95    hseries=findobj(allchild(0),'Tag','series');
96    RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
97    WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
98    MaxIndex_i=Param.IndexRange.MaxIndex_i;
99    MinIndex_i=Param.IndexRange.MinIndex_i;
100    MaxIndex_j=ones(size(MaxIndex_i));MinIndex_j=ones(size(MinIndex_i));
101    if isfield(Param.IndexRange,'MaxIndex_j')&& isfield(Param.IndexRange,'MinIndex_j')
102        MaxIndex_j=Param.IndexRange.MaxIndex_j;
103        MinIndex_j=Param.IndexRange.MinIndex_j;
104    end
105    if isfield(Param,'InputTable')
106        [tild,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
107        iview_A=0;% series index (iview) for the first image series
108        iview_B=0;% series index (iview) for the second image series (only non zero for option 'shift' comparing two image series )
109        if Param.ActionInput.CheckCiv1
110            iview_A=1;% usual PIV, the image series is on the first line of the table
111        elseif Param.ActionInput.CheckCiv2 % civ2 is performed without Civ1, a netcdf file series is needed in the first table line
112            iview_A=2;% the second line is used for the input images of Civ2
113        end
114        if strcmp(Param.ActionInput.ListCompareMode,'shift')
115            iview_B=iview_A+1; % the second image series is on the next line of the input table
116        end
117        if iview_A~=0
118            RootPath_A=Param.InputTable{iview_A,1};
119            RootFile_A=Param.InputTable{iview_A,3};
120            SubDir_A=Param.InputTable{iview_A,2};
121            NomType_A=Param.InputTable{iview_A,4};
122            FileExt_A=Param.InputTable{iview_A,5};
123            if iview_B==0
124                iview_B=iview_A;% the second image series is the same as the first
125            end
126            RootPath_B=Param.InputTable{iview_B,1};
127            RootFile_B=Param.InputTable{iview_B,3};
128            SubDir_B=Param.InputTable{iview_B,2};
129            NomType_B=Param.InputTable{iview_B,4};
130            FileExt_B=Param.InputTable{iview_B,5};
131        end
132       
133        PairCiv2='';
134        switch Param.ActionInput.ListCompareMode
135            case 'PIV'
136                PairCiv1=Param.ActionInput.PairIndices.ListPairCiv1;
137                if isfield(Param.ActionInput.PairIndices,'ListPairCiv2')
138                    PairCiv2=Param.ActionInput.PairIndices.ListPairCiv2;%string which determines the civ2 pair
139                end
140                if iview_A==1% if Civ1 is performed
141                    [i1_series_Civ1,i2_series_Civ1,j1_series_Civ1,j2_series_Civ1,check_bounds,NomTypeNc]=...
142                        find_pair_indices(PairCiv1,i1_series{1},j1_series{1},MinIndex_i,MaxIndex_i,MinIndex_j,MaxIndex_j);
143                    if ~isempty(PairCiv2)
144                        [i1_series_Civ2,i2_series_Civ2,j1_series_Civ2,j2_series_Civ2,check_bounds_Civ2]=...
145                            find_pair_indices(PairCiv2,i1_series{1},j1_series{1},MinIndex_i(1),MaxIndex_i(1),MinIndex_j(1),MaxIndex_j(1));
146                        check_bounds=check_bounds | check_bounds_Civ2;
147                    end
148                else% we start from an existing Civ1 file
149                    i1_series_Civ1=i1_series{1};
150                    i2_series_Civ1=i2_series{1};
151                    j1_series_Civ1=j1_series{1};
152                    j2_series_Civ1=j2_series{1};
153                    NomTypeNc=Param.InputTable{1,4};
154                    if ~isempty(PairCiv2)
155                        [i1_series_Civ2,i2_series_Civ2,j1_series_Civ2,j2_series_Civ2,check_bounds,NomTypeNc]=...
156                            find_pair_indices(PairCiv2,i1_series{2},j1_series{2},MinIndex_i(2),MaxIndex_i(2),MinIndex_j(2),MaxIndex_j(2));
157                    end
158                end
159            case 'displacement'
160                i1_series_Civ1=Param.ActionInput.OriginIndex*ones(size(i1_series{1}));
161                i2_series_Civ1=i1_series{1};i2_series_Civ2=i1_series{1};
162                j1_series_Civ1=ones(size(i1_series{1}));% first j index is 1
163                if isempty(j1_series_Civ1)
164                    j2_series_Civ1=ones(size(i1_series{1}));
165                else
166                    j2_series_Civ1=j1_series_Civ1;
167                end
168                i1_series_Civ2=i1_series_Civ1;
169                j1_series_Civ2=j1_series_Civ1;
170                j2_series_Civ2=j2_series_Civ1;
171                NomTypeNc=Param.InputTable{1,4};
172            case 'PIV volume'
173                % TODO, TODO
174        end
175        if isempty(j1_series_Civ1)
176            FrameIndex_A_Civ1=i1_series_Civ1;
177            FrameIndex_B_Civ1=i2_series_Civ1;
178            j1_series_Civ1=ones(size(i1_series_Civ1));
179            j2_series_Civ1=ones(size(i1_series_Civ1));
180        else
181            FrameIndex_A_Civ1=j1_series_Civ1;
182            FrameIndex_B_Civ1=j2_series_Civ1;
183        end
184        if isempty(PairCiv2)
185            FrameIndex_A_Civ2=FrameIndex_A_Civ1;
186            FrameIndex_B_Civ2=FrameIndex_B_Civ1;
187        else
188            if isempty(j1_series_Civ2)
189                FrameIndex_A_Civ2=i1_series_Civ2;
190                FrameIndex_B_Civ2=i2_series_Civ2;
191                j1_series_Civ2=ones(size(i1_series_Civ2));
192                j2_series_Civ2=ones(size(i1_series_Civ2));
193            else
194                FrameIndex_A_Civ2=j1_series_Civ2;
195                FrameIndex_B_Civ2=j2_series_Civ2;
196            end
197        end
198        if isempty(i1_series_Civ1)||(~isempty(PairCiv2) && isempty(i1_series_Civ2))
199            disp_uvmat('ERROR','no image pair fo civ in the input file index range',checkrun)
200            return
201        end
202    end
203   
204    %% check the first image pair
205    try
206        if Param.ActionInput.CheckCiv1% Civ1 is performed
207            ImageName_A=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ1(1),[],j1_series_Civ1(1));
208            if ~exist(ImageName_A,'file')
209                disp_uvmat('ERROR',['first input image ' ImageName_A ' does not exist'],checkrun)
210                return
211            end
212            [FileInfo_A,VideoObject_A]=get_file_info(ImageName_A);
213            FileType_A=FileInfo_A.FileType;
214            if strcmp(FileInfo_A.FileType,'netcdf')
215                FieldName_A=Param.InputFields.FieldName;
216                [DataIn,tild,tild,errormsg]=nc2struct(ImageName_A,{FieldName_A});
217                par_civ1.ImageA=DataIn.(FieldName_A);
218            else
219                [par_civ1.ImageA,VideoObject_A] = read_image(ImageName_A,FileType_A,VideoObject_A,FrameIndex_A_Civ1(1));
220            end
221            ImageName_B=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_series_Civ1(1),[],j2_series_Civ1(1));
222            if ~exist(ImageName_B,'file')
223                disp_uvmat('ERROR',['first input image ' ImageName_B ' does not exist'],checkrun)
224                return
225            end
226            [FileInfo_B,VideoObject_B]=get_file_info(ImageName_B);
227            FileType_B=FileInfo_B.FileType;
228            if strcmp(FileInfo_B.FileType,'netcdf')
229                FieldName_B=Param.InputFields.FieldName;
230                [DataIn,tild,tild,errormsg]=nc2struct(ImageName_B,{FieldName_B});
231                par_civ1.ImageB=DataIn.(FieldName_B);
232            else
233                [par_civ1.ImageB,VideoObject_B] = read_image(ImageName_B,FileType_B,VideoObject_B,FrameIndex_B_Civ1(1));
234            end
235            NbField=numel(i1_series_Civ1);
236        elseif Param.ActionInput.CheckCiv2 % Civ2 is performed without Civ1
237            ImageName_A=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ2(1),[],j1_series_Civ2(1));
238            if ~exist(ImageName_A,'file')
239                disp_uvmat('ERROR',['first input image ' ImageName_A ' does not exist'],checkrun)
240                return
241            end
242            [FileInfo_A,VideoObject_A]=get_file_info(ImageName_A);
243            FileType_A=FileInfo_A.FileType;
244            [par_civ1.ImageA,VideoObject_A] = read_image(ImageName_A,FileInfo_A.FileType,VideoObject_A,FrameIndex_A_Civ2(1));
245            ImageName_B=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_series_Civ2(1),[],j2_series_Civ2(1));
246            if ~exist(ImageName_B,'file')
247                disp_uvmat('ERROR',['first input image ' ImageName_B ' does not exist'],checkrun)
248                return
249            end
250            [FileInfo_B,VideoObject_B]=get_file_info(ImageName_B);
251            FileType_B=FileInfo_B.FileType;
252            [par_civ1.ImageB,VideoObject_B] = read_image(ImageName_B,FileType_B,VideoObject_B,FrameIndex_B_Civ2(1));
253            NbField=numel(i1_series_Civ2);
254        else
255            NbField=numel(i1_series_Civ1);% no image used (only fix or patch) TO CHECK
256        end
257    catch ME
258        if ~isempty(ME.message)
259            disp_uvmat('ERROR', ['error reading input image: ' ME.message],checkrun)
260            return
261        end
262    end
263   
264   
265    %% Output directory
266    OutputDir='';
267    if CheckOutputFile
268        OutputDir=[Param.OutputSubDir Param.OutputDirExt];
269    end
270end
271
272%% prepare output Data
273Data.ListGlobalAttribute={'Conventions','Program','CivStage'};
274Data.Conventions='uvmat/civdata';% states the conventions used for the description of field variables and attributes
275Data.Program='civ_series';
276Data.CivStage=0;%default
277check_civx=0;%default
278
279%% get timing from the ImaDoc file or input video
280if iview_A~=0
281    XmlFileName=find_imadoc(RootPath_A,SubDir_A,RootFile_A,FileExt_A);
282    time=[];
283    if ~isempty(XmlFileName)
284        XmlData=imadoc2struct(XmlFileName);
285        if isfield(XmlData,'Time')
286            time=XmlData.Time;
287            TimeSource='xml';
288        end
289        if isfield(XmlData,'Camera')
290            if isfield(XmlData.Camera,'NbSlice')&& ~isempty(XmlData.Camera.NbSlice)
291                NbSlice_calib{iview}=XmlData.Camera.NbSlice;% Nbre of slices for Zindex in phys transform
292                if ~isequal(NbSlice_calib{iview},NbSlice_calib{1})
293                    msgbox_uvmat('WARNING','inconsistent number of Z indices for the two field series');
294                end
295            end
296            if isfield(XmlData.Camera,'TimeUnit')&& ~isempty(XmlData.Camera.TimeUnit)
297                TimeUnit=XmlData.Camera.TimeUnit;
298            end
299        end
300    end
301    if isempty(time) && ~isempty(find(strcmp(FileType_A,{'mmreader','video'})))% case of video input
302        time=zeros(FileInfo_A.NumberOfFrames+1,2);
303        time(:,2)=(0:1/FileInfo_A.FrameRate:(FileInfo_A.NumberOfFrames)/FileInfo_A.FrameRate)';
304        TimeSource='video';
305        ColorType='truecolor';
306    end
307    if isempty(time)% time = index i +0.001 index j by default
308        %MinIndex_i=min(i1_series_Civ1);
309        MaxIndex_i=max(i2_series_Civ1);
310        %MinIndex_j=min(j1_series_Civ1);
311        MaxIndex_j=max(j2_series_Civ1);
312        time=(1:MaxIndex_i)'*ones(1,MaxIndex_j);
313        time=time+0.001*ones(MaxIndex_i,1)*(1:MaxIndex_j);
314        time=[zeros(1,MaxIndex_j);time];% insert a first line of zeros
315        time=[zeros(MaxIndex_i+1,1) time];% insert a first column of zeros
316    end
317   
318    if length(FileInfo_A) >1 %case of image with multiple frames
319        nbfield=length(FileInfo_A);
320        nbfield_j=1;
321    end
322end
323
324%%%%% MAIN LOOP %%%%%%
325maskname='';% initiate the mask name
326for ifield=1:NbField
327    if ~isempty(RUNHandle)% update the waitbar in interactive mode with GUI series  (checkrun=1)
328        update_waitbar(WaitbarHandle,ifield/NbField)
329        if  get(RUNHandle,'Value')&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
330            disp('program stopped by user')
331            break
332        end
333    end
334    if CheckInputFile
335        if iview_A==0 % no nc file has been entered
336            ncfile=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},Param.InputTable{1,5},...
337                NomTypeNc,i1_series_Civ1(ifield),i2_series_Civ1(ifield),j1_series_Civ1(ifield),j2_series_Civ1(ifield));
338        else% an existing nc file has been entered
339            if iview_A==1% if Civ1 is performed
340                Civ1Dir=OutputDir;
341            else
342                Civ1Dir=Param.InputTable{1,2};
343            end
344            if strcmp(Param.ActionInput.ListCompareMode,'PIV')
345                ncfile=fullfile_uvmat(RootPath_A,Civ1Dir,RootFile_A,'.nc',NomTypeNc,i1_series_Civ1(ifield),i2_series_Civ1(ifield),...
346                    j1_series_Civ1(ifield),j2_series_Civ1(ifield));
347            else
348                ncfile=fullfile_uvmat(RootPath_A,Civ1Dir,RootFile_A,'.nc',NomTypeNc,i2_series_Civ1(ifield),[],...
349                    j1_series_Civ1(ifield),j2_series_Civ1(ifield));
350            end
351        end
352    end
353    %% Civ1
354    % if Civ1 computation is requested
355    if isfield (Param.ActionInput,'Civ1')
356        par_civ1=Param.ActionInput.Civ1;
357        if CheckInputFile % read input images (except in mode Test where it is introduced directly in Param.ActionInput.Civ1.ImageNameA and B)
358            try
359                ImageName_A=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ1(ifield),[],j1_series_Civ1(ifield));
360                if strcmp(FileInfo_A.FileType,'netcdf')% case of input images in format netcdf
361                    FieldName_A=Param.InputFields.FieldName;
362                    [DataIn,tild,tild,errormsg]=nc2struct(ImageName_A,{FieldName_A});
363                    par_civ1.ImageA=DataIn.(FieldName_A);
364                else % usual image formats for image A
365                    [par_civ1.ImageA,VideoObject_A] = read_image(ImageName_A,FileType_A,VideoObject_A,FrameIndex_A_Civ1(ifield));
366                end
367                ImageName_B=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_series_Civ1(ifield),[],j2_series_Civ1(ifield));
368                if strcmp(FileInfo_B.FileType,'netcdf') % case of input images in format netcdf
369                    FieldName_B=Param.InputFields.FieldName;
370                    [DataIn,tild,tild,errormsg]=nc2struct(ImageName_B,{FieldName_B});
371                    par_civ1.ImageB=DataIn.(FieldName_B);
372                else % usual image formats for image B
373                    [par_civ1.ImageB,VideoObject_B] = read_image(ImageName_B,FileType_B,VideoObject_B,FrameIndex_B_Civ1(ifield));
374                end
375            catch ME % display errors in reading input images
376                if ~isempty(ME.message)
377                    disp_uvmat('ERROR', ['error reading input image: ' ME.message],checkrun)
378                    return
379                end
380            end
381            par_civ1.ImageWidth=size(par_civ1.ImageA,2);%FileInfo_A.Width;
382            par_civ1.ImageHeight=size(par_civ1.ImageA,1);%FileInfo_A.Height;
383            list_param=(fieldnames(Param.ActionInput.Civ1))';
384            list_param(strcmp('TestCiv1',list_param))=[];% remove the parameter TestCiv1 from the list
385            Civ1_param=regexprep(list_param,'^.+','Civ1_$0');% insert 'Civ1_' before  each string in list_param
386            Civ1_param=[{'Civ1_ImageA','Civ1_ImageB','Civ1_Time','Civ1_Dt'} Civ1_param]; %insert the names of the two input images
387            %indicate the values of all the global attributes in the output data
388            Data.Civ1_ImageA=ImageName_A;
389            Data.Civ1_ImageB=ImageName_B;
390            i1=i1_series_Civ1(ifield);
391            i2=i1;
392            if ~isempty(i2_series_Civ1)
393                i2=i2_series_Civ1(ifield);
394            end
395            j1=1;
396            if ~isempty(j1_series_Civ1)
397                j1=j1_series_Civ1(ifield);
398            end
399            j2=j1;
400            if ~isempty(j2_series_Civ1)
401                j2=j2_series_Civ1(ifield);
402            end
403            if strcmp(Param.ActionInput.ListCompareMode,'displacement')
404                Data.Civ1_Time=time(i2+1,j2+1);% the time is the time of the secodn image
405                Data.Civ1_Dt=1;% time interval is 1, to yield displacement instead of velocity=displacement/Dt at reading
406            else
407            Data.Civ1_Time=(time(i2+1,j2+1)+time(i1+1,j1+1))/2;% the time is the time at the middle of the image pair
408            Data.Civ1_Dt=time(i2+1,j2+1)-time(i1+1,j1+1);
409            end
410            for ilist=1:length(list_param)
411                Data.(Civ1_param{4+ilist})=Param.ActionInput.Civ1.(list_param{ilist});
412            end
413            Data.ListGlobalAttribute=[Data.ListGlobalAttribute Civ1_param];
414            Data.CivStage=1;
415        end
416        % set the list of variables
417        Data.ListVarName={'Civ1_X','Civ1_Y','Civ1_U','Civ1_V','Civ1_F','Civ1_C'};%  cell array containing the names of the fields to record
418        Data.VarDimName={'nb_vec_1','nb_vec_1','nb_vec_1','nb_vec_1','nb_vec_1','nb_vec_1'};
419        Data.VarAttribute{1}.Role='coord_x';
420        Data.VarAttribute{2}.Role='coord_y';
421        Data.VarAttribute{3}.Role='vector_x';
422        Data.VarAttribute{4}.Role='vector_y';
423        Data.VarAttribute{5}.Role='warnflag';
424        if par_civ1.CheckMask&&~isempty(par_civ1.Mask)
425            if strcmp(maskname,par_civ1.Mask)% mask exist, not already read in civ1
426                par_civ1.Mask=mask; %use mask already opened
427            else
428                try
429                    par_civ1.Mask=imread(par_civ1.Mask);%update the mask, an store it for future use
430                catch ME
431                    if ~isempty(ME.message)
432                        errormsg=['error reading input image: ' ME.message];
433                        disp_uvmat('ERROR',errormsg,checkrun)
434                        return
435                    end
436                end
437                mask=par_civ1.Mask;
438                maskname=par_civ1.Mask;
439            end
440        end
441        if strcmp(Param.ActionInput.ListCompareMode, 'PIV volume')
442            Data.ListVarName=[Data.ListVarName 'Civ1_Z'];
443            Data.Civ1_X=[];Data.Civ1_Y=[];Data.Civ1_Z=[];
444            Data.Civ1_U=[];Data.Civ1_V=[];Data.Civ1_C=[];Data.Civ1_F=[];
445            for ivol=1:NbSlice
446                % caluclate velocity data (y and v in indices, reverse to y component)
447                [xtable, ytable, utable, vtable, ctable, F, result_conv, errormsg] = civ (par_civ1);
448                if ~isempty(errormsg)
449                    disp_uvmat('ERROR',errormsg,checkrun)
450                    return
451                end
452                Data.Civ1_X=[Data.Civ1_X reshape(xtable,[],1)];
453                Data.Civ1_Y=[Data.Civ1_Y reshape(Param.Civ1.ImageHeight-ytable+1,[],1)];
454                Data.Civ1_Z=[Data.Civ1_Z ivol*ones(numel(xtable),1)];% z=image index in image coordinates
455                Data.Civ1_U=[Data.Civ1_U reshape(utable,[],1)];
456                Data.Civ1_V=[Data.Civ1_V reshape(-vtable,[],1)];
457                Data.Civ1_C=[Data.Civ1_C reshape(ctable,[],1)];
458                Data.Civ1_F=[Data.Civ1_C reshape(F,[],1)];
459            end
460        else %usual PIV
461            % caluclate velocity data (y and v in indices, reverse to y component)
462            [xtable, ytable, utable, vtable, ctable, F, result_conv, errormsg] = civ (par_civ1);
463            if ~isempty(errormsg)
464                disp_uvmat('ERROR',errormsg,checkrun)
465                return
466            end
467            Data.Civ1_X=reshape(xtable,[],1);
468            Data.Civ1_Y=reshape(par_civ1.ImageHeight-ytable+1,[],1);
469            Data.Civ1_U=reshape(utable,[],1);
470            Data.Civ1_V=reshape(-vtable,[],1);
471            Data.Civ1_C=reshape(ctable,[],1);
472            Data.Civ1_F=reshape(F,[],1);
473        end
474    else% we use existing Civ1 data
475        if exist('ncfile','var')
476            CivFile=ncfile;
477            [Data,tild,tild,errormsg]=nc2struct(CivFile,'ListGlobalAttribute','absolut_time_T0'); %look for the constant 'absolut_time_T0' to detect old civx data format
478            if ~isempty(errormsg)
479                disp_uvmat('ERROR',errormsg,checkrun)
480                return
481            end
482            [Data,tild,tild,errormsg]=nc2struct(CivFile);%read civ1 and fix1 data in the existing netcdf file
483        elseif isfield(Param,'Civ1_X')
484            Data.ListGlobalAttribute={};
485            Data.ListVarName={};
486            Data.VarDimName={};
487            Data.Civ1_X=Param.Civ1_X;
488            Data.Civ1_Y=Param.Civ1_Y;
489            Data.Civ1_U=Param.Civ1_U;
490            Data.Civ1_V=Param.Civ1_V;
491            Data.Civ1_FF=Param.Civ1_FF;
492        end
493    end
494   
495    %% Fix1
496    if isfield (Param.ActionInput,'Fix1')
497        if ~isfield (Param.ActionInput,'Civ1')% if we use existing Civ1, remove previous data beyond Civ1
498            Fix1_attr=find(strcmp('Fix1',Data.ListGlobalAttribute));
499            Data.ListGlobalAttribute(Fix1_attr)=[];
500            for ilist=1:numel(Fix1_attr)
501                Data=rmfield(Data,Data.ListGlobalAttribute{Fix1_attr(ilist)});
502            end
503        end
504        list_param=fieldnames(Param.ActionInput.Fix1)';
505        Fix1_param=regexprep(list_param,'^.+','Fix1_$0');% insert 'Fix1_' before  each string in ListFixParam
506        %indicate the values of all the global attributes in the output data
507        for ilist=1:length(list_param)
508            Data.(Fix1_param{ilist})=Param.ActionInput.Fix1.(list_param{ilist});
509        end
510        Data.ListGlobalAttribute=[Data.ListGlobalAttribute Fix1_param];
511        Data.ListVarName=[Data.ListVarName {'Civ1_FF'}];
512        Data.VarDimName=[Data.VarDimName {'nb_vec_1'}];
513        nbvar=length(Data.ListVarName);
514        Data.VarAttribute{nbvar}.Role='errorflag';
515        Data.Civ1_FF=fix(Param.ActionInput.Fix1,Data.Civ1_F,Data.Civ1_C,Data.Civ1_U,Data.Civ1_V);
516        Data.CivStage=2;
517    end
518    %% Patch1
519    if isfield (Param.ActionInput,'Patch1')
520        if check_civx
521            errormsg='Civ Matlab input needed for patch';
522            disp_uvmat('ERROR',errormsg,checkrun)
523            return
524        end
525       
526        % record the processing parameters of Patch1 as global attributes in the result nc file
527        list_param=fieldnames(Param.ActionInput.Patch1)';
528        list_param(strcmp('TestPatch1',list_param))=[];% remove 'TestPatch1' from the list of parameters
529        Patch1_param=regexprep(list_param,'^.+','Patch1_$0');% insert 'Patch1_' before  each parameter name
530        for ilist=1:length(list_param)
531            Data.(Patch1_param{ilist})=Param.ActionInput.Patch1.(list_param{ilist});
532        end
533        Data.CivStage=3;% record the new state of processing
534        Data.ListGlobalAttribute=[Data.ListGlobalAttribute Patch1_param];
535       
536        % list the variables to record
537        nbvar=length(Data.ListVarName);
538        Data.ListVarName=[Data.ListVarName {'Civ1_U_smooth','Civ1_V_smooth','Civ1_SubRange','Civ1_NbCentres','Civ1_Coord_tps','Civ1_U_tps','Civ1_V_tps'}];
539        Data.VarDimName=[Data.VarDimName {'nb_vec_1','nb_vec_1',{'nb_coord','nb_bounds','nb_subdomain_1'},'nb_subdomain_1',...
540            {'nb_tps_1','nb_coord','nb_subdomain_1'},{'nb_tps_1','nb_subdomain_1'},{'nb_tps_1','nb_subdomain_1'}}];
541        Data.VarAttribute{nbvar+1}.Role='vector_x';
542        Data.VarAttribute{nbvar+2}.Role='vector_y';
543        Data.VarAttribute{nbvar+5}.Role='coord_tps';
544        Data.VarAttribute{nbvar+6}.Role='vector_x';
545        Data.VarAttribute{nbvar+7}.Role='vector_y';
546        Data.Civ1_U_smooth=Data.Civ1_U; % zeros(size(Data.Civ1_X));
547        Data.Civ1_V_smooth=Data.Civ1_V; %zeros(size(Data.Civ1_X));
548        if isfield(Data,'Civ1_FF')
549            ind_good=find(Data.Civ1_FF==0);
550        else
551            ind_good=1:numel(Data.Civ1_X);
552        end
553       
554        % perform Patch calculation using the UVMAT fct 'filter_tps'
555        [Data.Civ1_SubRange,Data.Civ1_NbCentres,Data.Civ1_Coord_tps,Data.Civ1_U_tps,Data.Civ1_V_tps,tild,Ures, Vres,tild,FFres]=...
556            filter_tps([Data.Civ1_X(ind_good) Data.Civ1_Y(ind_good)],Data.Civ1_U(ind_good),Data.Civ1_V(ind_good),[],Data.Patch1_SubDomainSize,Data.Patch1_FieldSmooth,Data.Patch1_MaxDiff);
557        Data.Civ1_U_smooth(ind_good)=Ures;% take the interpolated (smoothed) velocity values for good vectors, keep 0 for the others
558        Data.Civ1_V_smooth(ind_good)=Vres;
559        Data.Civ1_FF(ind_good)=FFres;
560    end
561   
562    %% Civ2
563    if isfield (Param.ActionInput,'Civ2')
564        par_civ2=Param.ActionInput.Civ2;
565        if CheckInputFile % read input images (except in mode Test where it is introduced directly in Param.ActionInput.Civ1.ImageNameA and B)
566            par_civ2.ImageA=[];
567            par_civ2.ImageB=[];
568            i1=i1_series_Civ2(ifield);
569            i2=i1;
570            if ~isempty(i2_series_Civ2)
571                i2=i2_series_Civ2(ifield);
572            end
573            j1=1;
574            if ~isempty(j1_series_Civ2)
575                j1=j1_series_Civ2(ifield);
576            end
577            j2=j1;
578            if ~isempty(j2_series_Civ2)
579                j2=j2_series_Civ2(ifield);
580            end
581            ImageName_A_Civ2=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1,[],j1);
582           
583            if strcmp(ImageName_A_Civ2,ImageName_A) && isequal(FrameIndex_A_Civ1(ifield),FrameIndex_A_Civ2(ifield))
584                par_civ2.ImageA=par_civ1.ImageA;
585            else
586                [par_civ2.ImageA,VideoObject_A] = read_image(ImageName_A_Civ2,FileType_A,VideoObject_A,FrameIndex_A_Civ2(ifield));
587            end
588            ImageName_B_Civ2=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2,[],j2);
589            if strcmp(ImageName_B_Civ2,ImageName_B) && isequal(FrameIndex_B_Civ1(ifield),FrameIndex_B_Civ2)
590                par_civ2.ImageB=par_civ1.ImageB;
591            else
592                [par_civ2.ImageB,VideoObject_B] = read_image(ImageName_B_Civ2,FileType_B,VideoObject_B,FrameIndex_B_Civ2(ifield));
593            end
594            if strcmp(Param.ActionInput.ListCompareMode,'PIV')
595                ncfile=fullfile_uvmat(RootPath_A,OutputDir,RootFile_A,'.nc',NomTypeNc,i1,i2,j1,j2);
596            else % displacement
597                ncfile=fullfile_uvmat(RootPath_A,OutputDir,RootFile_A,'.nc',NomTypeNc,i2,[],j2);
598            end
599            par_civ2.ImageWidth=FileInfo_A.Width;
600            par_civ2.ImageHeight=FileInfo_A.Height;
601            if isfield(par_civ2,'Grid')% grid points set as input file
602                if ischar(par_civ2.Grid)%read the grid file if the input is a file name
603                    par_civ2.Grid=dlmread(par_civ2.Grid);
604                    par_civ2.Grid(1,:)=[];%the first line must be removed (heading in the grid file)
605                end
606            else% automatic grid
607                minix=floor(par_civ2.Dx/2)-0.5;
608                maxix=minix+par_civ2.Dx*floor((par_civ2.ImageWidth-1)/par_civ2.Dx);
609                miniy=floor(par_civ2.Dy/2)-0.5;
610                maxiy=minix+par_civ2.Dy*floor((par_civ2.ImageHeight-1)/par_civ2.Dy);
611                [GridX,GridY]=meshgrid(minix:par_civ2.Dx:maxix,miniy:par_civ2.Dy:maxiy);
612                par_civ2.Grid(:,1)=reshape(GridX,[],1);
613                par_civ2.Grid(:,2)=reshape(GridY,[],1);
614            end
615        end
616        if par_civ2.CheckDeformation
617            DUDX=zeros(size(par_civ2.Grid,1),1);
618            DUDY=zeros(size(par_civ2.Grid,1),1);
619            DVDX=zeros(size(par_civ2.Grid,1),1);
620            DVDY=zeros(size(par_civ2.Grid,1),1);
621        end
622       
623        % get the guess from patch1 or patch2 (case 'CheckCiv3')
624        if CheckInputFile % read input images (except in mode Test where it is introduced directly in Param.ActionInput.Civ1.ImageNameA and B)
625            if isfield (par_civ2,'CheckCiv3') && par_civ2.CheckCiv3 %get the guess from  patch2
626                SubRange= Data.Civ2_SubRange;
627                NbCentres=Data.Civ2_NbCentres;
628                Coord_tps=Data.Civ2_Coord_tps;
629                U_tps=Data.Civ2_U_tps;
630                V_tps=Data.Civ2_V_tps;
631                CivStage=Data.CivStage;%store the current CivStage
632                Civ1_Dt=Data.Civ2_Dt;
633                Data=[];%reinitialise the result structure Data
634                Data.ListGlobalAttribute={'Conventions','Program','CivStage'};
635                Data.Conventions='uvmat/civdata';% states the conventions used for the description of field variables and attributes
636                Data.Program='civ_series';
637                Data.CivStage=CivStage+1;%update the current civStage after reinitialisation of Data
638                Data.ListVarName={};
639                Data.VarDimName={};
640            else % get the guess from patch1
641                SubRange= Data.Civ1_SubRange;
642                NbCentres=Data.Civ1_NbCentres;
643                Coord_tps=Data.Civ1_Coord_tps;
644                U_tps=Data.Civ1_U_tps;
645                V_tps=Data.Civ1_V_tps;
646                Civ1_Dt=Data.Civ1_Dt;
647                Data.CivStage=4;
648            end
649        else
650            SubRange= par_civ2.Civ1_SubRange;
651            NbCentres=par_civ2.Civ1_NbCentres;
652            Coord_tps=par_civ2.Civ1_Coord_tps;
653            U_tps=par_civ2.Civ1_U_tps;
654            V_tps=par_civ2.Civ1_V_tps;
655            Civ1_Dt=par_civ2.Civ1_Dt;
656            Civ2_Dt=par_civ2.Civ1_Dt;
657            Data.ListVarName={};
658            Data.VarDimName={};
659        end
660        Shiftx=zeros(size(par_civ2.Grid,1),1);% shift expected from civ1 data
661        Shifty=zeros(size(par_civ2.Grid,1),1);
662        nbval=zeros(size(par_civ2.Grid,1),1);% nbre of interpolated values at each grid point (from the different patch subdomains)
663        NbSubDomain=size(SubRange,3);
664        for isub=1:NbSubDomain% for each sub-domain of Patch1
665            nbvec_sub=NbCentres(isub);% nbre of Civ vectors in the subdomain
666            ind_sel=find(par_civ2.Grid(:,1)>=SubRange(1,1,isub) & par_civ2.Grid(:,1)<=SubRange(1,2,isub) &...
667                par_civ2.Grid(:,2)>=SubRange(2,1,isub) & par_civ2.Grid(:,2)<=SubRange(2,2,isub));
668            if ~isempty(ind_sel)
669                epoints = par_civ2.Grid(ind_sel,:);% coordinates of interpolation sites
670                ctrs=Coord_tps(1:nbvec_sub,:,isub) ;%(=initial points) ctrs
671                nbval(ind_sel)=nbval(ind_sel)+1;% records the number of values for each interpolation point (in case of subdomain overlap)
672                EM = tps_eval(epoints,ctrs);
673                Shiftx(ind_sel)=Shiftx(ind_sel)+EM*U_tps(1:nbvec_sub+3,isub);
674                Shifty(ind_sel)=Shifty(ind_sel)+EM*V_tps(1:nbvec_sub+3,isub);
675                if par_civ2.CheckDeformation
676                    [EMDX,EMDY] = tps_eval_dxy(epoints,ctrs);%2D matrix of distances between extrapolation points epoints and spline centres (=site points) ctrs
677                    DUDX(ind_sel)=DUDX(ind_sel)+EMDX*U_tps(1:nbvec_sub+3,isub);
678                    DUDY(ind_sel)=DUDY(ind_sel)+EMDY*U_tps(1:nbvec_sub+3,isub);
679                    DVDX(ind_sel)=DVDX(ind_sel)+EMDX*V_tps(1:nbvec_sub+3,isub);
680                    DVDY(ind_sel)=DVDY(ind_sel)+EMDY*V_tps(1:nbvec_sub+3,isub);
681                end
682            end
683        end
684        if par_civ2.CheckMask&&~isempty(par_civ2.Mask)
685            if strcmp(maskname,par_civ2.Mask)% mask exist, not already read in civ1
686                par_civ2.Mask=mask; %use mask already opened
687            else
688                par_civ2.Mask=imread(par_civ2.Mask);%update the mask, and store it for future use
689                mask=par_civ2.Mask;
690                maskname=par_civ2.Mask;
691            end
692        end
693        ibx2=ceil(par_civ2.CorrBoxSize(1)/2);
694        iby2=ceil(par_civ2.CorrBoxSize(2)/2);
695        par_civ2.SearchBoxSize(1)=2*ibx2+9;% search ara +-4 pixels around the guess
696        par_civ2.SearchBoxSize(2)=2*iby2+9;
697        if CheckInputFile % else Dt given by par_civ2
698            if strcmp(Param.ActionInput.ListCompareMode,'displacement')
699                Civ1_Dt=1;
700                Civ2_Dt=1;
701            else
702                Civ2_Dt=time(i2+1,j2+1)-time(i1+1,j1+1);
703            end
704        end
705        par_civ2.SearchBoxShift=(Civ2_Dt/Civ1_Dt)*[Shiftx(nbval>=1)./nbval(nbval>=1) Shifty(nbval>=1)./nbval(nbval>=1)];
706        par_civ2.Grid=[par_civ2.Grid(nbval>=1,1)-par_civ2.SearchBoxShift(:,1)/2 par_civ2.Grid(nbval>=1,2)-par_civ2.SearchBoxShift(:,2)/2];% grid taken at the extrapolated origin of the displacement vectors
707        if par_civ2.CheckDeformation
708            par_civ2.DUDX=DUDX./nbval;
709            par_civ2.DUDY=DUDY./nbval;
710            par_civ2.DVDX=DVDX./nbval;
711            par_civ2.DVDY=DVDY./nbval;
712        end
713       
714        % calculate velocity data (y and v in indices, reverse to y component)
715        [xtable, ytable, utable, vtable, ctable, F,result_conv,errormsg] = civ (par_civ2);
716       
717        list_param=(fieldnames(Param.ActionInput.Civ2))';
718        list_param(strcmp('TestCiv2',list_param))=[];% remove the parameter TestCiv2 from the list
719        Civ2_param=regexprep(list_param,'^.+','Civ2_$0');% insert 'Civ2_' before  each string in list_param
720        Civ2_param=[{'Civ2_ImageA','Civ2_ImageB','Civ2_Time','Civ2_Dt'} Civ2_param]; %insert the names of the two input images
721        %indicate the values of all the global attributes in the output data
722        if exist('ImageName_A','var')
723            Data.Civ2_ImageA=ImageName_A;
724            Data.Civ2_ImageB=ImageName_B;
725             if strcmp(Param.ActionInput.ListCompareMode,'displacement')
726                Data.Civ2_Time=time(i2+1,j2+1);% the time is the time of the secodn image
727                Data.Civ2_Dt=1;% time interval is 1, to yield displacement instead of velocity=displacement/Dt at reading
728             else
729            Data.Civ2_Time=(time(i2+1,j2+1)+time(i1+1,j1+1))/2;
730            Data.Civ2_Dt=Civ2_Dt;
731             end
732        end
733        %         Data.Civ2_Time=1;
734        %         Data.Civ2_Dt=1;
735        for ilist=1:length(list_param)
736            Data.(Civ2_param{4+ilist})=Param.ActionInput.Civ2.(list_param{ilist});
737        end
738        Data.ListGlobalAttribute=[Data.ListGlobalAttribute Civ2_param];
739       
740        nbvar=numel(Data.ListVarName);
741        % define the Civ2 variable (if Civ2 data are not replaced from previous calculation)
742        if isempty(find(strcmp('Civ2_X',Data.ListVarName),1))
743            Data.ListVarName=[Data.ListVarName {'Civ2_X','Civ2_Y','Civ2_U','Civ2_V','Civ2_F','Civ2_C'}];%  cell array containing the names of the fields to record
744            Data.VarDimName=[Data.VarDimName {'nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2'}];
745            Data.VarAttribute{nbvar+1}.Role='coord_x';
746            Data.VarAttribute{nbvar+2}.Role='coord_y';
747            Data.VarAttribute{nbvar+3}.Role='vector_x';
748            Data.VarAttribute{nbvar+4}.Role='vector_y';
749            Data.VarAttribute{nbvar+5}.Role='warnflag';
750        end
751        Data.Civ2_X=reshape(xtable,[],1);
752        Data.Civ2_Y=reshape(size(par_civ2.ImageA,1)-ytable+1,[],1);
753        Data.Civ2_U=reshape(utable,[],1);
754        Data.Civ2_V=reshape(-vtable,[],1);
755        Data.Civ2_C=reshape(ctable,[],1);
756        Data.Civ2_F=reshape(F,[],1);
757    elseif ~isfield(Data,'ListVarName') % we start there, using existing Civ2 data
758        if exist('ncfile','var')
759            CivFile=ncfile;
760            [Data,tild,tild,errormsg]=nc2struct(CivFile);%read civ1 and fix1 data in the existing netcdf file
761            if ~isempty(errormsg)
762                disp_uvmat('ERROR',errormsg,checkrun)
763                return
764            end         
765        elseif isfield(Param,'Civ2_X')% use Civ2 data as input in Param (test mode)
766            Data.ListGlobalAttribute={};
767            Data.ListVarName={};
768            Data.VarDimName={};
769            Data.Civ2_X=Param.Civ2_X;
770            Data.Civ2_Y=Param.Civ2_Y;
771            Data.Civ2_U=Param.Civ2_U;
772            Data.Civ2_V=Param.Civ2_V;
773            Data.Civ2_FF=Param.Civ2_FF;
774        end
775    end
776   
777    %% Fix2
778    if isfield (Param.ActionInput,'Fix2')
779        list_param=fieldnames(Param.ActionInput.Fix2)';
780        Fix2_param=regexprep(list_param,'^.+','Fix2_$0');% insert 'Fix1_' before  each string in ListFixParam
781        %indicate the values of all the global attributes in the output data
782        for ilist=1:length(list_param)
783            Data.(Fix2_param{ilist})=Param.ActionInput.Fix2.(list_param{ilist});
784        end
785        Data.ListGlobalAttribute=[Data.ListGlobalAttribute Fix2_param];
786        %
787        %         ListFixParam=fieldnames(Param.ActionInput.Fix2);
788        %         for ilist=1:length(ListFixParam)
789        %             ParamName=ListFixParam{ilist};
790        %             ListName=['Fix2_' ParamName];
791        %             eval(['Data.ListGlobalAttribute=[Data.ListGlobalAttribute ''' ParamName '''];'])
792        %             eval(['Data.' ListName '=Param.ActionInput.Fix2.' ParamName ';'])
793        %         end
794        if check_civx
795            if ~isfield(Data,'fix2')
796                Data.ListGlobalAttribute=[Data.ListGlobalAttribute 'fix2'];
797                Data.fix2=1;
798                Data.ListVarName=[Data.ListVarName {'vec2_FixFlag'}];
799                Data.VarDimName=[Data.VarDimName {'nb_vectors2'}];
800            end
801            Data.vec_FixFlag=fix(Param.Fix2,Data.vec2_F,Data.vec2_C,Data.vec2_U,Data.vec2_V,Data.vec2_X,Data.vec2_Y);
802        else
803            Data.ListVarName=[Data.ListVarName {'Civ2_FF'}];
804            Data.VarDimName=[Data.VarDimName {'nb_vec_2'}];
805            nbvar=length(Data.ListVarName);
806            Data.VarAttribute{nbvar}.Role='errorflag';
807            Data.Civ2_FF=double(fix(Param.ActionInput.Fix2,Data.Civ2_F,Data.Civ2_C,Data.Civ2_U,Data.Civ2_V));
808            Data.CivStage=Data.CivStage+1;
809        end
810       
811    end
812   
813    %% Patch2
814    if isfield (Param.ActionInput,'Patch2')
815        list_param=fieldnames(Param.ActionInput.Patch2)';
816        list_param(strcmp('TestPatch2',list_param))=[];% remove the parameter TestCiv1 from the list
817        Patch2_param=regexprep(list_param,'^.+','Patch2_$0');% insert 'Fix1_' before  each string in ListFixParam
818        %indicate the values of all the global attributes in the output data
819        for ilist=1:length(list_param)
820            Data.(Patch2_param{ilist})=Param.ActionInput.Patch2.(list_param{ilist});
821        end
822        Data.ListGlobalAttribute=[Data.ListGlobalAttribute Patch2_param];
823       
824        nbvar=length(Data.ListVarName);
825        Data.ListVarName=[Data.ListVarName {'Civ2_U_smooth','Civ2_V_smooth','Civ2_SubRange','Civ2_NbCentres','Civ2_Coord_tps','Civ2_U_tps','Civ2_V_tps'}];
826        Data.VarDimName=[Data.VarDimName {'nb_vec_2','nb_vec_2',{'nb_coord','nb_bounds','nb_subdomain_2'},{'nb_subdomain_2'},...
827            {'nb_tps_2','nb_coord','nb_subdomain_2'},{'nb_tps_2','nb_subdomain_2'},{'nb_tps_2','nb_subdomain_2'}}];
828       
829        Data.VarAttribute{nbvar+1}.Role='vector_x';
830        Data.VarAttribute{nbvar+2}.Role='vector_y';
831        Data.VarAttribute{nbvar+5}.Role='coord_tps';
832        Data.VarAttribute{nbvar+6}.Role='vector_x';
833        Data.VarAttribute{nbvar+7}.Role='vector_y';
834        Data.Civ2_U_smooth=Data.Civ2_U; % zeros(size(Data.Civ2_X));
835        Data.Civ2_V_smooth=Data.Civ2_V; %zeros(size(Data.Civ2_X));
836        if isfield(Data,'Civ2_FF')
837            ind_good=find(Data.Civ2_FF==0);
838        else
839            ind_good=1:numel(Data.Civ2_X);
840        end
841        [Data.Civ2_SubRange,Data.Civ2_NbCentres,Data.Civ2_Coord_tps,Data.Civ2_U_tps,Data.Civ2_V_tps,tild,Ures, Vres,tild,FFres]=...
842            filter_tps([Data.Civ2_X(ind_good) Data.Civ2_Y(ind_good)],Data.Civ2_U(ind_good),Data.Civ2_V(ind_good),[],Data.Patch2_SubDomainSize,Data.Patch2_FieldSmooth,Data.Patch2_MaxDiff);
843        Data.Civ2_U_smooth(ind_good)=Ures;
844        Data.Civ2_V_smooth(ind_good)=Vres;
845        Data.Civ2_FF(ind_good)=FFres;
846        Data.CivStage=Data.CivStage+1;
847    end
848   
849    %% write result in a netcdf file if requested
850    if CheckOutputFile
851        errormsg=struct2nc(ncfile,Data);
852        if isempty(errormsg)
853            disp([ncfile ' written'])
854        else
855            disp(errormsg)
856        end
857    end
858end
859
860% 'civ': function piv.m adapted from PIVlab http://pivlab.blogspot.com/
861%--------------------------------------------------------------------------
862% function [xtable ytable utable vtable typevector] = civ (image1,image2,ibx,iby step, subpixfinder, mask, roi)
863%
864% OUTPUT:
865% xtable: set of x coordinates
866% ytable: set of y coordiantes
867% utable: set of u displacements (along x)
868% vtable: set of v displacements (along y)
869% ctable: max image correlation for each vector
870% typevector: set of flags, =1 for good, =0 for NaN vectors
871%
872%INPUT:
873% par_civ: structure of input parameters, with fields:
874%  .ImageA: first image for correlation (matrix)
875%  .ImageB: second image for correlation(matrix)
876%  .CorrBoxSize: 1,2 vector giving the size of the correlation box in x and y
877%  .SearchBoxSize:  1,2 vector giving the size of the search box in x and y
878%  .SearchBoxShift: 1,2 vector or 2 column matrix (for civ2) giving the shift of the search box in x and y
879%  .CorrSmooth: =1 or 2 determines the choice of the sub-pixel determination of the correlation max
880%  .ImageWidth: nb of pixels of the image in x
881%  .Dx, Dy: mesh for the PIV calculation
882%  .Grid: grid giving the PIV calculation points (alternative to .Dx .Dy)
883%  .Mask: name of a mask file or mask image matrix itself
884%  .MinIma: thresholds for image luminosity
885%  .MaxIma
886%  .CheckDeformation=1 for subpixel interpolation and image deformation (linear transform)
887%  .DUDX: matrix of deformation obtained from patch at each grid point
888%  .DUDY
889%  .DVDX:
890%  .DVDY
891
892function [xtable,ytable,utable,vtable,ctable,F,result_conv,errormsg] = civ (par_civ)
893
894%% prepare measurement grid
895if isfield(par_civ,'Grid')% grid points set as input
896    if ischar(par_civ.Grid)%read the grid file if the input is a file name
897        par_civ.Grid=dlmread(par_civ.Grid);
898        par_civ.Grid(1,:)=[];%the first line must be removed (heading in the grid file)
899    end
900    % else par_civ.Grid is already an array
901else% automatic grid
902    minix=floor(par_civ.Dx/2)-0.5;
903    maxix=minix+par_civ.Dx*floor((par_civ.ImageWidth-1)/par_civ.Dx);
904    miniy=floor(par_civ.Dy/2)-0.5;
905    maxiy=minix+par_civ.Dy*floor((par_civ.ImageHeight-1)/par_civ.Dy);
906    [GridX,GridY]=meshgrid(minix:par_civ.Dx:maxix,miniy:par_civ.Dy:maxiy);
907    par_civ.Grid(:,1)=reshape(GridX,[],1);
908    par_civ.Grid(:,2)=reshape(GridY,[],1);
909end
910nbvec=size(par_civ.Grid,1);
911
912%% prepare correlation and search boxes
913ibx2=ceil(par_civ.CorrBoxSize(1)/2);
914iby2=ceil(par_civ.CorrBoxSize(2)/2);
915isx2=ceil(par_civ.SearchBoxSize(1)/2);
916isy2=ceil(par_civ.SearchBoxSize(2)/2);
917shiftx=round(par_civ.SearchBoxShift(:,1));
918shifty=-round(par_civ.SearchBoxShift(:,2));% sign minus because image j index increases when y decreases
919if numel(shiftx)==1% case of a unique shift for the whole field( civ1)
920    shiftx=shiftx*ones(nbvec,1);
921    shifty=shifty*ones(nbvec,1);
922end
923
924%% Default output
925xtable=par_civ.Grid(:,1);
926ytable=par_civ.Grid(:,2);
927utable=zeros(nbvec,1);
928vtable=zeros(nbvec,1);
929ctable=zeros(nbvec,1);
930F=zeros(nbvec,1);
931result_conv=[];
932errormsg='';
933
934%% prepare mask
935if isfield(par_civ,'Mask') && ~isempty(par_civ.Mask)
936    if strcmp(par_civ.Mask,'all')
937        return    % get the grid only, no civ calculation
938    elseif ischar(par_civ.Mask)
939        par_civ.Mask=imread(par_civ.Mask);% read the mask if not allready done
940    end
941end
942check_MinIma=isfield(par_civ,'MinIma');% test for image luminosity threshold
943check_MaxIma=isfield(par_civ,'MaxIma') && ~isempty(par_civ.MaxIma);
944
945% %% prepare images
946% if isfield(par_civ,'reverse_pair')
947%     if par_civ.reverse_pair
948%         if ischar(par_civ.ImageB)
949%             temp=par_civ.ImageA;
950%             par_civ.ImageA=imread(par_civ.ImageB);
951%         end
952%         if ischar(temp)
953%             par_civ.ImageB=imread(temp);
954%         end
955%     end
956% else
957%     if ischar(par_civ.ImageA)
958%         par_civ.ImageA=imread(par_civ.ImageA);
959%     end
960%     if ischar(par_civ.ImageB)
961%         par_civ.ImageB=imread(par_civ.ImageB);
962%     end
963% end
964par_civ.ImageA=sum(double(par_civ.ImageA),3);%sum over rgb component for color images
965par_civ.ImageB=sum(double(par_civ.ImageB),3);
966[npy_ima npx_ima]=size(par_civ.ImageA);
967if ~isequal(size(par_civ.ImageB),[npy_ima npx_ima])
968    errormsg='image pair with unequal size';
969    return
970end
971
972%% Apply mask
973% Convention for mask IDEAS TO IMPLEMENT ?
974% mask >200 : velocity calculated
975%  200 >=mask>150;velocity not calculated, interpolation allowed (bad spots)
976% 150>=mask >100: velocity not calculated, nor interpolated
977%  100>=mask> 20: velocity not calculated, impermeable (no flux through mask boundaries)
978%  20>=mask: velocity=0
979checkmask=0;
980MinA=min(min(par_civ.ImageA));
981MinB=min(min(par_civ.ImageB));
982if isfield(par_civ,'Mask') && ~isempty(par_civ.Mask)
983    checkmask=1;
984    if ~isequal(size(par_civ.Mask),[npy_ima npx_ima])
985        errormsg='mask must be an image with the same size as the images';
986        return
987    end
988    %  check_noflux=(par_civ.Mask<100) ;%TODO: to implement
989    check_undefined=(par_civ.Mask<200 & par_civ.Mask>=20 );
990    par_civ.ImageA(check_undefined)=MinA;% put image A to zero (i.e. the min image value) in the undefined  area
991    par_civ.ImageB(check_undefined)=MinB;% put image B to zero (i.e. the min image value) in the undefined  area
992end
993
994%% compute image correlations: MAINLOOP on velocity vectors
995corrmax=0;
996sum_square=1;% default
997mesh=1;% default
998CheckDeformation=isfield(par_civ,'CheckDeformation')&& par_civ.CheckDeformation==1;
999if CheckDeformation
1000    mesh=0.25;%mesh in pixels for subpixel image interpolation (x 4 in each direction)
1001end
1002if par_civ.CorrSmooth~=0 % par_civ.CorrSmooth=0 implies no civ computation (just input image and grid points viven)
1003    for ivec=1:nbvec
1004        iref=round(par_civ.Grid(ivec,1)+0.5);% xindex on the image A for the middle of the correlation box
1005        jref=round(par_civ.ImageHeight-par_civ.Grid(ivec,2)+0.5);% yindex on the image B for the middle of the correlation box
1006        F(ivec)=0;
1007        subrange1_x=iref-ibx2:iref+ibx2;% x indices defining the first subimage
1008        subrange1_y=jref-iby2:jref+iby2;% y indices defining the first subimage
1009        subrange2_x=iref+shiftx(ivec)-isx2:iref+shiftx(ivec)+isx2;%x indices defining the second subimage
1010        subrange2_y=jref+shifty(ivec)-isy2:jref+shifty(ivec)+isy2;%y indices defining the second subimage
1011        image1_crop=MinA*ones(numel(subrange1_y),numel(subrange1_x));% default value=min of image A
1012        image2_crop=MinA*ones(numel(subrange2_y),numel(subrange2_x));% default value=min of image A
1013        check1_x=subrange1_x>=1 & subrange1_x<=par_civ.ImageWidth;% check which points in the subimage 1 are contained in the initial image 1
1014        check1_y=subrange1_y>=1 & subrange1_y<=par_civ.ImageHeight;
1015        check2_x=subrange2_x>=1 & subrange2_x<=par_civ.ImageWidth;% check which points in the subimage 2 are contained in the initial image 2
1016        check2_y=subrange2_y>=1 & subrange2_y<=par_civ.ImageHeight;
1017        image1_crop(check1_y,check1_x)=par_civ.ImageA(subrange1_y(check1_y),subrange1_x(check1_x));%extract a subimage (correlation box) from image A
1018        image2_crop(check2_y,check2_x)=par_civ.ImageB(subrange2_y(check2_y),subrange2_x(check2_x));%extract a larger subimage (search box) from image B
1019        image1_mean=mean(mean(image1_crop));
1020        image2_mean=mean(mean(image2_crop));
1021        %threshold on image minimum
1022        if check_MinIma && (image1_mean < par_civ.MinIma || image2_mean < par_civ.MinIma)
1023            F(ivec)=3;
1024        end
1025        %threshold on image maximum
1026        if check_MaxIma && (image1_mean > par_civ.MaxIma || image2_mean > par_civ.MaxIma)
1027            F(ivec)=3;
1028        end
1029       
1030        if F(ivec)~=3
1031            image1_crop=image1_crop-image1_mean;%substract the mean
1032            image2_crop=image2_crop-image2_mean;
1033            if CheckDeformation
1034                xi=(1:mesh:size(image1_crop,2));
1035                yi=(1:mesh:size(image1_crop,1))';
1036                [XI,YI]=meshgrid(xi-ceil(size(image1_crop,2)/2),yi-ceil(size(image1_crop,1)/2));
1037                XIant=XI-par_civ.DUDX(ivec)*XI-par_civ.DUDY(ivec)*YI+ceil(size(image1_crop,2)/2);
1038                YIant=YI-par_civ.DVDX(ivec)*XI-par_civ.DVDY(ivec)*YI+ceil(size(image1_crop,1)/2);
1039                image1_crop=interp2(image1_crop,XIant,YIant);
1040                image1_crop(isnan(image1_crop))=0;
1041                xi=(1:mesh:size(image2_crop,2));
1042                yi=(1:mesh:size(image2_crop,1))';
1043                image2_crop=interp2(image2_crop,xi,yi);
1044                image2_crop(isnan(image2_crop))=0;
1045                %%
1046            end
1047            sum_square=sum(sum(image1_crop.*image1_crop));
1048            %reference: Oliver Pust, PIV: Direct Cross-Correlation
1049            result_conv= conv2(image2_crop,flipdim(flipdim(image1_crop,2),1),'valid');
1050            corrmax= max(max(result_conv));
1051            result_conv=(result_conv/corrmax)*255; %normalize, peak=always 255
1052            %Find the correlation max, at 255
1053            [y,x] = find(result_conv==255,1);
1054            if ~isempty(y) && ~isempty(x)
1055                try
1056                    if par_civ.CorrSmooth==1
1057                        [vector,F(ivec)] = SUBPIXGAUSS (result_conv,x,y);
1058                    elseif par_civ.CorrSmooth==2
1059                        [vector,F(ivec)] = SUBPIX2DGAUSS (result_conv,x,y);
1060                    end
1061                    utable(ivec)=vector(1)*mesh+shiftx(ivec);
1062                    vtable(ivec)=vector(2)*mesh+shifty(ivec);
1063                    xtable(ivec)=iref+utable(ivec)/2-0.5;% convec flow (velocity taken at the point middle from imgae 1 and 2)
1064                    ytable(ivec)=jref+vtable(ivec)/2-0.5;% and position of pixel 1=0.5 (convention for image coordinates=0 at the edge)
1065                    iref=round(xtable(ivec));% image index for the middle of the vector
1066                    jref=round(ytable(ivec));
1067                    if checkmask && par_civ.Mask(jref,iref)<200 && par_civ.Mask(jref,iref)>=100
1068                        utable(ivec)=0;
1069                        vtable(ivec)=0;
1070                        F(ivec)=3;
1071                    end
1072                    ctable(ivec)=corrmax/sum_square;% correlation value
1073                catch ME
1074                    F(ivec)=3;
1075                end
1076            else
1077                F(ivec)=3;
1078                [y,x]
1079            end
1080        end
1081    end
1082end
1083result_conv=result_conv*corrmax/(255*sum_square);% keep the last correlation matrix for output
1084
1085%------------------------------------------------------------------------
1086% --- Find the maximum of the correlation function after interpolation
1087function [vector,F] = SUBPIXGAUSS (result_conv,x,y)
1088%------------------------------------------------------------------------
1089vector=[0 0]; %default
1090F=0;
1091[npy,npx]=size(result_conv);
1092result_conv(result_conv<1)=1; %set to 1 correlation values smaller than 1 (to avoid divergence in the log)
1093%the following 8 lines are copyright (c) 1998, Uri Shavit, Roi Gurka, Alex Liberzon, Technion ᅵ Israel Institute of Technology
1094%http://urapiv.wordpress.com
1095peaky = y;
1096if y <= npy-1 && y >= 1
1097    f0 = log(result_conv(y,x));
1098    f1 = log(result_conv(y-1,x));
1099    f2 = log(result_conv(y+1,x));
1100    peaky = peaky+ (f1-f2)/(2*f1-4*f0+2*f2);
1101else
1102    F=-2; % warning flag for vector truncated by the limited search box
1103end
1104peakx=x;
1105if x <= npx-1 && x >= 1
1106    f0 = log(result_conv(y,x));
1107    f1 = log(result_conv(y,x-1));
1108    f2 = log(result_conv(y,x+1));
1109    peakx = peakx+ (f1-f2)/(2*f1-4*f0+2*f2);
1110else
1111    F=-2; % warning flag for vector truncated by the limited search box
1112end
1113vector=[peakx-floor(npx/2)-1 peaky-floor(npy/2)-1];
1114
1115%------------------------------------------------------------------------
1116% --- Find the maximum of the correlation function after interpolation
1117function [vector,F] = SUBPIX2DGAUSS (result_conv,x,y)
1118%------------------------------------------------------------------------
1119vector=[0 0]; %default
1120F=-2;
1121peaky=y;
1122peakx=x;
1123result_conv(result_conv<1)=1; %set to 1 correlation values smaller than 1 (to avoid divergence in the log)
1124[npy,npx]=size(result_conv);
1125if (x <= npx-1) && (y <= npy-1) && (x >= 1) && (y >= 1)
1126    F=0;
1127    for i=-1:1
1128        for j=-1:1
1129            %following 15 lines based on
1130            %H. Nobach ï¿œ M. Honkanen (2005)
1131            %Two-dimensional Gaussian regression for sub-pixel displacement
1132            %estimation in particle image velocimetry or particle position
1133            %estimation in particle tracking velocimetry
1134            %Experiments in Fluids (2005) 38: 511ï¿œ515
1135            c10(j+2,i+2)=i*log(result_conv(y+j, x+i));
1136            c01(j+2,i+2)=j*log(result_conv(y+j, x+i));
1137            c11(j+2,i+2)=i*j*log(result_conv(y+j, x+i));
1138            c20(j+2,i+2)=(3*i^2-2)*log(result_conv(y+j, x+i));
1139            c02(j+2,i+2)=(3*j^2-2)*log(result_conv(y+j, x+i));
1140        end
1141    end
1142    c10=(1/6)*sum(sum(c10));
1143    c01=(1/6)*sum(sum(c01));
1144    c11=(1/4)*sum(sum(c11));
1145    c20=(1/6)*sum(sum(c20));
1146    c02=(1/6)*sum(sum(c02));
1147    deltax=(c11*c01-2*c10*c02)/(4*c20*c02-c11^2);
1148    deltay=(c11*c10-2*c01*c20)/(4*c20*c02-c11^2);
1149    if abs(deltax)<1
1150        peakx=x+deltax;
1151    end
1152    if abs(deltay)<1
1153        peaky=y+deltay;
1154    end
1155end
1156vector=[peakx-floor(npx/2)-1 peaky-floor(npy/2)-1];
1157
1158%'RUN_FIX': function for fixing velocity fields:
1159%-----------------------------------------------
1160% RUN_FIX(filename,field,flagindex,thresh_vecC,thresh_vel,iter,flag_mask,maskname,fileref,fieldref)
1161%
1162%filename: name of the netcdf file (used as input and output)
1163%field: structure specifying the names of the fields to fix (depending on civ1 or civ2)
1164%.vel_type='civ1' or 'civ2';
1165%.nb=name of the dimension common to the field to fix ('nb_vectors' for civ1);
1166%.fixflag=name of fix flag variable ('vec_FixFlag' for civ1)
1167%flagindex: flag specifying which values of vec_f are removed:
1168% if flagindex(1)=1: vec_f=-2 vectors are removed
1169% if flagindex(2)=1: vec_f=3 vectors are removed
1170% if flagindex(3)=1: vec_f=2 vectors are removed (if iter=1) or vec_f=4 vectors are removed (if iter=2)
1171%iter=1 for civ1 fields and iter=2 for civ2 fields
1172%thresh_vecC: threshold in the image correlation vec_C
1173%flag_mask: =1 mask used to remove vectors (0 else)
1174%maskname: name of the mask image file for fix
1175%thresh_vel: threshold on velocity, or on the difference with the reference file fileref if exists
1176%inf_sup=1: remove values smaller than threshold thresh_vel, =2, larger than threshold
1177%fileref: .nc file name for a reference velocity (='': refrence 0 used)
1178%fieldref: 'civ1','filter1'...feld used in fileref
1179
1180function FF=fix(Param,F,C,U,V,X,Y)
1181FF=zeros(size(F));%default
1182
1183%criterium on warn flags
1184FlagName={'CheckFmin2','CheckF2','CheckF3','CheckF4'};
1185FlagVal=[-2 2 3 4];
1186for iflag=1:numel(FlagName)
1187    if isfield(Param,FlagName{iflag}) && Param.(FlagName{iflag})
1188        FF=(FF==1| F==FlagVal(iflag));
1189    end
1190end
1191%criterium on correlation values
1192if isfield (Param,'MinCorr')
1193    FF=FF==1 | C<Param.MinCorr;
1194end
1195if (isfield(Param,'MinVel')&&~isempty(Param.MinVel))||(isfield (Param,'MaxVel')&&~isempty(Param.MaxVel))
1196    Umod= U.*U+V.*V;
1197    if isfield (Param,'MinVel')&&~isempty(Param.MinVel)
1198        FF=FF==1 | Umod<(Param.MinVel*Param.MinVel);
1199    end
1200    if isfield (Param,'MaxVel')&&~isempty(Param.MaxVel)
1201        FF=FF==1 | Umod>(Param.MaxVel*Param.MaxVel);
1202    end
1203end
1204
1205
1206%------------------------------------------------------------------------
1207% --- determine the list of index pairs of processing file
1208function [i1_series,i2_series,j1_series,j2_series,check_bounds,NomTypeNc]=...
1209    find_pair_indices(str_civ,i_series,j_series,MinIndex_i,MaxIndex_i,MinIndex_j,MaxIndex_j)
1210%------------------------------------------------------------------------
1211i1_series=i_series;% set of first image indexes
1212i2_series=i_series;
1213j1_series=j_series;%ones(size(i_series));% set of first image numbers
1214j2_series=j_series;%ones(size(i_series));
1215r=regexp(str_civ,'^\D(?<ind>[i|j])=( -| )(?<num1>\d+)\|(?<num2>\d+)','names');
1216if ~isempty(r)
1217    mode=['D' r.ind];
1218    ind1=str2num(r.num1);
1219    ind2=str2num(r.num2);
1220else
1221    mode='j1-j2';
1222    r=regexp(str_civ,'^j= (?<num1>[a-z])-(?<num2>[a-z])','names');
1223    if ~isempty(r)
1224        NomTypeNc='_1ab';
1225    else
1226        r=regexp(str_civ,'^j= (?<num1>[A-Z])-(?<num2>[A-Z])','names');
1227        if ~isempty(r)
1228            NomTypeNc='_1AB';
1229        else
1230            r=regexp(str_civ,'^j= (?<num1>\d+)-(?<num2>\d+)','names');
1231            if ~isempty(r)
1232                NomTypeNc='_1_1-2';
1233            end
1234        end
1235    end
1236    if isempty(r)
1237        display('wrong pair mode input option')
1238    else
1239        ind1=stra2num(r.num1);
1240        ind2=stra2num(r.num2);
1241    end
1242end
1243switch mode
1244    case 'Di'
1245        i1_series=i_series-ind1;% set of first image numbers
1246        i2_series=i_series+ind2;
1247        check_bounds=i1_series<MinIndex_i | i2_series>MaxIndex_i;
1248        if isempty(j_series)
1249            NomTypeNc='_1-2';
1250        else
1251            j1_series=j_series;
1252            j2_series=j_series;
1253            NomTypeNc='_1-2_1';
1254        end
1255    case 'Dj'
1256        j1_series=j_series-ind1;
1257        j2_series=j_series+ind2;
1258        check_bounds=j1_series<MinIndex_j | j2_series>MaxIndex_j;
1259        NomTypeNc='_1_1-2';
1260    otherwise %bursts
1261        i1_series=i_series(1,:);% do not sweep the j index
1262        i2_series=i_series(1,:);
1263        j1_series=ind1*ones(1,size(i_series,2));% j index is fixed by pair choice
1264        j2_series=ind2*ones(1,size(i_series,2));
1265        check_bounds=zeros(size(i1_series));% no limitations due to min-max indices
1266end
1267
1268
1269
1270
Note: See TracBrowser for help on using the repository browser.