Changeset 439
- Timestamp:
- Jun 5, 2012, 3:41:13 PM (12 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/find_file_series.m
r435 r439 52 52 % ifile_min=1;%default 53 53 [FileType,FileInfo,Object]=get_file_type(fullfileinput); 54 if strcmp( FileType,'multimage')||strcmp( FileType,'video')||strcmp( FileType,'mmreader') 54 switch FileType 55 case 'multimage' 56 NomType='*'; 57 i1_series=(1:FileInfo.NbFrame)'; 58 case {'video','mmreader'} 55 59 NomType='*'; 56 60 i1_series=(1:FileInfo.NumberOfFrames)'; 57 end 61 end 62 % if strcmp( FileType,'multimage')||strcmp( FileType,'video')||strcmp( FileType,'mmreader') 63 % NomType='*'; 64 % i1_series=(1:FileInfo.NumberOfFrames)'; 65 % end 58 66 59 67 if strcmp(NomType,'')||strcmp(NomType,'*') -
trunk/src/uvmat.m
r435 r439 1833 1833 end 1834 1834 % imaname_1=name_generator(filebase,num_i2,num_j2,Ext,NomType); 1835 imaname_1=fullfile_uvmat(RootPath, '',RootFile,Ext,NomType,num_i2,[],num_j2);1835 imaname_1=fullfile_uvmat(RootPath,SubDir,RootFile,Ext,NomType,num_i2,[],num_j2); 1836 1836 if ~exist(imaname_1,'file') 1837 1837 msgbox_uvmat('ERROR',['second input open (-) ' imaname_1 ' not found']);
Note: See TracChangeset
for help on using the changeset viewer.