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 | |
---|
28 | function 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 11-Apr-2014 23:10:57 |
---|
53 | |
---|
54 | % Begin initialization code - DO NOT edit |
---|
55 | gui_Singleton = 1; |
---|
56 | gui_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', []); |
---|
62 | if nargin |
---|
63 | [pp,ff]=fileparts(which(varargin{1})); % name of the input file |
---|
64 | if strcmp(ff,mfilename)% if we are activating a sub-function of geometry_calib |
---|
65 | % ~isempty(regexp(varargin{1},'_Callback','once')) |
---|
66 | gui_State.gui_Callback = str2func(varargin{1}); |
---|
67 | end |
---|
68 | end |
---|
69 | |
---|
70 | if nargout |
---|
71 | [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); |
---|
72 | else |
---|
73 | gui_mainfcn(gui_State, varargin{:}); |
---|
74 | end |
---|
75 | % End initialization code - DO NOT edit |
---|
76 | |
---|
77 | |
---|
78 | % --- Executes just before geometry_calib is made visible. |
---|
79 | %INPUT: |
---|
80 | %handles: handles of the geometry_calib interface elements |
---|
81 | % PlotHandles: set of handles of the elements contolling the plotting |
---|
82 | % parameters on the uvmat interface (obtained by 'get_plot_handle.m') |
---|
83 | %------------------------------------------------------------------------ |
---|
84 | function geometry_calib_OpeningFcn(hObject, eventdata, handles,inputfile) |
---|
85 | %------------------------------------------------------------------------ |
---|
86 | % Choose default command line output for geometry_calib |
---|
87 | |
---|
88 | handles.output = hObject; |
---|
89 | |
---|
90 | % Update handles structure |
---|
91 | guidata(hObject, handles); |
---|
92 | set(hObject,'DeleteFcn',{@closefcn})% |
---|
93 | %set(hObject,'WindowButtonDownFcn',{'mouse_alt_gui',handles}) % allows mouse action with right button (zoom for uicontrol display) |
---|
94 | |
---|
95 | %% position |
---|
96 | set(0,'Unit','pixels') |
---|
97 | ScreenSize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right |
---|
98 | Left=ScreenSize(3)- 460; %right edge close to the right, with margin=40 (GUI width=420 px) |
---|
99 | if ScreenSize(4)>920 |
---|
100 | Height=840;%default height of the GUI |
---|
101 | Bottom=ScreenSize(4)-Height-40; %put fig at top right |
---|
102 | else |
---|
103 | Height=ScreenSize(4)-80; |
---|
104 | Bottom=40; % GUI lies o the screen bottom (with margin =40) |
---|
105 | end |
---|
106 | set(handles.calib_type,'Position',[1 Height-40 194 30])% rank 1 |
---|
107 | set(handles.APPLY,'Position',[197 Height-40 110 30])% rank 1 |
---|
108 | set(handles.REPLICATE,'Position',[309 Height-40 110 30])% rank 1 |
---|
109 | set(handles.Intrinsic,'Position',[1 Height-40-2-92 418 92])% rank 2 |
---|
110 | set(handles.Extrinsic,'Position',[1 Height-40-4-92-75 418 75])% rank 3 |
---|
111 | set(handles.PointLists,'Position',[1 Height-40-6-92-75-117 418 117]) % rank 4 |
---|
112 | set(handles.CheckEnableMouse,'Position',[3 Height-40-8-92-75-117-30 180 30])% rank 5 |
---|
113 | set(handles.PLOT,'Position',[3 Height-394 120 30])% rank 6 |
---|
114 | set(handles.Copy,'Position',[151 Height-394 120 30])% rank 6 |
---|
115 | set(handles.CLEAR_PTS,'Position',[297 Height-394 120 30])% rank 6 |
---|
116 | set(handles.ClearLine,'Position',[297 Height-364 120 30])% rank 6 |
---|
117 | set(handles.CoordLine,'Position',[177 Height-364 120 30])% rank 6 |
---|
118 | set(handles.phys_title,'Position',[38 Height-426 125 20])% rank 7 |
---|
119 | set(handles.CoordUnit,'Position',[151 Height-426 120 30])% rank 7 |
---|
120 | set(handles.px_title,'Position',[272 Height-426 125 20])% rank 7 |
---|
121 | set(handles.ListCoord,'Position',[1 20 418 Height-446])% rank 8 |
---|
122 | set(handles.geometry_calib,'Position',[Left Bottom 420 Height]) |
---|
123 | |
---|
124 | %set menu of calibration options |
---|
125 | set(handles.calib_type,'String',{'rescale';'linear';'3D_linear';'3D_quadr';'3D_extrinsic'}) |
---|
126 | if exist('inputfile','var')&& ~isempty(inputfile) |
---|
127 | % struct.XmlInputFile=inputfile; |
---|
128 | [RootPath,SubDir,RootFile,tild,tild,tild,tild,FileExt]=fileparts_uvmat(inputfile); |
---|
129 | struct.XmlInputFile=find_imadoc(RootPath,SubDir,RootFile,FileExt); |
---|
130 | % if ~strcmp(FileExt,'.xml') |
---|
131 | % inputfile=fullfile(RootPath,[SubDir '.xml']);%xml file corresponding to the input file |
---|
132 | % if ~exist(inputfile,'file')% case of civ files , removes the extension for subdir |
---|
133 | % inputfile=fullfile(RootPath,[regexprep(SubDir,'\..+$','') '.xml']); |
---|
134 | % if ~exist(inputfile,'file') |
---|
135 | % inputfile=[fullfile(RootPath,SubDir,RootFile) '.xml'];%old convention |
---|
136 | % if ~exist(inputfile,'file') |
---|
137 | % inputfile=''; |
---|
138 | % end |
---|
139 | % end |
---|
140 | % end |
---|
141 | % end |
---|
142 | set(handles.ListCoord,'Data',[]) |
---|
143 | if exist(struct.XmlInputFile,'file') |
---|
144 | Heading=loadfile(handles,struct.XmlInputFile);% load data from the xml file and fill the GUI |
---|
145 | if isfield(Heading,'Campaign')&& ischar(Heading.Campaign) |
---|
146 | struct.Campaign=Heading.Campaign; |
---|
147 | end |
---|
148 | end |
---|
149 | set(hObject,'UserData',struct) |
---|
150 | end |
---|
151 | |
---|
152 | %------------------------------------------------------------------------ |
---|
153 | % --- Outputs from this function are returned to the command line. |
---|
154 | function varargout = geometry_calib_OutputFcn(~, eventdata, handles) |
---|
155 | %------------------------------------------------------------------------ |
---|
156 | % Get default command line output from handles structure |
---|
157 | varargout{1} = handles.output; |
---|
158 | varargout{2}=handles; |
---|
159 | % |
---|
160 | %------------------------------------------------------------------------ |
---|
161 | % executed when closing: set the parent interface button to value 0 |
---|
162 | function closefcn(gcbo,eventdata) |
---|
163 | %------------------------------------------------------------------------ |
---|
164 | huvmat=findobj(allchild(0),'Name','uvmat'); |
---|
165 | if ~isempty(huvmat) |
---|
166 | handles=guidata(huvmat); |
---|
167 | set(handles.MenuCalib,'Checked','off') |
---|
168 | hobject=findobj(handles.PlotAxes,'tag','calib_points'); |
---|
169 | if ~isempty(hobject) |
---|
170 | delete(hobject) |
---|
171 | end |
---|
172 | hobject=findobj(handles.PlotAxes,'tag','calib_marker'); |
---|
173 | if ~isempty(hobject) |
---|
174 | delete(hobject) |
---|
175 | end |
---|
176 | end |
---|
177 | |
---|
178 | %------------------------------------------------------------------------ |
---|
179 | % --- Executes on button press APPLY (used to launch the calibration). |
---|
180 | function APPLY_Callback(hObject, eventdata, handles) |
---|
181 | %------------------------------------------------------------------------ |
---|
182 | %% look for the GUI uvmat and check for an image as input |
---|
183 | set(handles.APPLY,'BackgroundColor',[1 1 0]) |
---|
184 | huvmat=findobj(allchild(0),'Name','uvmat'); |
---|
185 | hhuvmat=guidata(huvmat);%handles of elements in the GUI uvmat |
---|
186 | |
---|
187 | RootPath=''; |
---|
188 | if ~isempty(hhuvmat.RootPath)&& ~isempty(hhuvmat.RootFile) |
---|
189 | RootPath=get(hhuvmat.RootPath,'String'); |
---|
190 | SubDirBase=regexprep(get(hhuvmat.SubDir,'String'),'\..+$',''); |
---|
191 | outputfile=[fullfile(RootPath,SubDirBase) '.xml'];%xml file associated with the currently displayed image |
---|
192 | else |
---|
193 | question={'save the calibration data and point coordinates in'}; |
---|
194 | def={fullfile(RootPath,'ObjectCalib.xml')}; |
---|
195 | options.Resize='on'; |
---|
196 | answer=inputdlg(question,'',1,def,options); |
---|
197 | outputfile=answer{1}; |
---|
198 | end |
---|
199 | [GeometryCalib,index]=calibrate(handles,hhuvmat);% apply calibration |
---|
200 | |
---|
201 | if isempty(GeometryCalib) % if calibration cancelled |
---|
202 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
203 | else % if calibration confirmed |
---|
204 | |
---|
205 | %% copy the xml file from the old location if appropriate, then update with the calibration parameters |
---|
206 | if ~exist(outputfile,'file') && ~isempty(SubDirBase) |
---|
207 | oldxml=[fullfile(RootPath,SubDirBase,get(hhuvmat.RootFile,'String')) '.xml']; |
---|
208 | if exist(oldxml,'file') |
---|
209 | [success,message]=copyfile(oldxml,outputfile);%copy the old xml file to a new one with the new convention |
---|
210 | end |
---|
211 | end |
---|
212 | errormsg=update_imadoc(GeometryCalib,outputfile,'GeometryCalib');% introduce the calibration data in the xml file |
---|
213 | if ~strcmp(errormsg,'') |
---|
214 | msgbox_uvmat('ERROR',errormsg); |
---|
215 | end |
---|
216 | |
---|
217 | %% display image with new calibration in the currently opened uvmat interface |
---|
218 | FieldList=get(hhuvmat.FieldName,'String'); |
---|
219 | val=get(hhuvmat.FieldName,'Value'); |
---|
220 | if strcmp(FieldList{val},'image') |
---|
221 | set(hhuvmat.CheckFixLimits,'Value',0)% put FixedLimits option to 'off' to plot the whole image |
---|
222 | UserData=get(handles.geometry_calib,'UserData'); |
---|
223 | UserData.XmlInputFile=outputfile;%save the current xml file name |
---|
224 | set(handles.geometry_calib,'UserData',UserData) |
---|
225 | uvmat('InputFileREFRESH_Callback',hObject,eventdata,hhuvmat); %file input with xml reading in uvmat, show the image in phys coordinates |
---|
226 | PLOT_Callback(hObject, eventdata, handles) |
---|
227 | set(handles.CoordLine,'string',num2str(index)) |
---|
228 | Coord=get(handles.ListCoord,'Data'); |
---|
229 | update_calib_marker(Coord(index,:)); %indicate the point with max deviations from phys coord to calibration |
---|
230 | figure(handles.geometry_calib)% put the GUI geometry_calib in front |
---|
231 | set(handles.APPLY,'BackgroundColor',[1 0 0]) % set APPLY button to red color |
---|
232 | else |
---|
233 | msgbox_uvmat('WARNING','open the image to see the effect of the new calibration') |
---|
234 | end |
---|
235 | end |
---|
236 | |
---|
237 | %------------------------------------------------------------------------ |
---|
238 | % --- Executes on button press in REPLICATE |
---|
239 | function REPLICATE_Callback(hObject, eventdata, handles) |
---|
240 | %------------------------------------------------------------------------ |
---|
241 | |
---|
242 | %% look for the GUI uvmat and check for an image as input |
---|
243 | huvmat=findobj(allchild(0),'Name','uvmat'); |
---|
244 | hhuvmat=guidata(huvmat);%handles of elements in the GUI uvmat |
---|
245 | GeometryCalib=calibrate(handles,hhuvmat);% apply calibration |
---|
246 | |
---|
247 | %% open the GUI browse_data |
---|
248 | CalibData=get(handles.geometry_calib,'UserData');%read the calibration image source on the interface userdata |
---|
249 | if isfield(CalibData,'XmlInputFile') |
---|
250 | InputDir=fileparts(fileparts(CalibData.XmlInputFile)); |
---|
251 | end |
---|
252 | answer=msgbox_uvmat('INPUT_TXT','Campaign to calibrate?',InputDir); |
---|
253 | if strcmp(answer,'Cancel') |
---|
254 | return |
---|
255 | end |
---|
256 | OutPut=browse_data(answer); |
---|
257 | nbcalib=0; |
---|
258 | for ilist=1:numel(OutPut.Experiment) |
---|
259 | SubDirBase=regexprep(OutPut.DataSeries{1},'\..+$',''); |
---|
260 | XmlName=fullfile(OutPut.Campaign,OutPut.Experiment{ilist},[SubDirBase '.xml']); |
---|
261 | % copy the xml file from the old location if appropriate, then update with the calibration parameters |
---|
262 | if ~exist(XmlName,'file') && ~isempty(SubDirBase) |
---|
263 | oldxml=fullfile(OutPut.Campaign,OutPut.Experiment{ilist},SubDirBase,[get(hhuvmat.RootFile,'String') '.xml']); |
---|
264 | if exist(oldxml,'file') |
---|
265 | [success,message]=copyfile(oldxml,XmlName);%copy the old xml file to a new one with the new convention |
---|
266 | end |
---|
267 | end |
---|
268 | errormsg=update_imadoc(GeometryCalib,XmlName,'GeometryCalib');% introduce the calibration data in the xml file |
---|
269 | if ~strcmp(errormsg,'') |
---|
270 | msgbox_uvmat('ERROR',errormsg); |
---|
271 | else |
---|
272 | display([XmlName ' updated with calibration parameters']) |
---|
273 | nbcalib=nbcalib+1; |
---|
274 | end |
---|
275 | end |
---|
276 | msgbox_uvmat('CONFIMATION',[SubDirBase ' calibrated for ' num2str(nbcalib) ' experiments']); |
---|
277 | |
---|
278 | %------------------------------------------------------------------------ |
---|
279 | % --- activate calibration and store parameters in ouputfile . |
---|
280 | function [GeometryCalib,index]=calibrate(handles,hhuvmat) |
---|
281 | %------------------------------------------------------------------------ |
---|
282 | set(handles.CheckEnableMouse,'Value',0)% desactivate mouse (to avoid spurious creation of new points) |
---|
283 | %% read the current calibration points |
---|
284 | index=[]; |
---|
285 | Coord=get(handles.ListCoord,'Data'); |
---|
286 | Coord(:,6)=[]; |
---|
287 | % apply the calibration, whose type is selected in handles.calib_type |
---|
288 | GeometryCalib=[]; |
---|
289 | if ~isempty(Coord) |
---|
290 | calib_cell=get(handles.calib_type,'String'); |
---|
291 | val=get(handles.calib_type,'Value'); |
---|
292 | GeometryCalib=feval(['calib_' calib_cell{val}],Coord,handles); |
---|
293 | else |
---|
294 | msgbox_uvmat('ERROR','No calibration points, abort') |
---|
295 | end |
---|
296 | if isempty(GeometryCalib) |
---|
297 | return |
---|
298 | end |
---|
299 | Z_plane=[]; |
---|
300 | if ~isempty(Coord) |
---|
301 | %check error |
---|
302 | X=Coord(:,1); |
---|
303 | Y=Coord(:,2); |
---|
304 | Z=Coord(:,3); |
---|
305 | x_ima=Coord(:,4); |
---|
306 | y_ima=Coord(:,5); |
---|
307 | [Xpoints,Ypoints]=px_XYZ(GeometryCalib,X,Y,Z); |
---|
308 | GeometryCalib.ErrorRms(1)=sqrt(mean((Xpoints-x_ima).*(Xpoints-x_ima))); |
---|
309 | [GeometryCalib.ErrorMax(1),index(1)]=max(abs(Xpoints-x_ima)); |
---|
310 | GeometryCalib.ErrorRms(2)=sqrt(mean((Ypoints-y_ima).*(Ypoints-y_ima))); |
---|
311 | [GeometryCalib.ErrorMax(2),index(2)]=max(abs(Ypoints-y_ima)); |
---|
312 | [tild,ind_dim]=max(GeometryCalib.ErrorMax); |
---|
313 | index=index(ind_dim); |
---|
314 | %set the Z position of the reference plane used for calibration |
---|
315 | if isequal(max(Z),min(Z))%Z constant |
---|
316 | Z_plane=Z(1); |
---|
317 | GeometryCalib.NbSlice=1; |
---|
318 | GeometryCalib.SliceCoord=[0 0 Z_plane]; |
---|
319 | end |
---|
320 | end |
---|
321 | %set the coordinate unit |
---|
322 | unitlist=get(handles.CoordUnit,'String'); |
---|
323 | unit=unitlist{get(handles.CoordUnit,'value')}; |
---|
324 | GeometryCalib.CoordUnit=unit; |
---|
325 | %record the points |
---|
326 | GeometryCalib.SourceCalib.PointCoord=Coord; |
---|
327 | display_intrinsic(GeometryCalib,handles)%display calibration intrinsic parameters |
---|
328 | |
---|
329 | % Display extrinsinc parameters (rotation and translation of camera with respect to the phys coordiantes) |
---|
330 | set(handles.Tx,'String',num2str(GeometryCalib.Tx_Ty_Tz(1),4)) |
---|
331 | set(handles.Ty,'String',num2str(GeometryCalib.Tx_Ty_Tz(2),4)) |
---|
332 | set(handles.Tz,'String',num2str(GeometryCalib.Tx_Ty_Tz(3),4)) |
---|
333 | set(handles.Phi,'String',num2str(GeometryCalib.omc(1),4)) |
---|
334 | set(handles.Theta,'String',num2str(GeometryCalib.omc(2),4)) |
---|
335 | set(handles.Psi,'String',num2str(GeometryCalib.omc(3),4)) |
---|
336 | |
---|
337 | %% store the calibration data, by default in the xml file of the currently displayed image |
---|
338 | UvData=get(hhuvmat.uvmat,'UserData'); |
---|
339 | % NbSlice_j=1;%default |
---|
340 | % ZStart=Z_plane; |
---|
341 | % ZEnd=Z_plane; |
---|
342 | % volume_scan='n'; |
---|
343 | % if isfield(UvData,'XmlData') |
---|
344 | % if isfield(UvData.XmlData,'TranslationMotor') |
---|
345 | % NbSlice_j=UvData.XmlData.TranslationMotor.Nbslice; |
---|
346 | % ZStart=UvData.XmlData.TranslationMotor.ZStart/10; |
---|
347 | % ZEnd=UvData.XmlData.TranslationMotor.ZEnd/10; |
---|
348 | % volume_scan='y'; |
---|
349 | % end |
---|
350 | % end |
---|
351 | |
---|
352 | answer=msgbox_uvmat('INPUT_Y-N',{'store calibration data';... |
---|
353 | ['Error rms (along x,y)=' num2str(GeometryCalib.ErrorRms) ' pixels'];... |
---|
354 | ['Error max (along x,y)=' num2str(GeometryCalib.ErrorMax) ' pixels']}); |
---|
355 | |
---|
356 | %% get plane position(s) |
---|
357 | if ~strcmp(answer,'Yes') |
---|
358 | GeometryCalib=[]; |
---|
359 | index=1; |
---|
360 | return |
---|
361 | end |
---|
362 | if strcmp(calib_cell{val}(1:2),'3D')%set the plane position for 3D (projection) calibration |
---|
363 | msgbox_uvmat('CONFIRMATION',{['The current image series is assumed by default in the plane of the calib points z=' num2str(Z_plane) ] ; 'can be modified by MenuSetSlice in the upper bar menu of uvmat'}) |
---|
364 | % 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'}; |
---|
365 | % input_val=[{num2str(ZEnd)} {num2str(ZStart)} {num2str(ZStart)} {'1.333'} num2str(NbSlice_j) {volume_scan} {'0'} {'0'}]; |
---|
366 | % answer=inputdlg(input_key,'slice position(s)',ones(1,8), input_val,'on'); |
---|
367 | % GeometryCalib.NbSlice=str2double(answer{5}); |
---|
368 | % GeometryCalib.VolumeScan=answer{6}; |
---|
369 | % if isempty(answer) |
---|
370 | % Z_plane=0; %default |
---|
371 | % else |
---|
372 | % Z_plane=linspace(str2double(answer{1}),str2double(answer{2}),GeometryCalib.NbSlice); |
---|
373 | % end |
---|
374 | GeometryCalib.SliceCoord=Z_plane'*[0 0 1]; |
---|
375 | % GeometryCalib.SliceAngle(:,3)=0; |
---|
376 | % GeometryCalib.SliceAngle(:,2)=str2double(answer{7})*ones(GeometryCalib.NbSlice,1);%rotation around y axis (to generalise) |
---|
377 | % GeometryCalib.SliceAngle(:,1)=str2double(answer{8})*ones(GeometryCalib.NbSlice,1);%rotation around x axis (to generalise) |
---|
378 | % GeometryCalib.InterfaceCoord=[0 0 str2double(answer{3})]; |
---|
379 | % GeometryCalib.RefractionIndex=str2double(answer{4}); |
---|
380 | end |
---|
381 | |
---|
382 | %------------------------------------------------------------------------ |
---|
383 | % --- determine the parameters for a calibration by an affine function (rescaling and offset, no rotation) |
---|
384 | function GeometryCalib=calib_rescale(Coord,handles) |
---|
385 | %------------------------------------------------------------------------ |
---|
386 | X=Coord(:,1); |
---|
387 | Y=Coord(:,2);% Z not used |
---|
388 | x_ima=Coord(:,4); |
---|
389 | y_ima=Coord(:,5); |
---|
390 | [px]=polyfit(X,x_ima,1); |
---|
391 | [py]=polyfit(Y,y_ima,1); |
---|
392 | % T_x=px(2); |
---|
393 | % T_y=py(2); |
---|
394 | GeometryCalib.CalibrationType='rescale'; |
---|
395 | GeometryCalib.fx_fy=[px(1) py(1)];%.fx_fy corresponds to pxcm along x and y |
---|
396 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
397 | GeometryCalib.Tx_Ty_Tz=[px(2)/px(1) py(2)/py(1) 1]; |
---|
398 | GeometryCalib.omc=[0 0 0]; |
---|
399 | |
---|
400 | %------------------------------------------------------------------------ |
---|
401 | % --- determine the parameters for a calibration by a linear transform matrix (rescale and rotation) |
---|
402 | function GeometryCalib=calib_linear(Coord,handles) |
---|
403 | %------------------------------------------------------------------------ |
---|
404 | X=Coord(:,1); |
---|
405 | Y=Coord(:,2);% Z not used |
---|
406 | x_ima=Coord(:,4); |
---|
407 | y_ima=Coord(:,5); |
---|
408 | XY_mat=[ones(size(X)) X Y]; |
---|
409 | a_X1=XY_mat\x_ima; %transformation matrix for X |
---|
410 | a_Y1=XY_mat\y_ima;%transformation matrix for X |
---|
411 | R=[a_X1(2),a_X1(3);a_Y1(2),a_Y1(3)]; |
---|
412 | epsilon=sign(det(R)); |
---|
413 | norm=abs(det(R)); |
---|
414 | GeometryCalib.CalibrationType='linear'; |
---|
415 | if (a_X1(2)/a_Y1(3))>0 |
---|
416 | GeometryCalib.fx_fy(1)=sqrt((a_X1(2)/a_Y1(3))*norm); |
---|
417 | else |
---|
418 | GeometryCalib.fx_fy(1)=-sqrt(-(a_X1(2)/a_Y1(3))*norm); |
---|
419 | end |
---|
420 | GeometryCalib.fx_fy(2)=(a_Y1(3)/a_X1(2))*GeometryCalib.fx_fy(1); |
---|
421 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
422 | GeometryCalib.Tx_Ty_Tz=[a_X1(1)/GeometryCalib.fx_fy(1) a_Y1(1)/GeometryCalib.fx_fy(2) 1]; |
---|
423 | R(1,:)=R(1,:)/GeometryCalib.fx_fy(1); |
---|
424 | R(2,:)=R(2,:)/GeometryCalib.fx_fy(2); |
---|
425 | R=[R;[0 0]]; |
---|
426 | GeometryCalib.R=[R [0;0;-epsilon]]; |
---|
427 | GeometryCalib.omc=(180/pi)*[acos(GeometryCalib.R(1,1)) 0 0]; |
---|
428 | |
---|
429 | %------------------------------------------------------------------------ |
---|
430 | % --- determine the tsai parameters for a view normal to the grid plane |
---|
431 | % NOT USED |
---|
432 | function GeometryCalib=calib_normal(Coord,handles) |
---|
433 | %------------------------------------------------------------------------ |
---|
434 | Calib.f1=str2num(get(handles.fx,'String')); |
---|
435 | Calib.f2=str2num(get(handles.fy,'String')); |
---|
436 | Calib.k=str2num(get(handles.kc,'String')); |
---|
437 | Calib.Cx=str2num(get(handles.Cx,'String')); |
---|
438 | Calib.Cy=str2num(get(handles.Cy,'String')); |
---|
439 | %default |
---|
440 | if isempty(Calib.f1) |
---|
441 | Calib.f1=25/0.012; |
---|
442 | end |
---|
443 | if isempty(Calib.f2) |
---|
444 | Calib.f2=25/0.012; |
---|
445 | end |
---|
446 | if isempty(Calib.k) |
---|
447 | Calib.k=0; |
---|
448 | end |
---|
449 | if isempty(Calib.Cx)||isempty(Calib.Cy) |
---|
450 | huvmat=findobj(allchild(0),'Tag','uvmat'); |
---|
451 | hhuvmat=guidata(huvmat); |
---|
452 | Calib.Cx=str2num(get(hhuvmat.num_Npx,'String'))/2; |
---|
453 | Calib.Cx=str2num(get(hhuvmat.num_Npy,'String'))/2; |
---|
454 | end |
---|
455 | %tsai parameters |
---|
456 | Calib.dpx=0.012;%arbitrary |
---|
457 | Calib.dpy=0.012; |
---|
458 | Calib.sx=Calib.f1*Calib.dpx/(Calib.f2*Calib.dpy); |
---|
459 | Calib.f=Calib.f2*Calib.dpy; |
---|
460 | Calib.kappa1=Calib.k/(Calib.f*Calib.f); |
---|
461 | |
---|
462 | %initial guess |
---|
463 | X=Coord(:,1); |
---|
464 | Y=Coord(:,2); |
---|
465 | Zmean=mean(Coord(:,3)); |
---|
466 | x_ima=Coord(:,4)-Calib.Cx; |
---|
467 | y_ima=Coord(:,5)-Calib.Cy; |
---|
468 | XY_mat=[ones(size(X)) X Y]; |
---|
469 | a_X1=XY_mat\x_ima; %transformation matrix for X |
---|
470 | a_Y1=XY_mat\y_ima;%transformation matrix for Y |
---|
471 | R=[a_X1(2),a_X1(3),0;a_Y1(2),a_Y1(3),0;0,0,-1];% rotation+ z axis reversal (upward) |
---|
472 | norm=sqrt(det(-R)); |
---|
473 | calib_param(1)=0;% quadratic distortion |
---|
474 | calib_param(2)=a_X1(1); |
---|
475 | calib_param(3)=a_Y1(1); |
---|
476 | calib_param(4)=Calib.f/(norm*Calib.dpx)-R(3,3)*Zmean; |
---|
477 | calib_param(5)=angle(a_X1(2)+1i*a_X1(3)); |
---|
478 | display(['initial guess=' num2str(calib_param)]) |
---|
479 | |
---|
480 | %optimise the parameters: minimisation of error |
---|
481 | calib_param = fminsearch(@(calib_param) error_calib(calib_param,Calib,Coord),calib_param); |
---|
482 | |
---|
483 | GeometryCalib.CalibrationType='tsai_normal'; |
---|
484 | GeometryCalib.focal=Calib.f; |
---|
485 | GeometryCalib.dpx_dpy=[Calib.dpx Calib.dpy]; |
---|
486 | GeometryCalib.Cx_Cy=[Calib.Cx Calib.Cy]; |
---|
487 | GeometryCalib.sx=Calib.sx; |
---|
488 | GeometryCalib.kappa1=calib_param(1); |
---|
489 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
490 | GeometryCalib.Tx_Ty_Tz=[calib_param(2) calib_param(3) calib_param(4)]; |
---|
491 | alpha=calib_param(5); |
---|
492 | GeometryCalib.R=[cos(alpha) sin(alpha) 0;-sin(alpha) cos(alpha) 0;0 0 -1]; |
---|
493 | |
---|
494 | %------------------------------------------------------------------------ |
---|
495 | function GeometryCalib=calib_3D_linear(Coord,handles) |
---|
496 | %------------------------------------------------------------------------ |
---|
497 | path_uvmat=which('uvmat');% check the path detected for source file uvmat |
---|
498 | path_UVMAT=fileparts(path_uvmat); %path to UVMAT |
---|
499 | huvmat=findobj(allchild(0),'Tag','uvmat'); |
---|
500 | hhuvmat=guidata(huvmat); |
---|
501 | coord_files=get(handles.ListCoordFiles,'String'); |
---|
502 | if ischar(coord_files) |
---|
503 | coord_files={coord_files}; |
---|
504 | end |
---|
505 | if isempty(coord_files{1}) || isequal(coord_files,{''}) |
---|
506 | coord_files={}; |
---|
507 | end |
---|
508 | %retrieve the calibration points stored in the files listed in the popup list ListCoordFiles |
---|
509 | x_1=Coord(:,4:5)';%px coordinates of the ref points |
---|
510 | if ~strcmp(get(hhuvmat.Scalar,'Visible'),'on') |
---|
511 | msgbox_uvmat('ERROR','An image needs to be opened in uvmat for calibration') |
---|
512 | return |
---|
513 | end |
---|
514 | nx=str2num(get(hhuvmat.num_Npx,'String')); |
---|
515 | ny=str2num(get(hhuvmat.num_Npy,'String')); |
---|
516 | x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates |
---|
517 | X_1=Coord(:,1:3)';%phys coordinates of the ref points |
---|
518 | n_ima=numel(coord_files)+1; |
---|
519 | if ~isempty(coord_files) |
---|
520 | msgbox_uvmat('CONFIRMATION',['The xy coordinates of the calibration points in ' num2str(n_ima) ' planes will be used']) |
---|
521 | for ifile=1:numel(coord_files) |
---|
522 | t=xmltree(coord_files{ifile}); |
---|
523 | s=convert(t);%convert to matlab structure |
---|
524 | if isfield(s,'GeometryCalib') |
---|
525 | if isfield(s.GeometryCalib,'SourceCalib') |
---|
526 | if isfield(s.GeometryCalib.SourceCalib,'PointCoord') |
---|
527 | PointCoord=s.GeometryCalib.SourceCalib.PointCoord; |
---|
528 | Coord_file=zeros(length(PointCoord),5);%default |
---|
529 | for i=1:length(PointCoord) |
---|
530 | line=str2num(PointCoord{i}); |
---|
531 | Coord_file(i,4:5)=line(4:5);%px x |
---|
532 | Coord_file(i,1:3)=line(1:3);%phys x |
---|
533 | end |
---|
534 | eval(['x_' num2str(ifile+1) '=Coord_file(:,4:5)'';']); |
---|
535 | eval(['x_' num2str(ifile+1) '(2,:)=ny-x_' num2str(ifile+1) '(2,:);' ]); |
---|
536 | eval(['X_' num2str(ifile+1) '=Coord_file(:,1:3)'';']); |
---|
537 | end |
---|
538 | end |
---|
539 | end |
---|
540 | end |
---|
541 | end |
---|
542 | n_ima=numel(coord_files)+1; |
---|
543 | est_dist=[0;0;0;0;0]; |
---|
544 | est_aspect_ratio=0; |
---|
545 | est_fc=[1;1]; |
---|
546 | center_optim=0; |
---|
547 | run(fullfile(path_UVMAT,'toolbox_calib','go_calib_optim'));% apply fct 'toolbox_calib/go_calib_optim' |
---|
548 | if exist('Rc_1','var') |
---|
549 | GeometryCalib.CalibrationType='3D_linear'; |
---|
550 | GeometryCalib.fx_fy=fc'; |
---|
551 | GeometryCalib.Cx_Cy=cc'; |
---|
552 | GeometryCalib.kc=kc(1); |
---|
553 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
554 | GeometryCalib.Tx_Ty_Tz=Tc_1'; |
---|
555 | GeometryCalib.R=Rc_1; |
---|
556 | GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate |
---|
557 | GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate |
---|
558 | GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate |
---|
559 | GeometryCalib.omc=(180/pi)*omc_1;%angles in degrees |
---|
560 | GeometryCalib.ErrorRMS=[]; |
---|
561 | GeometryCalib.ErrorMax=[]; |
---|
562 | else |
---|
563 | msgbox_uvmat('ERROR',['calibration function ' fullfile('toolbox_calib','go_calib_optim') ' did not converge: use multiple views or option 3D_extrinsic']) |
---|
564 | GeometryCalib=[]; |
---|
565 | end |
---|
566 | |
---|
567 | %------------------------------------------------------------------------ |
---|
568 | function GeometryCalib=calib_3D_quadr(Coord,handles) |
---|
569 | %------------------------------------------------------------------ |
---|
570 | |
---|
571 | path_uvmat=which('uvmat');% check the path detected for source file uvmat |
---|
572 | path_UVMAT=fileparts(path_uvmat); %path to UVMAT |
---|
573 | huvmat=findobj(allchild(0),'Tag','uvmat'); |
---|
574 | hhuvmat=guidata(huvmat); |
---|
575 | if ~strcmp(get(hhuvmat.Scalar,'Visible'),'on') |
---|
576 | msgbox_uvmat('ERROR','An image needs to be opened in uvmat for calibration') |
---|
577 | return |
---|
578 | end |
---|
579 | % check_cond=0; |
---|
580 | coord_files=get(handles.ListCoordFiles,'String'); |
---|
581 | if ischar(coord_files) |
---|
582 | coord_files={coord_files}; |
---|
583 | end |
---|
584 | if isempty(coord_files{1}) || isequal(coord_files,{''}) |
---|
585 | coord_files={}; |
---|
586 | end |
---|
587 | |
---|
588 | %retrieve the calibration points stored in the files listed in the popup list ListCoordFiles |
---|
589 | x_1=Coord(:,4:5)';%px coordinates of the ref points |
---|
590 | nx=str2num(get(hhuvmat.num_Npx,'String')); |
---|
591 | ny=str2num(get(hhuvmat.num_Npy,'String')); |
---|
592 | x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates |
---|
593 | X_1=Coord(:,1:3)';%phys coordinates of the ref points |
---|
594 | n_ima=numel(coord_files)+1; |
---|
595 | if ~isempty(coord_files) |
---|
596 | msgbox_uvmat('CONFIRMATION',['The xy coordinates of the calibration points in ' num2str(n_ima) ' planes will be used']) |
---|
597 | for ifile=1:numel(coord_files) |
---|
598 | t=xmltree(coord_files{ifile}); |
---|
599 | s=convert(t);%convert to matlab structure |
---|
600 | if isfield(s,'GeometryCalib') |
---|
601 | if isfield(s.GeometryCalib,'SourceCalib') |
---|
602 | if isfield(s.GeometryCalib.SourceCalib,'PointCoord') |
---|
603 | PointCoord=s.GeometryCalib.SourceCalib.PointCoord; |
---|
604 | Coord_file=zeros(length(PointCoord),5);%default |
---|
605 | for i=1:length(PointCoord) |
---|
606 | line=str2num(PointCoord{i}); |
---|
607 | Coord_file(i,4:5)=line(4:5);%px x |
---|
608 | Coord_file(i,1:3)=line(1:3);%phys x |
---|
609 | end |
---|
610 | eval(['x_' num2str(ifile+1) '=Coord_file(:,4:5)'';']); |
---|
611 | eval(['x_' num2str(ifile+1) '(2,:)=ny-x_' num2str(ifile+1) '(2,:);' ]); |
---|
612 | eval(['X_' num2str(ifile+1) '=Coord_file(:,1:3)'';']); |
---|
613 | end |
---|
614 | end |
---|
615 | end |
---|
616 | end |
---|
617 | end |
---|
618 | n_ima=numel(coord_files)+1; |
---|
619 | est_dist=[1;0;0;0;0]; |
---|
620 | est_aspect_ratio=1; |
---|
621 | center_optim=0; |
---|
622 | run(fullfile(path_UVMAT,'toolbox_calib','go_calib_optim'));% apply fct 'toolbox_calib/go_calib_optim' |
---|
623 | |
---|
624 | if exist('Rc_1','var') |
---|
625 | GeometryCalib.CalibrationType='3D_quadr'; |
---|
626 | GeometryCalib.fx_fy=fc'; |
---|
627 | GeometryCalib.Cx_Cy=cc'; |
---|
628 | GeometryCalib.kc=kc(1); |
---|
629 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
630 | GeometryCalib.Tx_Ty_Tz=Tc_1'; |
---|
631 | GeometryCalib.R=Rc_1; |
---|
632 | GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate |
---|
633 | GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate |
---|
634 | GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate |
---|
635 | GeometryCalib.omc=(180/pi)*omc_1;%angles in degrees |
---|
636 | GeometryCalib.ErrorRMS=[]; |
---|
637 | GeometryCalib.ErrorMax=[]; |
---|
638 | else |
---|
639 | msgbox_uvmat('ERROR',['calibration function ' fullfile('toolbox_calib','go_calib_optim') ' did not converge: use multiple views or option 3D_extrinsic']) |
---|
640 | GeometryCalib=[]; |
---|
641 | end |
---|
642 | |
---|
643 | %------------------------------------------------------------------------ |
---|
644 | function GeometryCalib=calib_3D_extrinsic(Coord,handles) |
---|
645 | %------------------------------------------------------------------ |
---|
646 | path_uvmat=which('geometry_calib');% check the path detected for source file uvmat |
---|
647 | path_UVMAT=fileparts(path_uvmat); %path to UVMAT |
---|
648 | x_1=double(Coord(:,4:5)');%image coordinates |
---|
649 | X_1=double(Coord(:,1:3)');% phys coordinates |
---|
650 | huvmat=findobj(allchild(0),'Tag','uvmat'); |
---|
651 | hhuvmat=guidata(huvmat); |
---|
652 | if ~strcmp(get(hhuvmat.Scalar,'Visible'),'on') |
---|
653 | msgbox_uvmat('ERROR','An image needs to be opened in uvmat for calibration') |
---|
654 | return |
---|
655 | end |
---|
656 | ny=str2double(get(hhuvmat.num_Npy,'String')); |
---|
657 | x_1(2,:)=ny-x_1(2,:);%reverse the y image coordinates |
---|
658 | n_ima=1; |
---|
659 | GeometryCalib.CalibrationType='3D_extrinsic'; |
---|
660 | fx=str2num(get(handles.fx,'String')); |
---|
661 | fy=str2num(get(handles.fy,'String')); |
---|
662 | Cx=str2num(get(handles.Cx,'String')); |
---|
663 | Cy=str2num(get(handles.Cy,'String')); |
---|
664 | errormsg=''; |
---|
665 | if isempty(fx) |
---|
666 | errormsg='focal length fx needs to be introduced'; |
---|
667 | elseif isempty(fy) |
---|
668 | errormsg='focal length fy needs to be introduced'; |
---|
669 | elseif isempty(Cx) |
---|
670 | errormsg='shift Cx to image centre needs to be introduced'; |
---|
671 | elseif isempty(Cy) |
---|
672 | errormsg='shift Cy to image centre needs to be introduced'; |
---|
673 | end |
---|
674 | if ~isempty(errormsg) |
---|
675 | GeometryCalib=[]; |
---|
676 | msgbox_uvmat('ERROR',errormsg) |
---|
677 | return |
---|
678 | end |
---|
679 | GeometryCalib.fx_fy(1)=str2num(get(handles.fx,'String')); |
---|
680 | GeometryCalib.fx_fy(2)=str2num(get(handles.fy,'String')); |
---|
681 | GeometryCalib.Cx_Cy(1)=str2num(get(handles.Cx,'String')); |
---|
682 | GeometryCalib.Cx_Cy(2)=str2num(get(handles.Cy,'String')); |
---|
683 | GeometryCalib.kc=str2num(get(handles.kc,'String')); |
---|
684 | fct_path=fullfile(path_UVMAT,'toolbox_calib'); |
---|
685 | addpath(fct_path) |
---|
686 | GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%reverse Cx_Cy(2) for calibration (inversion of px ordinate) |
---|
687 | [omc,Tc1,Rc1,H,x,ex,JJ] = compute_extrinsic(x_1,X_1,... |
---|
688 | (GeometryCalib.fx_fy)',GeometryCalib.Cx_Cy',[GeometryCalib.kc 0 0 0 0]); |
---|
689 | rmpath(fct_path); |
---|
690 | GeometryCalib.CoordUnit=[];% default value, to be updated by the calling function |
---|
691 | GeometryCalib.Tx_Ty_Tz=Tc1'; |
---|
692 | %inversion of z axis |
---|
693 | GeometryCalib.R=Rc1; |
---|
694 | GeometryCalib.R(2,1:3)=-GeometryCalib.R(2,1:3);%inversion of the y image coordinate |
---|
695 | GeometryCalib.Tx_Ty_Tz(2)=-GeometryCalib.Tx_Ty_Tz(2);%inversion of the y image coordinate |
---|
696 | GeometryCalib.Cx_Cy(2)=ny-GeometryCalib.Cx_Cy(2);%inversion of the y image coordinate |
---|
697 | GeometryCalib.omc=(180/pi)*omc'; |
---|
698 | |
---|
699 | %------------------------------------------------------------------------ |
---|
700 | %function GeometryCalib=calib_tsai_heikkila(Coord) |
---|
701 | % TEST: NOT IMPLEMENTED |
---|
702 | %------------------------------------------------------------------ |
---|
703 | % path_uvmat=which('uvmat');% check the path detected for source file uvmat |
---|
704 | % path_UVMAT=fileparts(path_uvmat); %path to UVMAT |
---|
705 | % path_calib=fullfile(path_UVMAT,'toolbox_calib_heikkila'); |
---|
706 | % addpath(path_calib) |
---|
707 | % npoints=size(Coord,1); |
---|
708 | % Coord(:,1:3)=10*Coord(:,1:3); |
---|
709 | % Coord=[Coord zeros(npoints,2) -ones(npoints,1)]; |
---|
710 | % [par,pos,iter,res,er,C]=cacal('dalsa',Coord); |
---|
711 | % GeometryCalib.CalibrationType='tsai'; |
---|
712 | % GeometryCalib.focal=par(2); |
---|
713 | |
---|
714 | |
---|
715 | %------------------------------------------------------------------------ |
---|
716 | % --- determine the rms of calibration error |
---|
717 | function ErrorRms=error_calib(calib_param,Calib,Coord) |
---|
718 | %------------------------------------------------------------------------ |
---|
719 | %calib_param: vector of free calibration parameters (to optimise) |
---|
720 | %Calib: structure of the given calibration parameters |
---|
721 | %Coord: list of phys coordinates (columns 1-3, and pixel coordinates (columns 4-5) |
---|
722 | Calib.f=25; |
---|
723 | Calib.dpx=0.012; |
---|
724 | Calib.dpy=0.012; |
---|
725 | Calib.sx=1; |
---|
726 | Calib.Cx=512; |
---|
727 | Calib.Cy=512; |
---|
728 | Calib.kappa1=calib_param(1); |
---|
729 | Calib.Tx=calib_param(2); |
---|
730 | Calib.Ty=calib_param(3); |
---|
731 | Calib.Tz=calib_param(4); |
---|
732 | alpha=calib_param(5); |
---|
733 | Calib.R=[cos(alpha) sin(alpha) 0;-sin(alpha) cos(alpha) 0;0 0 -1]; |
---|
734 | |
---|
735 | X=Coord(:,1); |
---|
736 | Y=Coord(:,2); |
---|
737 | Z=Coord(:,3); |
---|
738 | x_ima=Coord(:,4); |
---|
739 | y_ima=Coord(:,5); |
---|
740 | [Xpoints,Ypoints]=px_XYZ(Calib,X,Y,Z); |
---|
741 | ErrorRms(1)=sqrt(mean((Xpoints-x_ima).*(Xpoints-x_ima))); |
---|
742 | ErrorRms(2)=sqrt(mean((Ypoints-y_ima).*(Ypoints-y_ima))); |
---|
743 | ErrorRms=mean(ErrorRms); |
---|
744 | |
---|
745 | |
---|
746 | %------------------------------------------------------------------------ |
---|
747 | % --- Executes on button press in STORE. |
---|
748 | function STORE_Callback(hObject, eventdata, handles) |
---|
749 | %------------------------------------------------------------------------ |
---|
750 | Coord=get(handles.ListCoord,'Data'); |
---|
751 | %Object=read_geometry_calib(Coord_cell); |
---|
752 | unitlist=get(handles.CoordUnit,'String'); |
---|
753 | unit=unitlist{get(handles.CoordUnit,'value')}; |
---|
754 | GeometryCalib.CoordUnit=unit; |
---|
755 | GeometryCalib.SourceCalib.PointCoord=Coord(:,1:5); |
---|
756 | huvmat=findobj(allchild(0),'Name','uvmat'); |
---|
757 | hhuvmat=guidata(huvmat);%handles of elements in the GUI uvmat |
---|
758 | % RootPath=''; |
---|
759 | % RootFile=''; |
---|
760 | if ~isempty(hhuvmat.RootPath)&& ~isempty(hhuvmat.RootFile) |
---|
761 | % testhandle=1; |
---|
762 | RootPath=get(hhuvmat.RootPath,'String'); |
---|
763 | RootFile=get(hhuvmat.RootFile,'String'); |
---|
764 | filebase=[fullfile(RootPath,RootFile) '~']; |
---|
765 | while exist([filebase '.xml'],'file') |
---|
766 | filebase=[filebase '~']; |
---|
767 | end |
---|
768 | outputfile=[filebase '.xml']; |
---|
769 | errormsg=update_imadoc(GeometryCalib,outputfile,'GeometryCalib'); |
---|
770 | if ~strcmp(errormsg,'') |
---|
771 | msgbox_uvmat('ERROR',errormsg); |
---|
772 | end |
---|
773 | listfile=get(handles.ListCoordFiles,'string'); |
---|
774 | if isequal(listfile,{''}) |
---|
775 | listfile={outputfile}; |
---|
776 | else |
---|
777 | listfile=[listfile;{outputfile}];%update the list of coord files |
---|
778 | end |
---|
779 | set(handles.ListCoordFiles,'string',listfile); |
---|
780 | end |
---|
781 | CLEAR_PTS_Callback(hObject, eventdata, handles)% clear the current list and point plots |
---|
782 | |
---|
783 | % -------------------------------------------------------------------- |
---|
784 | % --- Executes on button press in CLEAR_PTS: clear the list of calibration points |
---|
785 | function CLEAR_PTS_Callback(hObject, eventdata, handles) |
---|
786 | % -------------------------------------------------------------------- |
---|
787 | set(handles.ListCoord,'Data',[]) |
---|
788 | PLOT_Callback(hObject, eventdata, handles) |
---|
789 | update_calib_marker([]);%remove circle marker |
---|
790 | set(handles.APPLY,'backgroundColor',[1 0 0])% set APPLY button to red color: no calibration wanted without points |
---|
791 | set(handles.CheckEnableMouse,'value',1); %activate mouse to pick new points |
---|
792 | |
---|
793 | %------------------------------------------------------------------------ |
---|
794 | % --- Executes on button press in CLEAR LIST |
---|
795 | function CLEAR_Callback(hObject, eventdata, handles) |
---|
796 | %------------------------------------------------------------------------ |
---|
797 | set(handles.ListCoordFiles,'Value',1) |
---|
798 | set(handles.ListCoordFiles,'String',{''}) |
---|
799 | |
---|
800 | %------------------------------------------------------------------------ |
---|
801 | % --- Executes on selection change in CheckEnableMouse. |
---|
802 | function CheckEnableMouse_Callback(hObject, eventdata, handles) |
---|
803 | %------------------------------------------------------------------------ |
---|
804 | choice=get(handles.CheckEnableMouse,'Value'); |
---|
805 | if choice |
---|
806 | huvmat=findobj(allchild(0),'tag','uvmat'); |
---|
807 | if ishandle(huvmat) |
---|
808 | hhuvmat=guidata(huvmat); |
---|
809 | set(hhuvmat.MenuRuler,'checked','off')%desactivate ruler |
---|
810 | if get(hhuvmat.CheckEditObject,'Value') |
---|
811 | set(hhuvmat.CheckEditObject,'Value',0) |
---|
812 | uvmat('CheckEditObject_Callback',hhuvmat.CheckEditObject,[],hhuvmat) |
---|
813 | end |
---|
814 | set(hhuvmat.MenuRuler,'checked','off')%desactivate ruler |
---|
815 | end |
---|
816 | end |
---|
817 | |
---|
818 | % -------------------------------------------------------------------- |
---|
819 | function MenuHelp_Callback(hObject, eventdata, handles) |
---|
820 | web('http://servforge.legi.grenoble-inp.fr/projects/soft-uvmat/wiki/UvmatHelp#a8-Geometriccalibration') |
---|
821 | % path_to_uvmat=which('uvmat');% check the path of uvmat |
---|
822 | % pathelp=fileparts(path_to_uvmat); |
---|
823 | % helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html'); |
---|
824 | % if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package') |
---|
825 | % else |
---|
826 | % addpath (fullfile(pathelp,'uvmat_doc')) |
---|
827 | % web([helpfile '#geometry_calib']) |
---|
828 | % end |
---|
829 | |
---|
830 | % -------------------------------------------------------------------- |
---|
831 | function MenuSetScale_Callback(hObject, eventdata, handles) |
---|
832 | |
---|
833 | answer=msgbox_uvmat('INPUT_TXT','scale pixel/cm?',''); |
---|
834 | %create test points |
---|
835 | huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle |
---|
836 | hhuvmat=guidata(huvmat); |
---|
837 | if ~strcmp(get(hhuvmat.Scalar,'Visible'),'on') |
---|
838 | msgbox_uvmat('ERROR','An image needs to be opened in uvmat for calibration') |
---|
839 | return |
---|
840 | end |
---|
841 | set(handles.calib_type,'Value',1)% set calib option to 'rescale' |
---|
842 | npx=str2num(get(hhuvmat.num_Npx,'String'))/2; |
---|
843 | npy=str2num(get(hhuvmat.num_Npy,'String'))/2; |
---|
844 | Xima=[0.25*npx 0.75*npx 0.75*npx 0.25*npx]'; |
---|
845 | Yima=[0.25*npy 0.25*npy 0.75*npy 0.75*npy]'; |
---|
846 | x=Xima/str2num(answer); |
---|
847 | y=Yima/str2num(answer); |
---|
848 | Coord=[x y zeros(4,1) Xima Yima zeros(4,1)]; |
---|
849 | set(handles.ListCoord,'Data',Coord) |
---|
850 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
851 | set(handles.CheckEnableMouse,'value',0); %desactivate mouse to avoid spurious points |
---|
852 | |
---|
853 | %------------------------------------------------------------------------ |
---|
854 | function MenuCreateGrid_Callback(hObject, eventdata, handles) |
---|
855 | %------------------------------------------------------------------------ |
---|
856 | CalibData=get(handles.geometry_calib,'UserData'); |
---|
857 | Tinput=[];%default |
---|
858 | if isfield(CalibData,'grid') |
---|
859 | Tinput=CalibData.grid; |
---|
860 | end |
---|
861 | [T,CalibData.grid]=create_grid(Tinput);%display the GUI create_grid |
---|
862 | set(handles.geometry_calib,'UserData',CalibData) |
---|
863 | |
---|
864 | %grid in phys space |
---|
865 | Coord=get(handles.ListCoord,'Data'); |
---|
866 | Coord(1:size(T,1),1:3)=T;%update the existing list of phys coordinates from the GUI create_grid |
---|
867 | set(handles.ListCoord,'Data',Coord) |
---|
868 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
869 | set(handles.CheckEnableMouse,'value',0); %desactivate mouse to avoid spurious points |
---|
870 | |
---|
871 | % ----------------------------------------------------------------------- |
---|
872 | % --- automatic grid dectection from local maxima of the images |
---|
873 | function MenuDetectGrid_Callback(hObject, eventdata, handles) |
---|
874 | %------------------------------------------------------------------------ |
---|
875 | %% read the four last point coordinates in pixels |
---|
876 | Coord=get(handles.ListCoord,'Data');%read list of coordinates on geometry_calib |
---|
877 | nbpoints=size(Coord,1); %nbre of calibration points |
---|
878 | if nbpoints~=4 |
---|
879 | 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') |
---|
880 | return |
---|
881 | end |
---|
882 | % corners_X=(Coord(end:-1:end-3,4)); %pixel absissa of the four corners |
---|
883 | % corners_Y=(Coord(end:-1:end-3,5)); |
---|
884 | corners_X=(Coord(:,4)); %pixel absissa of the four corners |
---|
885 | corners_Y=(Coord(:,5)); |
---|
886 | |
---|
887 | %%%%%% |
---|
888 | % corners_X=1000*[1.5415 1.7557 1.7539 1.5415]'; |
---|
889 | % corners_Y=1000*[1.1515 1.1509 1.3645 1.3639]'; |
---|
890 | |
---|
891 | %reorder the last two points (the two first in the list) if needed |
---|
892 | angles=angle((corners_X-corners_X(1))+1i*(corners_Y-corners_Y(1))); |
---|
893 | if abs(angles(4)-angles(2))>abs(angles(3)-angles(2)) |
---|
894 | X_end=corners_X(4); |
---|
895 | Y_end=corners_Y(4); |
---|
896 | corners_X(4)=corners_X(3); |
---|
897 | corners_Y(4)=corners_Y(3); |
---|
898 | corners_X(3)=X_end; |
---|
899 | corners_Y(3)=Y_end; |
---|
900 | end |
---|
901 | |
---|
902 | %% initiate the grid in phys coordinates |
---|
903 | CalibData=get(handles.geometry_calib,'UserData');%get information stored on the GUI geometry_calib |
---|
904 | grid_input=[];%default |
---|
905 | if isfield(CalibData,'grid') |
---|
906 | grid_input=CalibData.grid;%retrieve the previously used grid |
---|
907 | end |
---|
908 | [T,CalibData.grid,CalibData.grid.CheckWhite]=create_grid(grid_input,'detect_grid');%display the GUI create_grid, read the set of phys coordinates T |
---|
909 | set(handles.geometry_calib,'UserData',CalibData)%store the phys grid parameters for later use |
---|
910 | X=[CalibData.grid.x_0 CalibData.grid.x_1 CalibData.grid.x_0 CalibData.grid.x_1]';%corner absissa in the phys coordinates (cm) |
---|
911 | Y=[CalibData.grid.y_0 CalibData.grid.y_0 CalibData.grid.y_1 CalibData.grid.y_1]';%corner ordinates in the phys coordinates (cm) |
---|
912 | |
---|
913 | %% read the current image, displayed in the GUI uvmat |
---|
914 | huvmat=findobj(allchild(0),'Name','uvmat'); |
---|
915 | UvData=get(huvmat,'UserData'); |
---|
916 | A=UvData.Field.A;%currently displayed image |
---|
917 | npxy=size(A); |
---|
918 | |
---|
919 | %% calculate transform matrices for plane projection: rectangle assumed to be viewed in perspective |
---|
920 | % reference: http://alumni.media.mit.edu/~cwren/interpolator/ by Christopher R. Wren |
---|
921 | B = [ X Y ones(size(X)) zeros(4,3) -X.*corners_X -Y.*corners_X ... |
---|
922 | zeros(4,3) X Y ones(size(X)) -X.*corners_Y -Y.*corners_Y ]; |
---|
923 | B = reshape (B', 8 , 8 )'; |
---|
924 | D = [ corners_X , corners_Y ]; |
---|
925 | D = reshape (D', 8 , 1 ); |
---|
926 | l = (B' * B)\B' * D; |
---|
927 | Amat = reshape([l(1:6)' 0 0 1 ],3,3)'; |
---|
928 | C = [l(7:8)' 1]; |
---|
929 | |
---|
930 | %% transform grid image into 'phys' coordinates |
---|
931 | GeometryCalib.CalibrationType='3D_linear'; |
---|
932 | GeometryCalib.fx_fy=[1 1]; |
---|
933 | GeometryCalib.Tx_Ty_Tz=[Amat(1,3) Amat(2,3) 1]; |
---|
934 | GeometryCalib.R=[Amat(1,1),Amat(1,2),0;Amat(2,1),Amat(2,2),0;C(1),C(2),0]; |
---|
935 | GeometryCalib.CoordUnit='cm'; |
---|
936 | path_uvmat=which('uvmat');% check the path detected for source file uvmat |
---|
937 | path_UVMAT=fileparts(path_uvmat); %path to UVMAT |
---|
938 | addpath(fullfile(path_UVMAT,'transform_field')) |
---|
939 | Data.ListVarName={'AY','AX','A'}; |
---|
940 | Data.VarDimName={'AY','AX',{'AY','AX'}}; |
---|
941 | if ndims(A)==3 |
---|
942 | A=mean(A,3); |
---|
943 | end |
---|
944 | Data.A=A-min(min(A)); |
---|
945 | Data.AY=[npxy(1)-0.5 0.5]; |
---|
946 | Data.AX=[0.5 npxy(2)]; |
---|
947 | Data.CoordUnit='pixel'; |
---|
948 | Calib.GeometryCalib=GeometryCalib; |
---|
949 | DataOut=phys(Data,Calib); |
---|
950 | rmpath(fullfile(path_UVMAT,'transform_field')) |
---|
951 | Amod=DataOut.A;% current image expressed in 'phys' coord |
---|
952 | Rangx=DataOut.AX;% x coordinates of first and last pixel centres in phys |
---|
953 | Rangy=DataOut.AY;% y coordinates of first and last pixel centres in phys |
---|
954 | if CalibData.grid.CheckWhite |
---|
955 | Amod=double(Amod);%case of white grid markers: will look for image maxima |
---|
956 | else |
---|
957 | Amod=-double(Amod);%case of black grid markers: will look for image minima |
---|
958 | end |
---|
959 | |
---|
960 | %% detection of local image extrema in each direction |
---|
961 | Dx=(Rangx(2)-Rangx(1))/(npxy(2)-1); %x mesh in real space |
---|
962 | Dy=(Rangy(2)-Rangy(1))/(npxy(1)-1); %y mesh in real space |
---|
963 | ind_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 |
---|
964 | ind_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 |
---|
965 | nbpoints=size(T,1); |
---|
966 | TIndex=ones(size(T));% image indices corresponding to point coordinates |
---|
967 | %look for image maxima around each expected grid point |
---|
968 | for ipoint=1:nbpoints |
---|
969 | i0=1+round((T(ipoint,1)-Rangx(1))/Dx);% x index of the expected point in the phys image Amod |
---|
970 | j0=1+round((T(ipoint,2)-Rangy(1))/Dy);% y index of the expected point in the phys image Amod |
---|
971 | j0min=max(j0-ind_range_y,1);% min y index selected for the subimage (cut at the edge to avoid index <1) |
---|
972 | j0max=min(j0+ind_range_y,size(Amod,1));% max y index selected for the subimage (cut at the edge to avoid index > size) |
---|
973 | i0min=max(i0-ind_range_x,1);% min x index selected for the subimage (cut at the edge to avoid index <1) |
---|
974 | i0max=min(i0+ind_range_x,size(Amod,2));% max x index selected for the subimage (cut at the edge to avoid index > size) |
---|
975 | Asub=Amod(j0min:j0max,i0min:i0max); %subimage used to find brigthness extremum |
---|
976 | x_profile=sum(Asub,1);%profile of subimage summed over y |
---|
977 | y_profile=sum(Asub,2);%profile of subimage summed over x |
---|
978 | |
---|
979 | [tild,ind_x_max]=max(x_profile);% index of max for the x profile |
---|
980 | [tild,ind_y_max]=max(y_profile);% index of max for the y profile |
---|
981 | %sub-pixel improvement using moments |
---|
982 | x_shift=0; |
---|
983 | y_shift=0; |
---|
984 | if ind_x_max+2<=numel(x_profile) && ind_x_max-2>=1 |
---|
985 | Atop=x_profile(ind_x_max-2:ind_x_max+2);% extract x profile around the max |
---|
986 | x_shift=sum(Atop.*[-2 -1 0 1 2])/sum(Atop); |
---|
987 | end |
---|
988 | if ind_y_max+2<=numel(y_profile) && ind_y_max-2>=1 |
---|
989 | Atop=y_profile(ind_y_max-2:ind_y_max+2);% extract y profile around the max |
---|
990 | y_shift=sum(Atop.*[-2 -1 0 1 2]')/sum(Atop); |
---|
991 | end |
---|
992 | %%%% |
---|
993 | % if ipoint==9 |
---|
994 | % figure(11) |
---|
995 | % imagesc(Asub) |
---|
996 | % figure(12) |
---|
997 | % plot(x_profile,'r') |
---|
998 | % hold on |
---|
999 | % plot(y_profile,'b') |
---|
1000 | % grid on |
---|
1001 | % end |
---|
1002 | %%%% |
---|
1003 | TIndex(ipoint,1)=(i0min+ind_x_max-1+x_shift);% x position of the maximum (in index of Amod) |
---|
1004 | TIndex(ipoint,2)=(j0min+ind_y_max-1+y_shift);% y position of the maximum (in index of Amod) |
---|
1005 | end |
---|
1006 | Tmod(:,1)=(TIndex(:,1)-1)*Dx+Rangx(1); |
---|
1007 | Tmod(:,2)=(TIndex(:,2)-1)*Dy+Rangy(1); |
---|
1008 | %Tmod=T(:,(1:2))+Delta;% 'phys' coordinates of the detected points |
---|
1009 | [Xpx,Ypx]=px_XYZ(GeometryCalib,Tmod(:,1),Tmod(:,2));% image coordinates of the detected points |
---|
1010 | Coord=[T Xpx Ypx zeros(size(T,1),1)]; |
---|
1011 | set(handles.ListCoord,'Data',Coord) |
---|
1012 | PLOT_Callback(hObject, eventdata, handles) |
---|
1013 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1014 | set(handles.CheckEnableMouse,'value',0); %desactivate mouse to avoid spurious points |
---|
1015 | |
---|
1016 | |
---|
1017 | %----------------------------------------------------------------------- |
---|
1018 | function MenuTranslatePoints_Callback(hObject, eventdata, handles) |
---|
1019 | %----------------------------------------------------------------------- |
---|
1020 | %hcalib=get(handles.calib_type,'parent');%handles of the GUI geometry_calib |
---|
1021 | CalibData=get(handles.geometry_calib,'UserData'); |
---|
1022 | Tinput=[];%default |
---|
1023 | if isfield(CalibData,'translate') |
---|
1024 | Tinput=CalibData.translate; |
---|
1025 | end |
---|
1026 | T=translate_points(Tinput);%display translate_points GUI and get shift parameters |
---|
1027 | CalibData.translate=T; |
---|
1028 | set(handles.geometry_calib,'UserData',CalibData) |
---|
1029 | %translation |
---|
1030 | Coord=get(handles.ListCoord,'Data'); |
---|
1031 | Coord(:,1)=T(1)+Coord(:,1); |
---|
1032 | Coord(:,2)=T(2)+Coord(:,2); |
---|
1033 | Coord(:,3)=T(3)+Coord(:,3); |
---|
1034 | set(handles.ListCoord,'Data',Coord); |
---|
1035 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1036 | |
---|
1037 | % -------------------------------------------------------------------- |
---|
1038 | function MenuRotatePoints_Callback(hObject, eventdata, handles) |
---|
1039 | %hcalib=get(handles.calib_type,'parent');%handles of the GUI geometry_calib |
---|
1040 | CalibData=get(handles.geometry_calib,'UserData'); |
---|
1041 | Tinput=[];%default |
---|
1042 | if isfield(CalibData,'rotate') |
---|
1043 | Tinput=CalibData.rotate; |
---|
1044 | end |
---|
1045 | T=rotate_points(Tinput);%display rotate_points GUI to introduce rotation parameters |
---|
1046 | CalibData.rotate=T; |
---|
1047 | set(handles.geometry_calib,'UserData',CalibData) |
---|
1048 | %----------------------------------------------------- |
---|
1049 | %rotation |
---|
1050 | Phi=T(1); |
---|
1051 | O_x=0;%default |
---|
1052 | O_y=0;%default |
---|
1053 | if numel(T)>=2 |
---|
1054 | O_x=T(2);%default |
---|
1055 | end |
---|
1056 | if numel(T)>=3 |
---|
1057 | O_y=T(3);%default |
---|
1058 | end |
---|
1059 | Coord=get(handles.ListCoord,'Data'); |
---|
1060 | r1=cos(pi*Phi/180); |
---|
1061 | r2=-sin(pi*Phi/180); |
---|
1062 | r3=sin(pi*Phi/180); |
---|
1063 | r4=cos(pi*Phi/180); |
---|
1064 | x=Coord(:,1)-O_x; |
---|
1065 | y=Coord(:,2)-O_y; |
---|
1066 | Coord(:,1)=r1*x+r2*y; |
---|
1067 | Coord(:,2)=r3*x+r4*y; |
---|
1068 | set(handles.ListCoord,'Data',Coord) |
---|
1069 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1070 | |
---|
1071 | % -------------------------------------------------------------------- |
---|
1072 | function MenuImportPoints_Callback(hObject, eventdata, handles) |
---|
1073 | fileinput=browse_xml(hObject, eventdata, handles); |
---|
1074 | if isempty(fileinput) |
---|
1075 | return |
---|
1076 | end |
---|
1077 | [s,errormsg]=imadoc2struct(fileinput,'GeometryCalib'); |
---|
1078 | if ~isfield(s,'GeometryCalib') |
---|
1079 | msgbox_uvmat('ERROR','invalid input file: no geometry_calib data') |
---|
1080 | return |
---|
1081 | end |
---|
1082 | GeometryCalib=s.GeometryCalib; |
---|
1083 | if ~(isfield(GeometryCalib,'SourceCalib')&&isfield(GeometryCalib.SourceCalib,'PointCoord')) |
---|
1084 | msgbox_uvmat('ERROR','invalid input file: no calibration points') |
---|
1085 | return |
---|
1086 | end |
---|
1087 | Coord=GeometryCalib.SourceCalib.PointCoord; |
---|
1088 | Coord=[Coord zeros(size(Coord,1),1)]; |
---|
1089 | set(handles.ListCoord,'Data',Coord) |
---|
1090 | PLOT_Callback(handles.geometry_calib, [], handles) |
---|
1091 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1092 | set(handles.CheckEnableMouse,'value',0); %desactivate mouse to avoid modifications by default |
---|
1093 | |
---|
1094 | % ----------------------------------------------------------------------- |
---|
1095 | function MenuImportIntrinsic_Callback(hObject, eventdata, handles) |
---|
1096 | %------------------------------------------------------------------------ |
---|
1097 | fileinput=browse_xml(hObject, eventdata, handles); |
---|
1098 | if isempty(fileinput) |
---|
1099 | return |
---|
1100 | end |
---|
1101 | [s,errormsg]=imadoc2struct(fileinput,'GeometryCalib'); |
---|
1102 | GeometryCalib=s.GeometryCalib; |
---|
1103 | display_intrinsic(GeometryCalib,handles) |
---|
1104 | |
---|
1105 | % ----------------------------------------------------------------------- |
---|
1106 | function MenuImportAll_Callback(hObject, eventdata, handles) |
---|
1107 | %------------------------------------------------------------------------ |
---|
1108 | fileinput=browse_xml(hObject, eventdata, handles); |
---|
1109 | if ~isempty(fileinput) |
---|
1110 | loadfile(handles,fileinput) |
---|
1111 | end |
---|
1112 | set(handles.CheckEnableMouse,'value',0); %desactivate mouse to avoid modifications by default |
---|
1113 | |
---|
1114 | % ----------------------------------------------------------------------- |
---|
1115 | % --- Executes on menubar option Import/Grid file: introduce previous grid files |
---|
1116 | function MenuGridFile_Callback(hObject, eventdata, handles) |
---|
1117 | % ----------------------------------------------------------------------- |
---|
1118 | inputfile=browse_xml(hObject, eventdata, handles); |
---|
1119 | listfile=get(handles.ListCoordFiles,'String'); |
---|
1120 | if isequal(listfile,{''}) |
---|
1121 | listfile={inputfile}; |
---|
1122 | else |
---|
1123 | listfile=[listfile;{inputfile}];%update the list of coord files |
---|
1124 | end |
---|
1125 | set(handles.ListCoordFiles,'String',listfile); |
---|
1126 | |
---|
1127 | |
---|
1128 | %------------------------------------------------------------------------ |
---|
1129 | function fileinput=browse_xml(hObject, eventdata, handles) |
---|
1130 | %------------------------------------------------------------------------ |
---|
1131 | fileinput=[];%default |
---|
1132 | oldfile=''; %default |
---|
1133 | UserData=get(handles.geometry_calib,'UserData'); |
---|
1134 | if isfield(UserData,'XmlInputFile') |
---|
1135 | oldfile=UserData.XmlInputFile; |
---|
1136 | end |
---|
1137 | [FileName, PathName, filterindex] = uigetfile( ... |
---|
1138 | {'*.xml;*.mat', ' (*.xml,*.mat)'; |
---|
1139 | '*.xml', '.xml files '; ... |
---|
1140 | '*.mat', '.mat matlab files '}, ... |
---|
1141 | 'Pick a file',oldfile); |
---|
1142 | fileinput=[PathName FileName];%complete file name |
---|
1143 | testblank=findstr(fileinput,' ');%look for blanks |
---|
1144 | if ~isempty(testblank) |
---|
1145 | msgbox_uvmat('ERROR','forbidden input file name or path: no blank character allowed') |
---|
1146 | return |
---|
1147 | end |
---|
1148 | sizf=size(fileinput); |
---|
1149 | if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end |
---|
1150 | UserData.XmlInputFile=fileinput; |
---|
1151 | set(handles.geometry_calib,'UserData',UserData)%record current file foer further use of browser |
---|
1152 | |
---|
1153 | % ----------------------------------------------------------------------- |
---|
1154 | function Heading=loadfile(handles,fileinput) |
---|
1155 | %------------------------------------------------------------------------ |
---|
1156 | Heading=[];%default |
---|
1157 | [s,errormsg]=imadoc2struct(fileinput,'Heading','GeometryCalib'); |
---|
1158 | if ~isempty(errormsg) |
---|
1159 | msgbox_uvmat('ERROR',errormsg) |
---|
1160 | return |
---|
1161 | end |
---|
1162 | if ~isempty(s.Heading) |
---|
1163 | Heading=s.Heading; |
---|
1164 | end |
---|
1165 | |
---|
1166 | GeometryCalib=s.GeometryCalib; |
---|
1167 | fx=1;fy=1;Cx=0;Cy=0;kc=0; %default |
---|
1168 | CoordCell={}; |
---|
1169 | Tabchar={};%default |
---|
1170 | val_cal=1;%default |
---|
1171 | if ~isempty(GeometryCalib) |
---|
1172 | % choose the calibration option |
---|
1173 | if isfield(GeometryCalib,'CalibrationType') |
---|
1174 | calib_list=get(handles.calib_type,'String'); |
---|
1175 | for ilist=1:numel(calib_list) |
---|
1176 | if strcmp(calib_list{ilist},GeometryCalib.CalibrationType) |
---|
1177 | val_cal=ilist; |
---|
1178 | break |
---|
1179 | end |
---|
1180 | end |
---|
1181 | end |
---|
1182 | display_intrinsic(GeometryCalib,handles)%intrinsic param |
---|
1183 | %extrinsic param |
---|
1184 | if isfield(GeometryCalib,'Tx_Ty_Tz') |
---|
1185 | Tx_Ty_Tz=GeometryCalib.Tx_Ty_Tz; |
---|
1186 | set(handles.Tx,'String',num2str(GeometryCalib.Tx_Ty_Tz(1),4)) |
---|
1187 | set(handles.Ty,'String',num2str(GeometryCalib.Tx_Ty_Tz(2),4)) |
---|
1188 | set(handles.Tz,'String',num2str(GeometryCalib.Tx_Ty_Tz(3),4)) |
---|
1189 | end |
---|
1190 | if isfield(GeometryCalib,'omc') |
---|
1191 | set(handles.Phi,'String',num2str(GeometryCalib.omc(1),4)) |
---|
1192 | set(handles.Theta,'String',num2str(GeometryCalib.omc(2),4)) |
---|
1193 | set(handles.Psi,'String',num2str(GeometryCalib.omc(3),4)) |
---|
1194 | end |
---|
1195 | if isfield(GeometryCalib,'SourceCalib')&& isfield(GeometryCalib.SourceCalib,'PointCoord') |
---|
1196 | calib=GeometryCalib.SourceCalib.PointCoord; |
---|
1197 | Coord=[calib zeros(size(calib,1),1)]; |
---|
1198 | set(handles.ListCoord,'Data',Coord) |
---|
1199 | end |
---|
1200 | PLOT_Callback(handles.geometry_calib, [], handles) |
---|
1201 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1202 | end |
---|
1203 | set(handles.calib_type,'Value',val_cal) |
---|
1204 | |
---|
1205 | if isempty(CoordCell)% allow mouse action by default in the absence of input points |
---|
1206 | set(handles.CheckEnableMouse,'Value',1) |
---|
1207 | set(handles.CheckEnableMouse,'BackgroundColor',[1 1 0]) |
---|
1208 | else % does not allow mouse action by default in the presence of input points |
---|
1209 | set(handles.CheckEnableMouse,'Value',0) |
---|
1210 | set(handles.CheckEnableMouse,'BackgroundColor',[0.7 0.7 0.7]) |
---|
1211 | end |
---|
1212 | |
---|
1213 | %------------------------------------------------------------------------ |
---|
1214 | %---display calibration intrinsic parameters |
---|
1215 | function display_intrinsic(GeometryCalib,handles) |
---|
1216 | %------------------------------------------------------------------------ |
---|
1217 | fx=[]; |
---|
1218 | fy=[]; |
---|
1219 | if isfield(GeometryCalib,'fx_fy') |
---|
1220 | fx=GeometryCalib.fx_fy(1); |
---|
1221 | fy=GeometryCalib.fx_fy(2); |
---|
1222 | end |
---|
1223 | Cx_Cy=[0 0];%default |
---|
1224 | if isfield(GeometryCalib,'Cx_Cy') |
---|
1225 | Cx_Cy=GeometryCalib.Cx_Cy; |
---|
1226 | end |
---|
1227 | kc=0; |
---|
1228 | if isfield(GeometryCalib,'kc') |
---|
1229 | kc=GeometryCalib.kc; %* GeometryCalib.focal*GeometryCalib.focal; |
---|
1230 | end |
---|
1231 | set(handles.fx,'String',num2str(fx,5)) |
---|
1232 | set(handles.fy,'String',num2str(fy,5)) |
---|
1233 | set(handles.Cx,'String',num2str(Cx_Cy(1),'%1.1f')) |
---|
1234 | set(handles.Cy,'String',num2str(Cx_Cy(2),'%1.1f')) |
---|
1235 | set(handles.kc,'String',num2str(kc,'%1.4f')) |
---|
1236 | |
---|
1237 | |
---|
1238 | % --- Executes when user attempts to close geometry_calib. |
---|
1239 | function geometry_calib_CloseRequestFcn(hObject, eventdata, handles) |
---|
1240 | |
---|
1241 | delete(hObject); % closes the figure |
---|
1242 | |
---|
1243 | %------------------------------------------------------------------------ |
---|
1244 | % --- Executes on button press in PLOT. |
---|
1245 | %------------------------------------------------------------------------ |
---|
1246 | function PLOT_Callback(hObject, eventdata, handles) |
---|
1247 | huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle |
---|
1248 | hhuvmat=guidata(huvmat); %handles of GUI elements in uvmat |
---|
1249 | h_menu_coord=findobj(huvmat,'Tag','TransformName'); |
---|
1250 | menu=get(h_menu_coord,'String'); |
---|
1251 | choice=get(h_menu_coord,'Value'); |
---|
1252 | option=''; |
---|
1253 | if iscell(menu) |
---|
1254 | option=menu{choice}; |
---|
1255 | end |
---|
1256 | Coord=get(handles.ListCoord,'Data'); |
---|
1257 | if ~isempty(Coord) |
---|
1258 | if isequal(option,'phys') |
---|
1259 | Coord_plot=Coord(:,1:3); |
---|
1260 | elseif isempty(option);%optionoption,'px')||isequal(option,'') |
---|
1261 | Coord_plot=Coord(:,4:5); |
---|
1262 | else |
---|
1263 | msgbox_uvmat('ERROR','the choice in menu_coord of uvmat must be blank or phys ') |
---|
1264 | end |
---|
1265 | end |
---|
1266 | |
---|
1267 | set(0,'CurrentFigure',huvmat) |
---|
1268 | set(huvmat,'CurrentAxes',hhuvmat.PlotAxes) |
---|
1269 | hh=findobj('Tag','calib_points'); |
---|
1270 | if ~isempty(Coord) && isempty(hh) |
---|
1271 | hh=line(Coord_plot(:,1),Coord_plot(:,2),'Color','m','Tag','calib_points','LineStyle','.','Marker','+','MarkerSize',10); |
---|
1272 | elseif isempty(Coord)%empty list of points, suppress the plot |
---|
1273 | delete(hh) |
---|
1274 | else |
---|
1275 | set(hh,'XData',Coord_plot(:,1)) |
---|
1276 | set(hh,'YData',Coord_plot(:,2)) |
---|
1277 | end |
---|
1278 | pause(.1) |
---|
1279 | figure(handles.geometry_calib) |
---|
1280 | |
---|
1281 | %------------------------------------------------------------------------ |
---|
1282 | % --- Executes on button press in Copy: display Coord on the Matlab work space |
---|
1283 | %------------------------------------------------------------------------ |
---|
1284 | function Copy_Callback(hObject, eventdata, handles) |
---|
1285 | global Coord |
---|
1286 | evalin('base','global Coord')%make CurData global in the workspace |
---|
1287 | Coord=get(handles.ListCoord,'Data'); |
---|
1288 | display('coordinates of calibration points (phys,px,marker) :') |
---|
1289 | evalin('base','Coord') %display CurData in the workspace |
---|
1290 | commandwindow; %brings the Matlab command window to the front |
---|
1291 | |
---|
1292 | %------------------------------------------------------------------------ |
---|
1293 | % --- Executes when selected cell(s) is changed in ListCoord. |
---|
1294 | %------------------------------------------------------------------------ |
---|
1295 | function ListCoord_CellSelectionCallback(hObject, eventdata, handles) |
---|
1296 | if ~isempty(eventdata.Indices) |
---|
1297 | iline=eventdata.Indices(1);% selected line number |
---|
1298 | set(handles.CoordLine,'String',num2str(iline)) |
---|
1299 | Data=get(handles.ListCoord,'Data'); |
---|
1300 | update_calib_marker(Data(iline,:)) |
---|
1301 | end |
---|
1302 | |
---|
1303 | %------------------------------------------------------------------------ |
---|
1304 | % --- Executes when entered data in editable cell(s) in ListCoord. |
---|
1305 | %------------------------------------------------------------------------ |
---|
1306 | function ListCoord_CellEditCallback(hObject, eventdata, handles) |
---|
1307 | |
---|
1308 | Input=str2num(eventdata.EditData);%pasted input |
---|
1309 | Coord=get(handles.ListCoord,'Data'); |
---|
1310 | iline=eventdata.Indices(1);% selected line number |
---|
1311 | if size(Coord,1)<iline+numel(Input) |
---|
1312 | Coord=[Coord ; zeros(iline+numel(Input)-size(Coord,1),6)];% append zeros to fit the new column |
---|
1313 | end |
---|
1314 | Coord(iline:iline+numel(Input)-1,eventdata.Indices(2))=Input'; |
---|
1315 | set(handles.ListCoord,'Data',Coord) |
---|
1316 | PLOT_Callback(hObject, eventdata, handles) |
---|
1317 | |
---|
1318 | %------------------------------------------------------------------------ |
---|
1319 | % --- 'key_press_fcn:' function activated when a key is pressed on the keyboard |
---|
1320 | %------------------------------------------------------------------------ |
---|
1321 | function ListCoord_KeyPressFcn(hObject, eventdata, handles) |
---|
1322 | iline=str2num(get(handles.CoordLine,'String')); |
---|
1323 | xx=double(get(handles.geometry_calib,'CurrentCharacter'));%get the keyboard character |
---|
1324 | if ismember(xx,[28 29 30 31])% directional arrow |
---|
1325 | Coord=get(handles.ListCoord,'Data'); |
---|
1326 | switch xx |
---|
1327 | case 30 % arrow upward |
---|
1328 | iline=iline-1; |
---|
1329 | case 31% arrow downward |
---|
1330 | iline=iline+1; |
---|
1331 | end |
---|
1332 | if iline>=1 && iline<=size(Coord,1) |
---|
1333 | set(handles.CoordLine,'String',num2str(iline)) |
---|
1334 | update_calib_marker(Coord(iline,1:5))% show the point corresponding to the selected line |
---|
1335 | end |
---|
1336 | else |
---|
1337 | set(handles.APPLY,'BackgroundColor',[1 0 1])% paint APPLY in magenta to indicate that the table content has be modified |
---|
1338 | end |
---|
1339 | |
---|
1340 | |
---|
1341 | %------------------------------------------------------------------------ |
---|
1342 | % --- update the plot of calibration points |
---|
1343 | %------------------------------------------------------------------------ |
---|
1344 | % draw a circle around the point defined by the input coordinates Coord as given by line in the table Listcoord |
---|
1345 | function update_calib_marker(Coord) |
---|
1346 | |
---|
1347 | %% read config on uvmat |
---|
1348 | huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle |
---|
1349 | hhuvmat=guidata(huvmat); |
---|
1350 | hhh=findobj(hhuvmat.PlotAxes,'Tag','calib_marker'); |
---|
1351 | if numel(Coord)<5 |
---|
1352 | if ~isempty(hhh) |
---|
1353 | delete(hhh)%delete the circle marker in case of no valid input |
---|
1354 | end |
---|
1355 | return |
---|
1356 | end |
---|
1357 | menu=get(hhuvmat.TransformName,'String'); |
---|
1358 | choice=get(hhuvmat.TransformName,'Value'); |
---|
1359 | option=''; |
---|
1360 | if iscell(menu) |
---|
1361 | option=menu{choice}; |
---|
1362 | end |
---|
1363 | |
---|
1364 | %% read appropriate coordinates (px or phys) in the table ListCoord |
---|
1365 | if isequal(option,'phys') % use phys coord |
---|
1366 | XCoord=Coord(1); |
---|
1367 | YCoord=Coord(2); |
---|
1368 | elseif isempty(option)% use coord in pixels |
---|
1369 | XCoord=Coord(4); |
---|
1370 | YCoord=Coord(5); |
---|
1371 | else |
---|
1372 | msgbox_uvmat('ERROR','the choice in menu_coord of uvmat must be blank or phys ') |
---|
1373 | return |
---|
1374 | end |
---|
1375 | |
---|
1376 | %% adjust the plot limits if needed |
---|
1377 | xlim=get(hhuvmat.PlotAxes,'XLim'); |
---|
1378 | ylim=get(hhuvmat.PlotAxes,'YLim'); |
---|
1379 | ind_range=max(abs(xlim(2)-xlim(1)),abs(ylim(end)-ylim(1)))/25;%defines the size of the circle marker |
---|
1380 | check_xlim=0; |
---|
1381 | if XCoord>xlim(2) |
---|
1382 | xlim=xlim+XCoord-xlim(2)+ind_range;% translate plot limit |
---|
1383 | check_xlim=1; |
---|
1384 | elseif XCoord<xlim(1) |
---|
1385 | xlim=xlim-XCoord+xlim(1)-ind_range;% translate plot limit |
---|
1386 | check_xlim=1; |
---|
1387 | end |
---|
1388 | if check_xlim |
---|
1389 | set(hhuvmat.PlotAxes,'XLim',xlim); |
---|
1390 | set(hhuvmat.num_MaxX,'String',num2str(xlim(2))); |
---|
1391 | set(hhuvmat.num_MinX,'String',num2str(xlim(1))); |
---|
1392 | end |
---|
1393 | check_ylim=0; |
---|
1394 | if YCoord>ylim(2) |
---|
1395 | ylim=ylim+YCoord-ylim(2)+ind_range;% translate plot limit |
---|
1396 | check_ylim=1; |
---|
1397 | elseif YCoord<ylim(1) |
---|
1398 | ylim=ylim-YCoord+ylim(1)-ind_range;% translate plot limit |
---|
1399 | check_ylim=1; |
---|
1400 | end |
---|
1401 | if check_ylim |
---|
1402 | set(hhuvmat.PlotAxes,'YLim',ylim); |
---|
1403 | set(hhuvmat.num_MaxY,'String',num2str(ylim(2))); |
---|
1404 | set(hhuvmat.num_MinY,'String',num2str(ylim(1))); |
---|
1405 | end |
---|
1406 | |
---|
1407 | %% plot a circle around the selected point |
---|
1408 | if isempty(hhh) |
---|
1409 | set(0,'CurrentFig',huvmat) |
---|
1410 | set(huvmat,'CurrentAxes',hhuvmat.PlotAxes) |
---|
1411 | rectangle('Curvature',[1 1],... |
---|
1412 | 'Position',[XCoord-ind_range/2 YCoord-ind_range/2 ind_range ind_range],'EdgeColor','m',... |
---|
1413 | 'LineStyle','-','Tag','calib_marker'); |
---|
1414 | else |
---|
1415 | set(hhh,'Position',[XCoord-ind_range/2 YCoord-ind_range/2 ind_range ind_range]) |
---|
1416 | end |
---|
1417 | |
---|
1418 | %------------------------------------------------------------------------ |
---|
1419 | % --- Executes on button press in ClearLine: remove the selected line in the table Coord |
---|
1420 | %------------------------------------------------------------------------ |
---|
1421 | function ClearLine_Callback(hObject, eventdata, handles) |
---|
1422 | |
---|
1423 | Coord=get(handles.ListCoord,'Data'); |
---|
1424 | iline=str2num(get(handles.CoordLine,'String')); |
---|
1425 | if isempty(iline) |
---|
1426 | msgbox_uvmat('WARNING','no line suppressed, select a line in the table') |
---|
1427 | else |
---|
1428 | answer=msgbox_uvmat('INPUT_Y-N',['suppress line ' num2str(iline) '?']); |
---|
1429 | if isequal(answer,'Yes') |
---|
1430 | Coord(iline,:)=[]; |
---|
1431 | set(handles.APPLY,'BackgroundColor',[1 0 1]) |
---|
1432 | set(handles.ListCoord,'Data',Coord); |
---|
1433 | set(handles.CoordLine,'String','') |
---|
1434 | PLOT_Callback(hObject,eventdata,handles) |
---|
1435 | update_calib_marker([]);%remove circle marker |
---|
1436 | end |
---|
1437 | end |
---|
1438 | |
---|