source: trunk/src/series/civ2vel_3C.m @ 865

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

bug_repaired

File size: 19.6 KB
Line 
1%'civ2vel_3C': combine velocity fields from two cameras to get three velocity components
2%------------------------------------------------------------------------
3% function ParamOut=civ2vel_3C(Param)
4%
5%OUTPUT
6% ParamOut: sets options in the GUI series.fig needed for the function
7%
8%INPUT:
9% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
10% In batch mode, Param is the name of the corresponding xml file containing the same information
11% when Param.Action.RUN=0 (as activated when the current Action is selected
12% in series), the function ouput paramOut set the activation of the needed GUI elements
13%
14% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
15% see the current structure Param)
16%    .InputTable: cell of input file names, (several lines for multiple input)
17%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
18%    .OutputSubDir: name of the subdirectory for data outputs
19%    .OutputDirExt: directory extension for data outputs
20%    .Action: .ActionName: name of the current activated function
21%             .ActionPath:   path of the current activated function
22%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
23%             .RUN =0 for GUI input, =1 for function activation
24%             .RunMode='local','background', 'cluster': type of function  use
25%             
26%    .IndexRange: set the file or frame indices on which the action must be performed
27%    .InputFields: sub structure describing the input fields withfields
28%              .FieldName: name(s) of the field
29%              .VelType: velocity type
30%              .FieldName_1: name of the second field in case of two input series
31%              .VelType_1: velocity type of the second field in case of two input series
32%              .Coord_y: name of y coordinate variable
33%              .Coord_x: name of x coordinate variable'
34
35%=======================================================================
36% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
37%   http://www.legi.grenoble-inp.fr
38%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
39%
40%     This file is part of the toolbox UVMAT.
41%
42%     UVMAT is free software; you can redistribute it and/or modify
43%     it under the terms of the GNU General Public License as published
44%     by the Free Software Foundation; either version 2 of the license,
45%     or (at your option) any later version.
46%
47%     UVMAT is distributed in the hope that it will be useful,
48%     but WITHOUT ANY WARRANTY; without even the implied warranty of
49%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
50%     GNU General Public License (see LICENSE.txt) for more details.
51%=======================================================================
52
53function ParamOut=civ2vel_3C(Param)
54
55%% set the input elements needed on the GUI series when the function is selected in the menu ActionName or InputTable refreshed
56if isstruct(Param) && isequal(Param.Action.RUN,0)
57    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
58    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
59    ParamOut.NbSlice='off'; %nbre of slices ('off' by default)
60    ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
61    ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
62    ParamOut.FieldTransform = 'off';%use the phys  transform function without choice
63    %ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only)
64    ParamOut.ProjObject='on';%can use projection object(option 'off'/'on',
65    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
66    ParamOut.OutputDirExt='.vel3C';%set the output dir extension
67    ParamOut.OutputSubDirMode='two'; % the two first input lines are used to define the output subfolder
68    ParamOut.OutputFileMode='NbInput';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice
69    %check the input files
70    first_j=[];
71    if size(Param.InputTable,1)<2
72        msgbox_uvmat('WARNING',['two or three input file series are needed'])
73    end
74    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
75    PairString='';
76    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
77    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
78    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
79        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
80    if ~exist(FirstFileName,'file')
81        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
82    elseif isequal(size(Param.InputTable,1),1) && ~isfield(Param,'ProjObject')
83        msgbox_uvmat('WARNING','You may need a projection object of type plane for merge_proj')
84    end
85    return
86end
87
88%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
89ParamOut=[]; %default output
90%% read input parameters from an xml file if input is a file name (batch mode)
91checkrun=1;
92if ischar(Param)
93    Param=xml2struct(Param);% read Param as input file (batch case)
94    checkrun=0;
95end
96hseries=findobj(allchild(0),'Tag','series');
97RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
98WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
99
100
101%% root input file(s) name, type and index series
102RootPath=Param.InputTable(:,1);
103RootFile=Param.InputTable(:,3);
104SubDir=Param.InputTable(:,2);
105NomType=Param.InputTable(:,4);
106FileExt=Param.InputTable(:,5);
107hdisp=disp_uvmat('WAITING...','checking the file series',checkrun);
108[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
109if ~isempty(hdisp),delete(hdisp),end;
110%%%%%%%%%%%%
111% The cell array filecell is the list of input file names, while
112% filecell{iview,fileindex}:
113%        iview: line in the table corresponding to a given file series
114%        fileindex: file index within  the file series,
115% i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j
116% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
117%%%%%%%%%%%%
118NbView=numel(i1_series);%number of input file series (lines in InputTable)
119NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
120NbField_i=size(i1_series{1},2); %nb of fields for the i index
121NbField=NbField_j*NbField_i; %total number of fields
122
123%% define the directory for result file (with path=RootPath{1})
124OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
125%
126% if ~isfield(Param,'InputFields')
127%     Param.InputFields.FieldName='';
128% end
129
130%% calibration data and timing: read the ImaDoc files
131[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
132if size(time,1)>1
133    diff_time=max(max(diff(time)));
134    if diff_time>0
135        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun)
136    end
137end
138if ~isempty(errormsg)
139    disp_uvmat('WARNING',errormsg,checkrun)
140end
141time=mean(time,1); %averaged time taken for the merged field
142if isfield(XmlData{1},'GeometryCalib')
143    tsaiA=XmlData{1}.GeometryCalib;
144else
145    disp_uvmat('ERROR','no geometric calibration available for image A',checkrun)
146    return
147end
148if isfield(XmlData{2},'GeometryCalib')
149    tsaiB=XmlData{2}.GeometryCalib;
150else
151    disp_uvmat('ERROR','no geometric calibration available for image B',checkrun)
152    return
153end
154[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
155
156%% grid of physical positions (given by projection plane)
157if ~Param.CheckObject
158    disp_uvmat('ERROR','a projection plane with interpolation is needed',checkrun)
159    return
160end
161ObjectData=Param.ProjObject;
162xI=ObjectData.RangeX(1):ObjectData.DX:ObjectData.RangeX(2);
163yI=ObjectData.RangeY(1):ObjectData.DY:ObjectData.RangeY(2);
164[XI,YI]=meshgrid(xI,yI);
165U=zeros(size(XI,1),size(XI,2));
166V=zeros(size(XI,1),size(XI,2));
167W=zeros(size(XI,1),size(XI,2));
168
169%% MAIN LOOP ON FIELDS
170warning off
171if NbField<2 && length(filecell{:,1})>2
172    disp_uvmat('ERROR','you need at least 2 images to compute the mean position for the stereo.',checkrun)
173return
174end
175for index=1:NbField-1
176    update_waitbar(WaitbarHandle,index/NbField)
177    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
178        disp('program stopped by user')
179        return
180    end
181   
182    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
183    Data=cell(1,NbView);%initiate the set Data
184    timeread=zeros(1,NbView);
185   
186    %get Xphys,Yphys,Zphys from 1 or 2 stereo folders. Positions are taken
187    %at the middle between to time step
188   clear ZItemp
189   ZItemp=zeros(size(XI,1),size(XI,2),2);
190 for indextemp=index:index+1;
191    if NbView==3 % if there is only 1 stereo folder, extract directly Xphys,Yphys and Zphys
192       
193        [Data{3},tild,errormsg] = nc2struct(filecell{3,indextemp});
194       
195        if  exist('Data{3}.Civ3_FF','var') % FF is present, remove wrong vector
196            temp=find(Data{3}.Civ3_FF==0);
197            Zphys=Data{3}.Zphys(temp);
198            Yphys=Data{3}.Yphys(temp);
199            Xphys=Data{3}.Xphys(temp);
200        else
201            Zphys=Data{3}.Zphys;
202            Yphys=Data{3}.Yphys;
203            Xphys=Data{3}.Xphys;
204        end
205       
206       
207       
208    elseif NbView==4 % is there is 2 stereo folders, get global U and V and compute Zphys
209       
210       
211        %test if the seconde camera is the same for both folder
212        for i=3:4
213        indpt(i)=strfind(Param.InputTable{i,2},'.'); % indice of the "." is the folder name 1
214        indline(i)=strfind(Param.InputTable{i,2},'-'); % indice of the "-" is the folder name1
215        camname{i}=Param.InputTable{i,2}(indline(i)+1:indpt(i)-1);% extract the second camera name
216        end
217       
218        if strcmp(camname{3},camname{4})==0
219            disp_uvmat('ERROR','The 2 stereo folders should have the same camera for the second position',checkrun)
220            return
221        end
222       
223        [Data{3},tild,errormsg] = nc2struct(filecell{3,indextemp});
224        if exist('Data{3}.Civ3_FF','var') % if FF is present, remove wrong vector
225            temp=find(Data{3}.Civ3_FF==0);
226            Xmid3=Data{3}.Xmid(temp);
227            Ymid3=Data{3}.Ymid(temp);
228            U3=Data{3}.Uphys(temp);
229            V3=Data{3}.Vphys(temp);
230        else
231            Xmid3=Data{3}.Xmid;
232            Ymid3=Data{3}.Ymid;
233            U3=Data{3}.Uphys;
234            V3=Data{3}.Vphys;
235        end
236        %temporary gridd of merging the 2 stereos datas
237        [xq,yq] = meshgrid(min(Xmid3+(U3)/2):(max(Xmid3+(U3)/2)-min(Xmid3+(U3)/2))/128:max(Xmid3+(U3)/2),min(Ymid3+(V3)/2):(max(Ymid3+(V3)/2)-min(Ymid3+(V3)/2))/128:max(Ymid3+(V3)/2));
238       
239        %1st folder : interpolate the first camera (Dalsa1) points on the second (common) camera
240        %(Dalsa 3)
241        x3Q=griddata(Xmid3+(U3)/2,Ymid3+(V3)/2,Xmid3-(U3)/2,xq,yq);
242        y3Q=griddata(Xmid3+(U3)/2,Ymid3+(V3)/2,Ymid3-(V3)/2,xq,yq);
243       
244       
245        [Data{4},tild,errormsg] = nc2struct(filecell{4,indextemp});
246        if exist('Data{4}.Civ3_FF','var') % if FF is present, remove wrong vector
247            temp=find(Data{4}.Civ3_FF==0);
248            Xmid4=Data{4}.Xmid(temp);
249            Ymid4=Data{4}.Ymid(temp);
250            U4=Data{4}.Uphys(temp);
251            V4=Data{4}.Vphys(temp);
252        else
253            Xmid4=Data{4}.Xmid;
254            Ymid4=Data{4}.Ymid;
255            U4=Data{4}.Uphys;
256            V4=Data{4}.Vphys;
257        end
258       
259        %2nd folder :interpolate the first camera (Dalsa2) points on the second (common) camera
260        %(Dalsa 3)
261        x4Q=griddata(Xmid4+(U4)/2,Ymid4+(V4)/2,Xmid4-(U4)/2,xq,yq);
262        y4Q=griddata(Xmid4+(U4)/2,Ymid4+(V4)/2,Ymid4-(V4)/2,xq,yq);
263       
264        xmid=reshape((x4Q+x3Q)/2,length(xq(:,1)).*length(xq(1,:)),1);
265        ymid=reshape((y4Q+y3Q)/2,length(yq(:,1)).*length(yq(1,:)),1);
266        u=reshape(x4Q-x3Q,length(xq(:,1)).*length(xq(1,:)),1);
267        v=reshape(y4Q-y3Q,length(yq(:,1)).*length(yq(1,:)),1);
268       
269       
270        [Zphys,Xphys,Yphys,error]=shift2z(xmid, ymid, u, v,XmlData); %get Xphy,Yphy and Zphys
271        %remove NaN
272        tempNaN=isnan(Zphys);tempind=find(tempNaN==1);
273        Zphys(tempind)=[];
274        Xphys(tempind)=[];
275        Yphys(tempind)=[];
276        error(tempind)=[];
277         
278    end
279   
280   
281   
282   
283       ZItemp(:,:,indextemp)=griddata(Xphys,Yphys,Zphys,XI,YI); %interpolation on the choosen gridd
284   
285end
286    ZI=mean(ZItemp,3); %mean between two the two time step
287   
288    [Xa,Ya]=px_XYZ(XmlData{1}.GeometryCalib,XI,YI,ZI);% set of image coordinates on view a
289    [Xb,Yb]=px_XYZ(XmlData{2}.GeometryCalib,XI,YI,ZI);% set of image coordinates on view b
290   
291    %trouver z
292    % trouver les coordonnées px sur chaque image.
293    %A=
294    for iview=1:2
295        %% reading input file(s)
296        [Data{iview},tild,errormsg]=read_civdata(filecell{iview,index},{'vec(U,V)'},'*');
297        if ~isempty(errormsg)
298            disp_uvmat('ERROR',['ERROR in civ2vel_3C/read_field/' errormsg],checkrun)
299            return
300        end
301        % get the time defined in the current file if not already defined from the xml file
302        if isfield(Data{iview},'Time')&& isequal(Data{iview}.Time,Data{1}.Time)
303            Time=Data{iview}.Time;
304        else
305            disp_uvmat('ERROR','Time undefined or not synchronous',checkrun)
306            return
307        end
308        if isfield(Data{iview},'Dt')&& isequal(Data{iview}.Dt,Data{1}.Dt)
309            Dt=Data{iview}.Dt;
310        else
311            disp_uvmat('ERROR','Dt undefined or not synchronous',checkrun)
312            return
313        end
314    end
315    %remove wrong vector
316    temp=find(Data{1}.FF==0);
317    X1=Data{1}.X(temp);
318    Y1=Data{1}.Y(temp);
319    U1=Data{1}.U(temp);
320    V1=Data{1}.V(temp);
321   
322    Ua=griddata(X1,Y1,U1,Xa,Ya);
323    Va=griddata(X1,Y1,V1,Xa,Ya);
324    A=get_coeff(XmlData{1}.GeometryCalib,Xa,Ya,YI,YI,ZI);
325   
326   
327    temp=find(Data{2}.FF==0);
328    X2=Data{2}.X(temp);
329    Y2=Data{2}.Y(temp);
330    U2=Data{2}.U(temp);
331    V2=Data{2}.V(temp);
332    Ub=griddata(X2,Y2,U2,Xb,Yb);
333    Vb=griddata(X2,Y2,V2,Xb,Yb);
334    B=get_coeff(XmlData{2}.GeometryCalib,Xb,Yb,YI,YI,ZI);
335    S=ones(size(XI,1),size(XI,2),3);
336    D=ones(size(XI,1),size(XI,2),3,3);
337    S(:,:,1)=A(:,:,1,1).*Ua+A(:,:,2,1).*Va+B(:,:,1,1).*Ub+B(:,:,2,1).*Vb;
338    S(:,:,2)=A(:,:,1,2).*Ua+A(:,:,2,2).*Va+B(:,:,1,2).*Ub+B(:,:,2,2).*Vb;
339    S(:,:,3)=A(:,:,1,3).*Ua+A(:,:,2,3).*Va+B(:,:,1,3).*Ub+B(:,:,2,3).*Vb;
340    D(:,:,1,1)=A(:,:,1,1).*A(:,:,1,1)+A(:,:,2,1).*A(:,:,2,1)+B(:,:,1,1).*B(:,:,1,1)+B(:,:,2,1).*B(:,:,2,1);
341    D(:,:,1,2)=A(:,:,1,1).*A(:,:,1,2)+A(:,:,2,1).*A(:,:,2,2)+B(:,:,1,1).*B(:,:,1,2)+B(:,:,2,1).*B(:,:,2,2);
342    D(:,:,1,3)=A(:,:,1,1).*A(:,:,1,3)+A(:,:,2,1).*A(:,:,2,3)+B(:,:,1,1).*B(:,:,1,3)+B(:,:,2,1).*B(:,:,2,3);
343    D(:,:,2,1)=A(:,:,1,2).*A(:,:,1,1)+A(:,:,2,2).*A(:,:,2,1)+B(:,:,1,2).*B(:,:,1,1)+B(:,:,2,2).*B(:,:,2,1);
344    D(:,:,2,2)=A(:,:,1,2).*A(:,:,1,2)+A(:,:,2,2).*A(:,:,2,2)+B(:,:,1,2).*B(:,:,1,2)+B(:,:,2,2).*B(:,:,2,2);
345    D(:,:,2,3)=A(:,:,1,2).*A(:,:,1,3)+A(:,:,2,2).*A(:,:,2,3)+B(:,:,1,2).*B(:,:,1,3)+B(:,:,2,2).*B(:,:,2,3);
346    D(:,:,3,1)=A(:,:,1,3).*A(:,:,1,1)+A(:,:,2,3).*A(:,:,2,1)+B(:,:,1,3).*B(:,:,1,1)+B(:,:,2,3).*B(:,:,2,1);
347    D(:,:,3,2)=A(:,:,1,3).*A(:,:,1,2)+A(:,:,2,3).*A(:,:,2,2)+B(:,:,1,3).*B(:,:,1,2)+B(:,:,2,3).*B(:,:,2,2);
348    D(:,:,3,3)=A(:,:,1,3).*A(:,:,1,3)+A(:,:,2,3).*A(:,:,2,3)+B(:,:,1,3).*B(:,:,1,3)+B(:,:,2,3).*B(:,:,2,3);
349    for indj=1:size(XI,1)
350        for indi=1:size(XI,2)
351            dxyz=squeeze(S(indj,indi,:))\squeeze(D(indj,indi,:,:));
352            U(indj,indi)=dxyz(1);
353            V(indj,indi)=dxyz(2);
354            W(indj,indi)=dxyz(3);
355        end
356    end   
357    Error=zeros(size(XI,1),size(XI,2),4);
358    Error(:,:,1)=A(:,:,1,1).*U+A(:,:,1,2).*V+A(:,:,1,3).*W-Ua;
359    Error(:,:,2)=A(:,:,2,1).*U+A(:,:,2,2).*V+A(:,:,2,3).*W-Va;
360    Error(:,:,3)=B(:,:,1,1).*U+B(:,:,1,2).*V+B(:,:,1,3).*W-Ub;
361    Error(:,:,4)=B(:,:,2,1).*U+B(:,:,2,2).*V+B(:,:,2,3).*W-Vb;
362   
363    %% generating the name of the merged field
364    i1=i1_series{1}(index);
365    if ~isempty(i2_series{end})
366        i2=i2_series{end}(index);
367    else
368        i2=i1;
369    end
370    j1=1;
371    j2=1;
372    if ~isempty(j1_series{1})
373        j1=j1_series{1}(index);
374        if ~isempty(j2_series{end})
375            j2=j2_series{end}(index);
376        else
377            j2=j1;
378        end
379    end
380    OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},'.nc','_1-2',i1,i2,j1,j2);
381   
382    %% recording the merged field
383    if index==1% initiate the structure at first index
384        MergeData.ListGlobalAttribute={'Conventions','Time','Dt'};
385        MergeData.Conventions='uvmat';
386        MergeData.Time=Time;
387        MergeData.Dt=Dt;
388        MergeData.ListVarName={'coord_x','coord_y','Z','U','V','W','Error'};
389        MergeData.VarDimName={'coord_x','coord_y',{'coord_y','coord_x'},{'coord_y','coord_x'}...
390                {'coord_y','coord_x'},{'coord_y','coord_x'},{'coord_y','coord_x'}};
391        MergeData.coord_x=xI;
392        MergeData.coord_y=yI;
393        MergeData.Z=ZI;
394    end
395    MergeData.U=U/Dt;
396    MergeData.V=V/Dt;
397    MergeData.W=W/Dt;
398    MergeData.Error=sqrt(sum(Error.*Error,3));
399    errormsg=struct2nc(OutputFile,MergeData);%save result file
400    if isempty(errormsg)
401        disp(['output file ' OutputFile ' written'])
402    else
403        disp(errormsg)
404    end
405end
406
407
408function A=get_coeff(Calib,X,Y,x,y,z)
409R=(Calib.R)';%rotation matrix
410T_z=Calib.Tx_Ty_Tz(3);
411T=R(7)*x+R(8)*y+R(9)*z+T_z;
412A(:,:,1,1)=(R(1)-R(7)*X)./T;
413A(:,:,1,2)=(R(2)-R(8)*X)./T;
414A(:,:,1,3)=(R(3)-R(9)*X)./T;
415A(:,:,2,1)=(R(4)-R(7)*Y)./T;
416A(:,:,2,2)=(R(5)-R(8)*Y)./T;
417A(:,:,2,3)=(R(6)-R(9)*Y)./T;
418
419
420
421
422function [z,Xphy,Yphy,error]=shift2z(xmid, ymid, u, v,XmlData)
423z=0;
424error=0;
425
426
427%% first image
428Calib_A=XmlData{1}.GeometryCalib;
429R=(Calib_A.R)';
430x_a=xmid- u/2;
431y_a=ymid- u/2;
432z_a=R(7)*x_a+R(8)*y_a+Calib_A.Tx_Ty_Tz(1,3);
433Xa=(R(1)*x_a+R(2)*y_a+Calib_A.Tx_Ty_Tz(1,1))./z_a;
434Ya=(R(4)*x_a+R(5)*y_a+Calib_A.Tx_Ty_Tz(1,2))./z_a;
435
436A_1_1=R(1)-R(7)*Xa;
437A_1_2=R(2)-R(8)*Xa;
438A_1_3=R(3)-R(9)*Xa;
439A_2_1=R(4)-R(7)*Ya;
440A_2_2=R(5)-R(8)*Ya;
441A_2_3=R(6)-R(9)*Ya;
442Det=A_1_1.*A_2_2-A_1_2.*A_2_1;
443Dxa=(A_1_2.*A_2_3-A_2_2.*A_1_3)./Det;
444Dya=(A_2_1.*A_1_3-A_1_1.*A_2_3)./Det;
445
446%% second image
447Calib_B=XmlData{2}.GeometryCalib;
448R=(Calib_B.R)';
449x_b=xmid+ u/2;
450y_b=ymid+ v/2;
451z_b=R(7)*x_b+R(8)*y_b+Calib_B.Tx_Ty_Tz(1,3);
452Xb=(R(1)*x_b+R(2)*y_b+Calib_B.Tx_Ty_Tz(1,1))./z_b;
453Yb=(R(4)*x_b+R(5)*y_b+Calib_B.Tx_Ty_Tz(1,2))./z_b;
454B_1_1=R(1)-R(7)*Xb;
455B_1_2=R(2)-R(8)*Xb;
456B_1_3=R(3)-R(9)*Xb;
457B_2_1=R(4)-R(7)*Yb;
458B_2_2=R(5)-R(8)*Yb;
459B_2_3=R(6)-R(9)*Yb;
460Det=B_1_1.*B_2_2-B_1_2.*B_2_1;
461Dxb=(B_1_2.*B_2_3-B_2_2.*B_1_3)./Det;
462Dyb=(B_2_1.*B_1_3-B_1_1.*B_2_3)./Det;
463
464%% result
465Den=(Dxb-Dxa).*(Dxb-Dxa)+(Dyb-Dya).*(Dyb-Dya);
466error=((Dyb-Dya).*u-(Dxb-Dxa).*v)./Den;
467
468xnew(1,:)=Dxa.*z+x_a;
469xnew(2,:)=Dxb.*z+x_b;
470ynew(1,:)=Dya.*z+y_a;
471ynew(2,:)=Dyb.*z+y_b;
472
473Xphy=mean(xnew,1); %on moyenne les 2 valeurs
474Yphy=mean(ynew,1);
475z=((Dxb-Dxa).*u-(Dyb-Dya).*v)./Den;
476
477
Note: See TracBrowser for help on using the repository browser.