Changeset 1170 for trunk/src/get_file_info.m
- Timestamp:
- Jan 17, 2025, 10:47:01 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/get_file_info.m
r1165 r1170 127 127 FileInfo.BitDepth=BitmapInfoHeader.biBitCount; 128 128 FileInfo.TimeName='video'; 129 case '.hcc' 130 %cd 'TelopsToolbox_20230707(r20340)' 131 installToolboxIRCAM 132 [~,InfoArray]=readIRCam(fileinput,'HeadersOnly',true); 133 FileInfo.FileType='telopsIR'; 134 FileInfo.Height=InfoArray(1).Height; 135 FileInfo.Width=InfoArray(1).Width; 136 FileInfo.FrameRate=InfoArray(1).AcquisitionFrameRate; 137 FileInfo.NumberOfFrames=numel(InfoArray); 138 FileInfo.TimeName='video'; 129 139 otherwise 130 140 if ~isempty(FileExt)% exclude empty extension … … 253 263 FileInfo.FieldType=FileInfo.FileType;%default 254 264 switch FileInfo.FileType 255 case {'image','multimage','video','mmreader','rdvision','image_DaVis','cine_phantom' }265 case {'image','multimage','video','mmreader','rdvision','image_DaVis','cine_phantom','telopsIR'} 256 266 FileInfo.FieldType='image'; 257 267 case {'civx','civdata','pivdata_fluidimage'}
Note: See TracChangeset
for help on using the changeset viewer.