source: trunk/src/geometry_calib.m @ 227

Last change on this file since 227 was 227, checked in by sommeria, 13 years ago

add function sub_field_series to apply the sub_field operation to a series of fileds (for instance subtracting a background to an image series)

File size: 63.8 KB
Line 
1%'geometry_calib': associated to the GUI geometry_calib to perform geometric calibration from a set of reference points
2%------------------------------------------------------------------------
3% function hgeometry_calib = geometry_calib(inputfile,pos)
4%
5%OUTPUT:
6% hgeometry_calib=current handles of the GUI geometry_calib.fig
7%
8%INPUT:
9% inputfile: (optional) name of an xml file containing coordinates of reference points
10% pos: (optional) 4 element vector setting the 'Position' of the GUI
11%
12%A%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
13%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
14%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
15%     This file is part of the toolbox UVMAT.
16%
17%     UVMAT is free software; you can redistribute it and/or modify
18%     it under the terms of the GNU General Public License as published by
19%     the Free Software Foundation; either version 2 of the License, or
20%     (at your option) any later version.
21%
22%     UVMAT is distributed in the hope that it will be useful,
23%     but WITHOUT ANY WARRANTY; without even the implied warranty of
24%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25%     GNU General Public License (file UVMAT/COPYING.txt) for more details.
26%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
27
28function varargout = geometry_calib(varargin)
29% GEOMETRY_CALIB M-file for geometry_calib.fig
30%      GEOMETRY_CALIB, by itself, creates a MenuCoord GEOMETRY_CALIB or raises the existing
31%      singleton*.
32%
33%      H = GEOMETRY_CALIB returns the handle to a MenuCoord GEOMETRY_CALIB or the handle to
34%      the existing singleton*.
35%
36%      GEOMETRY_CALIB('CALLBACK',hObject,eventData,handles,...) calls the local
37%      function named CALLBACK in GEOMETRY_CALIB.M with the given input arguments.
38%
39%      GEOMETRY_CALIB('Property','Value',...) creates a MenuCoord GEOMETRY_CALIB or raises the
40%      existing singleton*.  Starting from the left, property value pairs are
41%      applied to the GUI before geometry_calib_OpeningFunction gets called.  An
42%      unrecognized property name or invalid value makes property application
43%      stop.  All inputs are passed to geometry_calib_OpeningFcn via varargin.
44%
45%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
46%      instance to run (singleton)".
47%
48% See also: GUIDE, GUIDATA, GUIHANDLES
49
50% Edit the above text to modify the response to help geometry_calib
51
52% Last Modified by GUIDE v2.5 05-Oct-2010 13:47:00
53
54% Begin initialization code - DO NOT edit
55gui_Singleton = 1;
56gui_State = struct('gui_Name',       mfilename, ...
57                   'gui_Singleton',  gui_Singleton, ...
58                   'gui_OpeningFcn', @geometry_calib_OpeningFcn, ...
59                   'gui_OutputFcn',  @geometry_calib_OutputFcn, ...
60                   'gui_LayoutFcn',  [] , ...
61                   'gui_Callback',   []);
62if nargin && ischar(varargin{1}) && ~isempty(regexp(varargin{1},'_Callback','once'))
63    gui_State.gui_Callback = str2func(varargin{1});
64end
65
66if nargout
67    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
68else
69    gui_mainfcn(gui_State, varargin{:});
70end
71% End initialization code - DO NOT edit
72
73
74% --- Executes just before geometry_calib is made visible.
75%INPUT:
76%handles: handles of the geometry_calib interface elements
77% PlotHandles: set of handles of the elements contolling the plotting
78% parameters on the uvmat interface (obtained by 'get_plot_handle.m')
79%------------------------------------------------------------------------
80function geometry_calib_OpeningFcn(hObject, eventdata, handles,inputfile,pos)
81%------------------------------------------------------------------------
82% Choose default command line output for geometry_calib
83
84handles.output = hObject;
85
86% Update handles structure
87guidata(hObject, handles);
88set(hObject,'DeleteFcn',{@closefcn})%
89
90%set the position of the interface
91if exist('pos','var')&& length(pos)>=4
92%     %pos_gui=get(hObject,'Position');
93%     pos_gui(1)=pos(1);
94%     pos_gui(2)=pos(2);
95    set(hObject,'Position',pos);
96end
97
98%set menu of calibration options
99set(handles.calib_type,'String',{'rescale';'linear';'3D_linear';'3D_quadr';'3D_extrinsic'})
100inputxml='';
101if exist('inputfile','var')&& ~isempty(inputfile)
102    struct.XmlInputFile=inputfile;
103    [Pathsub,RootFile,field_count,str2,str_a,str_b,ext]=name2display(inputfile);
104    if ~strcmp(ext,'.xml')
105        inputfile=[fullfile(Pathsub,RootFile) '.xml'];%xml file corresponding to the input file
106    end
107    set(handles.ListCoord,'String',{'......'})
108    if exist(inputfile,'file')
109        Heading=loadfile(handles,inputfile);% load the point coordiantes existing in the xml file
110        if isfield(Heading,'Campaign')&& ischar(Heading.Campaign)
111            struct.Campaign=Heading.Campaign;
112        end
113    end   
114    set(hObject,'UserData',struct)
115end
116
117set(handles.ListCoord,'KeyPressFcn',{@key_press_fcn,handles})%set keyboard action function
118
119
120%------------------------------------------------------------------------
121% --- Outputs from this function are returned to the command line.
122function varargout = geometry_calib_OutputFcn(hObject, eventdata, handles)
123%------------------------------------------------------------------------
124% Get default command line output from handles structure
125varargout{1} = handles.output;
126varargout{2}=handles;
127%
128%------------------------------------------------------------------------
129% executed when closing: set the parent interface button to value 0
130function closefcn(gcbo,eventdata)
131%------------------------------------------------------------------------
132huvmat=findobj(allchild(0),'Name','uvmat');
133if ~isempty(huvmat)
134    handles=guidata(huvmat);
135%     set(handles.MenuMask,'enable','on')
136%     set(handles.MenuGrid,'enable','on')
137%     set(handles.MenuObject,'enable','on')
138%     set(handles.MenuEdit,'enable','on')
139%     set(handles.edit,'enable','on')
140    hobject=findobj(handles.axes3,'tag','calib_points');
141    if ~isempty(hobject)
142        delete(hobject)
143    end
144    hobject=findobj(handles.axes3,'tag','calib_marker');
145    if ~isempty(hobject)
146        delete(hobject)
147    end   
148end
149
150%------------------------------------------------------------------------
151% --- Executes on button press in calibrate_lin.
152function APPLY_Callback(hObject, eventdata, handles)
153%------------------------------------------------------------------------
154%read the current calibration points
155Coord_cell=get(handles.ListCoord,'String');
156Object=read_geometry_calib(Coord_cell);
157Coord=Object.Coord;
158% apply the calibration, whose type is selected in  handles.calib_type
159if ~isempty(Coord)
160    calib_cell=get(handles.calib_type,'String');
161    val=get(handles.calib_type,'Value');
162    GeometryCalib=feval(['calib_' calib_cell{val}],Coord,handles);
163else
164    msgbox_uvmat('ERROR','No calibration points, abort')
165    return
166end
167Z_plane=[];
168if ~isempty(Coord)
169    %check error
170    X=Coord(:,1);
171    Y=Coord(:,2);
172    Z=Coord(:,3);
173    x_ima=Coord(:,4);
174    y_ima=Coord(:,5);
175    [Xpoints,Ypoints]=px_XYZ(GeometryCalib,X,Y,Z);
176    GeometryCalib.ErrorRms(1)=sqrt(mean((Xpoints-x_ima).*(Xpoints-x_ima)));
177    [GeometryCalib.ErrorMax(1),index(1)]=max(abs(Xpoints-x_ima));
178    GeometryCalib.ErrorRms(2)=sqrt(mean((Ypoints-y_ima).*(Ypoints-y_ima)));
179    [GeometryCalib.ErrorMax(2),index(2)]=max(abs(Ypoints-y_ima));
180    [EM,ind_dim]=max(GeometryCalib.ErrorMax);
181    index=index(ind_dim);
182    %set the Z position of the reference plane used for calibration
183    if isequal(max(Z),min(Z))%Z constant
184        Z_plane=Z(1);
185        GeometryCalib.NbSlice=1;
186        GeometryCalib.SliceCoord=[0 0 Z_plane];
187    end
188end
189%set the coordinate unit
190unitlist=get(handles.CoordUnit,'String');
191unit=unitlist{get(handles.CoordUnit,'value')};
192GeometryCalib.CoordUnit=unit;
193%record the points
194GeometryCalib.SourceCalib.PointCoord=Coord;
195display_intrinsic(GeometryCalib,handles)%display calibration intrinsic parameters
196
197% Display extrinsinc parameters (rotation and translation of camera with  respect to the phys coordiantes)
198set(handles.Tx,'String',num2str(GeometryCalib.Tx_Ty_Tz(1),4))
199set(handles.Ty,'String',num2str(GeometryCalib.Tx_Ty_Tz(2),4))
200set(handles.Tz,'String',num2str(GeometryCalib.Tx_Ty_Tz(3),4))
201set(handles.Phi,'String',num2str(GeometryCalib.omc(1),4))
202set(handles.Theta,'String',num2str(GeometryCalib.omc(2),4))
203set(handles.Psi,'String',num2str(GeometryCalib.omc(3),4))
204
205% store the calibration data, by default in the xml file of the currently displayed image
206huvmat=findobj(allchild(0),'Name','uvmat');
207UvData=get(huvmat,'UserData');
208NbSlice_j=1;%default
209ZStart=Z_plane;
210ZEnd=Z_plane;
211volume_scan='n';
212if isfield(UvData,'XmlData')
213    UvData.XmlData
214    if isfield(UvData.XmlData,'TranslationMotor')
215        NbSlice_j=UvData.XmlData.TranslationMotor.Nbslice;
216        ZStart=UvData.XmlData.TranslationMotor.ZStart/10;
217        ZEnd=UvData.XmlData.TranslationMotor.ZEnd/10;
218        volume_scan='y';
219    end
220end
221hhuvmat=guidata(huvmat);%handles of elements in the GUI uvmat
222RootPath='';
223RootFile='';
224if ~isempty(hhuvmat.RootPath)&& ~isempty(hhuvmat.RootFile)
225    testhandle=1;
226    RootPath=get(hhuvmat.RootPath,'String');
227    RootFile=get(hhuvmat.RootFile,'String');
228    filebase=fullfile(RootPath,RootFile);
229    outputfile=[filebase '.xml'];%xml file associated with the currently displayed image
230else
231    question={'save the calibration data and point coordinates in'};
232    def={fullfile(RootPath,'ObjectCalib.xml')};
233    options.Resize='on';
234    answer=inputdlg(question,'save average in a new file',1,def,options);
235    outputfile=answer{1};
236end
237answer=msgbox_uvmat('INPUT_Y-N',{[outputfile ' updated with calibration data'];...
238    ['Error rms (along x,y)=' num2str(GeometryCalib.ErrorRms) ' pixels'];...
239    ['Error max (along x,y)=' num2str(GeometryCalib.ErrorMax) ' pixels']});
240
241%% record the calibration parameters and display the current image of uvmat in the new phys coordinates
242if strcmp(answer,'Yes')
243    if strcmp(calib_cell{val}(1:2),'3D')%set the plane position for 3D (projection) calibration
244       input_key={'Z (first position)','Z (last position)','Z (water surface)', 'refractive index','NbSlice','volume scan (y/n)','tilt angle y axis','tilt angle x axis'};
245       input_val=[{num2str(ZEnd)} {num2str(ZStart)} {num2str(ZStart)} {'1.333'} num2str(NbSlice_j) {volume_scan} {'0'} {'0'}];
246        answer=inputdlg(input_key,'slice position(s)',ones(1,8), input_val,'on');
247        %answer_1=msgbox_uvmat('INPUT_TXT',' Z= ',num2str(Z_plane));
248        GeometryCalib.NbSlice=str2double(answer{5});
249        GeometryCalib.VolumeScan=answer{6};
250        if isempty(answer)
251            Z_plane=0; %default
252        else
253            Z_plane=linspace(str2double(answer{1}),str2double(answer{2}),GeometryCalib.NbSlice);
254        end     
255        GeometryCalib.SliceCoord=Z_plane'*[0 0 1];
256        GeometryCalib.SliceAngle(:,3)=0;
257        GeometryCalib.SliceAngle(:,2)=str2double(answer{7})*ones(GeometryCalib.NbSlice,1);%rotation around y axis (to generalise)
258        GeometryCalib.SliceAngle(:,1)=str2double(answer{8})*ones(GeometryCalib.NbSlice,1);%rotation around x axis (to generalise)
259        GeometryCalib.InterfaceCoord=[0 0 str2double(answer{3})];
260        GeometryCalib.RefractionIndex=str2double(answer{4});     
261    end
262    errormsg=update_imadoc(GeometryCalib,outputfile);% introduce the calibration data in the xml file
263    if ~strcmp(errormsg,'')
264        msgbox_uvmat('ERROR',errormsg);
265    end
266   
267    %display image with new calibration in the currently opened uvmat interface
268    hhh=findobj(hhuvmat.axes3,'Tag','calib_marker');% delete calib points and markers
269    if ~isempty(hhh)
270        delete(hhh);     
271    end
272    hhh=findobj(hhuvmat.axes3,'Tag','calib_points');
273    if ~isempty(hhh)
274        delete(hhh);
275    end
276    set(hhuvmat.FixLimits,'Value',0)% put FixedLimits option to 'off'
277    set(hhuvmat.FixLimits,'BackgroundColor',[0.7 0.7 0.7])
278    UserData=get(handles.geometry_calib,'UserData');
279    UserData.XmlInputFile=outputfile;%save the current xml file name
280    set(handles.geometry_calib,'UserData',UserData)
281    uvmat('RootPath_Callback',hObject,eventdata,hhuvmat); %file input with xml reading  in uvmat, show the image in phys coordinates
282    MenuPlot_Callback(hObject, eventdata, handles)
283    set(handles.ListCoord,'Value',index)% indicate in the list the point with max deviation (possible mistake)
284    ListCoord_Callback(hObject, eventdata, handles)
285    figure(handles.geometry_calib)
286end
287
288%------------------------------------------------------------------
289% --- Executes on button press in calibrate_lin.
290
291function REPLICATE_Callback(hObject, eventdata, handles)
292%------------------------------------------------------------------------
293
294%% Apply calibration
295calib_cell=get(handles.calib_type,'String'); %#ok<NASGU>
296val=get(handles.calib_type,'Value'); %#ok<NASGU>
297
298%read the current calibration points
299Coord_cell=get(handles.ListCoord,'String');
300Object=read_geometry_calib(Coord_cell);
301Coord=Object.Coord;
302
303% apply the calibration, whose type is selected in  handles.calib_type
304if ~isempty(Coord)
305    calib_cell=get(handles.calib_type,'String');
306    val=get(handles.calib_type,'Value');
307    GeometryCalib=feval(['calib_' calib_cell{val}],Coord,handles);
308else
309    msgbox_uvmat('ERROR','No calibration points, abort')
310    return
311end
312
313if ~isempty(Coord)
314    %check error
315    X=Coord(:,1);
316    Y=Coord(:,2);
317    Z=Coord(:,3);
318    x_ima=Coord(:,4);
319    y_ima=Coord(:,5);
320    [Xpoints,Ypoints]=px_XYZ(GeometryCalib,X,Y,Z);
321    GeometryCalib.ErrorRms(1)=sqrt(mean((Xpoints-x_ima).*(Xpoints-x_ima)));
322    [GeometryCalib.ErrorMax(1),index(1)]=max(abs(Xpoints-x_ima));
323    GeometryCalib.ErrorRms(2)=sqrt(mean((Ypoints-y_ima).*(Ypoints-y_ima)));
324    [GeometryCalib.ErrorMax(2),index(2)]=max(abs(Ypoints-y_ima));
325    [EM,ind_dim]=max(GeometryCalib.ErrorMax);
326%     index=index(ind_dim);
327    %set the Z position of the reference plane used for calibration
328    Z_plane=[];
329    if isequal(max(Z),min(Z))
330        Z_plane=Z(1);
331    end
332    answer_1=msgbox_uvmat('INPUT_TXT',' Z= ',num2str(Z_plane));
333    Z_plane=str2double(answer_1);
334    GeometryCalib.NbSlice=1;
335    GeometryCalib.SliceCoord=[0 0 Z_plane];
336    %set the coordinate unit
337    unitlist=get(handles.CoordUnit,'String');
338    unit=unitlist{get(handles.CoordUnit,'value')};
339    GeometryCalib.CoordUnit=unit;
340    %record the points
341    GeometryCalib.SourceCalib.PointCoord=Coord;
342end
343
344%% display calibration paprameters
345display_intrinsic(GeometryCalib,handles)%display calibration intrinsic parameters
346
347% Display extrinsinc parameters (rotation and translation of camera with  respect to the phys coordiantes)
348set(handles.Tx,'String',num2str(GeometryCalib.Tx_Ty_Tz(1),4))
349set(handles.Ty,'String',num2str(GeometryCalib.Tx_Ty_Tz(2),4))
350set(handles.Tz,'String',num2str(GeometryCalib.Tx_Ty_Tz(3),4))
351set(handles.Phi,'String',num2str(GeometryCalib.omc(1),4))
352set(handles.Theta,'String',num2str(GeometryCalib.omc(2),4))
353set(handles.Psi,'String',num2str(GeometryCalib.omc(3),4))
354
355%% open the GUI dataview
356h_dataview=findobj(allchild(0),'name','dataview');
357if ~isempty(h_dataview)
358    delete(h_dataview)
359end
360CalibData=get(handles.geometry_calib,'UserData');%read the calibration image source on the interface userdata
361InputFile='';
362if isfield(CalibData,'XmlInputFile')
363    InputDir=fileparts(CalibData.XmlInputFile);
364    [InputDir,DirName]=fileparts(InputDir);
365end
366SubCampaignTest='n'; %default
367testup=0;
368if isfield(CalibData,'SubCampaign')
369    SubCampaignTest='y';
370    dir_ref=CalibData.SubCampaign;
371    testup=1;
372elseif isfield(CalibData,'Campaign')
373    dir_ref=CalibData.Campaign;
374    testup=1;
375end
376while testup
377    [InputDir,DirName]=fileparts(InputDir);
378    if strcmp(DirName,dir_ref)
379        break
380    end
381end
382InputDir=fullfile(InputDir,DirName);
383answer=msgbox_uvmat('INPUT_TXT','Campaign ?',InputDir);
384if strcmp(answer,'Cancel')
385    return
386end
387
388dataview(answer,SubCampaignTest,GeometryCalib);
389       
390%     if isfield(Heading,'Device') && isequal([filename ext],Heading.Device)
391%         [XmlInput,filename,ext]=fileparts(XmlInput);
392%         Device=Heading.Device;
393%     end
394%     if isfield(Heading,'Experiment') && isequal([filename ext],Heading.Experiment)
395%         [PP,filename,ext]=fileparts(XmlInput);
396%     end
397%     testinput=0;
398%     if isfield(Heading,'SubCampaign') && isequal([filename ext],Heading.SubCampaign)
399%         SubCampaignTest='y';
400%         testinput=1;
401%     elseif isfield(Heading,'Campaign') && isequal([filename ext],Heading.Campaign)
402%         testinput=1;
403% %     end
404% end
405% if ~testinput
406%     filename='PROJETS';%default
407%     if isfield(CalibData,'XmlInputFile')
408%          [pp,filename]=fileparts(CalibData.XmlInputFile);
409%     end
410%     while ~isequal(filename,'PROJETS') && numel(filename)>1
411%         filename_1=filename;
412%         pp_1=pp;
413%         [pp,filename]=fileparts(pp);
414%     end
415%     XmlInput=fullfile(pp_1,filename_1);
416%     testinput=1;
417% end
418% if testinput
419%     outcome=dataview(XmlInput,SubCampaignTest,GeometryCalib);
420% end
421
422%------------------------------------------------------------------------
423% determine the parameters for a calibration by an affine function (rescaling and offset, no rotation)
424function GeometryCalib=calib_rescale(Coord,handles)
425%------------------------------------------------------------------------
426X=Coord(:,1);
427Y=Coord(:,2);% Z not used
428x_ima=Coord(:,4);
429y_ima=Coord(:,5);
430[px,sx]=polyfit(X,x_ima,1);
431[py,sy]=polyfit(Y,y_ima,1);
432T_x=px(2);
433T_y=py(2);
434GeometryCalib.CalibrationType='rescale';
435GeometryCalib.fx_fy=[px(1) py(1)];%.fx_fy corresponds to pxcm along x and y
436GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
437GeometryCalib.Tx_Ty_Tz=[px(2)/px(1) py(2)/py(1) 1];
438%GeometryCalib.R=[1,0,0;0,1,0;0,0,0];
439GeometryCalib.omc=[0 0 0];
440
441%------------------------------------------------------------------------
442% determine the parameters for a calibration by a linear transform matrix (rescale and rotation)
443function GeometryCalib=calib_linear(Coord,handles)
444%------------------------------------------------------------------------
445X=Coord(:,1);
446Y=Coord(:,2);% Z not used
447x_ima=Coord(:,4);
448y_ima=Coord(:,5);
449XY_mat=[ones(size(X)) X Y];
450a_X1=XY_mat\x_ima; %transformation matrix for X
451% x1=XY_mat*a_X1;%reconstruction
452% err_X1=max(abs(x1-x_ima));%error
453a_Y1=XY_mat\y_ima;%transformation matrix for X
454% y1=XY_mat*a_Y1;
455% err_Y1=max(abs(y1-y_ima));%error
456% R=[a_X1(2),a_X1(3),0;a_Y1(2),a_Y1(3),0;0,0,1];
457R=[a_X1(2),a_X1(3);a_Y1(2),a_Y1(3)];
458norm=abs(det(R));
459GeometryCalib.CalibrationType='linear';
460GeometryCalib.fx_fy(1)=sqrt((a_X1(2)/a_Y1(3))*norm);
461GeometryCalib.fx_fy(2)=(a_Y1(3)/a_X1(2))*GeometryCalib.fx_fy(1);
462GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
463%GeometryCalib.Tx_Ty_Tz=[a_X1(1) a_Y1(1) 1];
464GeometryCalib.Tx_Ty_Tz=[a_X1(1)/GeometryCalib.fx_fy(1) a_Y1(1)/GeometryCalib.fx_fy(2) 1];
465R(1,:)=R(1,:)/GeometryCalib.fx_fy(1);
466R(2,:)=R(2,:)/GeometryCalib.fx_fy(2);
467R=[R;[0 0]];
468GeometryCalib.R=[R [0;0;1]];
469GeometryCalib.omc=(180/pi)*[acos(GeometryCalib.R(1,1)) 0 0];
470%------------------------------------------------------------------------
471% determine the tsai parameters for a view normal to the grid plane
472% NOT USED
473function GeometryCalib=calib_normal(Coord,handles)
474%------------------------------------------------------------------------
475Calib.f1=str2num(get(handles.fx,'String'));
476Calib.f2=str2num(get(handles.fy,'String'));
477Calib.k=str2num(get(handles.kc,'String'));
478Calib.Cx=str2num(get(handles.Cx,'String'));
479Calib.Cy=str2num(get(handles.Cy,'String'));
480%default
481if isempty(Calib.f1)
482    Calib.f1=25/0.012;
483end
484if isempty(Calib.f2)
485    Calib.f2=25/0.012;
486end
487if isempty(Calib.k)
488    Calib.k=0;
489end
490if isempty(Calib.Cx)||isempty(Calib.Cy)
491    huvmat=findobj(allchild(0),'Tag','uvmat');
492    hhuvmat=guidata(huvmat);
493    Calib.Cx=str2num(get(hhuvmat.npx,'String'))/2;
494    Calib.Cx=str2num(get(hhuvmat.npy,'String'))/2;
495end   
496%tsai parameters
497Calib.dpx=0.012;%arbitrary
498Calib.dpy=0.012;
499Calib.sx=Calib.f1*Calib.dpx/(Calib.f2*Calib.dpy);
500Calib.f=Calib.f2*Calib.dpy;
501Calib.kappa1=Calib.k/(Calib.f*Calib.f);
502
503%initial guess
504X=Coord(:,1);
505Y=Coord(:,2);
506Zmean=mean(Coord(:,3));
507x_ima=Coord(:,4)-Calib.Cx;
508y_ima=Coord(:,5)-Calib.Cy;
509XY_mat=[ones(size(X)) X Y];
510a_X1=XY_mat\x_ima; %transformation matrix for X
511a_Y1=XY_mat\y_ima;%transformation matrix for Y
512R=[a_X1(2),a_X1(3),0;a_Y1(2),a_Y1(3),0;0,0,-1];% rotation+ z axis reversal (upward)
513norm=sqrt(det(-R));
514calib_param(1)=0;% quadratic distortion
515calib_param(2)=a_X1(1);
516calib_param(3)=a_Y1(1);
517calib_param(4)=Calib.f/(norm*Calib.dpx)-R(3,3)*Zmean;
518calib_param(5)=angle(a_X1(2)+1i*a_X1(3));
519display(['initial guess=' num2str(calib_param)])
520
521%optimise the parameters: minimisation of error
522calib_param = fminsearch(@(calib_param) error_calib(calib_param,Calib,Coord),calib_param);
523
524GeometryCalib.CalibrationType='tsai_normal';
525GeometryCalib.focal=Calib.f;
526GeometryCalib.dpx_dpy=[Calib.dpx Calib.dpy];
527GeometryCalib.Cx_Cy=[Calib.Cx Calib.Cy];
528GeometryCalib.sx=Calib.sx;
529GeometryCalib.kappa1=calib_param(1);
530GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
531GeometryCalib.Tx_Ty_Tz=[calib_param(2) calib_param(3) calib_param(4)];
532alpha=calib_param(5);
533GeometryCalib.R=[cos(alpha) sin(alpha) 0;-sin(alpha) cos(alpha) 0;0 0 -1];
534
535%------------------------------------------------------------------------
536function GeometryCalib=calib_3D_linear(Coord,handles)
537%------------------------------------------------------------------
538path_uvmat=which('uvmat');% check the path detected for source file uvmat
539path_UVMAT=fileparts(path_uvmat); %path to UVMAT
540huvmat=findobj(allchild(0),'Tag','uvmat');
541hhuvmat=guidata(huvmat);
542coord_files=get(handles.coord_files,'String');
543if ischar(coord_files)
544    coord_files={coord_files};
545end
546if isempty(coord_files{1}) || isequal(coord_files,{''})
547    coord_files={};
548end
549%retrieve the calibration points stored in the files listed in the popup list coord_files
550x_1=Coord(:,4:5)';%px coordinates of the ref points
551nx=str2num(get(hhuvmat.npx,'String'));
552ny=str2num(get(hhuvmat.npy,'String'));
553x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates
554X_1=Coord(:,1:3)';%phys coordinates of the ref points
555n_ima=numel(coord_files)+1;
556if ~isempty(coord_files)
557    msgbox_uvmat('CONFIRMATION',['The xy coordinates of the calibration points in ' num2str(n_ima) ' planes will be used'])
558    for ifile=1:numel(coord_files)
559    t=xmltree(coord_files{ifile});
560    s=convert(t);%convert to matlab structure
561        if isfield(s,'GeometryCalib')
562            if isfield(s.GeometryCalib,'SourceCalib')
563                if isfield(s.GeometryCalib.SourceCalib,'PointCoord')
564                PointCoord=s.GeometryCalib.SourceCalib.PointCoord;
565                Coord_file=zeros(length(PointCoord),5);%default
566                for i=1:length(PointCoord)
567                    line=str2num(PointCoord{i});
568                    Coord_file(i,4:5)=line(4:5);%px x
569                    Coord_file(i,1:3)=line(1:3);%phys x
570                end
571                eval(['x_' num2str(ifile+1) '=Coord_file(:,4:5)'';']);
572                eval(['x_' num2str(ifile+1) '(2,:)=ny-x_' num2str(ifile+1) '(2,:);' ]);
573                eval(['X_' num2str(ifile+1) '=Coord_file(:,1:3)'';']);
574                end
575            end
576        end
577    end
578end
579n_ima=numel(coord_files)+1;
580est_dist=[0;0;0;0;0];
581est_aspect_ratio=0;
582est_fc=[1;1];
583%fc=[25;25]/0.012;
584center_optim=0;
585run(fullfile(path_UVMAT,'toolbox_calib','go_calib_optim'));
586GeometryCalib.CalibrationType='3D_linear';
587GeometryCalib.fx_fy=fc';
588%GeometryCalib.focal=fc(2);
589%GeometryCalib.dpx_dpy=[1 1];
590GeometryCalib.Cx_Cy=cc';
591%GeometryCalib.sx=fc(1)/fc(2);
592GeometryCalib.kc=kc(1);
593%GeometryCalib.kappa1=-kc(1)/fc(2)^2;
594GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
595GeometryCalib.Tx_Ty_Tz=Tc_1';
596GeometryCalib.R=Rc_1;
597GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate
598GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate
599GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate
600GeometryCalib.omc=(180/pi)*omc_1;%angles in degrees
601GeometryCalib.ErrorRMS=[];
602GeometryCalib.ErrorMax=[];
603
604%------------------------------------------------------------------------
605function GeometryCalib=calib_3D_quadr(Coord,handles)
606%------------------------------------------------------------------
607
608path_uvmat=which('uvmat');% check the path detected for source file uvmat
609path_UVMAT=fileparts(path_uvmat); %path to UVMAT
610huvmat=findobj(allchild(0),'Tag','uvmat');
611hhuvmat=guidata(huvmat);
612% check_cond=0;
613coord_files=get(handles.coord_files,'String');
614if ischar(coord_files)
615    coord_files={coord_files};
616end
617if isempty(coord_files{1}) || isequal(coord_files,{''})
618    coord_files={};
619end
620
621%retrieve the calibration points stored in the files listed in the popup list coord_files
622x_1=Coord(:,4:5)';%px coordinates of the ref points
623nx=str2num(get(hhuvmat.npx,'String'));
624ny=str2num(get(hhuvmat.npy,'String'));
625x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates
626X_1=Coord(:,1:3)';%phys coordinates of the ref points
627n_ima=numel(coord_files)+1;
628if ~isempty(coord_files)
629    msgbox_uvmat('CONFIRMATION',['The xy coordinates of the calibration points in ' num2str(n_ima) ' planes will be used'])
630    for ifile=1:numel(coord_files)
631    t=xmltree(coord_files{ifile});
632    s=convert(t);%convert to matlab structure
633        if isfield(s,'GeometryCalib')
634            if isfield(s.GeometryCalib,'SourceCalib')
635                if isfield(s.GeometryCalib.SourceCalib,'PointCoord')
636                PointCoord=s.GeometryCalib.SourceCalib.PointCoord;
637                Coord_file=zeros(length(PointCoord),5);%default
638                for i=1:length(PointCoord)
639                    line=str2num(PointCoord{i});
640                    Coord_file(i,4:5)=line(4:5);%px x
641                    Coord_file(i,1:3)=line(1:3);%phys x
642                end
643                eval(['x_' num2str(ifile+1) '=Coord_file(:,4:5)'';']);
644                eval(['x_' num2str(ifile+1) '(2,:)=ny-x_' num2str(ifile+1) '(2,:);' ]);
645                eval(['X_' num2str(ifile+1) '=Coord_file(:,1:3)'';']);
646                end
647            end
648        end
649    end
650end
651n_ima=numel(coord_files)+1;
652est_dist=[1;0;0;0;0];
653est_aspect_ratio=1;
654%est_fc=[0;0];
655%fc=[25;25]/0.012;
656center_optim=0;
657run(fullfile(path_UVMAT,'toolbox_calib','go_calib_optim'));
658
659GeometryCalib.CalibrationType='3D_quadr';
660GeometryCalib.fx_fy=fc';
661%GeometryCalib.focal=fc(2);
662%GeometryCalib.dpx_dpy=[1 1];
663GeometryCalib.Cx_Cy=cc';
664%GeometryCalib.sx=fc(1)/fc(2);
665GeometryCalib.kc=kc(1);
666%GeometryCalib.kappa1=-kc(1)/fc(2)^2;
667GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
668GeometryCalib.Tx_Ty_Tz=Tc_1';
669GeometryCalib.R=Rc_1;
670GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate
671GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate
672GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate
673GeometryCalib.omc=(180/pi)*omc_1;%angles in degrees
674GeometryCalib.ErrorRMS=[];
675GeometryCalib.ErrorMax=[];
676
677
678%------------------------------------------------------------------------
679function GeometryCalib=calib_3D_extrinsic(Coord,handles)
680%------------------------------------------------------------------
681path_uvmat=which('geometry_calib');% check the path detected for source file uvmat
682path_UVMAT=fileparts(path_uvmat); %path to UVMAT
683x_1=double(Coord(:,4:5)');%image coordiantes
684X_1=double(Coord(:,1:3)');% phys coordinates
685huvmat=findobj(allchild(0),'Tag','uvmat');
686hhuvmat=guidata(huvmat);
687ny=str2double(get(hhuvmat.npy,'String'));
688x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates
689n_ima=1;
690GeometryCalib.CalibrationType='3D_extrinsic';
691GeometryCalib.fx_fy(1)=str2num(get(handles.fx,'String'));
692GeometryCalib.fx_fy(2)=str2num(get(handles.fy,'String'));
693GeometryCalib.Cx_Cy(1)=str2num(get(handles.Cx,'String'));
694GeometryCalib.Cx_Cy(2)=str2num(get(handles.Cy,'String'));
695GeometryCalib.kc=str2num(get(handles.kc,'String'));
696fct_path=fullfile(path_UVMAT,'toolbox_calib');
697addpath(fct_path)
698GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%reverse Cx_Cy(2) for calibration (inversion of px ordinate)
699% [omc1,Tc1,Rc1,H,x,ex,JJ] = compute_extrinsic(x_1,X_1,...
700%     [Calib.f Calib.f*Calib.sx]',...
701%     [Calib.Cx Calib.Cy]',...
702%     [-Calib.kappa1*Calib.f^2 0 0 0 0]);
703[omc,Tc1,Rc1,H,x,ex,JJ] = compute_extrinsic(x_1,X_1,...
704    (GeometryCalib.fx_fy)',GeometryCalib.Cx_Cy',[GeometryCalib.kc 0 0 0 0]);
705rmpath(fct_path);
706GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
707GeometryCalib.Tx_Ty_Tz=Tc1';
708%inversion of z axis
709GeometryCalib.R=Rc1;
710GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate
711GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate
712GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate
713GeometryCalib.omc=(180/pi)*omc';
714%GeometryCalib.R(3,1:3)=-GeometryCalib.R(3,1:3);%inversion for z upward
715
716
717
718%------------------------------------------------------------------------
719%function GeometryCalib=calib_tsai_heikkila(Coord)
720% TEST: NOT IMPLEMENTED
721%------------------------------------------------------------------
722% path_uvmat=which('uvmat');% check the path detected for source file uvmat
723% path_UVMAT=fileparts(path_uvmat); %path to UVMAT
724% path_calib=fullfile(path_UVMAT,'toolbox_calib_heikkila');
725% addpath(path_calib)
726% npoints=size(Coord,1);
727% Coord(:,1:3)=10*Coord(:,1:3);
728% Coord=[Coord zeros(npoints,2) -ones(npoints,1)];
729% [par,pos,iter,res,er,C]=cacal('dalsa',Coord);
730% GeometryCalib.CalibrationType='tsai';
731% GeometryCalib.focal=par(2);
732
733
734%--------------------------------------------------------------------------
735function GeometryCalib=calib_tsai(Coord,handles)% OBSOLETE: old version using gauthier's bianry ccal_fo
736% NOT USED
737%------------------------------------------------------------------------
738%TSAI
739path_uvmat=which('uvmat');% check the path detected for source file uvmat
740path_UVMAT=fileparts(path_uvmat); %path to UVMAT
741xmlfile=fullfile(path_UVMAT,'PARAM.xml');%name of the file containing names of binary executables
742if exist(xmlfile,'file')
743    t=xmltree(xmlfile);% read the (xml) file containing names of binary executables
744    sparam=convert(t);% convert to matlab structure
745end
746if ~isfield(sparam,'GeometryCalibBin')
747    msgbox_uvmat('ERROR',['calibration program <GeometryCalibBin> undefined in parameter file ' xmlfile])
748    return
749end
750Tsai_exe=sparam.GeometryCalibBin;
751if ~exist(Tsai_exe,'file')%the binary is defined in /bin, default setting
752     Tsai_exe=fullfile(path_UVMAT,Tsai_exe);
753end
754if ~exist(Tsai_exe,'file')
755    msgbox_uvmat('ERROR',['calibration program ' sparam.GeometryCalibBin ' defined in PARAM.xml does not exist'])
756    return
757end
758
759textcoord=num2str(Coord,4);
760dlmwrite('t.txt',textcoord,''); 
761% ['!' Tsai_exe ' -fx 0 -fy t.txt']
762eval(['!' Tsai_exe ' -f t.txt > tsaicalib.log']);
763if ~exist('calib.dat','file')
764    msgbox_uvmat('ERROR','no output from calibration program Tsai_exe: possibly too few points')
765end
766calibdat=dlmread('calib.dat');
767delete('calib.dat')
768%delete('t.txt')
769GeometryCalib.CalibrationType='tsai';
770GeometryCalib.focal=calibdat(10);
771GeometryCalib.dpx_dpy=[calibdat(5) calibdat(6)];
772GeometryCalib.Cx_Cy=[calibdat(7) calibdat(8)];
773GeometryCalib.sx=calibdat(9);
774GeometryCalib.kappa1=calibdat(11);
775GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function
776GeometryCalib.Tx_Ty_Tz=[calibdat(12) calibdat(13) calibdat(14)];
777Rx_Ry_Rz=calibdat(15:17);
778sa = sin(Rx_Ry_Rz(1)) ;
779ca=cos(Rx_Ry_Rz(1));
780sb=sin(Rx_Ry_Rz(2));
781cb =cos(Rx_Ry_Rz(2));
782sg =sin(Rx_Ry_Rz(3));
783cg =cos(Rx_Ry_Rz(3));
784r1 = cb * cg;
785r2 = cg * sa * sb - ca * sg;
786r3 = sa * sg + ca * cg * sb;
787r4 = cb * sg;
788r5 = sa * sb * sg + ca * cg;
789r6 = ca * sb * sg - cg * sa;
790r7 = -sb;
791r8 = cb * sa;
792r9 = ca * cb;
793%EN DEDUIRE MATRICE R ??
794GeometryCalib.R=[r1,r2,r3;r4,r5,r6;r7,r8,r9];
795
796%------------------------------------------------------------------------
797% --- determine the rms of calibration error
798function ErrorRms=error_calib(calib_param,Calib,Coord)
799%calib_param: vector of free calibration parameters (to optimise)
800%Calib: structure of the given calibration parameters
801%Coord: list of phys coordinates (columns 1-3, and pixel coordinates (columns 4-5)
802Calib.f=25;
803Calib.dpx=0.012;
804Calib.dpy=0.012;
805Calib.sx=1;
806Calib.Cx=512;
807Calib.Cy=512;
808Calib.kappa1=calib_param(1);
809Calib.Tx=calib_param(2);
810Calib.Ty=calib_param(3);
811Calib.Tz=calib_param(4);
812alpha=calib_param(5);
813Calib.R=[cos(alpha) sin(alpha) 0;-sin(alpha) cos(alpha) 0;0 0 -1];
814
815X=Coord(:,1);
816Y=Coord(:,2);
817Z=Coord(:,3);
818x_ima=Coord(:,4);
819y_ima=Coord(:,5);
820[Xpoints,Ypoints]=px_XYZ(Calib,X,Y,Z);
821ErrorRms(1)=sqrt(mean((Xpoints-x_ima).*(Xpoints-x_ima)));
822ErrorRms(2)=sqrt(mean((Ypoints-y_ima).*(Ypoints-y_ima)));
823ErrorRms=mean(ErrorRms);
824
825%------------------------------------------------------------------------
826function XImage_Callback(hObject, eventdata, handles)
827%------------------------------------------------------------------------
828update_list(hObject, eventdata,handles)
829
830%------------------------------------------------------------------------
831function YImage_Callback(hObject, eventdata, handles)
832%------------------------------------------------------------------------
833update_list(hObject, eventdata,handles)
834
835%------------------------------------------------------------------------
836% --- Executes on button press in STORE.
837function STORE_Callback(hObject, eventdata, handles)
838Coord_cell=get(handles.ListCoord,'String');
839Object=read_geometry_calib(Coord_cell);
840unitlist=get(handles.CoordUnit,'String');
841unit=unitlist{get(handles.CoordUnit,'value')};
842GeometryCalib.CoordUnit=unit;
843GeometryCalib.SourceCalib.PointCoord=Object.Coord;
844huvmat=findobj(allchild(0),'Name','uvmat');
845hhuvmat=guidata(huvmat);%handles of elements in the GUI uvmat
846% RootPath='';
847% RootFile='';
848if ~isempty(hhuvmat.RootPath)&& ~isempty(hhuvmat.RootFile)
849    testhandle=1;
850    RootPath=get(hhuvmat.RootPath,'String');
851    RootFile=get(hhuvmat.RootFile,'String');
852    filebase=fullfile(RootPath,RootFile);
853    while exist([filebase '.xml'],'file')
854        filebase=[filebase '~'];
855    end
856    outputfile=[filebase '.xml'];
857    errormsg=update_imadoc(GeometryCalib,outputfile);
858    if ~strcmp(errormsg,'')
859        msgbox_uvmat('ERROR',errormsg);
860    end
861    listfile=get(handles.coord_files,'string');
862    if isequal(listfile,{''})
863        listfile={outputfile};
864    else
865        listfile=[listfile;{outputfile}];%update the list of coord files
866    end
867    set(handles.coord_files,'string',listfile);
868end
869set(handles.ListCoord,'Value',1)% refresh the display of coordinates
870set(handles.ListCoord,'String',{'......'})
871
872% --------------------------------------------------------------------
873% --- Executes on button press in CLEAR_PTS: clear the list of calibration points
874function CLEAR_PTS_Callback(hObject, eventdata, handles)
875% --------------------------------------------------------------------
876set(handles.ListCoord,'Value',1)% refresh the display of coordinates
877set(handles.ListCoord,'String',{'......'})
878MenuPlot_Callback(hObject, eventdata, handles)
879
880%------------------------------------------------------------------------
881% --- Executes on button press in CLEAR.
882function CLEAR_Callback(hObject, eventdata, handles)
883%------------------------------------------------------------------------
884set(handles.coord_files,'Value',1)
885set(handles.coord_files,'String',{''})
886
887%------------------------------------------------------------------------
888function XObject_Callback(hObject, eventdata, handles)
889%------------------------------------------------------------------------
890update_list(hObject, eventdata,handles)
891
892%------------------------------------------------------------------------
893function YObject_Callback(hObject, eventdata, handles)
894%------------------------------------------------------------------------
895update_list(hObject, eventdata,handles)
896
897%------------------------------------------------------------------------
898function ZObject_Callback(hObject, eventdata, handles)
899%------------------------------------------------------------------------
900update_list(hObject, eventdata,handles)
901
902%------------------------------------------------------------------------
903function update_list(hObject, eventdata, handles)
904%------------------------------------------------------------------------
905newval(4)=str2double(get(handles.XImage,'String'));
906newval(5)=str2double(get(handles.YImage,'String'));
907newval(1)=str2double(get(handles.XObject,'String'));
908newval(2)=str2double(get(handles.YObject,'String'));
909newval(3)=str2double(get(handles.ZObject,'String'));
910if isnan(newval(3))
911    newval(3)=0;%put z to 0 by default
912end
913Coord=get(handles.ListCoord,'String');
914Coord(end)=[]; %remove last string '.....'
915val=get(handles.ListCoord,'Value');
916data=read_geometry_calib(Coord);
917data.Coord(val,:)=newval;
918for i=1:size(data.Coord,1)
919    for j=1:5
920          Coord_cell{i,j}=num2str(data.Coord(i,j),4);%display coordiantes with 4 digits
921    end
922end
923
924Tabchar=cell2tab(Coord_cell,' | ');
925Tabchar=[Tabchar ;{'......'}];
926set(handles.ListCoord,'String',Tabchar)
927
928%update the plot
929ListCoord_Callback(hObject, eventdata, handles)
930MenuPlot_Callback(hObject, eventdata, handles)
931
932%------------------------------------------------------------------------
933% --- Executes on selection change in ListCoord.
934function ListCoord_Callback(hObject, eventdata, handles)
935%------------------------------------------------------------------------
936huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle
937hplot=findobj(huvmat,'Tag','axes3');%main plotting axis of uvmat
938hhh=findobj(hplot,'Tag','calib_marker');
939Coord_cell=get(handles.ListCoord,'String');
940val=get(handles.ListCoord,'Value');
941if numel(val)>1
942    return %no action if several lines have been selected
943end
944coord_str=Coord_cell{val};
945k=findstr(' | ',coord_str);
946if isempty(k)%last line '.....' selected
947    if ~isempty(hhh)
948        delete(hhh)%delete the circle marker
949    end
950    return
951end
952%fill the edit boxex
953set(handles.XObject,'String',coord_str(1:k(1)-1))
954set(handles.YObject,'String',coord_str(k(1)+3:k(2)-1))
955set(handles.ZObject,'String',coord_str(k(2)+3:k(3)-1))
956set(handles.XImage,'String',coord_str(k(3)+3:k(4)-1))
957set(handles.YImage,'String',coord_str(k(4)+3:end))
958h_menu_coord=findobj(huvmat,'Tag','transform_fct');
959menu=get(h_menu_coord,'String');
960choice=get(h_menu_coord,'Value');
961if iscell(menu)
962    option=menu{choice};
963else
964    option='px'; %default
965end
966if isequal(option,'phys')
967    XCoord=str2double(coord_str(1:k(1)-1));
968    YCoord=str2double(coord_str(k(1)+3:k(2)-1));
969elseif isequal(option,'px')|| isequal(option,'')
970    XCoord=str2double(coord_str(k(3)+3:k(4)-1));
971    YCoord=str2double(coord_str(k(4)+3:end));
972else
973    msgbox_uvmat('ERROR','the choice in menu_coord of uvmat must be px or phys ')
974end
975if isempty(XCoord)||isempty(YCoord)
976     if ~isempty(hhh)
977        delete(hhh)%delete the circle marker
978    end
979    return
980end
981xlim=get(hplot,'XLim');
982ylim=get(hplot,'YLim');
983ind_range=max(abs(xlim(2)-xlim(1)),abs(ylim(end)-ylim(1)))/20;%defines the size of the circle marker
984if isempty(hhh)
985    set(0,'CurrentFig',huvmat)
986    set(huvmat,'CurrentAxes',hplot)
987    rectangle('Curvature',[1 1],...
988              'Position',[XCoord-ind_range/2 YCoord-ind_range/2 ind_range ind_range],'EdgeColor','m',...
989              'LineStyle','-','Tag','calib_marker');
990else
991    set(hhh,'Position',[XCoord-ind_range/2 YCoord-ind_range/2 ind_range ind_range])
992end
993
994%------------------------------------------------------------------------
995% --- Executes on selection change in edit_append.
996function edit_append_Callback(hObject, eventdata, handles)
997%------------------------------------------------------------------------
998choice=get(handles.edit_append,'Value');
999if choice
1000    set(handles.edit_append,'BackgroundColor',[1 1 0])
1001    huvmat=findobj(allchild(0),'tag','uvmat');
1002    if ishandle(huvmat)
1003        hhuvmat=guidata(huvmat);
1004        set(hhuvmat.edit_object,'Value',0)
1005        set(hhuvmat.edit_object,'BackgroundColor',[0.7 0.7 0.7])
1006    end
1007else
1008    set(handles.edit_append,'BackgroundColor',[0.7 0.7 0.7])
1009end
1010   
1011function NEW_Callback(hObject, eventdata, handles)
1012%A METTRE SOUS UN BOUTON
1013huvmat=findobj(allchild(0),'Name','uvmat');
1014hchild=get(huvmat,'children');
1015hcoord=findobj(hchild,'Tag','menu_coord');
1016coordtype=get(hcoord,'Value');
1017haxes=findobj(hchild,'Tag','axes3');
1018AxeData=get(haxes,'UserData');
1019if ~isequal(hcoord,2)
1020    set(hcoord,'Value',2)
1021    huvmat=uvmat(AxeData);
1022    'relancer uvmat';
1023end
1024if ~isfield(AxeData,'ZoomAxes')
1025    msgbox_uvmat('ERROR','first draw a window around a grid marker')
1026    return
1027end
1028XLim=get(AxeData.ZoomAxes,'XLim');
1029YLim=get(AxeData.ZoomAxes,'YLim');
1030np=size(AxeData.A);
1031ind_sub_x=round(XLim);
1032ind_sub_y=np(1)-round(YLim);
1033Mfiltre=AxeData.A(ind_sub_y(2):ind_sub_y(1) ,ind_sub_x,:);
1034Mfiltre_norm=double(Mfiltre);
1035Mfiltre_norm=Mfiltre_norm/sum(sum(Mfiltre_norm));
1036Mfiltre_norm=100*(Mfiltre_norm-mean(mean(Mfiltre_norm)));
1037Atype=class(AxeData.A);
1038Data.NbDim=2;
1039Data.A=filter2(Mfiltre_norm,double(AxeData.A));
1040Data.A=feval(Atype,Data.A);
1041Data.AName='image';
1042Data.AX=AxeData.AX;
1043Data.AY=AxeData.AY;
1044Data.CoordType='px';
1045plot_field(Data)
1046
1047%------------------------------------------------------------------------
1048function MenuPlot_Callback(hObject, eventdata, handles)
1049%------------------------------------------------------------------------
1050huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle
1051%UvData=get(huvmat,'UserData');%Data associated to the current uvmat interface
1052hhuvmat=guidata(huvmat); %handles of GUI elements in uvmat
1053%hplot=findobj(huvmat,'Tag','axes3');%main plotting axis of uvmat
1054h_menu_coord=findobj(huvmat,'Tag','transform_fct');
1055menu=get(h_menu_coord,'String');
1056choice=get(h_menu_coord,'Value');
1057if iscell(menu)
1058    option=menu{choice};
1059else
1060    option='px'; %default
1061end
1062Coord_cell=get(handles.ListCoord,'String');
1063ObjectData=read_geometry_calib(Coord_cell);
1064%ObjectData=read_geometry_calib(handles);%read the interface input parameters defining the object
1065if ~isempty(ObjectData.Coord)
1066    if isequal(option,'phys')
1067        ObjectData.Coord=ObjectData.Coord(:,1:3);
1068    elseif isequal(option,'px')||isequal(option,'')
1069        ObjectData.Coord=ObjectData.Coord(:,4:5);
1070    else
1071        msgbox_uvmat('ERROR','the choice in menu_coord of uvmat must be '''', px or phys ')
1072    end
1073end
1074axes(hhuvmat.axes3)
1075hh=findobj('Tag','calib_points');
1076if  ~isempty(ObjectData.Coord) && isempty(hh)
1077    hh=line(ObjectData.Coord(:,1),ObjectData.Coord(:,2),'Color','m','Tag','calib_points','LineStyle','.','Marker','+');
1078elseif isempty(ObjectData.Coord)%empty list of points, suppress the plot
1079    delete(hh)
1080else
1081    set(hh,'XData',ObjectData.Coord(:,1))
1082    set(hh,'YData',ObjectData.Coord(:,2))
1083end
1084pause(.1)
1085figure(handles.geometry_calib)
1086
1087% --------------------------------------------------------------------
1088function MenuHelp_Callback(hObject, eventdata, handles)
1089path_to_uvmat=which('uvmat');% check the path of uvmat
1090pathelp=fileparts(path_to_uvmat);
1091helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
1092if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package')
1093else
1094   addpath (fullfile(pathelp,'uvmat_doc'))
1095   web([helpfile '#geometry_calib'])
1096end
1097
1098%------------------------------------------------------------------------
1099function MenuCreateGrid_Callback(hObject, eventdata, handles)
1100%------------------------------------------------------------------------
1101%hcalib=get(handles.calib_type,'parent');%handles of the GUI geometry_calib
1102CalibData=get(handles.geometry_calib,'UserData');
1103Tinput=[];%default
1104if isfield(CalibData,'grid')
1105    Tinput=CalibData.grid;
1106end
1107[T,CalibData.grid]=create_grid(Tinput);%display the GUI create_grid
1108set(handles.geometry_calib,'UserData',CalibData)
1109
1110%grid in phys space
1111Coord=get(handles.ListCoord,'String');
1112val=get(handles.ListCoord,'Value');
1113data=read_geometry_calib(Coord);
1114%nbpoints=size(data.Coord,1); %nbre of calibration points
1115data.Coord(val:val+size(T,1)-1,1:3)=T(end:-1:1,:);%update the existing list of phys coordinates from the GUI create_grid
1116% for i=1:nbpoints
1117%    for j=1:5
1118%           Coord{i,j}=num2str(data.Coord(i,j),4);%display coordiantes with 4 digits
1119%    end
1120% end
1121%update the phys coordinates starting from the selected point (down in the
1122Coord(end,:)=[]; %remove last string '.....'
1123for i=1:size(data.Coord,1)
1124    for j=1:5
1125          Coord{i,j}=num2str(data.Coord(i,j),4);%display coordiantes with 4 digits
1126    end
1127end
1128
1129%size(data.Coord,1)
1130Tabchar=cell2tab(Coord,' | ');
1131Tabchar=[Tabchar ;{'......'}];
1132set(handles.ListCoord,'String',Tabchar)
1133
1134% -----------------------------------------------------------------------
1135% --- automatic grid dectection from local maxima of the images
1136function MenuDetectGrid_Callback(hObject, eventdata, handles)
1137%------------------------------------------------------------------------
1138%% read the four last point coordinates in pixels
1139Coord_cell=get(handles.ListCoord,'String');%read list of coordinates on geometry_calib
1140data=read_geometry_calib(Coord_cell);
1141nbpoints=size(data.Coord,1); %nbre of calibration points
1142if nbpoints~=4
1143    msgbox_uvmat('ERROR','four points must have be selected by the mouse to delimitate the phys grid area; the Ox axis will be defined by the two first points')
1144    return
1145end
1146corners_X=(data.Coord(end:-1:end-3,4)); %pixel absissa of the four corners
1147corners_Y=(data.Coord(end:-1:end-3,5));
1148
1149%reorder the last two points (the two first in the list) if needed
1150angles=angle((corners_X-corners_X(1))+1i*(corners_Y-corners_Y(1)));
1151if abs(angles(4)-angles(2))>abs(angles(3)-angles(2))
1152      X_end=corners_X(4);
1153      Y_end=corners_Y(4);
1154      corners_X(4)=corners_X(3);
1155      corners_Y(4)=corners_Y(3);
1156      corners_X(3)=X_end;
1157      corners_Y(3)=Y_end;
1158end
1159
1160%% initiate the grid
1161CalibData=get(handles.geometry_calib,'UserData');%get information stored on the GUI geometry_calib
1162grid_input=[];%default
1163if isfield(CalibData,'grid')
1164    grid_input=CalibData.grid;%retrieve the previously used grid
1165end
1166[T,CalibData.grid,white_test]=create_grid(grid_input,'detect_grid');%display the GUI create_grid, read the set of phys coordinates T
1167set(handles.geometry_calib,'UserData',CalibData)%store the phys grid parameters for later use
1168
1169
1170
1171%% read the current image, displayed in the GUI uvmat
1172huvmat=findobj(allchild(0),'Name','uvmat');
1173UvData=get(huvmat,'UserData');
1174A=UvData.Field.A;
1175npxy=size(A);
1176X=[CalibData.grid.x_0 CalibData.grid.x_1 CalibData.grid.x_0 CalibData.grid.x_1]';%corner absissa in the phys coordinates (cm)
1177Y=[CalibData.grid.y_0 CalibData.grid.y_0 CalibData.grid.y_1 CalibData.grid.y_1]';%corner ordinates in the phys coordinates (cm)
1178
1179%calculate transform matrices for plane projection
1180% reference: http://alumni.media.mit.edu/~cwren/interpolator/ by Christopher R. Wren
1181B = [ X Y ones(size(X)) zeros(4,3)        -X.*corners_X -Y.*corners_X ...
1182      zeros(4,3)        X Y ones(size(X)) -X.*corners_Y -Y.*corners_Y ];
1183B = reshape (B', 8 , 8 )';
1184D = [ corners_X , corners_Y ];
1185D = reshape (D', 8 , 1 );
1186l = (B' * B)\B' * D;
1187Amat = reshape([l(1:6)' 0 0 1 ],3,3)';
1188C = [l(7:8)' 1];
1189
1190% transform grid image into 'phys' coordinates
1191GeometryCalib.fx_fy=[1 1];
1192GeometryCalib.Tx_Ty_Tz=[Amat(1,3) Amat(2,3) 1];
1193GeometryCalib.R=[Amat(1,1),Amat(1,2),0;Amat(2,1),Amat(2,2),0;C(1),C(2),0];
1194GeometryCalib.CoordUnit='cm';
1195path_uvmat=which('uvmat');% check the path detected for source file uvmat
1196path_UVMAT=fileparts(path_uvmat); %path to UVMAT
1197addpath(fullfile(path_UVMAT,'transform_field'))
1198Data.ListVarName={'AY','AX','A'};
1199Data.VarDimName={'AY','AX',{'AY','AX'}};
1200if ndims(A)==3
1201    A=mean(A,3);
1202end
1203Data.A=A-min(min(A));
1204Data.AY=[npxy(1)-0.5 0.5];
1205Data.AX=[0.5 npxy(2)];
1206Data.CoordUnit='pixel';
1207Calib.GeometryCalib=GeometryCalib;
1208DataOut=phys(Data,Calib);
1209rmpath(fullfile(path_UVMAT,'transform_field'))
1210Amod=DataOut.A;
1211Rangx=DataOut.AX;
1212Rangy=DataOut.AY;
1213if white_test
1214    Amod=double(Amod);%case of white grid markers: will look for image maxima
1215else
1216    Amod=-double(Amod);%case of black grid markers: will look for image minima
1217end
1218% figure(12) %display corrected image
1219% Amax=max(max(Amod));
1220% image(Rangx,Rangy,uint8(255*Amod/Amax))
1221
1222%% detection of local image extrema in each direction
1223Dx=(Rangx(2)-Rangx(1))/(npxy(2)-1); %x mesh in real space
1224Dy=(Rangy(2)-Rangy(1))/(npxy(1)-1); %y mesh in real space
1225ind_range_x=ceil(abs(GeometryCalib.R(1,1)*CalibData.grid.Dx/3));% range of search of image ma around each point obtained by linear interpolation from the marked points
1226ind_range_y=ceil(abs(GeometryCalib.R(2,2)*CalibData.grid.Dy/3));% range of search of image ma around each point obtained by linear interpolation from the marked points
1227nbpoints=size(T,1);
1228for ipoint=1:nbpoints
1229    i0=1+round((T(ipoint,1)-Rangx(1))/Dx);%round(Xpx(ipoint));
1230    j0=1+round((T(ipoint,2)-Rangy(1))/Dy);%round(Xpx(ipoint));
1231    j0min=max(j0-ind_range_y,1);
1232    j0max=min(j0+ind_range_y,size(Amod,1));
1233    i0min=max(i0-ind_range_x,1);
1234    i0max=min(i0+ind_range_x,size(Amod,2));
1235    Asub=Amod(j0min:j0max,i0min:i0max);
1236    x_profile=sum(Asub,1);
1237    y_profile=sum(Asub,2);
1238    [Amax,ind_x_max]=max(x_profile);
1239    [Amax,ind_y_max]=max(y_profile);
1240    %sub-pixel improvement using moments
1241    x_shift=0;
1242    y_shift=0;
1243    if ind_x_max+2<=numel(x_profile) && ind_x_max-2>=1
1244        Atop=x_profile(ind_x_max-2:ind_x_max+2);
1245        x_shift=sum(Atop.*[-2 -1 0 1 2])/sum(Atop);
1246    end
1247    if ind_y_max+2<=numel(y_profile) && ind_y_max-2>=1
1248        Atop=y_profile(ind_y_max-2:ind_y_max+2);
1249        y_shift=sum(Atop.*[-2 -1 0 1 2]')/sum(Atop);
1250    end
1251    Delta(ipoint,1)=(x_shift+ind_x_max+i0min-i0-1)*Dx;%shift from the initial guess
1252    Delta(ipoint,2)=(y_shift+ind_y_max+j0min-j0-1)*Dy;
1253end
1254Tmod=T(:,(1:2))+Delta;
1255[Xpx,Ypx]=px_XYZ(GeometryCalib,Tmod(:,1),Tmod(:,2));
1256for ipoint=1:nbpoints
1257     Coord{ipoint,1}=num2str(T(ipoint,1),4);%display coordiantes with 4 digits
1258     Coord{ipoint,2}=num2str(T(ipoint,2),4);%display coordiantes with 4 digits
1259     Coord{ipoint,3}=num2str(T(ipoint,3),4);%display coordiantes with 4 digits;
1260     Coord{ipoint,4}=num2str(Xpx(ipoint),4);%display coordiantes with 4 digits
1261     Coord{ipoint,5}=num2str(Ypx(ipoint),4);%display coordiantes with 4 digits
1262end
1263Tabchar=cell2tab(Coord(end:-1:1,:),' | ');
1264Tabchar=[Tabchar ;{'......'}];
1265set(handles.ListCoord,'Value',1)
1266set(handles.ListCoord,'String',Tabchar)
1267MenuPlot_Callback(hObject, eventdata, handles)
1268
1269%-----------------------------------------------------------------------
1270function MenuTranslatePoints_Callback(hObject, eventdata, handles)
1271%-----------------------------------------------------------------------
1272%hcalib=get(handles.calib_type,'parent');%handles of the GUI geometry_calib
1273CalibData=get(handles.geometry_calib,'UserData');
1274Tinput=[];%default
1275if isfield(CalibData,'translate')
1276    Tinput=CalibData.translate;
1277end
1278T=translate_points(Tinput);%display translate_points GUI and get shift parameters
1279CalibData.translate=T;
1280set(handles.geometry_calib,'UserData',CalibData)
1281%translation
1282Coord_cell=get(handles.ListCoord,'String');
1283data=read_geometry_calib(Coord_cell);
1284data.Coord(:,1)=T(1)+data.Coord(:,1);
1285data.Coord(:,2)=T(2)+data.Coord(:,2);
1286data.Coord(:,3)=T(3)+data.Coord(:,3);
1287data.Coord(:,[4 5])=data.Coord(:,[4 5]);
1288for i=1:size(data.Coord,1)
1289    for j=1:5
1290          Coord{i,j}=num2str(data.Coord(i,j),4);%phys x,y,z
1291   end
1292end
1293Tabchar=cell2tab(Coord,' | ');
1294Tabchar=[Tabchar; {'.....'}];
1295%set(handles.ListCoord,'Value',1)
1296set(handles.ListCoord,'String',Tabchar)
1297
1298
1299% --------------------------------------------------------------------
1300function MenuRotatePoints_Callback(hObject, eventdata, handles)
1301%hcalib=get(handles.calib_type,'parent');%handles of the GUI geometry_calib
1302CalibData=get(handles.geometry_calib,'UserData');
1303Tinput=[];%default
1304if isfield(CalibData,'rotate')
1305    Tinput=CalibData.rotate;
1306end
1307T=rotate_points(Tinput);%display translate_points GUI and get shift parameters
1308CalibData.rotate=T;
1309set(handles.geometry_calib,'UserData',CalibData)
1310%-----------------------------------------------------
1311%rotation
1312Phi=T(1);
1313O_x=0;%default
1314O_y=0;%default
1315if numel(T)>=2
1316    O_x=T(2);%default
1317end
1318if numel(T)>=3
1319    O_y=T(3);%default
1320end
1321Coord_cell=get(handles.ListCoord,'String');
1322data=read_geometry_calib(Coord_cell);
1323r1=cos(pi*Phi/180);
1324r2=-sin(pi*Phi/180);
1325r3=sin(pi*Phi/180);
1326r4=cos(pi*Phi/180);
1327x=data.Coord(:,1)-O_x;
1328y=data.Coord(:,2)-O_y;
1329data.Coord(:,1)=r1*x+r2*y;
1330data.Coord(:,2)=r3*x+r4*y;
1331% data.Coord(:,[4 5])=data.Coord(:,[4 5]);
1332for i=1:size(data.Coord,1)
1333    for j=1:5
1334          Coord{i,j}=num2str(data.Coord(i,j),4);%phys x,y,z
1335   end
1336end
1337Tabchar=cell2tab(Coord,' | ');
1338Tabchar=[Tabchar;{'......'}];
1339set(handles.ListCoord,'Value',1)
1340set(handles.ListCoord,'String',Tabchar)
1341
1342
1343% %------------------------------------------------------------------------
1344% % --- Executes on button press in rotation.
1345% function rotation_Callback(hObject, eventdata, handles)
1346% %------------------------------------------------------------------------
1347% angle_rot=(pi/180)*str2num(get(handles.Phi,'String'));
1348% Coord_cell=get(handles.ListCoord,'String');
1349% data=read_geometry_calib(Coord_cell);
1350% data.Coord(:,1)=cos(angle_rot)*data.Coord(:,1)+sin(angle_rot)*data.Coord(:,2);
1351% data.Coord(:,1)=-sin(angle_rot)*data.Coord(:,1)+cos(angle_rot)*data.Coord(:,2);
1352% set(handles.XObject,'String',num2str(data.Coord(:,1),4));
1353% set(handles.YObject,'String',num2str(data.Coord(:,2),4));
1354
1355
1356%------------------------------------------------------------------------
1357% image transform from px to phys
1358%INPUT:
1359%Zindex: index of plane
1360% function [A_out,Rangx,Rangy]=phys_Ima(A,Calib,ZIndex)
1361% %------------------------------------------------------------------------
1362% xcorner=[];
1363% ycorner=[];
1364% npx=[];
1365% npy=[];
1366% siz=size(A)
1367% npx=[npx siz(2)];
1368% npy=[npy siz(1)]
1369% xima=[0.5 siz(2)-0.5 0.5 siz(2)-0.5];%image coordinates of corners
1370% yima=[0.5 0.5 siz(1)-0.5 siz(1)-0.5];
1371% [xcorner,ycorner]=phys_XYZ(Calib,xima,yima,ZIndex);%corresponding physical coordinates
1372% Rangx(1)=min(xcorner);
1373% Rangx(2)=max(xcorner);
1374% Rangy(2)=min(ycorner);
1375% Rangy(1)=max(ycorner);
1376% test_multi=(max(npx)~=min(npx)) | (max(npy)~=min(npy));
1377% npx=max(npx);
1378% npy=max(npy);
1379% x=linspace(Rangx(1),Rangx(2),npx);
1380% y=linspace(Rangy(1),Rangy(2),npy);
1381% [X,Y]=meshgrid(x,y);%grid in physical coordiantes
1382% vec_B=[];
1383%
1384% zphys=0; %default
1385% if isfield(Calib,'SliceCoord') %.Z= index of plane
1386%    SliceCoord=Calib.SliceCoord(ZIndex,:);
1387%    zphys=SliceCoord(3); %to generalize for non-parallel planes
1388% end
1389% [XIMA,YIMA]=px_XYZ(Calib,X,Y,zphys);%corresponding image indices for each point in the real space grid
1390% XIMA=reshape(round(XIMA),1,npx*npy);%indices reorganized in 'line'
1391% YIMA=reshape(round(YIMA),1,npx*npy);
1392% flagin=XIMA>=1 & XIMA<=npx & YIMA >=1 & YIMA<=npy;%flagin=1 inside the original image
1393% testuint8=isa(A,'uint8');
1394% testuint16=isa(A,'uint16');
1395% if numel(siz)==2 %(B/W images)
1396%     vec_A=reshape(A,1,npx*npy);%put the original image in line
1397%     ind_in=find(flagin);
1398%     ind_out=find(~flagin);
1399%     ICOMB=((XIMA-1)*npy+(npy+1-YIMA));
1400%     ICOMB=ICOMB(flagin);%index corresponding to XIMA and YIMA in the aligned original image vec_A
1401%     vec_B(ind_in)=vec_A(ICOMB);
1402%     vec_B(ind_out)=zeros(size(ind_out));
1403%     A_out=reshape(vec_B,npy,npx);%new image in real coordinates
1404% elseif numel(siz)==3     
1405%     for icolor=1:siz(3)
1406%         vec_A=reshape(A{icell}(:,:,icolor),1,npx*npy);%put the original image in line
1407%         ind_in=find(flagin);
1408%         ind_out=find(~flagin);
1409%         ICOMB=((XIMA-1)*npy+(npy+1-YIMA));
1410%         ICOMB=ICOMB(flagin);%index corresponding to XIMA and YIMA in the aligned original image vec_A
1411%         vec_B(ind_in)=vec_A(ICOMB);
1412%         vec_B(ind_out)=zeros(size(ind_out));
1413%         A_out(:,:,icolor)=reshape(vec_B,npy,npx);%new image in real coordinates
1414%     end
1415% end
1416% if testuint8
1417%     A_out=uint8(A_out);
1418% end
1419% if testuint16
1420%     A_out=uint16(A_out);
1421% end
1422
1423%------------------------------------------------------------------------
1424% pointwise transform from px to phys
1425%INPUT:
1426%Z: index of plane
1427% function [Xphys,Yphys,Zphys]=phys_XYZ(Calib,X,Y,Z)
1428% %------------------------------------------------------------------------
1429% if exist('Z','var')& isequal(Z,round(Z))& Z>0 & isfield(Calib,'SliceCoord')&length(Calib.SliceCoord)>=Z
1430%     Zindex=Z;
1431%     Zphys=Calib.SliceCoord(Zindex,3);%GENERALISER AUX CAS AVEC ANGLE
1432% else
1433%     Zphys=0;
1434% end
1435% if ~exist('X','var')||~exist('Y','var')
1436%     Xphys=[];
1437%     Yphys=[];%default
1438%     return
1439% end
1440% Xphys=X;%default
1441% Yphys=Y;
1442% %image transform
1443% if isfield(Calib,'R')
1444%     R=(Calib.R)';
1445%     Dx=R(5)*R(7)-R(4)*R(8);
1446%     Dy=R(1)*R(8)-R(2)*R(7);
1447%     D0=Calib.f*(R(2)*R(4)-R(1)*R(5));
1448%     Z11=R(6)*R(8)-R(5)*R(9);
1449%     Z12=R(2)*R(9)-R(3)*R(8); 
1450%     Z21=R(4)*R(9)-R(6)*R(7);
1451%     Z22=R(3)*R(7)-R(1)*R(9);
1452%     Zx0=R(3)*R(5)-R(2)*R(6);
1453%     Zy0=R(1)*R(6)-R(3)*R(4);
1454%     A11=R(8)*Calib.Ty-R(5)*Calib.Tz+Z11*Zphys;
1455%     A12=R(2)*Calib.Tz-R(8)*Calib.Tx+Z12*Zphys;
1456%     A21=-R(7)*Calib.Ty+R(4)*Calib.Tz+Z21*Zphys;
1457%     A22=-R(1)*Calib.Tz+R(7)*Calib.Tx+Z11*Zphys;
1458%     X0=Calib.f*(R(5)*Calib.Tx-R(2)*Calib.Ty+Zx0*Zphys);
1459%     Y0=Calib.f*(-R(4)*Calib.Tx+R(1)*Calib.Ty+Zy0*Zphys);
1460%         %px to camera:
1461%     Xd=(Calib.dpx/Calib.sx)*(X-Calib.Cx); % sensor coordinates
1462%     Yd=Calib.dpy*(Y-Calib.Cy);
1463%     dist_fact=1+Calib.kappa1*(Xd.*Xd+Yd.*Yd); %distortion factor
1464%     Xu=dist_fact.*Xd;%undistorted sensor coordinates
1465%     Yu=dist_fact.*Yd;
1466%     denom=Dx*Xu+Dy*Yu+D0;
1467%     % denom2=denom.*denom;
1468%     Xphys=(A11.*Xu+A12.*Yu+X0)./denom;%world coordinates
1469%     Yphys=(A21.*Xu+A22.*Yu+Y0)./denom;
1470% end
1471
1472
1473% --------------------------------------------------------------------
1474function MenuImportPoints_Callback(hObject, eventdata, handles)
1475fileinput=browse_xml(hObject, eventdata, handles);
1476if isempty(fileinput)
1477    return
1478end
1479[s,errormsg]=imadoc2struct(fileinput,'GeometryCalib');
1480GeometryCalib=s.GeometryCalib;
1481%GeometryCalib=load_calib(hObject, eventdata, handles)
1482calib=reshape(GeometryCalib.PointCoord,[],1);
1483for ilist=1:numel(calib)
1484    CoordCell{ilist}=num2str(calib(ilist));
1485end
1486CoordCell=reshape(CoordCell,[],5);
1487Tabchar=cell2tab(CoordCell,' | ');%transform cells into table ready for display
1488Tabchar=[Tabchar;{'......'}];
1489set(handles.ListCoord,'Value',1)
1490set(handles.ListCoord,'String',Tabchar)
1491MenuPlot_Callback(handles.geometry_calib, [], handles)
1492
1493% -----------------------------------------------------------------------
1494function MenuImportIntrinsic_Callback(hObject, eventdata, handles)
1495%------------------------------------------------------------------------
1496fileinput=browse_xml(hObject, eventdata, handles);
1497if isempty(fileinput)
1498    return
1499end
1500[s,errormsg]=imadoc2struct(fileinput,'GeometryCalib');
1501GeometryCalib=s.GeometryCalib;
1502display_intrinsic(GeometryCalib,handles)
1503
1504% -----------------------------------------------------------------------
1505function MenuImportAll_Callback(hObject, eventdata, handles)
1506%------------------------------------------------------------------------
1507fileinput=browse_xml(hObject, eventdata, handles);
1508if ~isempty(fileinput)
1509    loadfile(handles,fileinput)
1510end
1511
1512% -----------------------------------------------------------------------
1513% --- Executes on menubar option Import/Grid file: introduce previous grid files
1514function MenuGridFile_Callback(hObject, eventdata, handles)
1515% -----------------------------------------------------------------------
1516inputfile=browse_xml(hObject, eventdata, handles);
1517listfile=get(handles.coord_files,'string');
1518if isequal(listfile,{''})
1519    listfile={inputfile};
1520else
1521    listfile=[listfile;{inputfile}];%update the list of coord files
1522end
1523set(handles.coord_files,'string',listfile);
1524
1525%------------------------------------------------------------------------
1526% --- 'key_press_fcn:' function activated when a key is pressed on the keyboard
1527function key_press_fcn(hObject,eventdata,handles)
1528%------------------------------------------------------------------------
1529xx=double(get(handles.geometry_calib,'CurrentCharacter')); %get the keyboard character
1530if ismember(xx,[8 127])%backspace or delete
1531    Coord_cell=get(handles.ListCoord,'String');
1532    val=get(handles.ListCoord,'Value');
1533     if max(val)<numel(Coord_cell) % the last element '...' has not been selected
1534        Coord_cell(val)=[];%remove the selected line
1535        set(handles.ListCoord,'Value',min(val))
1536        set(handles.ListCoord,'String',Coord_cell)         
1537        ListCoord_Callback(hObject, eventdata, handles)
1538        MenuPlot_Callback(hObject,eventdata,handles)
1539     end
1540end
1541
1542%------------------------------------------------------------------------
1543function fileinput=browse_xml(hObject, eventdata, handles)
1544%------------------------------------------------------------------------
1545fileinput=[];%default
1546oldfile=''; %default
1547UserData=get(handles.geometry_calib,'UserData');
1548if isfield(UserData,'XmlInputFile')
1549    oldfile=UserData.XmlInputFile;
1550end
1551[FileName, PathName, filterindex] = uigetfile( ...
1552       {'*.xml;*.mat', ' (*.xml,*.mat)';
1553       '*.xml',  '.xml files '; ...
1554        '*.mat',  '.mat matlab files '}, ...
1555        'Pick a file',oldfile);
1556fileinput=[PathName FileName];%complete file name
1557testblank=findstr(fileinput,' ');%look for blanks
1558if ~isempty(testblank)
1559    msgbox_uvmat('ERROR','forbidden input file name or path: no blank character allowed')
1560    return
1561end
1562sizf=size(fileinput);
1563if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end
1564UserData.XmlInputFile=fileinput;
1565set(handles.geometry_calib,'UserData',UserData)%record current file foer further use of browser
1566
1567% -----------------------------------------------------------------------
1568function Heading=loadfile(handles,fileinput)
1569%------------------------------------------------------------------------
1570Heading=[];%default
1571[s,errormsg]=imadoc2struct(fileinput,'GeometryCalib');
1572if ~isempty(errormsg)
1573    msgbox_uvmat('ERROR',['Error for reading ' fileinput ': '  errormsg])
1574    return
1575end
1576if ~isempty(s.Heading)
1577    Heading=s.Heading;
1578end
1579   
1580GeometryCalib=s.GeometryCalib;
1581fx=1;fy=1;Cx=0;Cy=0;kc=0; %default
1582%     Tabchar={};
1583CoordCell={};
1584%     kc=0;%default
1585%     f1=1000;
1586%     f2=1000;
1587%     hhuvmat=guidata(findobj(allchild(0),'Name','uvmat'));
1588%     Cx=str2num(get(hhuvmat.npx,'String'))/2;
1589%     Cy=str2num(get(hhuvmat.npy,'String'))/2;
1590Tabchar={};%default
1591val_cal=1;%default
1592if ~isempty(GeometryCalib)
1593    % choose the calibration option
1594    if isfield(GeometryCalib,'CalibrationType')
1595       calib_list=get(handles.calib_type,'String');
1596       for ilist=1:numel(calib_list)
1597           if strcmp(calib_list{ilist},GeometryCalib.CalibrationType)
1598               val_cal=ilist;
1599               break
1600           end
1601       end
1602    end
1603    display_intrinsic(GeometryCalib,handles)%intrinsic param
1604    %extrinsic param
1605    if isfield(GeometryCalib,'Tx_Ty_Tz')
1606        Tx_Ty_Tz=GeometryCalib.Tx_Ty_Tz;
1607        set(handles.Tx,'String',num2str(GeometryCalib.Tx_Ty_Tz(1),4))
1608        set(handles.Ty,'String',num2str(GeometryCalib.Tx_Ty_Tz(2),4))
1609        set(handles.Tz,'String',num2str(GeometryCalib.Tx_Ty_Tz(3),4))
1610    end
1611    if isfield(GeometryCalib,'omc')
1612        set(handles.Phi,'String',num2str(GeometryCalib.omc(1),4))
1613        set(handles.Theta,'String',num2str(GeometryCalib.omc(2),4))
1614        set(handles.Psi,'String',num2str(GeometryCalib.omc(3),4))
1615    end
1616    calib=reshape(GeometryCalib.PointCoord,[],1);
1617    for ilist=1:numel(calib)
1618        CoordCell{ilist}=num2str(calib(ilist));
1619    end
1620    CoordCell=reshape(CoordCell,[],5);
1621    Tabchar=cell2tab(CoordCell,' | ');%transform cells into table ready for display
1622    MenuPlot_Callback(handles.geometry_calib, [], handles)
1623end
1624set(handles.calib_type,'Value',val_cal)
1625Tabchar=[Tabchar;{'......'}];
1626set(handles.ListCoord,'Value',1)
1627set(handles.ListCoord,'String',Tabchar)
1628
1629if isempty(CoordCell)% allow mouse action by default in the absence of input points
1630    set(handles.edit_append,'Value',1)
1631    set(handles.edit_append,'BackgroundColor',[1 1 0])
1632else % does not allow mouse action by default in the presence of input points
1633    set(handles.edit_append,'Value',0)
1634    set(handles.edit_append,'BackgroundColor',[0.7 0.7 0.7])
1635end
1636
1637%------------------------------------------------------------------------
1638%---display calibration intrinsic parameters
1639function display_intrinsic(GeometryCalib,handles)
1640%------------------------------------------------------------------------
1641fx=[];
1642fy=[];
1643if isfield(GeometryCalib,'fx_fy')
1644    fx=GeometryCalib.fx_fy(1);
1645    fy=GeometryCalib.fx_fy(2);
1646end
1647Cx_Cy=[0 0];%default
1648if isfield(GeometryCalib,'Cx_Cy')
1649    Cx_Cy=GeometryCalib.Cx_Cy;
1650end
1651kc=0;
1652if isfield(GeometryCalib,'kc')
1653    kc=GeometryCalib.kc; %* GeometryCalib.focal*GeometryCalib.focal;
1654end
1655set(handles.fx,'String',num2str(fx,5))
1656set(handles.fy,'String',num2str(fy,5))
1657set(handles.Cx,'String',num2str(Cx_Cy(1),'%1.1f'))
1658set(handles.Cy,'String',num2str(Cx_Cy(2),'%1.1f'))
1659set(handles.kc,'String',num2str(kc,'%1.4f'))
1660
1661
Note: See TracBrowser for help on using the repository browser.