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

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

calibration with plane angl corrected

File size: 24.4 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%
9%OUTPUT
10% ParamOut: sets options in the GUI series.fig needed for the function
11%
12%INPUT:
13% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
14% In batch mode, Param is the name of the corresponding xml file containing the same information
15% when Param.Action.RUN=0 (as activated when the current Action is selected
16% in series), the function ouput paramOut set the activation of the needed GUI elements
17%
18% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
19% see the current structure Param)
20%    .InputTable: cell of input file names, (several lines for multiple input)
21%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
22%    .OutputSubDir: name of the subdirectory for data outputs
23%    .OutputDirExt: directory extension for data outputs
24%    .Action: .ActionName: name of the current activated function
25%             .ActionPath:   path of the current activated function
26%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
27%             .RUN =0 for GUI input, =1 for function activation
28%             .RunMode='local','background', 'cluster': type of function  extract_rdvision.muse
29%             
30%    .IndexRange: set the file or frame indices on which the action must be performed
31%    .FieldTransform: .TransformName: name of the selected transform function
32%                     .TransformPath:   path  of the selected transform function
33%    .InputFields: sub structure describing the input fields withfields
34%              .FieldName: name(s) of the field
35%              .VelType: velocity type
36%              .FieldName_1: name of the second field in case of two input series
37%              .VelType_1: velocity type of the second field in case of two input series
38%              .Coord_y: name of y coordinate variable
39%              .Coord_x: name of x coordinate variable
40%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
41%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42
43%=======================================================================
44% Copyright 2008-2022, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
45%   http://www.legi.grenoble-inp.fr
46%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.frextract_rdvision.m
47%
48%     This file is part of the toolbox UVMAT.
49%
50%     UVMAT is free software; you can redistribute it and/or modify
51%     it under the terms of the GNU General Public License as published
52%     by the Free Software Foundation; either version 2 of the license,
53%     or (at your option) any later version.
54%
55%     UVMAT is distributed in the hope that it will be useful,
56%     but WITHOUT ANY WARRANTY; without even the implied warranty of
57%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
58%     GNU General Public License (see LICENSE.txt) for more details.extract_rdvision.m
59%=======================================================================
60
61function ParamOut=extract_rdvision(Param) %default output=relabel_i_j(Param)
62
63%% set the input elements needed on the GUI series when the action is selected in the menu ActionName
64if isstruct(Param) && isequal(Param.Action.RUN,0)
65    ParamOut.AllowInputSort='off';...% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
66        ParamOut.WholeIndexRange='on';...% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
67        ParamOut.NbSlice='off';%1; ...%nbre of slices, 1 prevents splitting in several processes, ('off' by default)
68        ParamOut.VelType='off';...% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
69        ParamOut.FieldName='off';...% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
70        ParamOut.FieldTransform = 'off';...%can use a transform function
71        ParamOut.ProjObject='off';...%can use projection object(option 'off'/'on',
72        ParamOut.Mask='off';...%can use mask option   (option 'off'/'on', 'off' by default)
73        ParamOut.CPUTime=0.1;% expected time for writting one image ( in minute)
74        ParamOut.OutputDirExt='.extract';%set the output dir extensionextract_rdvision.m
75    ParamOut.OutputSubDirMode='one'; %output folder given by the folder name of the first input line
76    % detect the set of image folder
77    RootPath=Param.InputTable{1,1};
78    ListStruct=dir(RootPath);
79    ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray
80    check_bad=strcmp('.',ListCells(1,:))|strcmp('..',ListCells(1,:));%detect the dir '.' to exclude it
81    check_dir=cell2mat(ListCells(4,:));% =1 for directories, =0 for files
82    ListDir=ListCells(1,find(check_dir & ~check_bad));
83    isel=0;
84    InputTable=Param.InputTable;
85    for ilist=1:numel(ListDir)
86        ListStructSub=dir(fullfile(RootPath,ListDir{ilist}));
87        ListCellSub=struct2cell(ListStructSub);% transform dir struct to a cell arrray
88        detect_seq=regexp(ListCellSub(1,:),'.seq$');
89        seq_index=find(~cellfun('isempty',detect_seq),1);
90        if ~isempty(seq_index)
91            isel=isel+1;
92            InputTable{isel,1}=RootPath;
93            InputTable{isel,2}=ListDir{ilist};
94            RootFile=regexprep(ListCellSub{1,seq_index},'.seq$','');
95            InputTable{isel,3}=RootFile;
96            InputTable{isel,4}='*';
97            InputTable{isel,5}='.seq';
98        end
99    end
100    hseries=findobj(allchild(0),'Tag','series');% find the parent GUI 'series'
101    hhseries=guidata(hseries); %handles of the elements in 'series'
102    set(hhseries.InputTable,'Data',InputTable)
103    ParamOut.ActionInput.LogPath=RootPath;% indicate the path for the output info: 0_LOG ....
104    return
105end
106
107ParamOut=[];
108%%%%%%%%%%%% STANDARD PART  %%%%%%%%%%%%
109%% read input parameters from an xml file if input is a file name (batch mode)
110
111if ischar(Param)
112    Param=xml2struct(Param);% read Param as input file (batch case)
113end
114disp(Param)
115checkrun=strcmp(Param.RunMode,'local')
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%         disp_uvmat('WARNING',['the whole series of ' num2str(FileInfo.NumberOfextract_rdvision.mFrames) ' images must be extracted at once'],checkrun)
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    disp_uvmat('ERROR','the input is not from rdvision: a .seq or .sqb file must be opened',checkrun)
151    return
152end
153t=xmltree;
154
155save(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%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
168% RootPath=Param.InputTable(:,1);
169% RootFile=Param.InputTable(:,3);
170% SubDir=Param.InputTable(:,2);
171% NomType=Param.InputTable(:,4);
172% FileExt=Param.InputTable(:,5);
173
174% [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
175% if size(time,1)>1
176%     diff_time=max(max(diff(time)));
177%     if diff_time>0
178%         disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)],checkrun)
179%     end
180% end
181%
182%      nbfield2=size(time,1);
183checkpreserve=0;% if =1, will npreserve the original images, else it erases them at the end
184
185for iview=1:size(Param.InputTable,1)
186    check_xml=0;
187    for iview_xml=1:size(Param.InputTable,1)% look for the xml files in the different data directories
188        filexml=[fullfile(RootPath,Param.InputTable{iview_xml,2},Param.InputTable{iview,3}) '.xml'];%new convention: xml at the level of the image folder
189        if exist(filexml,'file')
190            check_xml=1;
191            break
192        end
193    end
194    newxml=fullfile(RootPath,Param.InputTable{iview,3});
195    newxml=regexprep(newxml,'_Master_Dalsa_4M180$','');%suppress '_Master_Dalsa_4M180'extract_rdvision.m
196    newxml=[newxml '.xml'];
197   
198    %% get the names of .seq and .sqb files
199    switch Param.InputTable{iview,5}
200        case {'.seq','.sqb'}
201            filename_seq=fullfile(RootPath,Param.InputTable{iview,2},[Param.InputTable{iview,3} '.seq']);
202            filename_sqb=fullfile(RootPath,Param.InputTable{iview,2},[Param.InputTable{iview,3} '.sqb']);
203            errormsg='';
204            if isequal(Param.IndexRange.first_i,1)
205               
206                logdir=[Param.OutputSubDir Param.OutputDirExt];
207                [success,errormsg] = copyfile(filename_seq,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.seq']); %copy the seq file in the upper folder
208                [success,errormsg] = copyfile(filename_sqb,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.sqb']); %copy the sqb file in the upper folder
209                if check_xml
210                    [success,errormsg] = copyfile(filexml,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.xml']); %copy the original xml file in the upper folder
211                else
212                    errormsg=[filexml ' missing'];
213                    return
214                end
215            end
216        otherwise
217            errormsg='input file extension must be .seq or .sqb';
218    end
219    if ~exist(filename_seq,'file')
220        errormsg=[filename_seq ' does not exist'];
221    end
222    if ~isempty(errormsg)
223        disp_uvmat('ERRROR',errormsg,checkrun);
224        return
225    end
226   
227
228    %% get data from .seq file
229    s=ini2struct(filename_seq);
230    SeqData=s.sequenceSettings;
231    SeqData.width=str2double(SeqData.width);
232    SeqData.height=str2double(SeqData.height);
233    SeqData.bytesperpixel=str2double(SeqData.bytesperpixel);
234    SeqData.nb_frames=str2double(s.sequenceSettings.numberoffiles);
235    if isempty(SeqData.binrepertoire)%used when binrepertoire empty, strange feature of rdvision
236        SeqData.binrepertoire=regexprep(s.sequenceSettings.bindirectory,'\\$','');%tranform Windows notation to Linux
237        SeqData.binrepertoire=regexprep(SeqData.binrepertoire,'\','/');
238        [tild,SeqData.binrepertoire,DirExt]=fileparts(SeqData.binrepertoire);
239    end
240   
241   
242   
243    %% reading the .sqb file
244    m = memmapfile(filename_sqb,'Format', { 'uint32' [1 1] 'offset'; ...
245        'uint32' [1 1] 'garbage1';...
246        'double' [1 1] 'timestamp';...
247        'uint32' [1 1] 'file_idx';...
248        'uint32' [1 1] 'garbage2' },'Repeat',SeqData.nb_frames);
249   
250    %%%%%%%BRICOLAGE in case of unreadable .sqb file: remplace lecture du fichier
251%             ind=[8356 8356:8672];%indices of bin files
252%             w=2432;%w=width of images in pixels
253%             h=864;%h=height of images in pixels
254%             bpp=2;% nbre of bytes per pixel
255%             lengthimage=w*h*bpp;% lengthof an image record on the binary file
256%             nbimages=15; %nbre of images of each camera in a bin file
257%             for ii=1:15*numel(ind)
258%                 %data(ii).offset=mod(ii-1,32)*2*lengthimage+lengthimage;%Dalsa_2
259%                 %data(ii).offset=mod(ii-1,32)*2*lengthimage;%Dalsa_1
260%                 %data(ii).file_idx=ind(ceil(ii/32));
261%                 data(ii).file_idx=ind(ceil(ii/15));
262%                 data(ii).timestamp=0.005*(ii-1);
263%             end
264%             m.Data=data;
265    %%%%%%%
266        timestamp=zeros(1,numel(m.Data));
267        for ii=1: numel(m.Data)
268            timestamp(ii)=m.Data(ii).timestamp;
269        end
270        if isequal(Param.IndexRange.first_i,1)
271        [nbfield1,nbfield2,msg]=copyfile_modif(filexml,timestamp,newxml); %copy the xml file in the upper folder
272        [XmlData,errormsg]=imadoc2struct(newxml);% check reading of the new xml file
273        if ~isempty(errormsg)
274            disp(errormsg)
275            return
276        end
277        timestamp=timestamp(1:nbfield1*nbfield2);
278        timestamp=reshape(timestamp,nbfield2,nbfield1);
279        difftime=XmlData.Time(2:end,2:end)'-timestamp;
280        disp(['time from xml and timestamp differ by ' num2str(max(max(abs(difftime))))])
281        if max(abs(difftime))>0.01
282            checkpreserve=1;% will not erase the initial files, possibility of error
283        end     
284        % checking consistency with the xml file
285        %     if ~isequal(SeqData.nb_frames,numel(timestamp))
286        %         disp_uvmat('ERRROR',['inconsistent number of images ' num2str(SeqData.nb_frames) ' with respect to the xml file: ' num2str(numel(timestamp))] ,checkrun);
287        %         return
288        %     end
289    else
290       [nbfield1,nbfield2,msg]=copyfile_modif(filexml,timestamp,'');
291    end
292    if nbfield2>1
293        NomTypeNew='_1_1';
294    else
295        NomTypeNew='_1';
296    end
297
298    [BinList,errormsg]=binread_rdv_series(RootPath,SeqData,m.Data,nbfield2,NomTypeNew,Param.IndexRange.first_i,Param.IndexRange.last_i);
299    if ~isempty(errormsg)
300        disp_uvmat('ERROR',errormsg,checkrun)
301        return
302    end
303   
304    % check the existence of the expected output image files (from the xml)
305   
306    FileDir=SeqData.sequencename;
307     FileDir=regexprep(FileDir,'_Master_Dalsa_4M180$','');%suppress '_Master_Dalsa_4M180'
308%     for i1=1:numel(timestamp)/nbfield2
309%         for j1=1:nbfield2
310%             OutputFile=fullfile_uvmat(RootPath,FileDir,'img','.png',NomTypeNew,i1,[],j1);% TODO: set NomTypeNew from SeqData.mode
311%             try
312%             A=imread(OutputFile);% check image reading (stop if error)
313%             catch ME
314%                 disp(['checking ' OutputFile])
315%                 disp(ME.message)
316%             end
317%         end
318%     end
319end
320
321%% remove binary files if transfer OK
322%     if ~checkpreserve
323%         for iview=1:size(Param.InputTable,1)
324%          fullfile(RootPath,Param.InputTable{iview,2})
325%          source_dir=fullfile(RootPath,Param.InputTable{iview,2});
326%         [SUCCESS,MESSAGE]=rmdir(source_dir,'s')
327%         end
328%     end
329delete(fullfile(RootPath,'Running.xml'))%delete the  xml file to indicate that processing is finished
330
331%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
332%--------- reads a series of bin files
333
334%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
335function [BinList,errormsg]=binread_rdv_series(PathDir,SeqData,SqbData,nbfield2,NomTypeNew,first,last)
336% BINREAD_RDV Permet de lire les fichiers bin g???n???r???s par Hiris ??? partir du
337% fichier seq associ???.
338%   [IMGS,TIMESTAMPS,NB_FRAMES] = BINREAD_RDV(FILENAME,FRAME_IDX) lit
339%   l'image d'indice FRAME_IDX de la s???quence FILENAME.
340%
341%   Entr???es
342%   -------
343%   FILENAME  : Nom du fichier s???quence (.seq).
344%   FRAME_IDX : Indice de l'image ??? lire. Si FRAME_IDX vaut -1 alors la
345%   s???quence est enti???rement lue. Si FRAME_IDX est un tableau d'indices
346%   alors toutes les images d'incides correspondant sont lues. Si FRAME_IDX
347%   est un tableau vide alors aucune image n'est lue mais le nombre
348%   d'images et tous les timestamps sont renvoy???s. Les indices commencent ???
349%   1 et se termines ??? NB_FRAMES.
350%
351%   Sorties
352%   -------
353%   IMGS        : Images de sortie.
354%   TIMESTAMPS  : Timestaps des images lues.
355%   NB_FRAMES   : Nombres d'images dans la s???quence.
356NbBinFile=0;
357BinSize=0;
358fid=0;
359errormsg='';
360BinList={};
361
362classname=sprintf('uint%d',SeqData.bytesperpixel*8);
363
364classname=['*' classname];
365BitDepth=8*SeqData.bytesperpixel;%needed to write images (8 or 16 bits)
366%%%%
367% SeqData.binrepertoire='2017-01-26T11.59.57';
368%SeqData.binrepertoire='2017-01-26T16.57.27';
369%SeqData.binrepertoire='2017-01-26T19.28.05';
370%SeqData.binrepertoire='2017-01-27T09.51.34';
371%SeqData.binrepertoire='2017-01-27T14.21.47'
372%%%%
373binrepertoire=fullfile(PathDir,SeqData.binrepertoire);
374FileDir=SeqData.sequencename;
375FileDir=regexprep(FileDir,'_Master_Dalsa_4M180$','');%suppress '_Master_Dalsa_4M180'
376OutputDir=fullfile(PathDir,FileDir);
377if ~exist(OutputDir,'dir')
378    %     errormsg=[OutputDir ' already exist, delete it first'];
379    %     return
380    % end
381    [s,errormsg]=mkdir(OutputDir);
382   
383    if s==0
384        disp(errormsg)
385        return%not able to create new image dir
386    end
387end
388bin_file_counter=0;
389%for ii=1:SeqData.nb_frames
390for ii=first:last
391    j1=[];
392    if ~isequal(nbfield2,1)
393        j1=mod(ii-1,nbfield2)+1;
394    end
395    i1=floor((ii-1)/nbfield2)+1;
396    OutputFile=fullfile_uvmat(PathDir,FileDir,'img','.png',NomTypeNew,i1,[],j1);% TODO: set NomTypeNew from SeqData.mode
397    fname=fullfile(binrepertoire,sprintf('%s%.5d.bin',SeqData.binfile,SqbData(ii).file_idx));
398    if exist(OutputFile,'file')% do not recreate existing image file
399        fid=0;
400    else
401        if fid==0 || ~strcmp(fname,fname_prev) % open the bin file if not in use
402            if fid~=0
403                fclose(fid);%close the previous bin file if relevant
404            end
405            [fid,msg]=fopen(fname,'rb');
406            if isequal(fid,-1)
407                errormsg=['error in opening ' fname ': ' msg];
408                return
409            else
410                disp([fname ' opened for reading'])
411                bin_file_counter=bin_file_counter+1;
412                BinList{bin_file_counter}=fname;
413            end
414            fseek(fid,SqbData(ii).offset,-1);%look at the right starting place in the bin file
415            NbBinFile=NbBinFile+1;%counter of binary files (for checking purpose)
416            BinSize(NbBinFile)=0;% strat counter for new bin file
417        else
418            fseek(fid,SqbData(ii).offset,-1);%look at the right starting place in the bin file
419        end
420        fname_prev=fname;
421        A=reshape(fread(fid,SeqData.width*SeqData.height,classname),SeqData.width,SeqData.height);%read the current image
422        A=A';
423        BinSize(NbBinFile)=BinSize(NbBinFile)+SeqData.width*SeqData.height*SeqData.bytesperpixel*8; %record bits read
424        try
425            tic
426            imwrite(A,OutputFile,'BitDepth',BitDepth) % case of 16 bit images
427            disp([OutputFile ' written']);
428            toc
429            % [s,errormsg] = fileattrib(OutputFile,'-w','a'); %set images to read only '-w' for all users ('a')
430            %         if ~s
431            % %             disp_uvmat('ERROR',errormsg,checkrun);
432            %             return
433            %         end
434        catch ME
435            errormsg=ME.message;
436            return
437        end
438    end
439end
440if fid~=0
441fclose(fid)
442end
443
444
445
446
447function [nbfield1,nbfield2,msg]=copyfile_modif(filexml,timestamp,newxml)
448msg='';
449t=xmltree(filexml);
450
451%% read Dtk and NbDtk
452NbDtk=1; %default
453Dtk=[]; % default
454uid_Dtk=find(t,'ImaDoc/Camera/BurstTiming/Dtk');
455uid_content_Dtk=get(t,uid_Dtk,'contents');
456if ~isempty(uid_content_Dtk)
457    Dtk=str2num(get(t,uid_content_Dtk,'value'));
458    uid_NbDtk=find(t,'ImaDoc/Camera/BurstTiming/NbDtk');
459    uid_content_NbDtk=get(t,uid_NbDtk,'contents');
460    if ~isempty(uid_content_NbDtk)
461    NbDtk=str2num(get(t,uid_content_NbDtk,'value'));
462    end
463end
464
465%% read Dti and NbDti
466NbDti=1; %default
467Dti=[]; % default
468uid_Dti=find(t,'ImaDoc/Camera/BurstTiming/Dti');
469uid_content_Dti=get(t,uid_Dti,'contents');
470if ~isempty(uid_content_Dti)
471    Dti=str2num(get(t,uid_content_Dti,'value'));
472    uid_NbDti=find(t,'ImaDoc/Camera/BurstTiming/NbDti');
473    uid_content_NbDti=get(t,uid_NbDti,'contents');
474    if ~isempty(uid_content_NbDti)
475    NbDti=str2num(get(t,uid_content_NbDti,'value'));
476    end
477end
478
479%% read Dtj and NbDtj
480NbDtj=1; %default
481Dtj=[]; % default
482uid_Dtj=find(t,'ImaDoc/Camera/BurstTiming/Dtj');
483uid_content_Dtj=get(t,uid_Dtj,'contents');
484if ~isempty(uid_content_Dtj)
485    Dtj=str2num(get(t,uid_content_Dtj,'value'));
486    uid_NbDtj=find(t,'ImaDoc/Camera/BurstTiming/NbDtj');
487    uid_content_NbDtj=get(t,uid_NbDtj,'contents');
488    if ~isempty(uid_content_NbDtj)
489    NbDtj=str2num(get(t,uid_content_NbDtj,'value'));
490    end
491end
492
493%% correct NbDtj and NbDti (error from RDvision)
494% if NbDtj==numel(Dtj)% case of bursts
495%     NbDtj=1;
496%     uid_motor_nbslice=find(t,'ImaDoc/TranslationMotor/Nbslice');
497%     if ~isempty(uid_motor_nbslice)&& ~isempty(uid_Dtk)% case of multilevel
498%         NbSlice=str2num(get(t,get(t,uid_motor_nbslice,'contents'),'value'));
499%         NbDti=NbSlice-1;
500%     end
501% end
502
503if isempty(Dtj)% case of simple series
504    timestamp=timestamp';
505    t=set(t,uid_content_NbDti,'value',num2str(numel(timestamp)-1));% correct NbDti in the xml file
506    nbfield1=numel(timestamp);
507    nbfield2=1;
508else
509    nbfieldi=(NbDti*numel(Dti)+1);
510    nbfieldk=(NbDtk*numel(Dtk)+1);
511    nbfield1=nbfieldi*nbfieldk;
512    nbfield2=NbDtj*numel(Dtj)+1;
513    NbFrames_xml=nbfield1*nbfield2;
514%    if NbFrames_xml<numel(timestamp)
515%        disp(['ERROR: size from xml ' num2str(NbFrame_xml) ' smaller than timestamp size ' num2str(numel(timestamp))])
516%        return
517%    end
518%    if NbFrames_xml>numel(timestamp)
519%        nbfield1=floor(numel(timestamp)/nbfield2);
520%        nbfieldk=floor(nbfield1/nbfieldi);
521%        nbfield1=nbfieldi*nbfieldk;
522%        NbDtk=nbfieldk-1;
523%        t=set(t,uid_content_NbDtk,'value',num2str(NbDtk));% correct NbDtk in the xml file (in practice numel(Dtk)=1;
524%        timestamp=timestamp(1:nbfield1*nbfield2);
525%        disp(['image record stopped before end: max index i= ' num2str(nbfield1)]);
526%        timestamp=reshape(timestamp,nbfield2,nbfield1);
527%    end
528%    % check Dtj with respect to timestamp
529%     timestamp=(reshape(timestamp,nbfield2,[]))';
530%     diff_Dtj=diff(timestamp(1,:))-Dtj;
531%     if max(abs(diff_Dtj))>min(Dtj)/1000
532%         disp(['Dtj from xml file differs from time stamp by ' num2str(max(abs(diff_Dtj))) ', '])%'
533%     else
534%         disp('Dtj OK');
535%     end
536end
537
538%% adjust Dti
539% if NbDti+1>size(timestamp,1)
540%     NbDti=size(timestamp,1)-1;
541% end
542% Dti_stamp=(timestamp(1+NbDti,1)-timestamp(1,1))/NbDti;
543% Dti_stamp=(timestamp(1+NbDti,1)-timestamp(2,1))/(NbDti-1);
544% t=set(t,uid_content_Dti,'value',num2str(Dti_stamp));%corret Dti
545% if abs(Dti_stamp-Dti)>Dti/1000
546%     disp([msg 'Dti from xml file corrected by ' num2str(Dti_stamp-Dti) ', ']);%'
547% else
548%     disp('Dti OK')
549% end
550
551%% adjust Dtk
552if ~isempty(uid_Dtk)
553    Dtk_stamp=(timestamp((NbDti+1)*NbDtk+1,1)-timestamp(1,1))/NbDtk;
554    t=set(t,uid_content_Dtk,'value',num2str(Dtk_stamp));
555    if abs(Dtk_stamp-Dtk)>Dtk/1000
556        disp(['Dtk from xml file corrected by ' num2str(Dtk_stamp-Dtk)]);
557    else
558        disp('Dtk OK')
559    end
560    t=set(t,uid_content_Dtk,'value',num2str(Dtk_stamp));
561end
562
563%% save the new xml file
564if ~isempty(newxml)
565    save(t,newxml)
566    [success,errormsg] = fileattrib(newxml,'+w','g');% allow writing access for the group of users
567    if success==0
568        disp({['warning: unable to set group write access to ' newxml ':']; errormsg});%error message for directory creation
569        msg=errormsg;
570    end
571end
572
573
Note: See TracBrowser for help on using the repository browser.