source: trunk/src/series/extract_rdvision.m @ 886

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

bug on memory increase solved for civ_series and stereo_civ, corrections for Matlab2014b

File size: 33.0 KB
Line 
1%'extract_rdvision': relabel an image series with two indices, and correct errors from the RDvision transfer program
2%------------------------------------------------------------------------
3% function ParamOut=extract_rdvision(Param)
4%------------------------------------------------------------------------
5%
6%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
7%
8%OUTPUT
9% ParamOut: sets options in the GUI series.fig needed for the function
10%
11%INPUT:
12% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
13% In batch mode, Param is the name of the corresponding xml file containing the same information
14% when Param.Action.RUN=0 (as activated when the current Action is selected
15% in series), the function ouput paramOut set the activation of the needed GUI elements
16%
17% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
18% see the current structure Param)
19%    .InputTable: cell of input file names, (several lines for multiple input)
20%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
21%    .OutputSubDir: name of the subdirectory for data outputs
22%    .OutputDirExt: directory extension for data outputs
23%    .Action: .ActionName: name of the current activated function
24%             .ActionPath:   path of the current activated function
25%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
26%             .RUN =0 for GUI input, =1 for function activation
27%             .RunMode='local','background', 'cluster': type of function  use
28%             
29%    .IndexRange: set the file or frame indices on which the action must be performed
30%    .FieldTransform: .TransformName: name of the selected transform function
31%                     .TransformPath:   path  of the selected transform function
32%    .InputFields: sub structure describing the input fields withfields
33%              .FieldName: name(s) of the field
34%              .VelType: velocity type
35%              .FieldName_1: name of the second field in case of two input series
36%              .VelType_1: velocity type of the second field in case of two input series
37%              .Coord_y: name of y coordinate variable
38%              .Coord_x: name of x coordinate variable
39%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41
42%=======================================================================
43% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
44%   http://www.legi.grenoble-inp.fr
45%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
46%
47%     This file is part of the toolbox UVMAT.
48%
49%     UVMAT is free software; you can redistribute it and/or modify
50%     it under the terms of the GNU General Public License as published
51%     by the Free Software Foundation; either version 2 of the license,
52%     or (at your option) any later version.
53%
54%     UVMAT is distributed in the hope that it will be useful,
55%     but WITHOUT ANY WARRANTY; without even the implied warranty of
56%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57%     GNU General Public License (see LICENSE.txt) for more details.
58%=======================================================================
59
60function ParamOut=extract_rdvision(Param) %default output=relabel_i_j(Param)
61
62%% set the input elements needed on the GUI series when the action is selected in the menu ActionName
63if isstruct(Param) && isequal(Param.Action.RUN,0)
64    ParamOut.AllowInputSort='off';...% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
65    ParamOut.WholeIndexRange='on';...% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
66    ParamOut.NbSlice='one'; ...%nbre of slices, 'one' prevents splitting in several processes, ('off' by default)
67    ParamOut.VelType='off';...% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
68    ParamOut.FieldName='off';...% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
69    ParamOut.FieldTransform = 'off';...%can use a transform function
70    ParamOut.ProjObject='off';...%can use projection object(option 'off'/'on',
71    ParamOut.Mask='off';...%can use mask option   (option 'off'/'on', 'off' by default)
72    ParamOut.OutputSubDirMode='custom'; %output folder given by the program, not by the GUI series
73     % detect the set of image folder
74    RootPath=Param.InputTable{1,1};
75    ListStruct=dir(RootPath);   
76    ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray
77    check_bad=strcmp('.',ListCells(1,:))|strcmp('..',ListCells(1,:));%detect the dir '.' to exclude it
78    check_dir=cell2mat(ListCells(4,:));% =1 for directories, =0 for files
79    ListDir=ListCells(1,find(check_dir & ~check_bad));
80%     InputTable=cell(numel(ListDir),5);
81%     InputTable(:,2)=ListDir';
82    isel=0;
83    InputTable=Param.InputTable;
84    for ilist=1:numel(ListDir)
85        ListStructSub=dir(fullfile(RootPath,ListDir{ilist}));
86        ListCellSub=struct2cell(ListStructSub);% transform dir struct to a cell arrray
87        detect_seq=regexp(ListCellSub(1,:),'.seq$');
88        seq_index=find(~cellfun('isempty',detect_seq),1);
89        if ~isempty(seq_index)
90%             msgbox_uvmat('ERROR',['not seq file in ' ListDir{ilist} ': please check the input folders'])
91%         else
92           isel=isel+1;
93           InputTable{isel,1}=RootPath;
94           InputTable{isel,2}=ListDir{ilist};
95            RootFile=regexprep(ListCellSub{1,seq_index},'.seq$','');
96            InputTable{isel,3}=RootFile;
97        InputTable{isel,4}='*';
98        InputTable{isel,5}='.seq';
99    end
100    end
101    hseries=findobj(allchild(0),'Tag','series');% find the parent GUI 'series'
102    hhseries=guidata(hseries); %handles of the elements in 'series'
103    set(hhseries.InputTable,'Data',InputTable)
104    ParamOut.ActionInput.LogPath=RootPath;% indicate the path for the output info: 0_LOG ....
105return
106end
107
108ParamOut=[];
109%%%%%%%%%%%% STANDARD PART  %%%%%%%%%%%%
110%% read input parameters from an xml file if input is a file name (batch mode)
111checkrun=1;
112if ischar(Param)
113    Param=xml2struct(Param);% read Param as input file (batch case)
114    checkrun=0;
115end
116hseries=findobj(allchild(0),'Tag','series');
117RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
118WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
119
120%% root input file(s) and type
121RootPath=Param.InputTable{1,1};
122if ~isempty(find(~strcmp(RootPath,Param.InputTable(:,1))))% if the Rootpath for each camera are not identical
123    disp_uvmat('ERROR','Rootpath for all cameras must be identical',checkrun)
124    return
125end
126
127% get the set of input file names (cell array filecell), and the lists of
128% input file or frame indices i1_series,i2_series,j1_series,j2_series
129[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
130
131%OutputDir=[Param.OutputSubDir Param.OutputDirExt];
132 
133% numbers of slices and file indices
134nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
135nbfield_i=size(i1_series{1},2); %nb of fields for the i index
136nbfield=nbfield_j*nbfield_i; %total number of fields
137
138%determine the file type on each line from the first input file
139
140FileInfo=get_file_info(filecell{1,1});
141if strcmp(FileInfo.FileType,'rdvision')
142    if ~isequal(FileInfo.NumberOfFrames,nbfield)
143        msgbox_uvmat('ERROR',['the whole series of ' num2str(FileInfo.NumberOfFrames) ' images must be extracted at once'])
144        %rmfield(OutputDir)
145        return
146    end
147    %% interactive input of specific parameters (for RDvision system)
148    display('converting images from RDvision system...')
149else
150    msgbox_uvmat('ERROR','the input is not from rdvision: a .seq or .sqb file must be opened')
151    return
152end
153t=xmltree;
154%%% A REMETTREE %%%%%%%%%%%%%%%%%%%%%
155%save(t,fullfile(RootPath,'Running.xml'))%create an xml file to indicate that processing takes place
156
157%% calibration data and timing: read the ImaDoc files
158mode=''; %default
159timecell={};
160itime=0;
161NbSlice_calib={};
162
163%SubDirBase=regexprep(SubDir{1},'\..*','');%take the root part of SubDir, before the first dot '.'
164
165%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
166%%%  loop on the cameras ( #iview)
167%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
168for iview=1:size(Param.InputTable,1)
169    filexml=[fullfile(RootPath,Param.InputTable{iview,3}) '.xml'];%new convention: xml at the level of the image folder
170    if ~exist(filexml,'file')
171        disp_uvmat('ERROR',[filexml ' missing'],checkrun)
172        return
173    end
174    [XmlData,error]=imadoc2struct_special(filexml);
175    if isfield(XmlData,'Time')
176        itime=itime+1;
177        timecell{itime}=XmlData.Time;
178    end
179    if isfield(XmlData,'GeometryCalib') && isfield(XmlData.GeometryCalib,'SliceCoord')
180        NbSlice_calib{1}=size(XmlData.GeometryCalib.SliceCoord,1);%nbre of slices for Zindex in phys transform
181        if ~isequal(NbSlice_calib{1},NbSlice_calib{1})
182            msgbox_uvmat('WARNING','inconsistent number of Z indices for the two field series');
183        end
184    end
185   
186   
187    % correction to RDvision xml file
188    t=xmltree(filexml);
189   
190    % correct Dtj and Dtk
191    NomTypeNew='_1_1';% new file nomencalture by default
192    ImageName='img_1_1.png';% first image name
193    if isfield(XmlData,'NbDtj')
194        uid_NbDtj=find(t,'ImaDoc/Camera/BurstTiming/NbDtj');
195        uid_value=children(t,uid_NbDtj);
196        if ~isempty(uid_value)
197            t=set(t,uid_value(1),'value',num2str(XmlData.NbDtj));
198        end
199    end
200    if isfield(XmlData,'NbDtk')
201        uid_NbDtk=find(t,'ImaDoc/Camera/BurstTiming/NbDtk');
202        uid_value=children(t,uid_NbDtk);
203        if ~isempty(uid_value)
204            t=set(t,uid_value(1),'value',num2str(XmlData.NbDtk));
205        end
206    end
207    if isempty(j1_series{1}) && isfield(XmlData,'NbDti')
208        uid_Dti=find(t,'ImaDoc/Camera/BurstTiming/Dti');
209        t=add(t,uid_Dti,'chardata',num2str(XmlData.Dti));
210        uid_NbDti=find(t,'ImaDoc/Camera/BurstTiming/NbDti');
211        t=add(t,uid_NbDti,'chardata',num2str(XmlData.NbDti));
212        uid_NbDtj=find(t,'ImaDoc/Camera/BurstTiming/NbDtj');
213        uid_NbDtk=find(t,'ImaDoc/Camera/BurstTiming/NbDtk');
214        t=delete(t,uid_NbDtj);
215        t=delete(t,uid_NbDtk);
216        uid_Dtj=find(t,'ImaDoc/Camera/BurstTiming/Dtj');
217        uid_Dtk=find(t,'ImaDoc/Camera/BurstTiming/Dtk');
218        t=delete(t,uid_Dtj);
219        t=delete(t,uid_Dtk);
220        NomTypeNew='_1';
221        ImageName='img_1.png';
222    end
223   
224    %update information of 'Heading'
225    uid_Heading=find(t,'ImaDoc/Heading');
226    if isempty(uid_Heading)
227        [t,uid_Heading]=add(t,1,'element','Heading');
228    end
229    uid_SubCampaign=find(t,'ImaDoc/Heading/SubCampaign');
230    if ~isempty(uid_SubCampaign), t=delete(t,uid_SubCampaign); end
231    uid_Experiment=find(t,'ImaDoc/Heading/Experiment');
232    if ~isempty(uid_Experiment), t=delete(t,uid_Experiment); end
233    uid_Device=find(t,'ImaDoc/Heading/Device');
234    if ~isempty(uid_Device), t=delete(t,uid_Device); end
235    uid_Record=find(t,'ImaDoc/Heading/Record');
236    if ~isempty(uid_Record), t=delete(t,uid_Record); end
237    uid_DateExp=find(t,'ImaDoc/Heading/DateExp');
238    if ~isempty(uid_DateExp), t=delete(t,uid_DateExp); end
239   
240    %indicate the name of the first image (as a check that the xml file is not moved)
241    uid_ImageName=find(t,'ImaDoc/Heading/ImageName');
242    if isempty(uid_ImageName)
243        [t,uid_ImageName]=add(t,uid_Heading,'element','ImageName');
244    end
245    uid_value=children(t,uid_ImageName);
246    if isempty(uid_value)
247        t=add(t,uid_ImageName,'chardata',ImageName);%indicate  name of the first image, with ;png extension
248    else
249        t=set(t,uid_value(1),'value',ImageName);%indicate  name of the first image, with ;png extension
250    end
251   
252    %indicate the date and time of the image acquisition start
253    % if isfield(FileInfo,'binrepertoire') && isfield(FileInfo,'starttime')
254    %     sep_pos=regexp(FileInfo.binrepertoire,'T');
255    %     DateTime=FileInfo.starttime;
256    %     if ~isempty(sep_pos)
257    %         DateTime=[FileInfo.binrepertoire(1:sep_pos-1) ' ' DateTime];
258    %     end
259    %     uid_DateTime=find(t,'ImaDoc/Heading/DateTime');
260    %     if isempty(uid_DateTime)
261    %         [t,uid_DateTime]=add(t,uid_Heading,'element','DateTime');
262    %     end
263    %     uid_value=children(t,uid_DateTime);
264    %     if isempty(uid_value)
265    %         t=add(t,uid_DateTime,'chardata',DateTime);%indicate  name of the first image, with ;png extension
266    %     else
267    %         t=set(t,uid_value(1),'value',DateTime);%indicate  name of the first image, with ;png extension
268    %     end
269    % end
270   
271    %% backup the previous xml file and save the corrected one
272%    [success,message]=copyfile(filexml,[filexml '~']);%make backup
273%     if success~=1
274%         disp(['errror in xml file backup: ' message]);
275%         return
276%     end
277    save(t,filexml)
278    nbfield2=1;
279    if isfield(XmlData,'Time')
280        nbfield2=size(XmlData.Time,2);
281    end
282   
283    %% get the names of .seq and .sqb files
284    switch Param.InputTable{iview,5}
285        case {'.seq','.sqb'}
286            filename_seq=fullfile(RootPath,Param.InputTable{iview,2},[Param.InputTable{iview,3} '.seq']);
287            filename_sqb=fullfile(RootPath,Param.InputTable{iview,2},[Param.InputTable{iview,3} '.sqb']);
288        otherwise
289            errormsg='input file extension must be .seq or .sqb';
290    end
291    if ~exist(filename_seq,'file')
292        errormsg=[filename_seq ' does not exist'];
293        return
294    end
295   
296    %% get data from .seq file
297    s=ini2struct(filename_seq);
298    SeqData=s.sequenceSettings;
299    SeqData.width=str2double(SeqData.width);
300    SeqData.height=str2double(SeqData.height);
301    SeqData.bytesperpixel=str2double(SeqData.bytesperpixel);
302    SeqData.nb_frames=str2double(s.sequenceSettings.numberoffiles);
303    if isempty(SeqData.binrepertoire)%used when binrepertoire empty, strange feature of rdvision
304        SeqData.binrepertoire=regexprep(s.sequenceSettings.bindirectory,'\\$','');%tranform Windows notation to Linux
305        SeqData.binrepertoire=regexprep(SeqData.binrepertoire,'\','/');
306        [tild,binrepertoire,DirExt]=fileparts(SeqData.binrepertoire);
307        SeqData.binrepertoire=[SeqData.binrepertoire DirExt];
308    end
309%     PathDir=fileparts(PathDir);
310   
311    %% reading the .sqb file
312%     m = memmapfile(filename_sqb,'Format', { 'uint32' [1 1] 'offset'; ...
313%         'uint32' [1 1] 'garbage1';...
314%         'double' [1 1] 'timestamp';...
315%         'uint32' [1 1] 'file_idx';...
316%         'uint32' [1 1] 'garbage2' },'Repeat',SeqData.nb_frames);
317    %%%%%%%BRICOLAGE in case of unreadable .sqb file
318        ind=[111 114:211];%indices of bin files
319        w=1024;%w=width of images in pixels
320        h=1024;%h=height of images in pixels
321        bpp=2;% nbre of bytes per pixel
322        lengthimage=w*h*bpp;% lengthof an image record on the binary file
323        nbimages=32; %nbre of images of each camera in a bin file
324        for ii=1:32*numel(ind)
325            data(ii).offset=mod(ii-1,32)*2*lengthimage+lengthimage;%Dalsa_2
326            %data(ii).offset=mod(ii-1,32)*2*lengthimage;%Dalsa_1
327            data(ii).file_idx=ind(ceil(ii/32));
328            data(ii).timestamp=0.2*(ii-1);
329        end
330        m.Data=data;
331    %%%%%%%
332    for ii=1: numel(m.Data)
333        timestamp(ii)=m.Data(ii).timestamp;
334    end
335    %timestamp %todo: check withDt from the xml file
336    [BinSize,errormsg]=binread_rdv_series(RootPath,SeqData,m.Data,nbfield2,NomTypeNew)
337    if ~isempty(errormsg)
338        disp_uvmat('ERROR',errormsg,checkrun)
339        return
340    end
341end
342delete(fullfile(RootPath,'Running.xml'))%delete the  xml file to indicate that processing is finished
343
344%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
345%--------- reads a series of bin files
346%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
347function [BinSize,errormsg]=binread_rdv_series(PathDir,SeqData,SqbData,nbfield2,NomTypeNew)
348% BINREAD_RDV Permet de lire les fichiers bin gᅵnᅵrᅵs par Hiris ᅵ partir du
349% fichier seq associᅵ.
350%   [IMGS,TIMESTAMPS,NB_FRAMES] = BINREAD_RDV(FILENAME,FRAME_IDX) lit
351%   l'image d'indice FRAME_IDX de la sï¿œquence FILENAME.
352%
353%   Entrï¿œes
354%   -------
355%   FILENAME  : Nom du fichier sï¿œquence (.seq).
356%   FRAME_IDX : Indice de l'image ï¿œ lire. Si FRAME_IDX vaut -1 alors la
357%   sï¿œquence est entiï¿œrement lue. Si FRAME_IDX est un tableau d'indices
358%   alors toutes les images d'incides correspondant sont lues. Si FRAME_IDX
359%   est un tableau vide alors aucune image n'est lue mais le nombre
360%   d'images et tous les timestamps sont renvoyï¿œs. Les indices commencent ï¿œ
361%   1 et se termines ï¿œ NB_FRAMES.
362%
363%   Sorties
364%   -------
365%   IMGS        : Images de sortie.
366%   TIMESTAMPS  : Timestaps des images lues.
367%   NB_FRAMES   : Nombres d'images dans la sï¿œquence.
368NbBinFile=0;
369BinSize=0;
370fid=0;
371errormsg='';
372classname=sprintf('uint%d',SeqData.bytesperpixel*8);
373
374classname=['*' classname];
375BitDepth=8*SeqData.bytesperpixel;%needed to write images (8 or 16 bits)
376binrepertoire=fullfile(PathDir,SeqData.binrepertoire);
377OutputDir=fullfile(PathDir,SeqData.sequencename);
378if ~exist(OutputDir,'dir')
379    %     errormsg=[OutputDir ' already exist, delete it first'];
380    %     return
381    % end
382    [s,errormsg]=mkdir(OutputDir);
383   
384    if s==0
385        disp(errormsg)
386        return%not able to create new image dir
387    end
388end
389for ii=1:SeqData.nb_frames
390    j1=[];
391    if ~isequal(nbfield2,1)
392        j1=mod(ii-1,nbfield2)+1;
393    end
394    i1=floor((ii-1)/nbfield2)+1;
395    OutputFile=fullfile_uvmat(PathDir,SeqData.sequencename,'img','.png',NomTypeNew,i1,[],j1);% TODO: set NomTypeNew from SeqData.mode
396    fname=fullfile(binrepertoire,sprintf('%s%.5d.bin',SeqData.binfile,SqbData(ii).file_idx));
397    if exist(OutputFile,'file')
398        fid=0;
399    else
400        if fid==0 || ~strcmp(fname,fname_prev) % open the bin file if not in use
401            if fid~=0
402                fclose(fid);%close the previous bin file if relevant
403            end
404            [fid,msg]=fopen(fname,'rb');
405            if isequal(fid,-1)
406                disp(['error in opening ' fname ': ' msg])
407            else
408                disp([fname ' opened for reading'])
409            end
410            fseek(fid,SqbData(ii).offset,-1);%look at the right starting place in the bin file
411            NbBinFile=NbBinFile+1;%counter of binary files (for checking purpose)
412            BinSize(NbBinFile)=0;% strat counter for new bin file
413        else
414            %             fclose(fid);%close the previous bin file
415            %             fid=fopen(fname,'rb');% open the new bin file
416            fseek(fid,SqbData(ii).offset,-1);%look at the right starting place in the bin file
417        end
418        fname_prev=fname;
419        A=reshape(fread(fid,SeqData.width*SeqData.height,classname),SeqData.width,SeqData.height);%read the current image
420        A=A';
421        BinSize(NbBinFile)=BinSize(NbBinFile)+SeqData.width*SeqData.height*SeqData.bytesperpixel*8; %record bits read
422        try
423            imwrite(A,OutputFile,'BitDepth',BitDepth) % case of 16 bit images
424            disp([OutputFile ' written']);
425            % [s,errormsg] = fileattrib(OutputFile,'-w','a'); %set images to read only '-w' for all users ('a')
426            %         if ~s
427            % %             disp_uvmat('ERROR',errormsg,checkrun);
428            %             return
429            %         end
430        catch ME
431            errormsg=ME.message;
432            return
433        end
434    end
435end
436if fid~=0
437fclose(fid)
438end
439
440
441
442
443% for ifile=1:nbfield
444%             update_waitbar(WaitbarHandle,ifile/nbfield)
445%     if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
446%         disp('program stopped by user')
447%         break
448%     end
449%     [A,FileInfo,timestamps]=read_rdvision(filename,ifile);
450%     if ifile==1
451%         classA=class(A);
452%         if strcmp(classA,'uint8')
453%             BitDepth=8;
454%         else
455%         BitDepth=16;
456%         end
457%     end
458%     j1=[];
459%     if ~isequal(nbfield2,1)
460%     j1=mod(ifile-1+first_label,nbfield2)+1;
461%     end
462%     i1=floor((ifile-1+first_label)/nbfield2)+1;
463%     OutputFile=fullfile_uvmat(RootPath{1},OutputDir,'img','.png',NomTypeNew,i1,[],j1);
464%     try
465%         imwrite(A,OutputFile,'BitDepth',BitDepth) % case of 16 bit images
466%     disp([OutputFile ' written']);
467%         [s,errormsg] = fileattrib(OutputFile,'-w','a'); %set images to read only '-w' for all users ('a')
468%         if ~s
469%             disp_uvmat('ERROR',errormsg,checkrun);
470%             return
471%         end
472%     catch ME
473%         disp_uvmat('ERROR',ME.message,checkrun);
474%         return
475%     end
476%
477% end
478
479%'imadoc2struct_special': reads the xml file for image documentation
480%------------------------------------------------------------------------
481% function [s,errormsg]=imadoc2struct_special(ImaDoc,option)
482%
483% OUTPUT:
484% s: structure representing ImaDoc
485%   s.Heading: information about the data hierarchical structure
486%   s.Time: matrix of times
487%   s.TimeUnit
488%  s.GeometryCalib: substructure containing the parameters for geometric calibration
489% errormsg: error message
490%
491% INPUT:
492% ImaDoc: full name of the xml input file with head key ImaDoc
493% option: ='GeometryCalib': read  the data of GeometryCalib, including source point coordinates
494
495function [s,errormsg]=imadoc2struct_special(ImaDoc,option)
496
497%% default input and output
498if ~exist('option','var')
499    option='*';
500end
501errormsg=[];%default
502s.Heading=[];%default
503s.Time=[]; %default
504s.TimeUnit=[]; %default
505s.GeometryCalib=[];
506tsai=[];%default
507
508%% opening the xml file
509if exist(ImaDoc,'file')~=2, errormsg=[ ImaDoc ' does not exist']; return;end;%input file does not exist
510try
511    t=xmltree(ImaDoc);
512catch
513    errormsg={[ImaDoc ' is not a valid xml file']; lasterr};
514    display(errormsg);
515    return
516end
517uid_root=find(t,'/ImaDoc');
518if isempty(uid_root), errormsg=[ImaDoc ' is not an image documentation file ImaDoc']; return; end;%not an ImaDoc .xml file
519
520
521%% Heading
522uid_Heading=find(t,'/ImaDoc/Heading');
523if ~isempty(uid_Heading),
524    uid_Campaign=find(t,'/ImaDoc/Heading/Campaign');
525    uid_Exp=find(t,'/ImaDoc/Heading/Experiment');
526    uid_Device=find(t,'/ImaDoc/Heading/Device');
527    uid_Record=find(t,'/ImaDoc/Heading/Record');
528    uid_FirstImage=find(t,'/ImaDoc/Heading/ImageName');
529    s.Heading.Campaign=get(t,children(t,uid_Campaign),'value');
530    s.Heading.Experiment=get(t,children(t,uid_Exp),'value');
531    s.Heading.Device=get(t,children(t,uid_Device),'value');
532    if ~isempty(uid_Record)
533        s.Heading.Record=get(t,children(t,uid_Record),'value');
534    end
535    s.Heading.ImageName=get(t,children(t,uid_FirstImage),'value');
536end
537
538%% Camera  and timing
539if strcmp(option,'*') || strcmp(option,'Camera')
540    uid_Camera=find(t,'/ImaDoc/Camera');
541    if ~isempty(uid_Camera)
542        uid_ImageSize=find(t,'/ImaDoc/Camera/ImageSize');
543        if ~isempty(uid_ImageSize);
544            ImageSize=get(t,children(t,uid_ImageSize),'value');
545            xindex=findstr(ImageSize,'x');
546            if length(xindex)>=2
547                s.Npx=str2double(ImageSize(1:xindex(1)-1));
548                s.Npy=str2double(ImageSize(xindex(1)+1:xindex(2)-1));
549            end
550        end
551        uid_TimeUnit=find(t,'/ImaDoc/Camera/TimeUnit');
552        if ~isempty(uid_TimeUnit)
553            s.TimeUnit=get(t,children(t,uid_TimeUnit),'value');
554        end
555        uid_BurstTiming=find(t,'/ImaDoc/Camera/BurstTiming');
556        if ~isempty(uid_BurstTiming)
557            for k=1:length(uid_BurstTiming)
558                subt=branch(t,uid_BurstTiming(k));%subtree under BurstTiming
559                % reading Dtk
560                Frequency=get_value(subt,'/BurstTiming/FrameFrequency',1);
561                Dtj=get_value(subt,'/BurstTiming/Dtj',[]);
562                Dtj=Dtj/Frequency;%Dtj converted from frame unit to TimeUnit (e.g. 's')
563                NbDtj=get_value(subt,'/BurstTiming/NbDtj',[]);
564                %%%% correction RDvision %%%%
565%                 NbDtj=NbDtj/numel(Dtj);
566%                 s.NbDtj=NbDtj;
567%                 %%%%
568                Dti=get_value(subt,'/BurstTiming/Dti',[]);
569                NbDti=get_value(subt,'/BurstTiming/NbDti',1);
570                 %%%% correction RDvision %%%%
571                if isempty(Dti)% series
572                     Dti=Dtj;
573                      NbDti=NbDtj;
574                     Dtj=[];
575                     s.Dti=Dti;
576                     s.NbDti=NbDti;
577                else
578                    % NbDtj=NbDtj/numel(Dtj);%bursts
579                    if ~isempty(NbDtj)
580                    s.NbDtj=NbDtj/numel(Dtj);%bursts;
581                    else
582                        s.NbDtj=1;
583                    end
584                end
585                %%%% %%%%
586                Dti=Dti/Frequency;%Dtj converted from frame unit to TimeUnit (e.g. 's')
587
588                Time_val=get_value(subt,'/BurstTiming/Time',0);%time in TimeUnit
589                if ~isempty(Dti)
590                    Dti=reshape(Dti'*ones(1,NbDti),NbDti*numel(Dti),1); %concatene Dti vector NbDti times
591                    Time_val=[Time_val;Time_val(end)+cumsum(Dti)];%append the times defined by the intervals  Dti
592                end
593                if ~isempty(Dtj)
594                    Dtj=reshape(Dtj'*ones(1,s.NbDtj),1,s.NbDtj*numel(Dtj)); %concatene Dtj vector NbDtj times
595                    Dtj=[0 Dtj];
596                    Time_val=Time_val*ones(1,numel(Dtj))+ones(numel(Time_val),1)*cumsum(Dtj);% produce a time matrix with Dtj
597                end
598                % reading Dtk
599                Dtk=get_value(subt,'/BurstTiming/Dtk',[]);
600                NbDtk=get_value(subt,'/BurstTiming/NbDtk',1);
601                %%%% correction RDvision %%%%
602                if ~isequal(NbDtk,1)
603                    NbDtk=-1+(NbDtk+1)/(NbDti+1);
604                end
605                s.NbDtk=NbDtk;
606                %%%%%
607                if isempty(Dtk)
608                    s.Time=[s.Time;Time_val];
609                else
610                    for kblock=1:NbDtk+1
611                        Time_val_k=Time_val+(kblock-1)*Dtk;
612                        s.Time=[s.Time;Time_val_k];
613                    end
614                end
615            end
616        end
617    end
618end
619
620%% motor
621if strcmp(option,'*') || strcmp(option,'GeometryCalib')
622    uid_subtree=find(t,'/ImaDoc/TranslationMotor');
623    if length(uid_subtree)==1
624        subt=branch(t,uid_subtree);%subtree under GeometryCalib
625       [s.TranslationMotor,errormsg]=read_subtree(subt,{'Nbslice','ZStart','ZEnd'},[1 1 1],[1 1 1]);
626    end
627end
628%%  geometric calibration
629if strcmp(option,'*') || strcmp(option,'GeometryCalib')
630    uid_GeometryCalib=find(t,'/ImaDoc/GeometryCalib');
631    if ~isempty(uid_GeometryCalib)
632        if length(uid_GeometryCalib)>1
633            errormsg=['More than one GeometryCalib in ' filecivxml];
634            return
635        end
636        subt=branch(t,uid_GeometryCalib);%subtree under GeometryCalib
637        cont=get(subt,1,'contents');
638        if ~isempty(cont)
639            uid_CalibrationType=find(subt,'/GeometryCalib/CalibrationType');
640            if isequal(length(uid_CalibrationType),1)
641                tsai.CalibrationType=get(subt,children(subt,uid_CalibrationType),'value');
642            end
643            uid_CoordUnit=find(subt,'/GeometryCalib/CoordUnit');
644            if isequal(length(uid_CoordUnit),1)
645                tsai.CoordUnit=get(subt,children(subt,uid_CoordUnit),'value');
646            end
647            uid_fx_fy=find(subt,'/GeometryCalib/fx_fy');
648            focal=[];%default fro old convention (Reg Wilson)
649            if isequal(length(uid_fx_fy),1)
650                tsai.fx_fy=str2num(get(subt,children(subt,uid_fx_fy),'value'));
651            else %old convention (Reg Wilson)
652                uid_focal=find(subt,'/GeometryCalib/focal');
653                uid_dpx_dpy=find(subt,'/GeometryCalib/dpx_dpy');
654                uid_sx=find(subt,'/GeometryCalib/sx');
655                if ~isempty(uid_focal) && ~isempty(uid_dpx_dpy) && ~isempty(uid_sx)
656                    dpx_dpy=str2num(get(subt,children(subt,uid_dpx_dpy),'value'));
657                    sx=str2num(get(subt,children(subt,uid_sx),'value'));
658                    focal=str2num(get(subt,children(subt,uid_focal),'value'));
659                    tsai.fx_fy(1)=sx*focal/dpx_dpy(1);
660                    tsai.fx_fy(2)=focal/dpx_dpy(2);
661                end
662            end
663            uid_Cx_Cy=find(subt,'/GeometryCalib/Cx_Cy');
664            if ~isempty(uid_Cx_Cy)
665                tsai.Cx_Cy=str2num(get(subt,children(subt,uid_Cx_Cy),'value'));
666            end
667            uid_kc=find(subt,'/GeometryCalib/kc');
668            if ~isempty(uid_kc)
669                tsai.kc=str2double(get(subt,children(subt,uid_kc),'value'));
670            else %old convention (Reg Wilson)
671                uid_kappa1=find(subt,'/GeometryCalib/kappa1');
672                if ~isempty(uid_kappa1)&& ~isempty(focal)
673                    kappa1=str2double(get(subt,children(subt,uid_kappa1),'value'));
674                    tsai.kc=-kappa1*focal*focal;
675                end
676            end
677            uid_Tx_Ty_Tz=find(subt,'/GeometryCalib/Tx_Ty_Tz');
678            if ~isempty(uid_Tx_Ty_Tz)
679                tsai.Tx_Ty_Tz=str2num(get(subt,children(subt,uid_Tx_Ty_Tz),'value'));
680            end
681            uid_R=find(subt,'/GeometryCalib/R');
682            if ~isempty(uid_R)
683                RR=get(subt,children(subt,uid_R),'value');
684                if length(RR)==3
685                    tsai.R=[str2num(RR{1});str2num(RR{2});str2num(RR{3})];
686                end
687            end
688           
689            %look for laser plane definitions
690            uid_Angle=find(subt,'/GeometryCalib/PlaneAngle');
691            uid_Pos=find(subt,'/GeometryCalib/SliceCoord');
692            if isempty(uid_Pos)
693                uid_Pos=find(subt,'/GeometryCalib/PlanePos');%old convention
694            end
695            if ~isempty(uid_Angle)
696                tsai.PlaneAngle=str2num(get(subt,children(subt,uid_Angle),'value'));
697            end
698            if ~isempty(uid_Pos)
699                for j=1:length(uid_Pos)
700                    tsai.SliceCoord(j,:)=str2num(get(subt,children(subt,uid_Pos(j)),'value'));
701                end
702                uid_DZ=find(subt,'/GeometryCalib/SliceDZ');
703                uid_NbSlice=find(subt,'/GeometryCalib/NbSlice');
704                if ~isempty(uid_DZ) && ~isempty(uid_NbSlice)
705                    DZ=str2double(get(subt,children(subt,uid_DZ),'value'));
706                    NbSlice=get(subt,children(subt,uid_NbSlice),'value');
707                    if isequal(NbSlice,'volume')
708                        tsai.NbSlice='volume';
709                        NbSlice=NbDtj+1;
710                    else
711                        tsai.NbSlice=str2double(NbSlice);
712                    end
713                    tsai.SliceCoord=ones(NbSlice,1)*tsai.SliceCoord+DZ*(0:NbSlice-1)'*[0 0 1];
714                end
715            end   
716            tsai.SliceAngle=get_value(subt,'/GeometryCalib/SliceAngle',[0 0 0]);
717            tsai.VolumeScan=get_value(subt,'/GeometryCalib/VolumeScan','n');
718            tsai.InterfaceCoord=get_value(subt,'/GeometryCalib/InterfaceCoord',[0 0 0]);
719            tsai.RefractionIndex=get_value(subt,'/GeometryCalib/RefractionIndex',1);
720           
721            if strcmp(option,'GeometryCalib')
722                tsai.PointCoord=get_value(subt,'/GeometryCalib/SourceCalib/PointCoord',[0 0 0 0 0]);
723            end
724            s.GeometryCalib=tsai;
725        end
726    end
727end
728
729%--------------------------------------------------
730%  read a subtree
731% INPUT:
732% t: xltree
733% head_element: head elelemnt of the subtree
734% Data, structure containing
735%    .Key: element name
736%    .Type: type of element ('charg', 'float'....)
737%    .NbOccur: nbre of occurrence, NaN for un specified number
738function [s,errormsg]=read_subtree(subt,Data,NbOccur,NumTest)
739%--------------------------------------------------
740s=[];%default
741errormsg='';
742head_element=get(subt,1,'name');
743    cont=get(subt,1,'contents');
744    if ~isempty(cont)
745        for ilist=1:length(Data)
746            uid_key=find(subt,[head_element '/' Data{ilist}]);
747            if ~isequal(length(uid_key),NbOccur(ilist))
748                errormsg=['wrong number of occurence for ' Data{ilist}];
749                return
750            end
751            for ival=1:length(uid_key)
752                val=get(subt,children(subt,uid_key(ival)),'value');
753                if ~NumTest(ilist)
754                    eval(['s.' Data{ilist} '=val;']);
755                else
756                    eval(['s.' Data{ilist} '=str2double(val);'])
757                end
758            end
759        end
760    end
761
762
763%--------------------------------------------------
764%  read an xml element
765function val=get_value(t,label,default)
766%--------------------------------------------------
767val=default;
768uid=find(t,label);%find the element iud(s)
769if ~isempty(uid) %if the element named label exists
770   uid_child=children(t,uid);%find the children
771   if ~isempty(uid_child)
772       data=get(t,uid_child,'type');%get the type of child
773       if iscell(data)% case of multiple element
774           for icell=1:numel(data)
775               val_read=str2num(get(t,uid_child(icell),'value'));
776               if ~isempty(val_read)
777                   val(icell,:)=val_read;
778               end
779           end
780%           val=val';
781       else % case of unique element value
782           val_read=str2num(get(t,uid_child,'value'));
783           if ~isempty(val_read)
784               val=val_read;
785           else
786              val=get(t,uid_child,'value');%char string data
787           end
788       end
789   end
790end
791
792
793
794
Note: See TracBrowser for help on using the repository browser.