Changeset 497 for trunk/src/read_field.m
- Timestamp:
- Jul 21, 2012, 11:15:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/read_field.m
r493 r497 1 2 %'read_field': read input fields in different formats 1 %'read_field': read the fields from files in different formats (netcdf files, images, video) 3 2 %-------------------------------------------------------------------------- 4 3 % function [Field,ParamOut,errormsg] = read_field(FileName,FileType,ParamIn,num) … … 16 15 %INPUT 17 16 % FileName: name of the input file 18 % FileType: type of file 19 % = netcdf : netcdf file 20 % = image : usual image as recognised by Matlab 21 % = multimage: image series stored in a single file 22 % = mmreader: movie read with mmreader 23 % = video: movie read with VideoReader (recent versions of Matlab) 24 % = vol: images representing scanned volume (images concatened in the y direction) 17 % FileType: type of file, as determined by the function get_file_type.m 25 18 % ParamIn: movie object or Matlab structure of input parameters 26 19 % .FieldName: name (char string) of the input field (for Civx data) … … 29 22 % .Npx, .Npy: nbre of pixels along x and y (used for .vol input files) 30 23 % num: frame number for movies 24 % 25 % see also read_image.m,read_civxdata.m,read_civdata.m, 31 26 32 27 function [Field,ParamOut,errormsg] = read_field(FileName,FileType,ParamIn,num)
Note: See TracChangeset
for help on using the changeset viewer.