Changeset 484
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/civ.m
r483 r484 82 82 if isfield(sparam,'BatchParam') && isfield(sparam.BatchParam,'BatchMode') 83 83 batch_mode=sparam.BatchParam.BatchMode; %sge is currently the only implemented batch mod 84 test_command=''; 84 85 switch batch_mode 85 86 case 'sge' … … 88 89 test_command='oarstat'; 89 90 end 91 if ~isempty(test_command) 90 92 [s,w]=system(test_command); 91 93 if isequal(s,0) 92 94 test_batch=1; 95 end 93 96 end 94 97 end -
trunk/src/find_file_series.m
r483 r484 232 232 233 233 %% introduce the frame index in case of movies or multimage type 234 if isfield(FileInfo,'NumberOfFrames')>1 && FileInfo.NumberOfFrames >1 234 if isfield(FileInfo,'NumberOfFrames') && FileInfo.NumberOfFrames >1 235 'TEST' 235 236 if isempty(i1_series) 236 237 i1_series=(1:FileInfo.NumberOfFrames)'; -
trunk/src/uvmat.m
r483 r484 853 853 return 854 854 end 855 nbfield=[];%default856 nbfield_j=[];%default855 % nbfield=[];%default 856 % nbfield_j=[];%default 857 857 858 858 %% read timing and total frame number from the current file (movie files) !! may be overrid by xml file … … 868 868 imainfo=get(VideoObject); 869 869 testima=1; 870 nbfield_j=1;870 % nbfield_j=1; 871 871 TimeUnit='s'; 872 872 XmlData.Time=(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames-1)/imainfo.FrameRate)'; 873 % %nbfield=imainfo.NumberOfFrames;873 %nbfield=imainfo.NumberOfFrames; 874 874 set(handles.Dt_txt,'String',['Dt=' num2str(1000/imainfo.FrameRate) 'ms']);%display the elementary time interval in millisec 875 875 ColorType='truecolor'; … … 884 884 ColorType=imainfo.ColorType;%='truecolor' for color images 885 885 if length(imainfo) >1 %case of image with multiple frames 886 nbfield=length(imainfo);887 nbfield_j=1;886 % nbfield=length(imainfo); 887 % nbfield_j=1; 888 888 end 889 889 end
Note: See TracChangeset
for help on using the changeset viewer.