source: trunk/src/phys_XYZ.m @ 1112

Last change on this file since 1112 was 1112, checked in by sommeria, 2 years ago

set_slice separated from geometrey_calib

File size: 5.8 KB
Line 
1%------------------------------------------------------------------------
2%'phys_XYZ':transforms image (px) to real world (phys) coordinates using geometric calibration parameters
3% function [Xphys,Yphys,Zphys]=phys_XYZ(Calib,X,Y,Zindex)
4%
5%OUTPUT:
6% Xphys,Yphys,Zphys: vector of phys coordinates corresponding to the input vector of image coordinates
7%INPUT:
8% Calib: Matlab structure containing the calibration parameters (pinhole camera model, see
9% http://servforge.legi.grenoble-inp.fr/projects/soft-uvmat/wiki/UvmatHelp#GeometryCalib) and the
10%    parameters describing the illumination plane(s)
11%    .Tx_Ty_Tz: translation (3 phys coordinates) defining the origine of the camera frame
12%    .R : rotation matrix from phys to camera frame
13%    .fx_fy: focal length along each direction of the image
14% X, Y: vectors of X and Y image coordinates
15% ZIndex: index defining the current illumination plane in a volume scan
16
17%=======================================================================
18% Copyright 2008-2022, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
19%   http://www.legi.grenoble-inp.fr
20%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
21%
22%     This file is part of the toolbox UVMAT.
23%
24%     UVMAT is free software; you can redistribute it and/or modify
25%     it under the terms of the GNU General Public License as published
26%     by the Free Software Foundation; either version 2 of the license,
27%     or (at your option) any later version.
28%
29%     UVMAT is distributed in the hope that it will be useful,
30%     but WITHOUT ANY WARRANTY; without even the implied warranty of
31%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32%     GNU General Public License (see LICENSE.txt) for more details.
33%=======================================================================
34
35function [Xphys,Yphys,Zphys]=phys_XYZ(Calib,Slice,X,Y,Zindex)
36%------------------------------------------------------------------------
37testangle=0;% =1 if the illumination plane is tilted with respect to the horizontal plane Xphys Yphys
38test_refraction=0;% =1 if the considered points are viewed through an horizontal interface (located at z=Calib.InterfaceCoord(3)')
39Zphys=0; %default output
40if isempty(Slice)
41    Slice=Calib;%old convention < 2022
42end
43if exist('Zindex','var')&& isequal(Zindex,round(Zindex))&& Zindex>0 && isfield(Slice,'SliceCoord')&&size(Slice.SliceCoord,1)>=Zindex
44    if isfield(Slice, 'SliceAngle') && size(Slice.SliceAngle,1)>=Zindex && ~isequal(Slice.SliceAngle(Zindex,:),[0 0 0])
45        testangle=1;
46        norm_plane=angle2normal(Slice.SliceAngle(Zindex,:));% coordinates UVMAT-httpsof the unit vector normal to the current illumination plane
47    end
48    Z0=Slice.SliceCoord(Zindex,3);%horizontal plane z=cte
49    Z0virt=Z0;
50    if isfield(Slice,'InterfaceCoord') && isfield(Slice,'RefractionIndex')
51        H=Slice.InterfaceCoord(3);% z position of the water surface
52        if H>Z0
53            Z0virt=H-(H-Z0)/Slice.RefractionIndex; %corrected z (virtual object)
54            test_refraction=1;
55        end
56    end
57else
58    Z0=0;
59    Z0virt=0;
60end
61if ~exist('X','var')||~exist('Y','var')
62    Xphys=[];
63    Yphys=[];%default
64    return
65end
66%coordinate transform
67if ~isfield(Calib,'fx_fy')
68    Calib.fx_fy=[1 1];
69end
70if ~isfield(Calib,'Tx_Ty_Tz')
71    Calib.Tx_Ty_Tz=[0 0 1];
72end
73if ~isfield(Calib,'Cx_Cy')
74    Calib.Cx_Cy=[0 0];
75end
76if ~isfield(Calib,'kc')
77    Calib.kc=0;
78end
79if isfield(Calib,'R')
80    R=(Calib.R)';
81    R(3)=-R(3);
82    R(6)=-R(6);
83    R(9)=-R(9);
84    c=Z0virt;
85    cvirt=Z0virt;
86    if testangle
87        % equation of the illumination plane: z=ax+by+c
88        a=-norm_plane(1)/norm_plane(3);
89        b=-norm_plane(2)/norm_plane(3);
90        if test_refraction
91            avirt=a/Slice.RefractionIndex;
92            bvirt=b/Slice.RefractionIndex;
93        else
94            avirt=a;
95            bvirt=b;
96        end
97        cvirt=Z0virt-avirt*Slice.SliceCoord(Zindex,1)-bvirt*Slice.SliceCoord(Zindex,2);% Z0 = (virtual) z coordinate on the rotation axis (assumed horizontal)
98                               % c=z coordinate at (x,y)=(0,0)
99        c=Z0-a*Slice.SliceCoord(Zindex,1)-b*Slice.SliceCoord(Zindex,2);
100        R(1)=R(1)+avirt*R(3);
101        R(2)=R(2)+bvirt*R(3);
102        R(4)=R(4)+avirt*R(6);
103        R(5)=R(5)+bvirt*R(6);
104        R(7)=R(7)+avirt*R(9);
105        R(8)=R(8)+bvirt*R(9);         
106    end
107    Tx=Calib.Tx_Ty_Tz(1);
108    Ty=Calib.Tx_Ty_Tz(2);
109    Tz=Calib.Tx_Ty_Tz(3);
110    Dx=R(5)*R(7)-R(4)*R(8);
111    Dy=R(1)*R(8)-R(2)*R(7);
112    D0=(R(2)*R(4)-R(1)*R(5));
113    Z11=R(6)*R(8)-R(5)*R(9);
114    Z12=R(2)*R(9)-R(3)*R(8);
115    Z21=R(4)*R(9)-R(6)*R(7);
116    Z22=R(3)*R(7)-R(1)*R(9);
117     Zx0=R(3)*R(5)-R(2)*R(6);
118     Zy0=R(1)*R(6)-R(3)*R(4);
119    B11=R(8)*Ty-R(5)*Tz+Z11*cvirt;
120    B12=R(2)*Tz-R(8)*Tx+Z12*cvirt;
121    B21=-R(7)*Ty+R(4)*Tz+Z21*cvirt;
122    B22=-R(1)*Tz+R(7)*Tx+Z22*cvirt;
123    X0=R(5)*Tx-R(2)*Ty+Zx0*cvirt;
124    Y0=-R(4)*Tx+R(1)*Ty+Zy0*cvirt;
125    %px to camera:
126    Xd=(X-Calib.Cx_Cy(1))/Calib.fx_fy(1); % sensor coordinates
127    Yd=(Y-Calib.Cx_Cy(2))/Calib.fx_fy(2);
128    dist_fact=1+Calib.kc*(Xd.*Xd+Yd.*Yd);% distortion factor, first approximation Xu,Yu=Xd,Yd
129    test=0;
130    niter=0;
131    while test==0 && niter<10
132        dist_fact_old=dist_fact;     
133        Xu=Xd./dist_fact;%undistorted sensor coordinates, second iteration
134        Yu=Yd./dist_fact;
135        dist_fact=1+Calib.kc*(Xu.*Xu+Yu.*Yu);% distortion factor,next approximation
136        test=max(max(abs(dist_fact-dist_fact_old)))<0.00001; % reducing the relative error to 10^-5 forthe inversion of the quadraticcorrection
137        niter=niter+1;
138    end
139    denom=Dx*Xu+Dy*Yu+D0;
140    Xphys=(B11.*Xu+B12.*Yu+X0)./denom;%world coordinates
141    Yphys=(B21.*Xu+B22.*Yu+Y0)./denom;
142    if testangle
143        Zphys=c+a*Xphys+b*Yphys;
144    else
145        Zphys=Z0;
146    end
147else
148    Xphys=-Calib.Tx_Ty_Tz(1)+X/Calib.fx_fy(1);
149    Yphys=-Calib.Tx_Ty_Tz(2)+Y/Calib.fx_fy(2);
150end
151
Note: See TracBrowser for help on using the repository browser.