Legend:
- Unmodified
- Added
- Removed
-
trunk/src/check_files.m
r705 r709 167 167 svn_info.cur_rev=str2double(t.rev); %version nbre of the current package 168 168 end 169 [tild,result]=system(['svn info -r ''HEAD'' ' pathuvmat ]);169 [tild,result]=system(['svn info -r ''HEAD'' ' pathuvmat ' &']); 170 170 t=regexp(result,'R.vision\s*:\s*(?<rev>\d+)','names'); 171 171 if ~isempty(t) 172 172 svn_info.rep_rev=str2double(t.rev); % version nbre available on the svn repository 173 173 end 174 [tild,result]=system(['svn status ' pathuvmat ]);174 [tild,result]=system(['svn status ' pathuvmat ' &']);% '&' prevents the program to stop when the system asks password 175 175 svn_info.status=result; 176 176 checkmsg =[checkmsg {['SVN revision : ' num2str(svn_info.cur_rev)]}];%display version nbre of the current uvmat package -
trunk/src/series.m
r708 r709 243 243 244 244 %% introduce the input file name(s) if defined from input Param 245 if isfield(Param,'FileName') 245 if isfield(Param,'FileName')&&~isempty(Param.FileName) 246 246 %InputTable={'','','','',''}; % refresh the file input table 247 247 InputTable={} -
trunk/src/uvmat.m
r706 r709 1870 1870 if isequal(FieldName,'image') 1871 1871 index=2; 1872 [RootPath, tild,RootFile,FileIndex_1,Ext,NomType]=read_file_boxes_1(handles);1872 [RootPath,SubDir,RootFile,FileIndex_1,Ext,NomType]=read_file_boxes_1(handles);% get info from the second input line 1873 1873 else 1874 1874 msgbox_uvmat('ERROR','an image or movie must be first introduced as input') … … 1909 1909 if isempty(num_i2) 1910 1910 num_i2=num_i1;%repeat the index i1 by default 1911 end 1912 if isempty(num_j1) 1913 num_j1=1; 1914 end 1915 if isempty(num_j2) 1916 num_j2=num_j1;%repeat the index i1 by default 1911 1917 end 1912 1918 imaname_1=fullfile_uvmat(RootPath,SubDir,RootFile,Ext,NomType,num_i2,[],num_j2);
Note: See TracChangeset
for help on using the changeset viewer.