Changeset 386 for trunk/src/civ.m
- Timestamp:
- Apr 2, 2012, 4:23:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/civ.m
r384 r386 2425 2425 movieobject1=[];%default 2426 2426 if strcmpi(ext_ima,'.avi') 2427 hhh=which('mmreader'); 2428 if ~isequal(hhh,'')&& mmreader.isPlatformSupported()% if the mmreader function is found (recent version of matlab) 2427 if ~isempty(which('mmreader'))% if the mmreader function is found (recent version of matlab) 2429 2428 type_ima1='movie'; 2430 movieobject1=mmreader([file base_ima2ext_ima]);2429 movieobject1=mmreader([filecell.filebase ext_ima]); 2431 2430 else 2432 2431 type_ima1='avi'; … … 2445 2444 movieobject2=[]; 2446 2445 if strcmpi(ext_ima,'.avi') 2447 hhh=which('mmreader'); 2448 if ~isequal(hhh,'')&& mmreader.isPlatformSupported()% if the mmreader function is found (recent version of matlab) 2446 if ~isempty(which('mmreader'))% if the mmreader function is found (recent version of matlab) 2449 2447 type_ima2='movie'; 2450 movieobject2=mmreader([file base_ima2ext_ima]);2448 movieobject2=mmreader([filecell.filebase ext_ima]); 2451 2449 else 2452 2450 type_ima2='avi';
Note: See TracChangeset
for help on using the changeset viewer.