[1148] | 1 | %'civ_3D': 3D PIV from image scan in a volume |
---|
| 2 | |
---|
[1089] | 3 | %------------------------------------------------------------------------ |
---|
[1148] | 4 | % function [Data,errormsg,result_conv]= civ_3D(Param) |
---|
[1089] | 5 | % |
---|
| 6 | %OUTPUT |
---|
| 7 | % Data=structure containing the PIV results and information on the processing parameters |
---|
| 8 | % errormsg=error message char string, decd ..fault='' |
---|
| 9 | % resul_conv: image inter-correlation function for the last grid point (used for tests) |
---|
| 10 | % |
---|
| 11 | %INPUT: |
---|
| 12 | % Param: Matlab structure of input parameters |
---|
| 13 | % Param contains info of the GUI series using the fct read_GUI. |
---|
| 14 | % Param.Action.RUN = 0 (to set the status of the GUI series) or =1 to RUN the computation |
---|
| 15 | % Param.InputTable: sets the input file(s) |
---|
| 16 | % if absent, the fct looks for input data in Param.ActionInput (test mode) |
---|
| 17 | % Param.OutputSubDir: sets the folder name of output file(s, |
---|
| 18 | % Param.ActionInput: substructure with the parameters provided by the GUI civ_input |
---|
[1148] | 19 | % .Civ1: parameters for civ1cc |
---|
| 20 | % .Fix1: parameters for detect_false1 |
---|
[1089] | 21 | % .Patch1: |
---|
| 22 | % .Civ2: for civ2 |
---|
| 23 | % .Fix2: |
---|
| 24 | % .Patch2: |
---|
| 25 | |
---|
| 26 | %======================================================================= |
---|
[1126] | 27 | % Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France |
---|
[1089] | 28 | % http://www.legi.grenoble-inp.fr |
---|
[1127] | 29 | % Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr |
---|
[1089] | 30 | % |
---|
| 31 | % This file is part of the toolbox UVMAT. |
---|
| 32 | % |
---|
| 33 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 34 | % it under the terms of the GNU General Public License as published |
---|
| 35 | % by the Free Software Foundation; either version 2 of the license, |
---|
| 36 | % or (at your option) any later version. |
---|
| 37 | % |
---|
| 38 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 39 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 40 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 41 | % GNU General Public License (see LICENSE.txt) for more details. |
---|
| 42 | %======================================================================= |
---|
| 43 | |
---|
| 44 | function [Data,errormsg,result_conv]= civ_3D(Param) |
---|
| 45 | errormsg=''; |
---|
| 46 | |
---|
| 47 | %% set the input elements needed on the GUI series when the action is selected in the menu ActionName or InputTable refreshed |
---|
| 48 | if isstruct(Param) && isequal(Param.Action.RUN,0)% function activated from the GUI series but not RUN |
---|
| 49 | path_series=fileparts(which('series')); |
---|
| 50 | addpath(fullfile(path_series,'series')) |
---|
[1148] | 51 | |
---|
| 52 | Data=civ_input(Param) |
---|
| 53 | |
---|
[1089] | 54 | Data.Program=mfilename;%gives the name of the current function |
---|
| 55 | Data.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
[1156] | 56 | Data.IndexRange_j='whole';% prescribes the file index ranges j from min to max (options 'off'/'on'/'whole', 'on' by default) |
---|
[1089] | 57 | Data.NbSlice='off'; %nbre of slices ('off' by default) |
---|
| 58 | Data.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 59 | Data.FieldName='on';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 60 | Data.FieldTransform = 'off';%can use a transform function |
---|
| 61 | Data.ProjObject='off';%can use projection object(option 'off'/'on', |
---|
| 62 | Data.Mask='off';%can use mask option (option 'off'/'on', 'off' by default) |
---|
[1148] | 63 | Data.OutputDirExt='.civ_3D';%set the output dir extension |
---|
[1089] | 64 | 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) |
---|
| 65 | Data.OutputFileMode='NbInput_i';% one output file expected per value of i index (used for waitbar) |
---|
| 66 | Data.CheckOverwriteVisible='on'; % manage the overwrite of existing files (default=1) |
---|
[1148] | 67 | if isfield(Data,'ActionInput') && isfield(Data.ActionInput,'PairIndices') && strcmp(Data.ActionInput.PairIndices.ListPairMode,'pair j1-j2') |
---|
[1089] | 68 | if isfield(Data.ActionInput.PairIndices,'ListPairCiv2') |
---|
| 69 | str_civ=Data.ActionInput.PairIndices.ListPairCiv2; |
---|
| 70 | else |
---|
| 71 | str_civ=Data.ActionInput.PairIndices.ListPairCiv1; |
---|
| 72 | end |
---|
| 73 | r=regexp(str_civ,'^j= (?<num1>[a-z])-(?<num2>[a-z])','names'); |
---|
| 74 | if isempty(r) |
---|
| 75 | r=regexp(str_civ,'^j= (?<num1>[A-Z])-(?<num2>[A-Z])','names'); |
---|
| 76 | if isempty(r) |
---|
| 77 | r=regexp(str_civ,'^j= (?<num1>\d+)-(?<num2>\d+)','names'); |
---|
| 78 | end |
---|
| 79 | end |
---|
| 80 | if ~isempty(r) |
---|
| 81 | Data.j_index_1=stra2num(r.num1); |
---|
| 82 | Data.j_index_2=stra2num(r.num2); |
---|
| 83 | end |
---|
| 84 | end |
---|
[1148] | 85 | |
---|
| 86 | |
---|
[1089] | 87 | return |
---|
| 88 | end |
---|
[1148] | 89 | %% END OF ENTERING INPUT PARAMETER MODE |
---|
[1089] | 90 | |
---|
[1148] | 91 | %% RUN MODE: read input parameters from an xml file if input is a file name (batch mode) |
---|
[1089] | 92 | if ischar(Param) |
---|
| 93 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 94 | checkrun=0; |
---|
[1148] | 95 | RUNHandle=[]; |
---|
| 96 | else |
---|
| 97 | hseries=findobj(allchild(0),'Tag','series'); |
---|
| 98 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series |
---|
| 99 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series |
---|
| 100 | checkrun=1; |
---|
[1089] | 101 | end |
---|
| 102 | |
---|
[1148] | 103 | %% test input Param |
---|
| 104 | if ~isfield(Param,'InputTable') |
---|
| 105 | disp('ERROR: no input file entered') |
---|
| 106 | return |
---|
| 107 | end |
---|
[1089] | 108 | if ~isfield(Param,'ActionInput') |
---|
| 109 | disp_uvmat('ERROR','no parameter set for PIV',checkrun) |
---|
| 110 | return |
---|
| 111 | end |
---|
| 112 | iview_A=0;%default values |
---|
| 113 | |
---|
[1148] | 114 | if isfield(Param,'OutputSubDir')&& isfield(Param,'OutputDirExt') |
---|
| 115 | OutputDir=[Param.OutputSubDir Param.OutputDirExt]; |
---|
| 116 | OutputPath=fullfile(Param.OutputPath,num2str(Param.Experiment),num2str(Param.Device)); |
---|
| 117 | else |
---|
| 118 | disp_uvmat('ERROR','no output folder defined',checkrun) |
---|
| 119 | return |
---|
| 120 | end |
---|
[1089] | 121 | |
---|
[1148] | 122 | %% input files and indexing |
---|
| 123 | MaxIndex_i=Param.IndexRange.MaxIndex_i; |
---|
| 124 | MinIndex_i=Param.IndexRange.MinIndex_i; |
---|
| 125 | MaxIndex_j=ones(size(MaxIndex_i));MinIndex_j=ones(size(MinIndex_i)); |
---|
| 126 | if isfield(Param.IndexRange,'MaxIndex_j')&& isfield(Param.IndexRange,'MinIndex_j') |
---|
| 127 | MaxIndex_j=Param.IndexRange.MaxIndex_j; |
---|
| 128 | MinIndex_j=Param.IndexRange.MinIndex_j; |
---|
| 129 | end |
---|
| 130 | |
---|
[1157] | 131 | [~,i1_series,~,j1_series,~]=get_file_series(Param); |
---|
[1148] | 132 | iview_A=0;% series index (iview) for the first image series |
---|
| 133 | iview_B=0;% series index (iview) for the second image series (only non zero for option 'shift' comparing two image series ) |
---|
| 134 | if Param.ActionInput.CheckCiv1 |
---|
| 135 | iview_A=1;% usual PIV, the image series is on the first line of the table |
---|
| 136 | elseif Param.ActionInput.CheckCiv2 % civ2 is performed without Civ1, a netcdf file series is needed in the first table line |
---|
| 137 | iview_A=2;% the second line is used for the input images of Civ2 |
---|
| 138 | end |
---|
| 139 | if iview_A~=0 |
---|
| 140 | RootPath_A=Param.InputTable{iview_A,1}; |
---|
| 141 | RootFile_A=Param.InputTable{iview_A,3}; |
---|
| 142 | SubDir_A=Param.InputTable{iview_A,2}; |
---|
| 143 | NomType_A=Param.InputTable{iview_A,4}; |
---|
| 144 | FileExt_A=Param.InputTable{iview_A,5}; |
---|
| 145 | if iview_B==0 |
---|
| 146 | iview_B=iview_A;% the second image series is the same as the first |
---|
[1089] | 147 | end |
---|
[1148] | 148 | RootPath_B=Param.InputTable{iview_B,1}; |
---|
| 149 | RootFile_B=Param.InputTable{iview_B,3}; |
---|
| 150 | SubDir_B=Param.InputTable{iview_B,2}; |
---|
| 151 | NomType_B=Param.InputTable{iview_B,4}; |
---|
| 152 | FileExt_B=Param.InputTable{iview_B,5}; |
---|
[1089] | 153 | end |
---|
| 154 | |
---|
[1148] | 155 | PairCiv1=Param.ActionInput.PairIndices.ListPairCiv1; |
---|
| 156 | |
---|
[1157] | 157 | [i1_series_Civ1,i2_series_Civ1,j1_series_Civ1,j2_series_Civ1,~,NomTypeNc]=... |
---|
[1148] | 158 | find_pair_indices(PairCiv1,i1_series{1},j1_series{1},MinIndex_i,MaxIndex_i,MinIndex_j,MaxIndex_j); |
---|
| 159 | |
---|
| 160 | if isempty(i1_series_Civ1) |
---|
| 161 | disp_uvmat('ERROR','no image pair for civ in the input file index range',checkrun) |
---|
| 162 | return |
---|
| 163 | end |
---|
| 164 | NbField_i=size(i1_series_Civ1,2); |
---|
| 165 | NbSlice=size(i1_series_Civ1,1); |
---|
| 166 | |
---|
[1089] | 167 | %% prepare output Data |
---|
| 168 | ListGlobalAttribute={'Conventions','Program','CivStage'}; |
---|
[1157] | 169 | Data.Conventions='uvmat/civdata_3D';% states the conventions used for the description of field variables and attributes |
---|
| 170 | Data.Program='civ_3D'; |
---|
| 171 | if isfield(Param,'UvmatRevision') |
---|
| 172 | Data.Program=[Data.Program ', uvmat r' Param.UvmatRevision]; |
---|
| 173 | end |
---|
[1089] | 174 | Data.CivStage=0;%default |
---|
[1148] | 175 | list_param=(fieldnames(Param.ActionInput.Civ1))'; |
---|
[1157] | 176 | list_param(strcmp('TestCiv1',list_param))=[];% remove the parameter TestCiv1 from the list |
---|
| 177 | Civ1_param=regexprep(list_param,'^.+','Civ1_$0');% insert 'Civ1_' before each string in list_param |
---|
| 178 | Civ1_param=[{'Civ1_ImageA','Civ1_ImageB','Civ1_Time','Civ1_Dt'} Civ1_param]; %insert the names of the two input images |
---|
[1148] | 179 | Data.ListGlobalAttribute=[ListGlobalAttribute Civ1_param]; |
---|
[1157] | 180 | % set the list of variables |
---|
[1158] | 181 | Data.ListVarName={'Coord_z','Civ1_X','Civ1_Y','Civ1_U','Civ1_V','Civ1_W','Civ1_C','Civ1_FF'};% cell array containing the names of the fields to record |
---|
| 182 | Data.VarDimName={'npz',{'npz','npy','npx'},{'npz','npy','npx'},{'npz','npy','npx'},{'npz','npy','npx'},... |
---|
[1157] | 183 | {'npz','npy','npx'},{'npz','npy','npx'},{'npz','npy','npx'}}; |
---|
[1158] | 184 | Data.VarAttribute{1}.Role='coord_z'; |
---|
| 185 | Data.VarAttribute{2}.Role='coord_x'; |
---|
[1160] | 186 | Data.VarAttribute{3}.Role='coord_y'; |
---|
[1158] | 187 | Data.VarAttribute{4}.Role='vector_x'; |
---|
| 188 | Data.VarAttribute{5}.Role='vector_y'; |
---|
| 189 | Data.VarAttribute{6}.Role='vector_z'; |
---|
| 190 | Data.VarAttribute{7}.Role='ancillary'; |
---|
| 191 | Data.VarAttribute{8}.Role='errorflag'; |
---|
[1163] | 192 | % Data.Coord_z=j1_series_Civ1; |
---|
[1157] | 193 | % path for output nc file |
---|
| 194 | OutputPath=fullfile(Param.OutputPath,num2str(Param.Experiment),num2str(Param.Device),[Param.OutputSubDir Param.OutputDirExt]); |
---|
[1089] | 195 | |
---|
| 196 | %% get timing from the ImaDoc file or input video |
---|
| 197 | if iview_A~=0 |
---|
[1152] | 198 | XmlFileName=find_imadoc(RootPath_A,SubDir_A); |
---|
[1089] | 199 | Time=[]; |
---|
| 200 | if ~isempty(XmlFileName) |
---|
| 201 | XmlData=imadoc2struct(XmlFileName); |
---|
| 202 | if isfield(XmlData,'Time') |
---|
| 203 | Time=XmlData.Time; |
---|
| 204 | end |
---|
| 205 | if isfield(XmlData,'Camera') |
---|
| 206 | if isfield(XmlData.Camera,'NbSlice')&& ~isempty(XmlData.Camera.NbSlice) |
---|
| 207 | NbSlice_calib{iview}=XmlData.Camera.NbSlice;% Nbre of slices for Zindex in phys transform |
---|
| 208 | if ~isequal(NbSlice_calib{iview},NbSlice_calib{1}) |
---|
| 209 | msgbox_uvmat('WARNING','inconsistent number of Z indices for the two field series'); |
---|
| 210 | end |
---|
| 211 | end |
---|
| 212 | if isfield(XmlData.Camera,'TimeUnit')&& ~isempty(XmlData.Camera.TimeUnit) |
---|
| 213 | TimeUnit=XmlData.Camera.TimeUnit; |
---|
| 214 | end |
---|
| 215 | end |
---|
| 216 | end |
---|
| 217 | end |
---|
| 218 | |
---|
| 219 | maskoldname='';% initiate the mask name |
---|
| 220 | FileType_A=''; |
---|
| 221 | FileType_B=''; |
---|
| 222 | CheckOverwrite=1;%default |
---|
| 223 | if isfield(Param,'CheckOverwrite') |
---|
| 224 | CheckOverwrite=Param.CheckOverwrite; |
---|
| 225 | end |
---|
[1148] | 226 | Data.Civ1_ImageA=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ1(1),[],j1_series_Civ1(1,1)); |
---|
| 227 | Data.Civ1_ImageB=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i1_series_Civ1(1),[],j2_series_Civ1(1,1)); |
---|
| 228 | FileInfo=get_file_info(Data.Civ1_ImageA); |
---|
| 229 | par_civ1=Param.ActionInput.Civ1;% parameters for civ1 |
---|
| 230 | par_civ1.ImageHeight=FileInfo.Height;npy=FileInfo.Height; |
---|
| 231 | par_civ1.ImageWidth=FileInfo.Width;npx=FileInfo.Width; |
---|
[1163] | 232 | SearchRange_z=Param.ActionInput.Civ1.SearchRange(3); |
---|
[1148] | 233 | par_civ1.Dz=Param.ActionInput.Civ1.Dz; |
---|
| 234 | par_civ1.ImageA=zeros(2*SearchRange_z+1,npy,npx); |
---|
| 235 | par_civ1.ImageB=zeros(2*SearchRange_z+1,npy,npx); |
---|
| 236 | |
---|
[1157] | 237 | |
---|
| 238 | |
---|
[1148] | 239 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 240 | %%%%% MAIN LOOP %%%%%% |
---|
| 241 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 242 | for ifield=1:NbField_i |
---|
| 243 | tstart=tic; |
---|
| 244 | time_civ1=0; |
---|
| 245 | time_patch1=0; |
---|
| 246 | time_civ2=0; |
---|
| 247 | time_patch2=0; |
---|
| 248 | if checkrun% update the waitbar in interactive mode with GUI series (checkrun=1) |
---|
| 249 | update_waitbar(WaitbarHandle,ifield/NbField_i) |
---|
[1089] | 250 | if checkrun && ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
| 251 | disp('program stopped by user') |
---|
| 252 | break |
---|
| 253 | end |
---|
| 254 | end |
---|
[1148] | 255 | |
---|
| 256 | %indicate the values of all the global attributes in the output data |
---|
| 257 | i1=i1_series_Civ1(ifield); |
---|
| 258 | i2=i1; |
---|
| 259 | if ~isempty(i2_series_Civ1) |
---|
| 260 | i2=i2_series_Civ1(ifield); |
---|
[1089] | 261 | end |
---|
[1148] | 262 | j1=1; |
---|
| 263 | if ~isempty(j1_series_Civ1) |
---|
| 264 | j1=j1_series_Civ1(ifield); |
---|
| 265 | end |
---|
| 266 | j2=j1; |
---|
| 267 | if ~isempty(j2_series_Civ1) |
---|
| 268 | j2=j2_series_Civ1(ifield); |
---|
| 269 | end |
---|
| 270 | |
---|
| 271 | 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 |
---|
| 272 | Data.Civ1_Dt=Time(i2+1,j2+1)-Time(i1+1,j1+1); |
---|
| 273 | |
---|
| 274 | for ilist=1:length(list_param) |
---|
| 275 | Data.(Civ1_param{4+ilist})=Param.ActionInput.Civ1.(list_param{ilist}); |
---|
| 276 | end |
---|
| 277 | |
---|
| 278 | Data.CivStage=1; |
---|
[1157] | 279 | |
---|
| 280 | ncfile_out=fullfile_uvmat(OutputPath,'',Param.InputTable{1,3},'.nc',... |
---|
| 281 | '_1-1',i1_series_Civ1(ifield),i2_series_Civ1(ifield)); %output file name |
---|
[1148] | 282 | |
---|
| 283 | if ~CheckOverwrite && exist(ncfile_out,'file') |
---|
| 284 | disp(['existing output file ' ncfile_out ' already exists, skip to next field']) |
---|
| 285 | continue% skip iteration if the mode overwrite is desactivated and the result file already exists |
---|
| 286 | end |
---|
| 287 | |
---|
| 288 | |
---|
[1089] | 289 | %% Civ1 |
---|
| 290 | % if Civ1 computation is requested |
---|
| 291 | if isfield (Param.ActionInput,'Civ1') |
---|
[1148] | 292 | |
---|
| 293 | disp('civ1 started') |
---|
| 294 | |
---|
[1157] | 295 | % read input images by vertical blocks with nbre of images equal to 2*SearchRange+1, |
---|
| 296 | par_civ1.ImageA=zeros(2*SearchRange_z+1,npy,npx);%image block initiation |
---|
[1148] | 297 | par_civ1.ImageB=zeros(2*SearchRange_z+1,npy,npx); |
---|
[1163] | 298 | Data.Coord_z=SearchRange_z+1:par_civ1.Dz:NbSlice-1; |
---|
[1158] | 299 | z_index=1;%first vertical block centered at image index z_index=SearchRange_z+1 |
---|
| 300 | for iz=1:2*SearchRange_z+1 |
---|
[1157] | 301 | j_image_index=j1_series_Civ1(iz,1)% j index of the current image |
---|
| 302 | ImageName_A=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ1(1,ifield),[],j_image_index);% |
---|
[1151] | 303 | A= read_image(ImageName_A,FileType_A); |
---|
[1157] | 304 | ImageName_B=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_series_Civ1(1,ifield),[],j_image_index); |
---|
[1151] | 305 | B= read_image(ImageName_B,FileType_B); |
---|
[1158] | 306 | par_civ1.ImageA(iz,:,:) = A; |
---|
| 307 | par_civ1.ImageB(iz,:,:) = B; |
---|
[1157] | 308 | end |
---|
| 309 | % calculate velocity data at the first position z, corresponding to j_index=par_civ1.Dz |
---|
| 310 | [Data.Civ1_X(1,:,:),Data.Civ1_Y(1,:,:), Data.Civ1_U(1,:,:), Data.Civ1_V(1,:,:),Data.Civ1_W(1,:,:),... |
---|
[1160] | 311 | Data.Civ1_C(1,:,:), Data.Civ1_FF(1,:,:), ~, errormsg] = civ3D (par_civ1); |
---|
[1157] | 312 | if ~isempty(errormsg) |
---|
| 313 | disp_uvmat('ERROR',errormsg,checkrun) |
---|
| 314 | return |
---|
| 315 | end |
---|
[1161] | 316 | % loop on slices |
---|
[1163] | 317 | |
---|
[1160] | 318 | for z_index=2:floor((NbSlice-SearchRange_z)/par_civ1.Dz)% loop on slices |
---|
[1161] | 319 | par_civ1.ImageA=circshift(par_civ1.ImageA,-par_civ1.Dz,1);%shift the indices in the image block upward by par_civ1.Dz |
---|
| 320 | par_civ1.ImageB=circshift(par_civ1.ImageB,-par_civ1.Dz,1); |
---|
[1157] | 321 | for iz=1:par_civ1.Dz %read the new images at the end of the image block |
---|
[1163] | 322 | image_index=z_index*par_civ1.Dz+SearchRange_z-par_civ1.Dz+iz+1; |
---|
| 323 | if image_index<=size(j1_series_Civ1,1) |
---|
[1161] | 324 | j_image_index=j1_series_Civ1(z_index*par_civ1.Dz+SearchRange_z-par_civ1.Dz+iz+1,1) |
---|
[1163] | 325 | ImageName_A=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_series_Civ1(1,ifield),[],j_image_index);% |
---|
[1157] | 326 | A= read_image(ImageName_A,FileType_A); |
---|
| 327 | ImageName_B=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_series_Civ1(1,ifield),[],j_image_index); |
---|
| 328 | B= read_image(ImageName_B,FileType_B); |
---|
[1163] | 329 | else |
---|
| 330 | A=zeros(1,size(par_civ1.ImageA,2),size(par_civ1.ImageA,3)); |
---|
| 331 | B=zeros(1,size(par_civ1.ImageA,2),size(par_civ1.ImageA,3)); |
---|
| 332 | end |
---|
[1157] | 333 | par_civ1.ImageA(2*SearchRange_z+1-par_civ1.Dz+iz,:,:) = A; |
---|
| 334 | par_civ1.ImageB(2*SearchRange_z+1-par_civ1.Dz+iz,:,:) = B; |
---|
[1089] | 335 | end |
---|
[1148] | 336 | % caluclate velocity data (y and v in indices, reverse to y component) |
---|
[1157] | 337 | [Data.Civ1_X(z_index,:,:),Data.Civ1_Y(z_index,:,:), Data.Civ1_U(z_index,:,:), Data.Civ1_V(z_index,:,:),Data.Civ1_W(z_index,:,:),... |
---|
| 338 | Data.Civ1_C(z_index,:,:), Data.Civ1_FF(z_index,:,:), result_conv, errormsg] = civ3D (par_civ1); |
---|
[1148] | 339 | if ~isempty(errormsg) |
---|
| 340 | disp_uvmat('ERROR',errormsg,checkrun) |
---|
| 341 | return |
---|
[1089] | 342 | end |
---|
| 343 | end |
---|
[1160] | 344 | Data.Civ1_V=-Data.Civ1_V;%reverse v |
---|
| 345 | Data.Civ1_Y=npy-Data.Civ1_Y+1;%reverse y |
---|
[1157] | 346 | [npz,npy,npx]=size(Data.Civ1_X); |
---|
[1163] | 347 | |
---|
[1160] | 348 | % Data.Coord_y=flip(1:npy); |
---|
| 349 | % Data.Coord_x=1:npx; |
---|
[1148] | 350 | % case of mask TO ADAPT |
---|
[1089] | 351 | if par_civ1.CheckMask&&~isempty(par_civ1.Mask) |
---|
| 352 | if isfield(par_civ1,'NbSlice') |
---|
| 353 | [RootPath_mask,SubDir_mask,RootFile_mask,i1_mask,i2_mask,j1_mask,j2_mask,Ext_mask]=fileparts_uvmat(Param.ActionInput.Civ1.Mask); |
---|
| 354 | i1_mask=mod(i1-1,par_civ1.NbSlice)+1; |
---|
| 355 | maskname=fullfile_uvmat(RootPath_mask,SubDir_mask,RootFile_mask,Ext_mask,'_1',i1_mask); |
---|
| 356 | else |
---|
| 357 | maskname=Param.ActionInput.Civ1.Mask; |
---|
| 358 | end |
---|
| 359 | if strcmp(maskoldname,maskname)% mask exist, not already read in civ1 |
---|
| 360 | par_civ1.Mask=mask; %use mask already opened |
---|
| 361 | else |
---|
[1148] | 362 | if ~isempty(regexp(maskname,'(^http://)|(^https://)'))|| exist(maskname,'file') |
---|
[1089] | 363 | try |
---|
| 364 | par_civ1.Mask=imread(maskname);%update the mask, an store it for future use |
---|
| 365 | catch ME |
---|
| 366 | if ~isempty(ME.message) |
---|
| 367 | errormsg=['error reading input image: ' ME.message]; |
---|
| 368 | disp_uvmat('ERROR',errormsg,checkrun) |
---|
| 369 | return |
---|
| 370 | end |
---|
| 371 | end |
---|
| 372 | else |
---|
| 373 | par_civ1.Mask=[]; |
---|
| 374 | end |
---|
| 375 | mask=par_civ1.Mask; |
---|
| 376 | maskoldname=maskname; |
---|
| 377 | end |
---|
| 378 | end |
---|
[1148] | 379 | % Data.ListVarName=[Data.ListVarName 'Civ1_Z']; |
---|
| 380 | % Data.Civ1_X=[];Data.Civ1_Y=[];Data.Civ1_Z=[]; |
---|
| 381 | % Data.Civ1_U=[];Data.Civ1_V=[];Data.Civ1_C=[]; |
---|
| 382 | % |
---|
| 383 | % |
---|
| 384 | % Data.Civ1_X=[Data.Civ1_X reshape(xtable,[],1)]; |
---|
| 385 | % Data.Civ1_Y=[Data.Civ1_Y reshape(Param.Civ1.ImageHeight-ytable+1,[],1)]; |
---|
| 386 | % Data.Civ1_Z=[Data.Civ1_Z ivol*ones(numel(xtable),1)];% z=image index in image coordinates |
---|
| 387 | % Data.Civ1_U=[Data.Civ1_U reshape(utable,[],1)]; |
---|
| 388 | % Data.Civ1_V=[Data.Civ1_V reshape(-vtable,[],1)]; |
---|
| 389 | % Data.Civ1_C=[Data.Civ1_C reshape(ctable,[],1)]; |
---|
| 390 | % Data.Civ1_FF=[Data.Civ1_FF reshape(F,[],1)]; |
---|
| 391 | |
---|
[1089] | 392 | end |
---|
[1148] | 393 | |
---|
[1089] | 394 | %% Fix1 |
---|
| 395 | if isfield (Param.ActionInput,'Fix1') |
---|
[1148] | 396 | disp('detect_false1 started') |
---|
[1089] | 397 | if ~isfield (Param.ActionInput,'Civ1')% if we use existing Civ1, remove previous data beyond Civ1 |
---|
| 398 | Fix1_attr=find(strcmp('Fix1',Data.ListGlobalAttribute)); |
---|
| 399 | Data.ListGlobalAttribute(Fix1_attr)=[]; |
---|
| 400 | for ilist=1:numel(Fix1_attr) |
---|
| 401 | Data=rmfield(Data,Data.ListGlobalAttribute{Fix1_attr(ilist)}); |
---|
| 402 | end |
---|
| 403 | end |
---|
| 404 | list_param=fieldnames(Param.ActionInput.Fix1)'; |
---|
| 405 | Fix1_param=regexprep(list_param,'^.+','Fix1_$0');% insert 'Fix1_' before each string in ListFixParam |
---|
| 406 | %indicate the values of all the global attributes in the output data |
---|
| 407 | for ilist=1:length(list_param) |
---|
| 408 | Data.(Fix1_param{ilist})=Param.ActionInput.Fix1.(list_param{ilist}); |
---|
| 409 | end |
---|
| 410 | Data.ListGlobalAttribute=[Data.ListGlobalAttribute Fix1_param]; |
---|
[1148] | 411 | Data.Civ1_FF=uint8(detect_false(Param.ActionInput.Fix1,Data.Civ1_C,Data.Civ1_U,Data.Civ1_V,Data.Civ1_FF)); |
---|
[1089] | 412 | Data.CivStage=2; |
---|
| 413 | end |
---|
| 414 | %% Patch1 |
---|
| 415 | if isfield (Param.ActionInput,'Patch1') |
---|
| 416 | disp('patch1 started') |
---|
[1148] | 417 | tstart_patch1=tic; |
---|
| 418 | |
---|
[1089] | 419 | % record the processing parameters of Patch1 as global attributes in the result nc file |
---|
| 420 | list_param=fieldnames(Param.ActionInput.Patch1)'; |
---|
| 421 | list_param(strcmp('TestPatch1',list_param))=[];% remove 'TestPatch1' from the list of parameters |
---|
| 422 | Patch1_param=regexprep(list_param,'^.+','Patch1_$0');% insert 'Patch1_' before each parameter name |
---|
| 423 | for ilist=1:length(list_param) |
---|
| 424 | Data.(Patch1_param{ilist})=Param.ActionInput.Patch1.(list_param{ilist}); |
---|
| 425 | end |
---|
| 426 | Data.CivStage=3;% record the new state of processing |
---|
| 427 | Data.ListGlobalAttribute=[Data.ListGlobalAttribute Patch1_param]; |
---|
[1148] | 428 | |
---|
[1089] | 429 | % list the variables to record |
---|
| 430 | nbvar=length(Data.ListVarName); |
---|
[1163] | 431 | Data.ListVarName=[Data.ListVarName {'Civ1_U_smooth','Civ1_V_smooth','Civ1_W_smooth'}]; |
---|
| 432 | Data.VarDimName=[Data.VarDimName {{'npz','npy','npx'},{'npz','npy','npx'},{'npz','npy','npx'}}]; |
---|
[1089] | 433 | Data.VarAttribute{nbvar+1}.Role='vector_x'; |
---|
| 434 | Data.VarAttribute{nbvar+2}.Role='vector_y'; |
---|
[1163] | 435 | Data.VarAttribute{nbvar+5}.Role='vector_z'; |
---|
| 436 | Data.Civ1_U_smooth=Data.Civ1_U; |
---|
| 437 | Data.Civ1_V_smooth=Data.Civ1_V; |
---|
| 438 | Data.Civ1_W_smooth=Data.Civ1_W; |
---|
[1089] | 439 | if isfield(Data,'Civ1_FF') |
---|
| 440 | ind_good=find(Data.Civ1_FF==0); |
---|
| 441 | else |
---|
[1163] | 442 | disp_uvmat('ERROR','detection of error vectors (FIX operation) needed before PATCH' ,checkrun) |
---|
| 443 | return |
---|
[1089] | 444 | end |
---|
[1148] | 445 | if isempty(ind_good) |
---|
| 446 | disp_uvmat('ERROR','all vectors of civ1 are bad, check input parameters' ,checkrun) |
---|
| 447 | return |
---|
| 448 | end |
---|
| 449 | |
---|
[1089] | 450 | % perform Patch calculation using the UVMAT fct 'filter_tps' |
---|
[1163] | 451 | Civ1_Z=0.5*Data.Civ1_W(ind_good); |
---|
| 452 | for iz=1:numel(Data.Coord_z) |
---|
| 453 | Civ1_Z(iz,:,:)=Civ1_Z(iz,:,:)+Data.Coord_z(iz); |
---|
| 454 | end |
---|
| 455 | [Data.Civ1_SubRange,Data.Civ1_NbCentres,Data.Civ1_Coord_tps,Data.Civ1_U_tps,Data.Civ1_V_tps,Data.Civ1_W_tps,... |
---|
| 456 | Data.Civ1_U_smooth(ind_good),Data.Civ1_V_smooth(ind_good),Data.Civ1_V_smooth(ind_good),FFres]=... |
---|
| 457 | filter_tps_3D([Data.Civ1_X(ind_good) Data.Civ1_Y(ind_good)],Civ_1_Z,Data.Civ1_U(ind_good),Data.Civ1_V(ind_good),Data.Civ1_W(ind_good),Data.Patch1_SubDomainSize,Data.Patch1_FieldSmooth,Data.Patch1_MaxDiff); |
---|
[1148] | 458 | Data.Civ1_FF(ind_good)=uint8(FFres); |
---|
| 459 | time_patch1=toc(tstart_patch1); |
---|
[1089] | 460 | disp('patch1 performed') |
---|
| 461 | end |
---|
[1148] | 462 | |
---|
[1089] | 463 | %% Civ2 |
---|
| 464 | if isfield (Param.ActionInput,'Civ2') |
---|
| 465 | disp('civ2 started') |
---|
[1148] | 466 | tstart_civ2=tic; |
---|
[1089] | 467 | par_civ2=Param.ActionInput.Civ2; |
---|
[1148] | 468 | % read input images |
---|
| 469 | par_civ2.ImageA=[]; |
---|
| 470 | par_civ2.ImageB=[]; |
---|
| 471 | if strcmp(Param.ActionInput.ListCompareMode,'displacement') |
---|
| 472 | ImageName_A_Civ2=Param.ActionInput.RefFile; |
---|
| 473 | else |
---|
[1089] | 474 | ImageName_A_Civ2=fullfile_uvmat(RootPath_A,SubDir_A,RootFile_A,FileExt_A,NomType_A,i1_civ2,[],j1_civ2); |
---|
[1148] | 475 | end |
---|
| 476 | if strcmp(ImageName_A_Civ2,ImageName_A) && isequal(FrameIndex_A_Civ1(ifield),FrameIndex_A_Civ2(ifield)) |
---|
| 477 | par_civ2.ImageA=par_civ1.ImageA; |
---|
| 478 | else |
---|
| 479 | [par_civ2.ImageA,VideoObject_A] = read_image(ImageName_A_Civ2,FileType_A,VideoObject_A,FrameIndex_A_Civ2(ifield)); |
---|
| 480 | end |
---|
| 481 | ImageName_B_Civ2=fullfile_uvmat(RootPath_B,SubDir_B,RootFile_B,FileExt_B,NomType_B,i2_civ2,[],j2_civ2); |
---|
| 482 | if strcmp(ImageName_B_Civ2,ImageName_B) && isequal(FrameIndex_B_Civ1(ifield),FrameIndex_B_Civ2) |
---|
| 483 | par_civ2.ImageB=par_civ1.ImageB; |
---|
| 484 | else |
---|
| 485 | [par_civ2.ImageB,VideoObject_B] = read_image(ImageName_B_Civ2,FileType_B,VideoObject_B,FrameIndex_B_Civ2(ifield)); |
---|
| 486 | end |
---|
| 487 | [FileInfo_A,VideoObject_A]=get_file_info(ImageName_A_Civ2); |
---|
| 488 | par_civ2.ImageWidth=FileInfo_A.Width; |
---|
| 489 | par_civ2.ImageHeight=FileInfo_A.Height; |
---|
| 490 | if isfield(par_civ2,'Grid')% grid points set as input file |
---|
| 491 | if ischar(par_civ2.Grid)%read the grid file if the input is a file name |
---|
| 492 | par_civ2.Grid=dlmread(par_civ2.Grid); |
---|
| 493 | par_civ2.Grid(1,:)=[];%the first line must be removed (heading in the grid file) |
---|
[1089] | 494 | end |
---|
[1148] | 495 | else% automatic grid |
---|
| 496 | minix=floor(par_civ2.Dx/2)-0.5; |
---|
| 497 | maxix=minix+par_civ2.Dx*floor((par_civ2.ImageWidth-1)/par_civ2.Dx); |
---|
| 498 | miniy=floor(par_civ2.Dy/2)-0.5; |
---|
| 499 | maxiy=minix+par_civ2.Dy*floor((par_civ2.ImageHeight-1)/par_civ2.Dy); |
---|
| 500 | [GridX,GridY]=meshgrid(minix:par_civ2.Dx:maxix,miniy:par_civ2.Dy:maxiy); |
---|
| 501 | par_civ2.Grid(:,1)=reshape(GridX,[],1); |
---|
| 502 | par_civ2.Grid(:,2)=reshape(GridY,[],1); |
---|
[1089] | 503 | end |
---|
[1148] | 504 | % end |
---|
| 505 | |
---|
[1089] | 506 | % get the guess from patch1 or patch2 (case 'CheckCiv3') |
---|
[1148] | 507 | |
---|
| 508 | if isfield (par_civ2,'CheckCiv3') && par_civ2.CheckCiv3 %get the guess from patch2 |
---|
| 509 | SubRange= Data.Civ2_SubRange; |
---|
| 510 | NbCentres=Data.Civ2_NbCentres; |
---|
| 511 | Coord_tps=Data.Civ2_Coord_tps; |
---|
| 512 | U_tps=Data.Civ2_U_tps; |
---|
| 513 | V_tps=Data.Civ2_V_tps; |
---|
| 514 | CivStage=Data.CivStage;%store the current CivStage |
---|
| 515 | Civ1_Dt=Data.Civ2_Dt; |
---|
| 516 | Data=[];%reinitialise the result structure Data |
---|
| 517 | Data.ListGlobalAttribute={'Conventions','Program','CivStage'}; |
---|
| 518 | Data.Conventions='uvmat/civdata';% states the conventions used for the description of field variables and attributes |
---|
| 519 | Data.Program='civ_series'; |
---|
| 520 | Data.CivStage=CivStage+1;%update the current civStage after reinitialisation of Data |
---|
[1089] | 521 | Data.ListVarName={}; |
---|
| 522 | Data.VarDimName={}; |
---|
[1148] | 523 | else % get the guess from patch1 |
---|
| 524 | SubRange= Data.Civ1_SubRange; |
---|
| 525 | NbCentres=Data.Civ1_NbCentres; |
---|
| 526 | Coord_tps=Data.Civ1_Coord_tps; |
---|
| 527 | U_tps=Data.Civ1_U_tps; |
---|
| 528 | V_tps=Data.Civ1_V_tps; |
---|
| 529 | Civ1_Dt=Data.Civ1_Dt; |
---|
| 530 | Data.CivStage=4; |
---|
[1089] | 531 | end |
---|
[1161] | 532 | |
---|
[1089] | 533 | Shiftx=zeros(size(par_civ2.Grid,1),1);% shift expected from civ1 data |
---|
| 534 | Shifty=zeros(size(par_civ2.Grid,1),1); |
---|
| 535 | nbval=zeros(size(par_civ2.Grid,1),1);% nbre of interpolated values at each grid point (from the different patch subdomains) |
---|
[1161] | 536 | |
---|
[1089] | 537 | NbSubDomain=size(SubRange,3); |
---|
| 538 | for isub=1:NbSubDomain% for each sub-domain of Patch1 |
---|
| 539 | nbvec_sub=NbCentres(isub);% nbre of Civ vectors in the subdomain |
---|
| 540 | ind_sel=find(par_civ2.Grid(:,1)>=SubRange(1,1,isub) & par_civ2.Grid(:,1)<=SubRange(1,2,isub) &... |
---|
| 541 | par_civ2.Grid(:,2)>=SubRange(2,1,isub) & par_civ2.Grid(:,2)<=SubRange(2,2,isub));% grid points in the subdomain |
---|
| 542 | if ~isempty(ind_sel) |
---|
| 543 | epoints = par_civ2.Grid(ind_sel,:);% coordinates of interpolation sites (measurement grids) |
---|
| 544 | ctrs=Coord_tps(1:nbvec_sub,:,isub) ;%(=initial points) ctrs |
---|
| 545 | nbval(ind_sel)=nbval(ind_sel)+1;% records the number of values for each interpolation point (in case of subdomain overlap) |
---|
| 546 | EM = tps_eval(epoints,ctrs);% thin plate spline (tps) coefficient |
---|
| 547 | Shiftx(ind_sel)=Shiftx(ind_sel)+EM*U_tps(1:nbvec_sub+3,isub);%velocity shift estimated by tps from civ1 |
---|
| 548 | Shifty(ind_sel)=Shifty(ind_sel)+EM*V_tps(1:nbvec_sub+3,isub); |
---|
| 549 | end |
---|
| 550 | end |
---|
[1148] | 551 | if par_civ2.CheckMask&&~isempty(par_civ2.Mask) |
---|
[1089] | 552 | if isfield(par_civ2,'NbSlice') |
---|
| 553 | [RootPath_mask,SubDir_mask,RootFile_mask,i1_mask,i2_mask,j1_mask,j2_mask,Ext_mask]=fileparts_uvmat(Param.ActionInput.Civ2.Mask); |
---|
| 554 | i1_mask=mod(i1-1,par_civ2.NbSlice)+1; |
---|
| 555 | maskname=fullfile_uvmat(RootPath_mask,SubDir_mask,RootFile_mask,Ext_mask,'_1',i1_mask); |
---|
| 556 | else |
---|
| 557 | maskname=Param.ActionInput.Civ2.Mask; |
---|
| 558 | end |
---|
| 559 | if strcmp(maskoldname,maskname)% mask exist, not already read in civ1 |
---|
| 560 | par_civ2.Mask=mask; %use mask already opened |
---|
| 561 | else |
---|
| 562 | if exist(maskname,'file') |
---|
[1148] | 563 | try |
---|
| 564 | par_civ2.Mask=imread(maskname);%update the mask, an store it for future use |
---|
| 565 | catch ME |
---|
| 566 | if ~isempty(ME.message) |
---|
| 567 | errormsg=['error reading input image: ' ME.message]; |
---|
| 568 | disp_uvmat('ERROR',errormsg,checkrun) |
---|
| 569 | return |
---|
| 570 | end |
---|
[1089] | 571 | end |
---|
| 572 | else |
---|
| 573 | par_civ2.Mask=[]; |
---|
| 574 | end |
---|
| 575 | mask=par_civ2.Mask; |
---|
| 576 | maskoldname=maskname; |
---|
| 577 | end |
---|
| 578 | end |
---|
| 579 | |
---|
[1148] | 580 | |
---|
| 581 | if strcmp(Param.ActionInput.ListCompareMode,'displacement') |
---|
| 582 | Civ1_Dt=1; |
---|
| 583 | Civ2_Dt=1; |
---|
| 584 | else |
---|
| 585 | Civ2_Dt=Time(i2_civ2+1,j2_civ2+1)-Time(i1_civ2+1,j1_civ2+1); |
---|
[1089] | 586 | end |
---|
[1148] | 587 | |
---|
[1089] | 588 | par_civ2.SearchBoxShift=(Civ2_Dt/Civ1_Dt)*[Shiftx(nbval>=1)./nbval(nbval>=1) Shifty(nbval>=1)./nbval(nbval>=1)]; |
---|
| 589 | % shift the grid points by half the expected shift to provide the correlation box position in image A |
---|
| 590 | 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]; |
---|
| 591 | if par_civ2.CheckDeformation |
---|
| 592 | par_civ2.DUDX=DUDX(nbval>=1)./nbval(nbval>=1); |
---|
| 593 | par_civ2.DUDY=DUDY(nbval>=1)./nbval(nbval>=1); |
---|
| 594 | par_civ2.DVDX=DVDX(nbval>=1)./nbval(nbval>=1); |
---|
| 595 | par_civ2.DVDY=DVDY(nbval>=1)./nbval(nbval>=1); |
---|
| 596 | end |
---|
[1148] | 597 | |
---|
[1089] | 598 | % calculate velocity data (y and v in image indices, reverse to y component) |
---|
[1148] | 599 | |
---|
[1089] | 600 | [xtable, ytable, utable, vtable, ctable, F,result_conv,errormsg] = civ (par_civ2); |
---|
[1148] | 601 | |
---|
[1089] | 602 | list_param=(fieldnames(Param.ActionInput.Civ2))'; |
---|
| 603 | list_param(strcmp('TestCiv2',list_param))=[];% remove the parameter TestCiv2 from the list |
---|
| 604 | Civ2_param=regexprep(list_param,'^.+','Civ2_$0');% insert 'Civ2_' before each string in list_param |
---|
| 605 | Civ2_param=[{'Civ2_ImageA','Civ2_ImageB','Civ2_Time','Civ2_Dt'} Civ2_param]; %insert the names of the two input images |
---|
| 606 | %indicate the values of all the global attributes in the output data |
---|
| 607 | if exist('ImageName_A','var') |
---|
| 608 | Data.Civ2_ImageA=ImageName_A; |
---|
| 609 | Data.Civ2_ImageB=ImageName_B; |
---|
| 610 | if strcmp(Param.ActionInput.ListCompareMode,'displacement') |
---|
| 611 | Data.Civ2_Time=Time(i2_civ2+1,j2_civ2+1);% the Time is the Time of the secodn image |
---|
| 612 | Data.Civ2_Dt=1;% Time interval is 1, to yield displacement instead of velocity=displacement/Dt at reading |
---|
| 613 | else |
---|
| 614 | Data.Civ2_Time=(Time(i2_civ2+1,j2_civ2+1)+Time(i1_civ2+1,j1_civ2+1))/2; |
---|
| 615 | Data.Civ2_Dt=Civ2_Dt; |
---|
| 616 | end |
---|
| 617 | end |
---|
| 618 | for ilist=1:length(list_param) |
---|
| 619 | Data.(Civ2_param{4+ilist})=Param.ActionInput.Civ2.(list_param{ilist}); |
---|
| 620 | end |
---|
| 621 | Data.ListGlobalAttribute=[Data.ListGlobalAttribute Civ2_param]; |
---|
[1148] | 622 | |
---|
[1089] | 623 | nbvar=numel(Data.ListVarName); |
---|
| 624 | % define the Civ2 variable (if Civ2 data are not replaced from previous calculation) |
---|
| 625 | if isempty(find(strcmp('Civ2_X',Data.ListVarName),1)) |
---|
[1148] | 626 | Data.ListVarName=[Data.ListVarName {'Civ2_X','Civ2_Y','Civ2_U','Civ2_V','Civ2_C','Civ2_FF'}];% cell array containing the names of the fields to record |
---|
[1089] | 627 | Data.VarDimName=[Data.VarDimName {'nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2','nb_vec_2'}]; |
---|
| 628 | Data.VarAttribute{nbvar+1}.Role='coord_x'; |
---|
| 629 | Data.VarAttribute{nbvar+2}.Role='coord_y'; |
---|
| 630 | Data.VarAttribute{nbvar+3}.Role='vector_x'; |
---|
| 631 | Data.VarAttribute{nbvar+4}.Role='vector_y'; |
---|
[1148] | 632 | Data.VarAttribute{nbvar+5}.Role='ancillary'; |
---|
| 633 | Data.VarAttribute{nbvar+6}.Role='errorflag'; |
---|
[1089] | 634 | end |
---|
| 635 | Data.Civ2_X=reshape(xtable,[],1); |
---|
| 636 | Data.Civ2_Y=reshape(size(par_civ2.ImageA,1)-ytable+1,[],1); |
---|
| 637 | Data.Civ2_U=reshape(utable,[],1); |
---|
| 638 | Data.Civ2_V=reshape(-vtable,[],1); |
---|
| 639 | Data.Civ2_C=reshape(ctable,[],1); |
---|
[1148] | 640 | Data.Civ2_FF=reshape(F,[],1); |
---|
[1089] | 641 | disp('civ2 performed') |
---|
[1148] | 642 | time_civ2=toc(tstart_civ2); |
---|
[1089] | 643 | elseif ~isfield(Data,'ListVarName') % we start there, using existing Civ2 data |
---|
| 644 | if exist('ncfile','var') |
---|
| 645 | CivFile=ncfile; |
---|
[1160] | 646 | [Data,~,~,errormsg]=nc2struct(CivFile);%read civ1 and detect_false1 data in the existing netcdf file |
---|
[1089] | 647 | if ~isempty(errormsg) |
---|
| 648 | disp_uvmat('ERROR',errormsg,checkrun) |
---|
| 649 | return |
---|
| 650 | end |
---|
| 651 | end |
---|
| 652 | end |
---|
[1148] | 653 | |
---|
[1089] | 654 | %% Fix2 |
---|
| 655 | if isfield (Param.ActionInput,'Fix2') |
---|
[1148] | 656 | disp('detect_false2 started') |
---|
[1089] | 657 | list_param=fieldnames(Param.ActionInput.Fix2)'; |
---|
| 658 | Fix2_param=regexprep(list_param,'^.+','Fix2_$0');% insert 'Fix1_' before each string in ListFixParam |
---|
| 659 | %indicate the values of all the global attributes in the output data |
---|
| 660 | for ilist=1:length(list_param) |
---|
| 661 | Data.(Fix2_param{ilist})=Param.ActionInput.Fix2.(list_param{ilist}); |
---|
| 662 | end |
---|
| 663 | Data.ListGlobalAttribute=[Data.ListGlobalAttribute Fix2_param]; |
---|
[1157] | 664 | Data.Civ2_FF=detect_false(Param.ActionInput.Fix2,Data.Civ2_C,Data.Civ2_U,Data.Civ2_V,Data.Civ2_FF); |
---|
[1148] | 665 | Data.CivStage=Data.CivStage+1; |
---|
[1089] | 666 | end |
---|
[1148] | 667 | |
---|
[1089] | 668 | %% Patch2 |
---|
| 669 | if isfield (Param.ActionInput,'Patch2') |
---|
| 670 | disp('patch2 started') |
---|
[1148] | 671 | tstart_patch2=tic; |
---|
[1089] | 672 | list_param=fieldnames(Param.ActionInput.Patch2)'; |
---|
| 673 | list_param(strcmp('TestPatch2',list_param))=[];% remove the parameter TestCiv1 from the list |
---|
| 674 | Patch2_param=regexprep(list_param,'^.+','Patch2_$0');% insert 'Fix1_' before each string in ListFixParam |
---|
| 675 | %indicate the values of all the global attributes in the output data |
---|
| 676 | for ilist=1:length(list_param) |
---|
| 677 | Data.(Patch2_param{ilist})=Param.ActionInput.Patch2.(list_param{ilist}); |
---|
| 678 | end |
---|
| 679 | Data.ListGlobalAttribute=[Data.ListGlobalAttribute Patch2_param]; |
---|
[1148] | 680 | |
---|
[1089] | 681 | nbvar=length(Data.ListVarName); |
---|
| 682 | Data.ListVarName=[Data.ListVarName {'Civ2_U_smooth','Civ2_V_smooth','Civ2_SubRange','Civ2_NbCentres','Civ2_Coord_tps','Civ2_U_tps','Civ2_V_tps'}]; |
---|
| 683 | Data.VarDimName=[Data.VarDimName {'nb_vec_2','nb_vec_2',{'nb_coord','nb_bounds','nb_subdomain_2'},{'nb_subdomain_2'},... |
---|
| 684 | {'nb_tps_2','nb_coord','nb_subdomain_2'},{'nb_tps_2','nb_subdomain_2'},{'nb_tps_2','nb_subdomain_2'}}]; |
---|
[1148] | 685 | |
---|
[1089] | 686 | Data.VarAttribute{nbvar+1}.Role='vector_x'; |
---|
| 687 | Data.VarAttribute{nbvar+2}.Role='vector_y'; |
---|
| 688 | Data.VarAttribute{nbvar+5}.Role='coord_tps'; |
---|
| 689 | Data.VarAttribute{nbvar+6}.Role='vector_x'; |
---|
| 690 | Data.VarAttribute{nbvar+7}.Role='vector_y'; |
---|
| 691 | Data.Civ2_U_smooth=Data.Civ2_U; |
---|
| 692 | Data.Civ2_V_smooth=Data.Civ2_V; |
---|
| 693 | if isfield(Data,'Civ2_FF') |
---|
| 694 | ind_good=find(Data.Civ2_FF==0); |
---|
| 695 | else |
---|
| 696 | ind_good=1:numel(Data.Civ2_X); |
---|
| 697 | end |
---|
[1148] | 698 | if isempty(ind_good) |
---|
| 699 | disp_uvmat('ERROR','all vectors of civ2 are bad, check input parameters' ,checkrun) |
---|
| 700 | return |
---|
| 701 | end |
---|
| 702 | |
---|
[1089] | 703 | [Data.Civ2_SubRange,Data.Civ2_NbCentres,Data.Civ2_Coord_tps,Data.Civ2_U_tps,Data.Civ2_V_tps,tild,Ures,Vres,tild,FFres]=... |
---|
| 704 | 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); |
---|
| 705 | Data.Civ2_U_smooth(ind_good)=Ures; |
---|
| 706 | Data.Civ2_V_smooth(ind_good)=Vres; |
---|
| 707 | Data.Civ2_FF(ind_good)=FFres; |
---|
| 708 | Data.CivStage=Data.CivStage+1; |
---|
[1148] | 709 | time_patch2=toc(tstart_patch2); |
---|
[1089] | 710 | disp('patch2 performed') |
---|
| 711 | end |
---|
[1148] | 712 | |
---|
[1089] | 713 | %% write result in a netcdf file if requested |
---|
[1148] | 714 | % if CheckOutputFile |
---|
| 715 | errormsg=struct2nc(ncfile_out,Data); |
---|
| 716 | if isempty(errormsg) |
---|
| 717 | disp([ncfile_out ' written']) |
---|
| 718 | %[success,msg] = fileattrib(ncfile_out ,'+w','g');% done in struct2nc |
---|
| 719 | else |
---|
| 720 | disp(errormsg) |
---|
[1089] | 721 | end |
---|
[1148] | 722 | time_total=toc(tstart); |
---|
| 723 | disp(['ellapsed time ' num2str(time_total/60,2) ' minutes']) |
---|
| 724 | disp(['time civ1 ' num2str(time_civ1,2) ' s']) |
---|
| 725 | disp(['time patch1 ' num2str(time_patch1,2) ' s']) |
---|
| 726 | disp(['time civ2 ' num2str(time_civ2,2) ' s']) |
---|
| 727 | disp(['time patch2 ' num2str(time_patch2,2) ' s']) |
---|
[1157] | 728 | |
---|
[1089] | 729 | end |
---|
| 730 | |
---|
| 731 | |
---|
| 732 | % 'civ': function piv.m adapted from PIVlab http://pivlab.blogspot.com/ |
---|
| 733 | %-------------------------------------------------------------------------- |
---|
| 734 | % function [xtable ytable utable vtable typevector] = civ (image1,image2,ibx,iby step, subpixfinder, mask, roi) |
---|
| 735 | % |
---|
| 736 | % OUTPUT: |
---|
| 737 | % xtable: set of x coordinates |
---|
| 738 | % ytable: set of y coordiantes |
---|
| 739 | % utable: set of u displacements (along x) |
---|
| 740 | % vtable: set of v displacements (along y) |
---|
| 741 | % ctable: max image correlation for each vector |
---|
| 742 | % typevector: set of flags, =1 for good, =0 for NaN vectors |
---|
| 743 | % |
---|
| 744 | %INPUT: |
---|
| 745 | % par_civ: structure of input parameters, with fields: |
---|
| 746 | % .ImageA: first image for correlation (matrix) |
---|
| 747 | % .ImageB: second image for correlation(matrix) |
---|
| 748 | % .CorrBoxSize: 1,2 vector giving the size of the correlation box in x and y |
---|
| 749 | % .SearchBoxSize: 1,2 vector giving the size of the search box in x and y |
---|
| 750 | % .SearchBoxShift: 1,2 vector or 2 column matrix (for civ2) giving the shift of the search box in x and y |
---|
| 751 | % .CorrSmooth: =1 or 2 determines the choice of the sub-pixel determination of the correlation max |
---|
| 752 | % .ImageWidth: nb of pixels of the image in x |
---|
| 753 | % .Dx, Dy: mesh for the PIV calculation |
---|
| 754 | % .Grid: grid giving the PIV calculation points (alternative to .Dx .Dy): centres of the correlation boxes in Image A |
---|
| 755 | % .Mask: name of a mask file or mask image matrix itself |
---|
| 756 | % .MinIma: thresholds for image luminosity |
---|
| 757 | % .MaxIma |
---|
| 758 | % .CheckDeformation=1 for subpixel interpolation and image deformation (linear transform) |
---|
| 759 | % .DUDX: matrix of deformation obtained from patch at each grid point |
---|
| 760 | % .DUDY |
---|
| 761 | % .DVDX: |
---|
| 762 | % .DVDY |
---|
| 763 | |
---|
[1148] | 764 | function [xtable,ytable,utable,vtable,wtable,ctable,FF,result_conv,errormsg] = civ3D (par_civ) |
---|
[1160] | 765 | %% check image sizes |
---|
| 766 | [npz,npy_ima,npx_ima]=size(par_civ.ImageA);% npz = |
---|
| 767 | if ~isequal(size(par_civ.ImageB),[npz npy_ima npx_ima]) |
---|
| 768 | errormsg='image pair with unequal size'; |
---|
| 769 | return |
---|
| 770 | end |
---|
[1089] | 771 | |
---|
| 772 | %% prepare measurement grid |
---|
[1160] | 773 | nbinterv_x=floor((npx_ima-1)/par_civ.Dx); |
---|
[1158] | 774 | gridlength_x=nbinterv_x*par_civ.Dx; |
---|
[1160] | 775 | minix=ceil((npx_ima-gridlength_x)/2); |
---|
| 776 | nbinterv_y=floor((npy_ima-1)/par_civ.Dy); |
---|
[1158] | 777 | gridlength_y=nbinterv_y*par_civ.Dy; |
---|
[1160] | 778 | miniy=ceil((npy_ima-gridlength_y)/2); |
---|
| 779 | [GridX,GridY]=meshgrid(minix:par_civ.Dx:npx_ima-1,miniy:par_civ.Dy:npy_ima-1); |
---|
[1148] | 780 | par_civ.Grid(:,:,1)=GridX; |
---|
| 781 | par_civ.Grid(:,:,2)=GridY;% increases with array index, |
---|
| 782 | [nbvec_y,nbvec_x,~]=size(par_civ.Grid); |
---|
| 783 | |
---|
[1160] | 784 | |
---|
[1089] | 785 | %% prepare correlation and search boxes |
---|
| 786 | ibx2=floor(par_civ.CorrBoxSize(1)/2); |
---|
| 787 | iby2=floor(par_civ.CorrBoxSize(2)/2); |
---|
[1163] | 788 | isx2=par_civ.SearchRange(1); |
---|
| 789 | isy2=par_civ.SearchRange(2); |
---|
| 790 | isz2=par_civ.SearchRange(3); |
---|
[1148] | 791 | kref=isz2+1;%middle index of the z slice |
---|
[1089] | 792 | shiftx=round(par_civ.SearchBoxShift(:,1));%use the input shift estimate, rounded to the next integer value |
---|
| 793 | shifty=-round(par_civ.SearchBoxShift(:,2));% sign minus because image j index increases when y decreases |
---|
| 794 | if numel(shiftx)==1% case of a unique shift for the whole field( civ1) |
---|
[1160] | 795 | shiftx=shiftx*ones(nbvec_y,nbvec_x); |
---|
| 796 | shifty=shifty*ones(nbvec_y,nbvec_x); |
---|
[1089] | 797 | end |
---|
| 798 | |
---|
| 799 | %% Array initialisation and default output if par_civ.CorrSmooth=0 (just the grid calculated, no civ computation) |
---|
[1148] | 800 | xtable=round(par_civ.Grid(:,:,1)+0.5)-0.5; |
---|
[1160] | 801 | %ytable=round(npy_ima-par_civ.Grid(:,:,2)+0.5)-0.5;% y index corresponding to the position in image coordiantes |
---|
| 802 | ytable=round(par_civ.Grid(:,:,2)+0.5)-0.5; |
---|
| 803 | utable=shiftx; |
---|
| 804 | vtable=shifty; |
---|
[1148] | 805 | wtable=zeros(size(utable)); |
---|
[1160] | 806 | ctable=zeros(nbvec_y,nbvec_x); |
---|
| 807 | FF=false(nbvec_y,nbvec_x); |
---|
[1089] | 808 | result_conv=[]; |
---|
| 809 | errormsg=''; |
---|
| 810 | |
---|
| 811 | %% prepare mask |
---|
| 812 | check_MinIma=isfield(par_civ,'MinIma');% test for image luminosity threshold |
---|
| 813 | check_MaxIma=isfield(par_civ,'MaxIma') && ~isempty(par_civ.MaxIma); |
---|
| 814 | |
---|
| 815 | %% Apply mask |
---|
[1148] | 816 | % Convention for mask, IDEAS NOT IMPLEMENTED |
---|
[1089] | 817 | % mask >200 : velocity calculated |
---|
| 818 | % 200 >=mask>150;velocity not calculated, interpolation allowed (bad spots) |
---|
| 819 | % 150>=mask >100: velocity not calculated, nor interpolated |
---|
| 820 | % 100>=mask> 20: velocity not calculated, impermeable (no flux through mask boundaries) |
---|
| 821 | % 20>=mask: velocity=0 |
---|
| 822 | checkmask=0; |
---|
[1148] | 823 | MinA=min(min(min(par_civ.ImageA))); |
---|
[1089] | 824 | if isfield(par_civ,'Mask') && ~isempty(par_civ.Mask) |
---|
| 825 | checkmask=1; |
---|
| 826 | if ~isequal(size(par_civ.Mask),[npy_ima npx_ima]) |
---|
| 827 | errormsg='mask must be an image with the same size as the images'; |
---|
| 828 | return |
---|
| 829 | end |
---|
[1160] | 830 | check_undefined=(par_civ.Mask<200 & par_civ.Mask>=20 );% logical of the size of the image block =true for masked pixels |
---|
[1089] | 831 | end |
---|
| 832 | |
---|
| 833 | %% compute image correlations: MAINLOOP on velocity vectors |
---|
| 834 | corrmax=0; |
---|
| 835 | sum_square=1;% default |
---|
| 836 | mesh=1;% default |
---|
[1160] | 837 | % CheckDeformation=isfield(par_civ,'CheckDeformation')&& par_civ.CheckDeformation==1; |
---|
| 838 | % if CheckDeformation |
---|
| 839 | % mesh=0.25;%mesh in pixels for subpixel image interpolation (x 4 in each direction) |
---|
| 840 | % par_civ.CorrSmooth=2;% use SUBPIX2DGAUSS (take into account more points near the max) |
---|
| 841 | % end |
---|
[1089] | 842 | |
---|
| 843 | if par_civ.CorrSmooth~=0 % par_civ.CorrSmooth=0 implies no civ computation (just input image and grid points given) |
---|
[1148] | 844 | for ivec_x=1:nbvec_x |
---|
| 845 | for ivec_y=1:nbvec_y |
---|
[1157] | 846 | iref=round(par_civ.Grid(ivec_y,ivec_x,1)+0.5);% xindex on the image A for the middle of the correlation box |
---|
[1160] | 847 | jref=round(npy_ima-par_civ.Grid(ivec_y,ivec_x,2)+0.5);% j index for the middle of the correlation box in the image A |
---|
[1148] | 848 | subrange1_x=iref-ibx2:iref+ibx2;% x indices defining the first subimage |
---|
| 849 | subrange1_y=jref-iby2:jref+iby2;% y indices defining the first subimage |
---|
| 850 | subrange2_x=iref+shiftx(ivec_y,ivec_x)-isx2:iref+shiftx(ivec_y,ivec_x)+isx2;%x indices defining the second subimage |
---|
| 851 | subrange2_y=jref+shifty(ivec_y,ivec_x)-isy2:jref+shifty(ivec_y,ivec_x)+isy2;%y indices defining the second subimage |
---|
| 852 | image1_crop=MinA*ones(npz,numel(subrange1_y),numel(subrange1_x));% default value=min of image A |
---|
| 853 | image2_crop=MinA*ones(npz,numel(subrange2_y),numel(subrange2_x));% default value=min of image A |
---|
[1160] | 854 | check1_x=subrange1_x>=1 & subrange1_x<=npx_ima;% check which points in the subimage 1 are contained in the initial image 1 |
---|
| 855 | check1_y=subrange1_y>=1 & subrange1_y<=npy_ima; |
---|
| 856 | check2_x=subrange2_x>=1 & subrange2_x<=npx_ima;% check which points in the subimage 2 are contained in the initial image 2 |
---|
| 857 | check2_y=subrange2_y>=1 & subrange2_y<=npy_ima; |
---|
[1148] | 858 | 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 |
---|
| 859 | 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 |
---|
[1160] | 860 | if checkmask% case of mask images |
---|
| 861 | mask1_crop=true(npz,2*iby2+1,2*ibx2+1);% default value=1 for mask |
---|
| 862 | mask2_crop=true(npz,2*isy2+1,2*isx2+1);% default value=1 for mask |
---|
| 863 | mask1_crop(npz,check1_y,check1_x)=check_undefined(npz,subrange1_y(check1_y),subrange1_x(check1_x));%extract a mask subimage (correlation box) from image A |
---|
| 864 | mask2_crop(npz,check2_y,check2_x)=check_undefined(npz,subrange2_y(check2_y),subrange2_x(check2_x));%extract a mask subimage (search box) from image B |
---|
| 865 | sizemask=sum(sum(mask1_crop,2),3)/(npz*(2*ibx2+1)*(2*iby2+1));%size of the masked part relative to the correlation sub-image |
---|
[1148] | 866 | if sizemask > 1/2% eliminate point if more than half of the correlation box is masked |
---|
| 867 | FF(ivec_y,ivec_x)=1; % |
---|
| 868 | utable(ivec_y,ivec_x)=NaN; |
---|
| 869 | vtable(ivec_y,ivec_x)=NaN; |
---|
| 870 | else |
---|
| 871 | image1_crop=image1_crop.*~mask1_crop;% put to zero the masked pixels (mask1_crop='true'=1) |
---|
| 872 | image2_crop=image2_crop.*~mask2_crop; |
---|
[1160] | 873 | image1_mean=mean(mean(image1_crop,2),3)/(1-sizemask); |
---|
| 874 | image2_mean=mean(mean(image2_crop,2),3)/(1-sizemask); |
---|
[1148] | 875 | end |
---|
[1089] | 876 | else |
---|
[1160] | 877 | image1_mean=mean(mean(image1_crop,2),3); |
---|
| 878 | image2_mean=mean(mean(image2_crop,2),3); |
---|
[1089] | 879 | end |
---|
[1160] | 880 | |
---|
[1148] | 881 | if FF(ivec_y,ivec_x)==0 |
---|
| 882 | if check_MinIma && (image1_mean < par_civ.MinIma || image2_mean < par_civ.MinIma) |
---|
[1160] | 883 | FF(ivec_y,ivec_x)=1; %threshold on image minimum |
---|
| 884 | |
---|
[1148] | 885 | elseif check_MaxIma && (image1_mean > par_civ.MaxIma || image2_mean > par_civ.MaxIma) |
---|
[1160] | 886 | FF(ivec_y,ivec_x)=1; %threshold on image maximum |
---|
[1148] | 887 | end |
---|
| 888 | if FF(ivec_y,ivec_x)==1 |
---|
[1160] | 889 | utable(ivec_y,ivec_x)=NaN; |
---|
[1148] | 890 | vtable(ivec_y,ivec_x)=NaN; |
---|
[1089] | 891 | else |
---|
[1160] | 892 | % case of mask |
---|
| 893 | % if checkmask |
---|
| 894 | % image1_crop=(image1_crop-image1_mean).*~mask1_crop;%substract the mean, put to zero the masked parts |
---|
| 895 | % image2_crop=(image2_crop-image2_mean).*~mask2_crop;% TO MODIFY !!!!!!!!!!!!!!!!!!!!! |
---|
| 896 | % else |
---|
| 897 | % % image1_crop=(image1_crop-image1_mean); |
---|
| 898 | % % image2_crop=(image2_crop-image2_mean); |
---|
| 899 | % end |
---|
[1148] | 900 | |
---|
[1163] | 901 | npxycorr=2*par_civ.SearchRange(1:2)+1; |
---|
| 902 | result_conv=zeros([2*par_civ.SearchRange(3)+1 npxycorr]);%initialise the conv product |
---|
| 903 | max_xy=zeros(2*par_civ.SearchRange(3)+1,1);%initialise the max correlation vs z |
---|
[1160] | 904 | xk=ones(npz,1);%initialise the x displacement corresponding to the max corr |
---|
| 905 | yk=ones(npz,1);%initialise the y displacement corresponding to the max corr |
---|
| 906 | subima1=squeeze(image1_crop(kref,:,:))-image1_mean(kref); |
---|
| 907 | for kz=1:npz |
---|
| 908 | subima2=squeeze(image2_crop(kz,:,:))-image2_mean(kz); |
---|
[1148] | 909 | correl_xy=conv2(subima2,flip(flip(subima1,2),1),'valid'); |
---|
[1160] | 910 | result_conv(kz,:,:)=correl_xy; |
---|
[1161] | 911 | max_xy(kz)=max(max(correl_xy)); |
---|
| 912 | [yk(kz),xk(kz)]=find(correl_xy==max_xy(kz),1);%find the indices of the maximum, use 0.999 to avoid rounding errors |
---|
[1148] | 913 | end |
---|
[1158] | 914 | [corrmax,dz]=max(max_xy); |
---|
[1160] | 915 | result_conv=result_conv*255/corrmax;% normalise with a max =255 |
---|
[1158] | 916 | dx=xk(dz); |
---|
| 917 | dy=yk(dz); |
---|
[1160] | 918 | subimage2_crop=squeeze(image2_crop(dz,dy:dy+2*iby2/mesh,dx:dx+2*ibx2/mesh))-image2_mean(dz);%subimage of image 2 corresponding to the optimum displacement of first image |
---|
| 919 | sum_square=sum(sum(subima1.*subima1)); |
---|
[1148] | 920 | sum_square=sum_square*sum(sum(subimage2_crop.*subimage2_crop));% product of variances of image 1 and 2 |
---|
| 921 | sum_square=sqrt(sum_square);% srt of the variance product to normalise correlation |
---|
[1160] | 922 | % if ivec_x==3 && ivec_y==4 |
---|
| 923 | % 'test' |
---|
| 924 | % end |
---|
[1158] | 925 | if ~isempty(dz)&& ~isempty(dy) && ~isempty(dx) |
---|
| 926 | if par_civ.CorrSmooth==1 |
---|
| 927 | [vector,FF(ivec_y,ivec_x)] = SUBPIXGAUSS (result_conv,dx,dy,dz); |
---|
| 928 | elseif par_civ.CorrSmooth==2 |
---|
| 929 | [vector,FF(ivec_y,ivec_x)] = SUBPIX2DGAUSS (result_conv,dx,dy,dz); |
---|
| 930 | else |
---|
| 931 | [vector,FF(ivec_y,ivec_x)] = quadr_fit(result_conv,dx,dy,dz); |
---|
| 932 | end |
---|
| 933 | utable(ivec_y,ivec_x)=vector(1)+shiftx(ivec_y,ivec_x); |
---|
| 934 | vtable(ivec_y,ivec_x)=vector(2)+shifty(ivec_y,ivec_x); |
---|
| 935 | wtable(ivec_y,ivec_x)=vector(3); |
---|
| 936 | xtable(ivec_y,ivec_x)=iref+utable(ivec_y,ivec_x)/2-0.5;% convec flow (velocity taken at the point middle from imgae 1 and 2) |
---|
| 937 | ytable(ivec_y,ivec_x)=jref+vtable(ivec_y,ivec_x)/2-0.5;% and position of pixel 1=0.5 (convention for image coordinates=0 at the edge) |
---|
| 938 | iref=round(xtable(ivec_y,ivec_x)+0.5);% nearest image index for the middle of the vector |
---|
| 939 | jref=round(ytable(ivec_y,ivec_x)+0.5); |
---|
[1160] | 940 | % if utable(ivec_y,ivec_x)==0 && vtable(ivec_y,ivec_x)==0 |
---|
| 941 | % 'test' |
---|
| 942 | % end |
---|
[1158] | 943 | % eliminate vectors located in the mask |
---|
| 944 | if checkmask && (iref<1 || jref<1 ||iref>npx_ima || jref>npy_ima ||( par_civ.Mask(jref,iref)<200 && par_civ.Mask(jref,iref)>=100)) |
---|
| 945 | utable(ivec_y,ivec_x)=0; |
---|
| 946 | vtable(ivec_y,ivec_x)=0; |
---|
| 947 | FF(ivec_y,ivec_x)=1; |
---|
| 948 | end |
---|
| 949 | ctable(ivec_y,ivec_x)=corrmax/sum_square;% correlation value |
---|
[1148] | 950 | else |
---|
[1157] | 951 | FF(ivec_y,ivec_x)=true; |
---|
[1148] | 952 | end |
---|
[1089] | 953 | end |
---|
| 954 | end |
---|
| 955 | end |
---|
| 956 | end |
---|
| 957 | end |
---|
| 958 | result_conv=result_conv*corrmax/(255*sum_square);% keep the last correlation matrix for output |
---|
| 959 | |
---|
| 960 | %------------------------------------------------------------------------ |
---|
| 961 | % --- Find the maximum of the correlation function after interpolation |
---|
| 962 | % OUPUT: |
---|
| 963 | % vector = optimum displacement vector with subpixel correction |
---|
[1157] | 964 | % FF =flag: ='true' max too close to the edge of the search box (1 pixel margin) |
---|
[1089] | 965 | % INPUT: |
---|
| 966 | % x,y: position of the maximum correlation at integer values |
---|
| 967 | |
---|
[1158] | 968 | function [vector,FF] = SUBPIXGAUSS (result_conv,x,y,z) |
---|
[1089] | 969 | %------------------------------------------------------------------------ |
---|
[1158] | 970 | |
---|
| 971 | [npz,npy,npx]=size(result_conv); |
---|
[1160] | 972 | result_conv(result_conv<1)=1; %set to 1 correlation values smaller than 1 (to avoid divergence in the log) |
---|
[1089] | 973 | %the following 8 lines are copyright (c) 1998, Uri Shavit, Roi Gurka, Alex Liberzon, Technion ??? Israel Institute of Technology |
---|
| 974 | %http://urapiv.wordpress.com |
---|
[1157] | 975 | FF=false; |
---|
[1158] | 976 | peakz=z;peaky=y;peakx=x; |
---|
[1161] | 977 | if z < npz && z > 1 && y < npy && y > 1 && x < npx && x > 1 |
---|
| 978 | f0 = log(result_conv(z,y,x)); |
---|
| 979 | f1 = log(result_conv(z-1,y,x)); |
---|
| 980 | f2 = log(result_conv(z+1,y,x)); |
---|
| 981 | peakz = peakz+ (f1-f2)/(2*f1-4*f0+2*f2); |
---|
[1089] | 982 | |
---|
[1161] | 983 | f1 = log(result_conv(z,y-1,x)); |
---|
| 984 | f2 = log(result_conv(z,y+1,x)); |
---|
| 985 | peaky = peaky+ (f1-f2)/(2*f1-4*f0+2*f2); |
---|
| 986 | |
---|
| 987 | f1 = log(result_conv(z,y,x-1)); |
---|
| 988 | f2 = log(result_conv(z,y,x+1)); |
---|
| 989 | peakx = peakx+ (f1-f2)/(2*f1-4*f0+2*f2); |
---|
| 990 | else |
---|
| 991 | FF=true; |
---|
| 992 | end |
---|
| 993 | |
---|
[1158] | 994 | vector=[peakx-floor(npx/2)-1 peaky-floor(npy/2)-1 peakz-floor(npz/2)-1]; |
---|
| 995 | |
---|
[1089] | 996 | %------------------------------------------------------------------------ |
---|
| 997 | % --- Find the maximum of the correlation function after interpolation |
---|
| 998 | function [vector,F] = SUBPIX2DGAUSS (result_conv,x,y) |
---|
| 999 | %------------------------------------------------------------------------ |
---|
| 1000 | % vector=[0 0]; %default |
---|
[1148] | 1001 | F=1; |
---|
[1089] | 1002 | peaky=y; |
---|
| 1003 | peakx=x; |
---|
| 1004 | result_conv(result_conv<1)=1; %set to 1 correlation values smaller than 1 (to avoid divergence in the log) |
---|
| 1005 | [npy,npx]=size(result_conv); |
---|
| 1006 | if (x < npx) && (y < npy) && (x > 1) && (y > 1) |
---|
| 1007 | F=0; |
---|
| 1008 | for i=-1:1 |
---|
| 1009 | for j=-1:1 |
---|
| 1010 | %following 15 lines based on |
---|
| 1011 | %H. Nobach ??? M. Honkanen (2005) |
---|
| 1012 | %Two-dimensional Gaussian regression for sub-pixel displacement |
---|
| 1013 | %estimation in particle image velocimetry or particle position |
---|
| 1014 | %estimation in particle tracking velocimetry |
---|
| 1015 | %Experiments in Fluids (2005) 38: 511???515 |
---|
| 1016 | c10(j+2,i+2)=i*log(result_conv(y+j, x+i)); |
---|
| 1017 | c01(j+2,i+2)=j*log(result_conv(y+j, x+i)); |
---|
| 1018 | c11(j+2,i+2)=i*j*log(result_conv(y+j, x+i)); |
---|
| 1019 | c20(j+2,i+2)=(3*i^2-2)*log(result_conv(y+j, x+i)); |
---|
| 1020 | c02(j+2,i+2)=(3*j^2-2)*log(result_conv(y+j, x+i)); |
---|
| 1021 | end |
---|
| 1022 | end |
---|
| 1023 | c10=(1/6)*sum(sum(c10)); |
---|
| 1024 | c01=(1/6)*sum(sum(c01)); |
---|
| 1025 | c11=(1/4)*sum(sum(c11)); |
---|
| 1026 | c20=(1/6)*sum(sum(c20)); |
---|
| 1027 | c02=(1/6)*sum(sum(c02)); |
---|
| 1028 | deltax=(c11*c01-2*c10*c02)/(4*c20*c02-c11^2); |
---|
| 1029 | deltay=(c11*c10-2*c01*c20)/(4*c20*c02-c11^2); |
---|
| 1030 | if abs(deltax)<1 |
---|
| 1031 | peakx=x+deltax; |
---|
| 1032 | end |
---|
| 1033 | if abs(deltay)<1 |
---|
| 1034 | peaky=y+deltay; |
---|
| 1035 | end |
---|
| 1036 | end |
---|
| 1037 | vector=[peakx-floor(npx/2)-1 peaky-floor(npy/2)-1]; |
---|
| 1038 | |
---|
| 1039 | %------------------------------------------------------------------------ |
---|
| 1040 | % --- Find the maximum of the correlation function after quadratic interpolation |
---|
| 1041 | function [vector,F] = quadr_fit(result_conv,x,y) |
---|
| 1042 | [npy,npx]=size(result_conv); |
---|
| 1043 | if x<4 || y<4 || npx-x<4 ||npy-y <4 |
---|
[1148] | 1044 | F=1; |
---|
[1089] | 1045 | vector=[x y]; |
---|
| 1046 | else |
---|
| 1047 | F=0; |
---|
| 1048 | x_ind=x-4:x+4; |
---|
| 1049 | y_ind=y-4:y+4; |
---|
| 1050 | x_vec=0.25*(x_ind-x); |
---|
| 1051 | y_vec=0.25*(y_ind-y); |
---|
| 1052 | [X,Y]=meshgrid(x_vec,y_vec); |
---|
| 1053 | coord=[reshape(X,[],1) reshape(Y,[],1)]; |
---|
| 1054 | result_conv=reshape(result_conv(y_ind,x_ind),[],1); |
---|
| 1055 | |
---|
| 1056 | |
---|
| 1057 | % n=numel(X); |
---|
| 1058 | % x=[X Y]; |
---|
| 1059 | % X=X-0.5; |
---|
| 1060 | % Y=Y+0.5; |
---|
| 1061 | % y = (X.*X+2*Y.*Y+X.*Y+6) + 0.1*rand(n,1); |
---|
| 1062 | p = polyfitn(coord,result_conv,2); |
---|
| 1063 | A(1,1)=2*p.Coefficients(1); |
---|
| 1064 | A(1,2)=p.Coefficients(2); |
---|
| 1065 | A(2,1)=p.Coefficients(2); |
---|
| 1066 | A(2,2)=2*p.Coefficients(4); |
---|
| 1067 | vector=[x y]'-A\[p.Coefficients(3) p.Coefficients(5)]'; |
---|
| 1068 | vector=vector'-[floor(npx/2) floor(npy/2)]-1 ; |
---|
| 1069 | % zg = polyvaln(p,coord); |
---|
| 1070 | % figure |
---|
| 1071 | % surf(x_vec,y_vec,reshape(zg,9,9)) |
---|
| 1072 | % hold on |
---|
| 1073 | % plot3(X,Y,reshape(result_conv,9,9),'o') |
---|
| 1074 | % hold off |
---|
| 1075 | end |
---|
| 1076 | |
---|
| 1077 | |
---|
[1148] | 1078 | function FF=detect_false(Param,C,U,V,FFIn) |
---|
| 1079 | FF=FFIn;%default, good vectors |
---|
| 1080 | % FF=1, for correlation max at edge, not set in this function |
---|
| 1081 | % FF=2, for too small correlation |
---|
| 1082 | % FF=3, for velocity outside bounds |
---|
| 1083 | % FF=4 for exclusion by difference with the smoothed field, not set in this function |
---|
[1089] | 1084 | |
---|
| 1085 | if isfield (Param,'MinCorr') |
---|
[1148] | 1086 | FF(C<Param.MinCorr & FFIn==0)=2; |
---|
[1089] | 1087 | end |
---|
| 1088 | if (isfield(Param,'MinVel')&&~isempty(Param.MinVel))||(isfield (Param,'MaxVel')&&~isempty(Param.MaxVel)) |
---|
| 1089 | Umod= U.*U+V.*V; |
---|
| 1090 | if isfield (Param,'MinVel')&&~isempty(Param.MinVel) |
---|
[1148] | 1091 | U2Min=Param.MinVel*Param.MinVel; |
---|
| 1092 | FF(Umod<U2Min & FFIn==0)=3; |
---|
[1089] | 1093 | end |
---|
| 1094 | if isfield (Param,'MaxVel')&&~isempty(Param.MaxVel) |
---|
[1148] | 1095 | U2Max=Param.MaxVel*Param.MaxVel; |
---|
| 1096 | FF(Umod>U2Max & FFIn==0)=3; |
---|
[1089] | 1097 | end |
---|
| 1098 | end |
---|
| 1099 | |
---|
| 1100 | %------------------------------------------------------------------------ |
---|
| 1101 | % --- determine the list of index pairs of processing file |
---|
| 1102 | function [i1_series,i2_series,j1_series,j2_series,check_bounds,NomTypeNc]=... |
---|
| 1103 | find_pair_indices(str_civ,i_series,j_series,MinIndex_i,MaxIndex_i,MinIndex_j,MaxIndex_j) |
---|
| 1104 | %------------------------------------------------------------------------ |
---|
| 1105 | i1_series=i_series;% set of first image indexes |
---|
| 1106 | i2_series=i_series; |
---|
| 1107 | j1_series=j_series;%ones(size(i_series));% set of first image numbers |
---|
| 1108 | j2_series=j_series;%ones(size(i_series)); |
---|
| 1109 | r=regexp(str_civ,'^\D(?<ind>[i|j])=( -| )(?<num1>\d+)\|(?<num2>\d+)','names'); |
---|
| 1110 | if ~isempty(r) |
---|
| 1111 | mode=['D' r.ind]; |
---|
| 1112 | ind1=str2num(r.num1); |
---|
| 1113 | ind2=str2num(r.num2); |
---|
| 1114 | else |
---|
| 1115 | mode='j1-j2'; |
---|
| 1116 | r=regexp(str_civ,'^j= (?<num1>[a-z])-(?<num2>[a-z])','names'); |
---|
| 1117 | if ~isempty(r) |
---|
| 1118 | NomTypeNc='_1ab'; |
---|
| 1119 | else |
---|
| 1120 | r=regexp(str_civ,'^j= (?<num1>[A-Z])-(?<num2>[A-Z])','names'); |
---|
| 1121 | if ~isempty(r) |
---|
| 1122 | NomTypeNc='_1AB'; |
---|
| 1123 | else |
---|
| 1124 | r=regexp(str_civ,'^j= (?<num1>\d+)-(?<num2>\d+)','names'); |
---|
| 1125 | if ~isempty(r) |
---|
| 1126 | NomTypeNc='_1_1-2'; |
---|
| 1127 | end |
---|
| 1128 | end |
---|
| 1129 | end |
---|
| 1130 | if isempty(r) |
---|
| 1131 | display('wrong pair mode input option') |
---|
| 1132 | else |
---|
| 1133 | ind1=stra2num(r.num1); |
---|
| 1134 | ind2=stra2num(r.num2); |
---|
| 1135 | end |
---|
| 1136 | end |
---|
| 1137 | switch mode |
---|
| 1138 | case 'Di' |
---|
| 1139 | i1_series=i_series-ind1;% set of first image numbers |
---|
| 1140 | i2_series=i_series+ind2; |
---|
| 1141 | check_bounds=i1_series<MinIndex_i | i2_series>MaxIndex_i; |
---|
| 1142 | if isempty(j_series) |
---|
| 1143 | NomTypeNc='_1-2'; |
---|
| 1144 | else |
---|
| 1145 | j1_series=j_series; |
---|
| 1146 | j2_series=j_series; |
---|
| 1147 | NomTypeNc='_1-2_1'; |
---|
| 1148 | end |
---|
| 1149 | case 'Dj' |
---|
| 1150 | j1_series=j_series-ind1; |
---|
| 1151 | j2_series=j_series+ind2; |
---|
| 1152 | check_bounds=j1_series<MinIndex_j | j2_series>MaxIndex_j; |
---|
| 1153 | NomTypeNc='_1_1-2'; |
---|
| 1154 | otherwise %bursts |
---|
| 1155 | i1_series=i_series(1,:);% do not sweep the j index |
---|
| 1156 | i2_series=i_series(1,:); |
---|
| 1157 | j1_series=ind1*ones(1,size(i_series,2));% j index is fixed by pair choice |
---|
| 1158 | j2_series=ind2*ones(1,size(i_series,2)); |
---|
| 1159 | check_bounds=zeros(size(i1_series));% no limitations due to min-max indices |
---|
| 1160 | end |
---|
| 1161 | |
---|
| 1162 | |
---|
| 1163 | |
---|
| 1164 | |
---|