Ignore:
Timestamp:
Feb 8, 2022, 1:58:47 PM (2 years ago)
Author:
sommeria
Message:

bug corrected in 3D calibration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/extract_rdvision.m

    r1112 r1113  
    206206                logdir=[Param.OutputSubDir Param.OutputDirExt];
    207207                [success,errormsg] = copyfile(filename_seq,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.seq']); %copy the seq file in the upper folder
     208                if ~success
     209                    disp(errormsg)
     210                end
    208211                [success,errormsg] = copyfile(filename_sqb,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.sqb']); %copy the sqb file in the upper folder
     212                if ~success
     213                    disp(errormsg)
     214                end
    209215                if check_xml
    210216                    [success,errormsg] = copyfile(filexml,[fullfile(RootPath,logdir,Param.InputTable{iview,3}) '.xml']); %copy the original xml file in the upper folder
     217                if ~success
     218                    disp(errormsg)
     219                end
    211220                else
    212                     errormsg=[filexml ' missing'];
     221                    disp(['error:' filexml ' missing']);
    213222                    return
    214223                end
Note: See TracChangeset for help on using the changeset viewer.