Changeset 784 for trunk/src/find_file_series.m
- Timestamp:
- Jun 7, 2014, 6:17:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/find_file_series.m
r783 r784 56 56 j1_series=zeros(1,1,1); 57 57 j2_series=zeros(1,1,1); 58 [FileInfo,MovieObject]=get_file_ type(fullfileinput);58 [FileInfo,MovieObject]=get_file_info(fullfileinput); 59 59 if ~exist(FilePath,'dir') 60 60 return % don't go further if the dir path does not exist … … 238 238 %% update the file type if the input file does not exist (pb of 0001) 239 239 if isempty(FileInfo.FileType) 240 [FileInfo,MovieObject]=get_file_ type(fullfile(FilePath,dirpair(ifile_min).name));240 [FileInfo,MovieObject]=get_file_info(fullfile(FilePath,dirpair(ifile_min).name)); 241 241 end 242 242 end … … 248 248 if isequal(j1_series,0), j1_series=[]; end 249 249 if isequal(j2_series,0), j2_series=[]; end 250 251 %% detect rdvision format 252 if strcmp(FileExt,'.bin') 253 if exist(fullfile(RootPath,SubDir,[RootFile '.seq']),'file') 254 FileInfo.FileType='rdvision'; 255 FileInfo.SeqFile=[RootFile '.seq']; 256 end 257 end 250 258 251 259 %% introduce the frame index in case of movies or multimage type
Note: See TracChangeset
for help on using the changeset viewer.